@cola1900/dsh-ppt 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (730) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +57 -0
  3. package/THIRD_PARTY_NOTICES.md +29 -0
  4. package/UPSTREAM.md +17 -0
  5. package/cordis.patch.yml +8 -0
  6. package/lib/bin.js +4070 -0
  7. package/lib/catalog.js +3 -0
  8. package/lib/client.js +916 -0
  9. package/lib/index.js +3688 -0
  10. package/lib/invariant.js +13 -0
  11. package/lib/pptd-2VqVzr_T.js +2173 -0
  12. package/lib/pptd.js +2 -0
  13. package/lib/preview-assets.js +59 -0
  14. package/lib/preview-manifest.js +2 -0
  15. package/lib/text-wrap.js +20 -0
  16. package/lib/types/bin.d.ts +12 -0
  17. package/lib/types/client/OfficePptHero.d.ts +42 -0
  18. package/lib/types/client/curated-previews.d.ts +3 -0
  19. package/lib/types/client/curated-previews.generated.d.ts +2 -0
  20. package/lib/types/client/index.d.ts +6 -0
  21. package/lib/types/client/locales.d.ts +15 -0
  22. package/lib/types/client/rpc.d.ts +23 -0
  23. package/lib/types/client/standard.d.ts +31 -0
  24. package/lib/types/client.d.ts +1 -0
  25. package/lib/types/data-series.d.ts +31 -0
  26. package/lib/types/index.d.ts +25 -0
  27. package/lib/types/invariant.d.ts +8 -0
  28. package/lib/types/layouts.d.ts +54 -0
  29. package/lib/types/planning.d.ts +35 -0
  30. package/lib/types/ppt-ppt-skill.d.ts +6 -0
  31. package/lib/types/ppt-reference-semantics.generated.d.ts +2 -0
  32. package/lib/types/ppt-rpc.d.ts +5 -0
  33. package/lib/types/ppt-service.d.ts +34 -0
  34. package/lib/types/ppt-store.d.ts +47 -0
  35. package/lib/types/ppt-template-catalog.generated.d.ts +2 -0
  36. package/lib/types/ppt-template-definitions.d.ts +1 -0
  37. package/lib/types/ppt-tools.d.ts +10 -0
  38. package/lib/types/pptd-colors.d.ts +15 -0
  39. package/lib/types/pptd-convert.d.ts +21 -0
  40. package/lib/types/pptd-preview.d.ts +6 -0
  41. package/lib/types/pptd-publish.d.ts +8 -0
  42. package/lib/types/pptd-repair.d.ts +18 -0
  43. package/lib/types/pptd-tools.d.ts +5 -0
  44. package/lib/types/pptd.d.ts +89 -0
  45. package/lib/types/protocol.d.ts +547 -0
  46. package/lib/types/template-reference.d.ts +28 -0
  47. package/lib/types/template-semantics.d.ts +12 -0
  48. package/lib/types/templates.d.ts +2 -0
  49. package/lib/types/text-layout.d.ts +37 -0
  50. package/lib/validation.js +84 -0
  51. package/licenses/composer-NOTICES.md +29 -0
  52. package/licenses/dsh-desktop-LICENSE +21 -0
  53. package/licenses/html-anything/LICENSE +202 -0
  54. package/licenses/html-anything/deck-blueprint.md +22 -0
  55. package/licenses/html-anything/deck-course-module.md +23 -0
  56. package/licenses/zara/LICENSE +21 -0
  57. package/licenses/zara/templates/blue-professional/design.md +701 -0
  58. package/licenses/zara/templates/blue-professional/template.html +1423 -0
  59. package/licenses/zara/templates/blue-professional/template.json +43 -0
  60. package/licenses/zara/templates/broadside/design.md +493 -0
  61. package/licenses/zara/templates/broadside/template.html +2144 -0
  62. package/licenses/zara/templates/broadside/template.json +48 -0
  63. package/licenses/zara/templates/cartesian/design.md +513 -0
  64. package/licenses/zara/templates/cartesian/template.html +1136 -0
  65. package/licenses/zara/templates/cartesian/template.json +46 -0
  66. package/licenses/zara/templates/editorial-forest/design.md +497 -0
  67. package/licenses/zara/templates/editorial-forest/template.html +843 -0
  68. package/licenses/zara/templates/editorial-forest/template.json +44 -0
  69. package/licenses/zara/templates/monochrome/design.md +482 -0
  70. package/licenses/zara/templates/monochrome/template.html +2596 -0
  71. package/licenses/zara/templates/monochrome/template.json +49 -0
  72. package/licenses/zara/templates/neo-grid-bold/design.md +534 -0
  73. package/licenses/zara/templates/neo-grid-bold/template.html +865 -0
  74. package/licenses/zara/templates/neo-grid-bold/template.json +46 -0
  75. package/licenses/zara/templates/playful/design.md +480 -0
  76. package/licenses/zara/templates/playful/template.html +1355 -0
  77. package/licenses/zara/templates/playful/template.json +42 -0
  78. package/licenses/zara/templates/sakura-chroma/design.md +632 -0
  79. package/licenses/zara/templates/sakura-chroma/template.html +1405 -0
  80. package/licenses/zara/templates/sakura-chroma/template.json +53 -0
  81. package/licenses/zara/templates/signal/design.md +517 -0
  82. package/licenses/zara/templates/signal/template.html +2558 -0
  83. package/licenses/zara/templates/signal/template.json +49 -0
  84. package/licenses/zara/templates/soft-editorial/design.md +615 -0
  85. package/licenses/zara/templates/soft-editorial/template.html +1183 -0
  86. package/licenses/zara/templates/soft-editorial/template.json +46 -0
  87. package/package.json +107 -0
  88. package/skills/dsh-ppt/SKILL.md +36 -0
  89. package/skills/dsh-ppt/references/academic/dsh-course-workshop/design.md +61 -0
  90. package/skills/dsh-ppt/references/academic/dsh-course-workshop/metadata.json +2886 -0
  91. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/01.jpg +0 -0
  92. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/02.jpg +0 -0
  93. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/03.jpg +0 -0
  94. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/04.jpg +0 -0
  95. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/05.jpg +0 -0
  96. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/06.jpg +0 -0
  97. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/07.jpg +0 -0
  98. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/08.jpg +0 -0
  99. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/09.jpg +0 -0
  100. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/10.jpg +0 -0
  101. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/11.jpg +0 -0
  102. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/12.jpg +0 -0
  103. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/deck.pptd +21 -0
  104. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/01.page +142 -0
  105. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/02.page +382 -0
  106. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/03.page +817 -0
  107. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/04.page +408 -0
  108. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/05.page +407 -0
  109. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/06.page +760 -0
  110. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/07.page +551 -0
  111. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/08.page +339 -0
  112. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/09.page +297 -0
  113. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/10.page +365 -0
  114. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/11.page +575 -0
  115. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/12.page +130 -0
  116. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/deck.pptd +21 -0
  117. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/01.page +142 -0
  118. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/02.page +382 -0
  119. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/03.page +817 -0
  120. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/04.page +408 -0
  121. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/05.page +407 -0
  122. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/06.page +760 -0
  123. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/07.page +551 -0
  124. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/08.page +339 -0
  125. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/09.page +297 -0
  126. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/10.page +365 -0
  127. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/11.page +575 -0
  128. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/12.page +130 -0
  129. package/skills/dsh-ppt/references/academic/dsh-monochrome/design.md +61 -0
  130. package/skills/dsh-ppt/references/academic/dsh-monochrome/metadata.json +2989 -0
  131. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/01.jpg +0 -0
  132. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/02.jpg +0 -0
  133. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/03.jpg +0 -0
  134. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/04.jpg +0 -0
  135. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/05.jpg +0 -0
  136. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/06.jpg +0 -0
  137. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/07.jpg +0 -0
  138. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/08.jpg +0 -0
  139. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/09.jpg +0 -0
  140. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/10.jpg +0 -0
  141. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/11.jpg +0 -0
  142. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/12.jpg +0 -0
  143. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/deck.pptd +21 -0
  144. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/01.page +86 -0
  145. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/02.page +382 -0
  146. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/03.page +479 -0
  147. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/04.page +551 -0
  148. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/05.page +817 -0
  149. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/06.page +760 -0
  150. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/07.page +576 -0
  151. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/08.page +339 -0
  152. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/09.page +295 -0
  153. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/10.page +407 -0
  154. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/11.page +575 -0
  155. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/12.page +86 -0
  156. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/deck.pptd +21 -0
  157. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/01.page +86 -0
  158. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/02.page +382 -0
  159. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/03.page +479 -0
  160. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/04.page +551 -0
  161. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/05.page +817 -0
  162. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/06.page +760 -0
  163. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/07.page +576 -0
  164. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/08.page +339 -0
  165. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/09.page +295 -0
  166. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/10.page +407 -0
  167. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/11.page +575 -0
  168. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/12.page +86 -0
  169. package/skills/dsh-ppt/references/business/dsh-blue-professional/design.md +53 -0
  170. package/skills/dsh-ppt/references/business/dsh-blue-professional/metadata.json +3152 -0
  171. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/01.jpg +0 -0
  172. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/02.jpg +0 -0
  173. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/03.jpg +0 -0
  174. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/04.jpg +0 -0
  175. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/05.jpg +0 -0
  176. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/06.jpg +0 -0
  177. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/07.jpg +0 -0
  178. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/08.jpg +0 -0
  179. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/09.jpg +0 -0
  180. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/10.jpg +0 -0
  181. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/11.jpg +0 -0
  182. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/12.jpg +0 -0
  183. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/deck.pptd +21 -0
  184. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/01.page +100 -0
  185. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/02.page +310 -0
  186. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/03.page +381 -0
  187. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/04.page +853 -0
  188. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/05.page +436 -0
  189. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/06.page +732 -0
  190. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/07.page +574 -0
  191. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/08.page +767 -0
  192. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/09.page +282 -0
  193. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/10.page +350 -0
  194. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/11.page +462 -0
  195. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/12.page +86 -0
  196. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/deck.pptd +21 -0
  197. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/01.page +100 -0
  198. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/02.page +310 -0
  199. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/03.page +381 -0
  200. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/04.page +853 -0
  201. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/05.page +436 -0
  202. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/06.page +732 -0
  203. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/07.page +574 -0
  204. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/08.page +769 -0
  205. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/09.page +282 -0
  206. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/10.page +350 -0
  207. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/11.page +462 -0
  208. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/12.page +86 -0
  209. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/design.md +61 -0
  210. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/metadata.json +3883 -0
  211. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/01.jpg +0 -0
  212. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/02.jpg +0 -0
  213. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/03.jpg +0 -0
  214. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/04.jpg +0 -0
  215. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/05.jpg +0 -0
  216. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/06.jpg +0 -0
  217. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/07.jpg +0 -0
  218. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/08.jpg +0 -0
  219. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/09.jpg +0 -0
  220. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/10.jpg +0 -0
  221. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/11.jpg +0 -0
  222. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/12.jpg +0 -0
  223. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/deck.pptd +21 -0
  224. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/01.page +355 -0
  225. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/02.page +452 -0
  226. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/03.page +561 -0
  227. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/04.page +830 -0
  228. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/05.page +887 -0
  229. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/06.page +646 -0
  230. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/07.page +881 -0
  231. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/08.page +788 -0
  232. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/09.page +365 -0
  233. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/10.page +617 -0
  234. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/11.page +645 -0
  235. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/12.page +86 -0
  236. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/deck.pptd +21 -0
  237. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/01.page +354 -0
  238. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/02.page +452 -0
  239. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/03.page +561 -0
  240. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/04.page +830 -0
  241. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/05.page +887 -0
  242. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/06.page +646 -0
  243. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/07.page +881 -0
  244. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/08.page +788 -0
  245. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/09.page +365 -0
  246. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/10.page +617 -0
  247. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/11.page +645 -0
  248. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/12.page +86 -0
  249. package/skills/dsh-ppt/references/composition.md +19 -0
  250. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/design.md +124 -0
  251. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/metadata.json +1930 -0
  252. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/01.jpg +0 -0
  253. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/02.jpg +0 -0
  254. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/03.jpg +0 -0
  255. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/04.jpg +0 -0
  256. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/05.jpg +0 -0
  257. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/06.jpg +0 -0
  258. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/07.jpg +0 -0
  259. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/08.jpg +0 -0
  260. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/09.jpg +0 -0
  261. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/10.jpg +0 -0
  262. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/11.jpg +0 -0
  263. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/12.jpg +0 -0
  264. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/deck.pptd +91 -0
  265. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/01.page +259 -0
  266. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/02.page +325 -0
  267. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/03.page +511 -0
  268. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/04.page +398 -0
  269. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/05.page +439 -0
  270. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/06.page +493 -0
  271. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/07.page +194 -0
  272. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/08.page +422 -0
  273. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/09.page +458 -0
  274. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/10.page +746 -0
  275. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/11.page +604 -0
  276. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/12.page +343 -0
  277. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/deck.pptd +91 -0
  278. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/01.page +259 -0
  279. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/02.page +325 -0
  280. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/03.page +511 -0
  281. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/04.page +398 -0
  282. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/05.page +439 -0
  283. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/06.page +493 -0
  284. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/07.page +194 -0
  285. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/08.page +417 -0
  286. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/09.page +458 -0
  287. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/10.page +746 -0
  288. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/11.page +604 -0
  289. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/12.page +343 -0
  290. package/skills/dsh-ppt/references/consulting/dsh-cartesian/design.md +61 -0
  291. package/skills/dsh-ppt/references/consulting/dsh-cartesian/metadata.json +3196 -0
  292. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/01.jpg +0 -0
  293. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/02.jpg +0 -0
  294. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/03.jpg +0 -0
  295. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/04.jpg +0 -0
  296. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/05.jpg +0 -0
  297. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/06.jpg +0 -0
  298. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/07.jpg +0 -0
  299. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/08.jpg +0 -0
  300. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/09.jpg +0 -0
  301. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/10.jpg +0 -0
  302. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/11.jpg +0 -0
  303. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/12.jpg +0 -0
  304. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/deck.pptd +21 -0
  305. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/01.page +98 -0
  306. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/02.page +382 -0
  307. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/03.page +817 -0
  308. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/04.page +479 -0
  309. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/05.page +576 -0
  310. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/06.page +760 -0
  311. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/07.page +339 -0
  312. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/08.page +718 -0
  313. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/09.page +295 -0
  314. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/10.page +547 -0
  315. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/11.page +575 -0
  316. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/12.page +86 -0
  317. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/deck.pptd +21 -0
  318. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/01.page +98 -0
  319. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/02.page +382 -0
  320. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/03.page +817 -0
  321. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/04.page +479 -0
  322. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/05.page +576 -0
  323. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/06.page +760 -0
  324. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/07.page +339 -0
  325. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/08.page +718 -0
  326. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/09.page +295 -0
  327. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/10.page +547 -0
  328. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/11.page +575 -0
  329. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/12.page +86 -0
  330. package/skills/dsh-ppt/references/consulting/dsh-signal/design.md +61 -0
  331. package/skills/dsh-ppt/references/consulting/dsh-signal/metadata.json +3172 -0
  332. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/01.jpg +0 -0
  333. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/02.jpg +0 -0
  334. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/03.jpg +0 -0
  335. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/04.jpg +0 -0
  336. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/05.jpg +0 -0
  337. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/06.jpg +0 -0
  338. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/07.jpg +0 -0
  339. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/08.jpg +0 -0
  340. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/09.jpg +0 -0
  341. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/10.jpg +0 -0
  342. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/11.jpg +0 -0
  343. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/12.jpg +0 -0
  344. package/skills/dsh-ppt/references/consulting/dsh-signal/source/deck.pptd +21 -0
  345. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/01.page +100 -0
  346. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/02.page +382 -0
  347. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/03.page +817 -0
  348. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/04.page +760 -0
  349. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/05.page +576 -0
  350. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/06.page +718 -0
  351. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/07.page +295 -0
  352. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/08.page +551 -0
  353. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/09.page +339 -0
  354. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/10.page +547 -0
  355. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/11.page +575 -0
  356. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/12.page +86 -0
  357. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/deck.pptd +21 -0
  358. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/01.page +100 -0
  359. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/02.page +382 -0
  360. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/03.page +817 -0
  361. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/04.page +760 -0
  362. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/05.page +576 -0
  363. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/06.page +718 -0
  364. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/07.page +295 -0
  365. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/08.page +551 -0
  366. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/09.page +339 -0
  367. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/10.page +547 -0
  368. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/11.page +575 -0
  369. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/12.page +86 -0
  370. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/design.md +61 -0
  371. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/metadata.json +3091 -0
  372. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/01.jpg +0 -0
  373. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/02.jpg +0 -0
  374. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/03.jpg +0 -0
  375. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/04.jpg +0 -0
  376. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/05.jpg +0 -0
  377. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/06.jpg +0 -0
  378. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/07.jpg +0 -0
  379. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/08.jpg +0 -0
  380. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/09.jpg +0 -0
  381. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/10.jpg +0 -0
  382. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/11.jpg +0 -0
  383. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/12.jpg +0 -0
  384. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/deck.pptd +21 -0
  385. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/01.page +124 -0
  386. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/02.page +382 -0
  387. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/03.page +479 -0
  388. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/04.page +365 -0
  389. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/05.page +817 -0
  390. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/06.page +760 -0
  391. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/07.page +576 -0
  392. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/08.page +295 -0
  393. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/09.page +339 -0
  394. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/10.page +547 -0
  395. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/11.page +575 -0
  396. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/12.page +135 -0
  397. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/deck.pptd +21 -0
  398. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/01.page +124 -0
  399. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/02.page +384 -0
  400. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/03.page +479 -0
  401. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/04.page +365 -0
  402. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/05.page +817 -0
  403. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/06.page +760 -0
  404. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/07.page +576 -0
  405. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/08.page +295 -0
  406. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/09.page +341 -0
  407. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/10.page +547 -0
  408. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/11.page +575 -0
  409. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/12.page +135 -0
  410. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/design.md +61 -0
  411. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/metadata.json +3119 -0
  412. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/01.jpg +0 -0
  413. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/02.jpg +0 -0
  414. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/03.jpg +0 -0
  415. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/04.jpg +0 -0
  416. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/05.jpg +0 -0
  417. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/06.jpg +0 -0
  418. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/07.jpg +0 -0
  419. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/08.jpg +0 -0
  420. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/09.jpg +0 -0
  421. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/10.jpg +0 -0
  422. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/11.jpg +0 -0
  423. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/12.jpg +0 -0
  424. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/deck.pptd +21 -0
  425. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/01.page +117 -0
  426. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/02.page +382 -0
  427. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/03.page +479 -0
  428. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/04.page +817 -0
  429. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/05.page +760 -0
  430. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/06.page +295 -0
  431. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/07.page +365 -0
  432. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/08.page +576 -0
  433. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/09.page +408 -0
  434. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/10.page +547 -0
  435. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/11.page +575 -0
  436. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/12.page +86 -0
  437. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/deck.pptd +21 -0
  438. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/01.page +117 -0
  439. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/02.page +384 -0
  440. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/03.page +479 -0
  441. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/04.page +817 -0
  442. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/05.page +760 -0
  443. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/06.page +295 -0
  444. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/07.page +365 -0
  445. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/08.page +576 -0
  446. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/09.page +408 -0
  447. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/10.page +547 -0
  448. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/11.page +575 -0
  449. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/12.page +86 -0
  450. package/skills/dsh-ppt/references/pptd.md +55 -0
  451. package/skills/dsh-ppt/references/promotion/dsh-broadside/design.md +53 -0
  452. package/skills/dsh-ppt/references/promotion/dsh-broadside/metadata.json +2329 -0
  453. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/01.jpg +0 -0
  454. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/02.jpg +0 -0
  455. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/03.jpg +0 -0
  456. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/04.jpg +0 -0
  457. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/05.jpg +0 -0
  458. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/06.jpg +0 -0
  459. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/07.jpg +0 -0
  460. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/08.jpg +0 -0
  461. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/09.jpg +0 -0
  462. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/10.jpg +0 -0
  463. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/11.jpg +0 -0
  464. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/12.jpg +0 -0
  465. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/deck.pptd +21 -0
  466. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/01.page +72 -0
  467. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/02.page +156 -0
  468. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/03.page +350 -0
  469. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/04.page +210 -0
  470. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/05.page +436 -0
  471. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/06.page +420 -0
  472. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/07.page +480 -0
  473. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/08.page +294 -0
  474. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/09.page +210 -0
  475. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/10.page +392 -0
  476. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/11.page +560 -0
  477. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/12.page +58 -0
  478. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/deck.pptd +21 -0
  479. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/01.page +72 -0
  480. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/02.page +156 -0
  481. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/03.page +350 -0
  482. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/04.page +210 -0
  483. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/05.page +436 -0
  484. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/06.page +420 -0
  485. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/07.page +480 -0
  486. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/08.page +294 -0
  487. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/09.page +210 -0
  488. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/10.page +392 -0
  489. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/11.page +560 -0
  490. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/12.page +58 -0
  491. package/skills/dsh-ppt/references/promotion/dsh-playful/design.md +61 -0
  492. package/skills/dsh-ppt/references/promotion/dsh-playful/metadata.json +3070 -0
  493. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/01.jpg +0 -0
  494. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/02.jpg +0 -0
  495. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/03.jpg +0 -0
  496. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/04.jpg +0 -0
  497. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/05.jpg +0 -0
  498. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/06.jpg +0 -0
  499. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/07.jpg +0 -0
  500. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/08.jpg +0 -0
  501. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/09.jpg +0 -0
  502. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/10.jpg +0 -0
  503. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/11.jpg +0 -0
  504. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/12.jpg +0 -0
  505. package/skills/dsh-ppt/references/promotion/dsh-playful/source/deck.pptd +21 -0
  506. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/01.page +101 -0
  507. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/02.page +410 -0
  508. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/03.page +436 -0
  509. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/04.page +845 -0
  510. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/05.page +579 -0
  511. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/06.page +367 -0
  512. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/07.page +519 -0
  513. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/08.page +323 -0
  514. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/09.page +604 -0
  515. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/10.page +575 -0
  516. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/11.page +603 -0
  517. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/12.page +86 -0
  518. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/deck.pptd +21 -0
  519. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/01.page +100 -0
  520. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/02.page +410 -0
  521. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/03.page +436 -0
  522. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/04.page +845 -0
  523. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/05.page +579 -0
  524. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/06.page +367 -0
  525. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/07.page +519 -0
  526. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/08.page +323 -0
  527. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/09.page +604 -0
  528. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/10.page +575 -0
  529. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/11.page +603 -0
  530. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/12.page +86 -0
  531. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/design.md +61 -0
  532. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/metadata.json +3203 -0
  533. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/01.jpg +0 -0
  534. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/02.jpg +0 -0
  535. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/03.jpg +0 -0
  536. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/04.jpg +0 -0
  537. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/05.jpg +0 -0
  538. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/06.jpg +0 -0
  539. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/07.jpg +0 -0
  540. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/08.jpg +0 -0
  541. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/09.jpg +0 -0
  542. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/10.jpg +0 -0
  543. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/11.jpg +0 -0
  544. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/12.jpg +0 -0
  545. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/deck.pptd +21 -0
  546. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/01.page +173 -0
  547. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/02.page +424 -0
  548. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/03.page +450 -0
  549. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/04.page +593 -0
  550. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/05.page +521 -0
  551. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/06.page +533 -0
  552. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/07.page +618 -0
  553. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/08.page +381 -0
  554. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/09.page +337 -0
  555. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/10.page +407 -0
  556. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/11.page +617 -0
  557. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/12.page +145 -0
  558. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/deck.pptd +21 -0
  559. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/01.page +173 -0
  560. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/02.page +424 -0
  561. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/03.page +450 -0
  562. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/04.page +593 -0
  563. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/05.page +521 -0
  564. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/06.page +533 -0
  565. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/07.page +618 -0
  566. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/08.page +381 -0
  567. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/09.page +337 -0
  568. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/10.page +407 -0
  569. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/11.page +617 -0
  570. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/12.page +145 -0
  571. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/design.md +122 -0
  572. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/metadata.json +1659 -0
  573. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/01.jpg +0 -0
  574. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/02.jpg +0 -0
  575. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/03.jpg +0 -0
  576. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/04.jpg +0 -0
  577. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/05.jpg +0 -0
  578. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/06.jpg +0 -0
  579. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/07.jpg +0 -0
  580. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/08.jpg +0 -0
  581. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/09.jpg +0 -0
  582. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/10.jpg +0 -0
  583. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/11.jpg +0 -0
  584. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/12.jpg +0 -0
  585. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/deck.pptd +105 -0
  586. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/01.page +499 -0
  587. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/02.page +499 -0
  588. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/03.page +577 -0
  589. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/04.page +408 -0
  590. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/05.page +660 -0
  591. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/06.page +641 -0
  592. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/07.page +415 -0
  593. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/08.page +606 -0
  594. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/09.page +567 -0
  595. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/10.page +595 -0
  596. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/11.page +555 -0
  597. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/12.page +895 -0
  598. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/deck.pptd +105 -0
  599. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/01.page +499 -0
  600. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/02.page +499 -0
  601. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/03.page +577 -0
  602. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/04.page +408 -0
  603. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/05.page +660 -0
  604. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/06.page +641 -0
  605. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/07.page +415 -0
  606. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/08.page +606 -0
  607. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/09.page +567 -0
  608. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/10.page +595 -0
  609. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/11.page +555 -0
  610. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/12.page +895 -0
  611. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/design.md +111 -0
  612. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/metadata.json +1712 -0
  613. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/01.jpg +0 -0
  614. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/02.jpg +0 -0
  615. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/03.jpg +0 -0
  616. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/04.jpg +0 -0
  617. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/05.jpg +0 -0
  618. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/06.jpg +0 -0
  619. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/07.jpg +0 -0
  620. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/08.jpg +0 -0
  621. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/09.jpg +0 -0
  622. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/10.jpg +0 -0
  623. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/11.jpg +0 -0
  624. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/12.jpg +0 -0
  625. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/deck.pptd +93 -0
  626. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/01.page +395 -0
  627. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/02.page +574 -0
  628. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/03.page +307 -0
  629. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/04.page +359 -0
  630. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/05.page +443 -0
  631. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/06.page +437 -0
  632. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/07.page +181 -0
  633. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/08.page +557 -0
  634. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/09.page +337 -0
  635. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/10.page +732 -0
  636. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/11.page +589 -0
  637. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/12.page +385 -0
  638. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/deck.pptd +93 -0
  639. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/01.page +395 -0
  640. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/02.page +574 -0
  641. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/03.page +307 -0
  642. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/04.page +359 -0
  643. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/05.page +443 -0
  644. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/06.page +437 -0
  645. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/07.page +181 -0
  646. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/08.page +557 -0
  647. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/09.page +337 -0
  648. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/10.page +732 -0
  649. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/11.page +589 -0
  650. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/12.page +385 -0
  651. package/skills/dsh-ppt/references/work/dsh-editorial-forest/design.md +61 -0
  652. package/skills/dsh-ppt/references/work/dsh-editorial-forest/metadata.json +3338 -0
  653. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/01.jpg +0 -0
  654. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/02.jpg +0 -0
  655. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/03.jpg +0 -0
  656. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/04.jpg +0 -0
  657. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/05.jpg +0 -0
  658. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/06.jpg +0 -0
  659. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/07.jpg +0 -0
  660. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/08.jpg +0 -0
  661. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/09.jpg +0 -0
  662. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/10.jpg +0 -0
  663. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/11.jpg +0 -0
  664. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/12.jpg +0 -0
  665. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/deck.pptd +21 -0
  666. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/01.page +87 -0
  667. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/02.page +382 -0
  668. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/03.page +760 -0
  669. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/04.page +718 -0
  670. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/05.page +479 -0
  671. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/06.page +576 -0
  672. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/07.page +551 -0
  673. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/08.page +295 -0
  674. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/09.page +811 -0
  675. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/10.page +547 -0
  676. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/11.page +575 -0
  677. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/12.page +86 -0
  678. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/deck.pptd +21 -0
  679. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/01.page +87 -0
  680. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/02.page +382 -0
  681. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/03.page +760 -0
  682. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/04.page +718 -0
  683. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/05.page +479 -0
  684. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/06.page +576 -0
  685. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/07.page +551 -0
  686. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/08.page +295 -0
  687. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/09.page +811 -0
  688. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/10.page +547 -0
  689. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/11.page +575 -0
  690. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/12.page +86 -0
  691. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/design.md +61 -0
  692. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/metadata.json +3147 -0
  693. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/01.jpg +0 -0
  694. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/02.jpg +0 -0
  695. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/03.jpg +0 -0
  696. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/04.jpg +0 -0
  697. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/05.jpg +0 -0
  698. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/06.jpg +0 -0
  699. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/07.jpg +0 -0
  700. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/08.jpg +0 -0
  701. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/09.jpg +0 -0
  702. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/10.jpg +0 -0
  703. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/11.jpg +0 -0
  704. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/12.jpg +0 -0
  705. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/deck.pptd +21 -0
  706. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/01.page +390 -0
  707. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/02.page +1082 -0
  708. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/03.page +1511 -0
  709. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/04.page +1227 -0
  710. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/05.page +1517 -0
  711. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/06.page +1460 -0
  712. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/07.page +1276 -0
  713. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/08.page +1039 -0
  714. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/09.page +995 -0
  715. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/10.page +1275 -0
  716. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/11.page +1275 -0
  717. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/12.page +125 -0
  718. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/deck.pptd +21 -0
  719. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/01.page +390 -0
  720. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/02.page +1084 -0
  721. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/03.page +1511 -0
  722. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/04.page +1227 -0
  723. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/05.page +1517 -0
  724. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/06.page +1460 -0
  725. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/07.page +1276 -0
  726. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/08.page +1041 -0
  727. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/09.page +995 -0
  728. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/10.page +1275 -0
  729. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/11.page +1275 -0
  730. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/12.page +125 -0
@@ -0,0 +1,3883 @@
1
+ {
2
+ "definition": {
3
+ "id": "dsh-neo-grid-bold",
4
+ "category": "business",
5
+ "sourceCollection": "curated",
6
+ "slug": "dsh-neo-grid-bold",
7
+ "name": "Neo-Grid Bold",
8
+ "localizedNames": {
9
+ "en": "Neo-Grid Bold",
10
+ "zh": "荧光网格"
11
+ },
12
+ "variantLabel": "DSH",
13
+ "description": "荧光网格 · Neo-Grid Bold",
14
+ "previewTitle": "Neo-Grid Bold",
15
+ "previewSubtitle": "12 editable layouts",
16
+ "titleFontFace": "Arial Black",
17
+ "bodyFontFace": "Arial",
18
+ "fonts": {
19
+ "en": {
20
+ "title": "Arial Black",
21
+ "body": "Arial"
22
+ },
23
+ "zh": {
24
+ "title": "PingFang SC",
25
+ "body": "PingFang SC"
26
+ },
27
+ "fallbacks": {
28
+ "en": {
29
+ "title": "Arial",
30
+ "body": "Arial"
31
+ },
32
+ "zh": {
33
+ "macOS": {
34
+ "serif": "Songti SC",
35
+ "sans": "PingFang SC"
36
+ },
37
+ "Windows": {
38
+ "serif": "SimSun",
39
+ "sans": "Microsoft YaHei"
40
+ },
41
+ "Linux": {
42
+ "serif": "Noto Serif CJK SC",
43
+ "sans": "Noto Sans CJK SC"
44
+ }
45
+ }
46
+ },
47
+ "upstreamTitle": "Space Grotesk"
48
+ },
49
+ "previewLanguage": "en",
50
+ "palette": {
51
+ "background": "F5F4EF",
52
+ "text": "0A0A0A",
53
+ "accent": "E6FF3D",
54
+ "surface": "ECECE8",
55
+ "secondary": "8A8A85",
56
+ "muted": "8A8A85"
57
+ },
58
+ "referenceDirectory": "business/dsh-neo-grid-bold",
59
+ "referenceWidth": 1280,
60
+ "referenceHeight": 720,
61
+ "referencePageCount": 12,
62
+ "representativeSlides": [
63
+ 1,
64
+ 2,
65
+ 3,
66
+ 4,
67
+ 5,
68
+ 6,
69
+ 7,
70
+ 8,
71
+ 9,
72
+ 10,
73
+ 11,
74
+ 12
75
+ ],
76
+ "previewSlides": [
77
+ 4,
78
+ 1,
79
+ 2,
80
+ 3,
81
+ 5,
82
+ 6,
83
+ 7,
84
+ 8,
85
+ 9,
86
+ 10,
87
+ 11,
88
+ 12
89
+ ],
90
+ "designSha256": "04fcc2150e6c55dd86264468e3cf8f513bda0caa56e32de34bfafbbf3d74c9c8"
91
+ },
92
+ "semantics": {
93
+ "palette": {
94
+ "background": "F5F4EF",
95
+ "text": "0A0A0A",
96
+ "accent": "E6FF3D",
97
+ "surface": "ECECE8",
98
+ "secondary": "8A8A85",
99
+ "muted": "8A8A85"
100
+ },
101
+ "source": {
102
+ "fileName": "neo-grid-bold-reference.jpg",
103
+ "sha256": "04fcc2150e6c55dd86264468e3cf8f513bda0caa56e32de34bfafbbf3d74c9c8",
104
+ "slideCount": 12,
105
+ "averageTextBlocks": 19,
106
+ "averageCharacters": 290,
107
+ "visualGrammar": "neo-grid-bold",
108
+ "recommendedDensity": "medium",
109
+ "designSummary": "# Neo-Grid Bold / 荧光网格\n\nAdapted from Zara Zhang's Neo-Grid Bold, commit e5e204fb1f3b06290846e7dcd7aceddabeceec8c. MIT. This native edition rebuilds twelve editable layouts; it is not an HTML import or an exact copy of every upstream slide.\n\n## Typography\n\nEnglish display: Arial Black; English body: Arial. These portable Office substitutions replace the upstream display face Space Grotesk. Chinese display: PingFang SC; body: PingFang SC. On Windows use Microsoft YaHei / Microsoft YaHei; on Linux use Noto Sans CJK SC / Noto Sans CJK SC. No font binary is distributed. Keep the serif/sans distinction.\n\nEnglish previews use source/. Chinese examples use source-zh/. Preview language does not select the language of the user's output. Choose the matching fonts for the actual content; reflow longer translations instead of shrinking titles.\n\n## Layout grammar\n\n A heavy editorial poster system built on a strict 12-column × 8-row block grid with neon-yellow accents on putty-ecru. Space Grotesk at weight 700 in strict uppercase carries every display moment; JetBrains Mono carries every label and metadata tag. Each slide reads as a magazine spread divided into colored panels — paper-ecru, ink-black, and electric lemon-yellow trading roles across cells. The aesthetic borrows from contemporary editorial print, brutalist annual reports, and the populist-poster end of design week showcases.\n\n1. Cover (cover)\n2. Agenda (agenda)\n3. Insights (insights)\n4. Metrics (data)\n5. Comparison chart (data)\n6. Process (process)\n7. Before and after (comparison)\n8. Closing (closing)\n\nAll charts and diagrams are native editable vectors. Example figures are illustrative, not reported facts. Retain a 48 pt outer margin and use 16:9, 960 × 540 pt.\n\nCopyright (c) 2026 Zara Zhang. DSH adaptation 2026-09-06. See licenses/zara/LICENSE and the pinned source design specification.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. Cover — Cover\n2. Find the next repeatable growth loop — Asymmetric argument with three supporting evidence rows\n3. Follow one cohort through the funnel — A single cohort with explicit conversion counts and an overall rate\n4. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n5. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n6. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n7. Design around explicit boundaries — Three layers, nine native nodes, horizontal handoffs and vertical dependencies\n8. Reconcile the benefit with the cost — Sequential contribution waterfall with an explicitly reconciled net change\n9. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n10. Connect each measure to a response — Actual, target and response aligned across four measures\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. Closing — Closing\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n",
110
+ "layoutPatterns": [
111
+ {
112
+ "family": "cover",
113
+ "slideCount": 1,
114
+ "sampleSlideNumbers": [
115
+ 1
116
+ ],
117
+ "titlePosition": "left",
118
+ "bodyColumns": 1,
119
+ "density": "medium",
120
+ "averageTextFrames": 4,
121
+ "averageMediaFrames": 0
122
+ },
123
+ {
124
+ "family": "insights",
125
+ "slideCount": 1,
126
+ "sampleSlideNumbers": [
127
+ 2
128
+ ],
129
+ "titlePosition": "left",
130
+ "bodyColumns": 2,
131
+ "density": "medium",
132
+ "averageTextFrames": 20,
133
+ "averageMediaFrames": 0
134
+ },
135
+ {
136
+ "family": "data",
137
+ "slideCount": 1,
138
+ "sampleSlideNumbers": [
139
+ 3
140
+ ],
141
+ "titlePosition": "left",
142
+ "bodyColumns": 2,
143
+ "density": "high",
144
+ "averageTextFrames": 18,
145
+ "averageMediaFrames": 0
146
+ },
147
+ {
148
+ "family": "data",
149
+ "slideCount": 1,
150
+ "sampleSlideNumbers": [
151
+ 4
152
+ ],
153
+ "titlePosition": "left",
154
+ "bodyColumns": 2,
155
+ "density": "high",
156
+ "averageTextFrames": 30,
157
+ "averageMediaFrames": 0
158
+ },
159
+ {
160
+ "family": "process",
161
+ "slideCount": 1,
162
+ "sampleSlideNumbers": [
163
+ 5
164
+ ],
165
+ "titlePosition": "left",
166
+ "bodyColumns": 3,
167
+ "density": "high",
168
+ "averageTextFrames": 17,
169
+ "averageMediaFrames": 0
170
+ },
171
+ {
172
+ "family": "comparison",
173
+ "slideCount": 1,
174
+ "sampleSlideNumbers": [
175
+ 6
176
+ ],
177
+ "titlePosition": "left",
178
+ "bodyColumns": 2,
179
+ "density": "high",
180
+ "averageTextFrames": 26,
181
+ "averageMediaFrames": 0
182
+ },
183
+ {
184
+ "family": "process",
185
+ "slideCount": 1,
186
+ "sampleSlideNumbers": [
187
+ 7
188
+ ],
189
+ "titlePosition": "left",
190
+ "bodyColumns": 3,
191
+ "density": "high",
192
+ "averageTextFrames": 20,
193
+ "averageMediaFrames": 0
194
+ },
195
+ {
196
+ "family": "data",
197
+ "slideCount": 1,
198
+ "sampleSlideNumbers": [
199
+ 8
200
+ ],
201
+ "titlePosition": "left",
202
+ "bodyColumns": 2,
203
+ "density": "high",
204
+ "averageTextFrames": 30,
205
+ "averageMediaFrames": 0
206
+ },
207
+ {
208
+ "family": "comparison",
209
+ "slideCount": 1,
210
+ "sampleSlideNumbers": [
211
+ 9
212
+ ],
213
+ "titlePosition": "left",
214
+ "bodyColumns": 2,
215
+ "density": "high",
216
+ "averageTextFrames": 13,
217
+ "averageMediaFrames": 0
218
+ },
219
+ {
220
+ "family": "table",
221
+ "slideCount": 1,
222
+ "sampleSlideNumbers": [
223
+ 10
224
+ ],
225
+ "titlePosition": "left",
226
+ "bodyColumns": 2,
227
+ "density": "high",
228
+ "averageTextFrames": 30,
229
+ "averageMediaFrames": 0
230
+ },
231
+ {
232
+ "family": "process",
233
+ "slideCount": 1,
234
+ "sampleSlideNumbers": [
235
+ 11
236
+ ],
237
+ "titlePosition": "left",
238
+ "bodyColumns": 2,
239
+ "density": "high",
240
+ "averageTextFrames": 19,
241
+ "averageMediaFrames": 0
242
+ },
243
+ {
244
+ "family": "closing",
245
+ "slideCount": 1,
246
+ "sampleSlideNumbers": [
247
+ 12
248
+ ],
249
+ "titlePosition": "left",
250
+ "bodyColumns": 1,
251
+ "density": "medium",
252
+ "averageTextFrames": 4,
253
+ "averageMediaFrames": 0
254
+ }
255
+ ],
256
+ "pageReferences": [
257
+ {
258
+ "slideNumber": 1,
259
+ "sourceTitle": "Cover",
260
+ "family": "cover",
261
+ "titlePosition": "left",
262
+ "bodyColumns": 1,
263
+ "density": "medium",
264
+ "features": [
265
+ "cover"
266
+ ],
267
+ "recommendedRoles": [
268
+ "cover"
269
+ ],
270
+ "structureSummary": "Cover",
271
+ "zones": [
272
+ {
273
+ "kind": "shape",
274
+ "x": 32,
275
+ "y": 32,
276
+ "width": 273.3333333333333,
277
+ "height": 602.6666666666666,
278
+ "shape": "rect",
279
+ "fill": "0A0A0A"
280
+ },
281
+ {
282
+ "kind": "shape",
283
+ "x": 317.3333333333333,
284
+ "y": 32,
285
+ "width": 605.3333333333334,
286
+ "height": 340,
287
+ "shape": "rect",
288
+ "fill": "E6FF3D"
289
+ },
290
+ {
291
+ "kind": "shape",
292
+ "x": 934.6666666666666,
293
+ "y": 32,
294
+ "width": 313.3333333333333,
295
+ "height": 340,
296
+ "shape": "rect",
297
+ "fill": "0A0A0A"
298
+ },
299
+ {
300
+ "kind": "shape",
301
+ "x": 317.3333333333333,
302
+ "y": 384,
303
+ "width": 605.3333333333334,
304
+ "height": 250.66666666666666,
305
+ "shape": "rect",
306
+ "fill": "E6FF3D"
307
+ },
308
+ {
309
+ "kind": "shape",
310
+ "x": 337.3333333333333,
311
+ "y": 53.333333333333336,
312
+ "width": 22.666666666666668,
313
+ "height": 22.666666666666668,
314
+ "shape": "rect",
315
+ "fill": "0A0A0A"
316
+ },
317
+ {
318
+ "kind": "shape",
319
+ "x": 360,
320
+ "y": 53.333333333333336,
321
+ "width": 22.666666666666668,
322
+ "height": 22.666666666666668,
323
+ "shape": "rect",
324
+ "fill": "E6FF3D"
325
+ },
326
+ {
327
+ "kind": "shape",
328
+ "x": 382.6666666666667,
329
+ "y": 53.333333333333336,
330
+ "width": 22.666666666666668,
331
+ "height": 22.666666666666668,
332
+ "shape": "rect",
333
+ "fill": "0A0A0A"
334
+ },
335
+ {
336
+ "kind": "shape",
337
+ "x": 405.3333333333333,
338
+ "y": 53.333333333333336,
339
+ "width": 22.666666666666668,
340
+ "height": 22.666666666666668,
341
+ "shape": "rect",
342
+ "fill": "E6FF3D"
343
+ },
344
+ {
345
+ "kind": "shape",
346
+ "x": 337.3333333333333,
347
+ "y": 76,
348
+ "width": 22.666666666666668,
349
+ "height": 22.666666666666668,
350
+ "shape": "rect",
351
+ "fill": "E6FF3D"
352
+ },
353
+ {
354
+ "kind": "shape",
355
+ "x": 360,
356
+ "y": 76,
357
+ "width": 22.666666666666668,
358
+ "height": 22.666666666666668,
359
+ "shape": "rect",
360
+ "fill": "0A0A0A"
361
+ },
362
+ {
363
+ "kind": "shape",
364
+ "x": 382.6666666666667,
365
+ "y": 76,
366
+ "width": 22.666666666666668,
367
+ "height": 22.666666666666668,
368
+ "shape": "rect",
369
+ "fill": "E6FF3D"
370
+ },
371
+ {
372
+ "kind": "shape",
373
+ "x": 405.3333333333333,
374
+ "y": 76,
375
+ "width": 22.666666666666668,
376
+ "height": 22.666666666666668,
377
+ "shape": "rect",
378
+ "fill": "0A0A0A"
379
+ },
380
+ {
381
+ "kind": "shape",
382
+ "x": 337.3333333333333,
383
+ "y": 98.66666666666667,
384
+ "width": 22.666666666666668,
385
+ "height": 22.666666666666668,
386
+ "shape": "rect",
387
+ "fill": "0A0A0A"
388
+ },
389
+ {
390
+ "kind": "shape",
391
+ "x": 360,
392
+ "y": 98.66666666666667,
393
+ "width": 22.666666666666668,
394
+ "height": 22.666666666666668,
395
+ "shape": "rect",
396
+ "fill": "E6FF3D"
397
+ },
398
+ {
399
+ "kind": "shape",
400
+ "x": 382.6666666666667,
401
+ "y": 98.66666666666667,
402
+ "width": 22.666666666666668,
403
+ "height": 22.666666666666668,
404
+ "shape": "rect",
405
+ "fill": "0A0A0A"
406
+ },
407
+ {
408
+ "kind": "shape",
409
+ "x": 405.3333333333333,
410
+ "y": 98.66666666666667,
411
+ "width": 22.666666666666668,
412
+ "height": 22.666666666666668,
413
+ "shape": "rect",
414
+ "fill": "E6FF3D"
415
+ },
416
+ {
417
+ "kind": "shape",
418
+ "x": 337.3333333333333,
419
+ "y": 121.33333333333333,
420
+ "width": 22.666666666666668,
421
+ "height": 22.666666666666668,
422
+ "shape": "rect",
423
+ "fill": "E6FF3D"
424
+ },
425
+ {
426
+ "kind": "shape",
427
+ "x": 360,
428
+ "y": 121.33333333333333,
429
+ "width": 22.666666666666668,
430
+ "height": 22.666666666666668,
431
+ "shape": "rect",
432
+ "fill": "0A0A0A"
433
+ },
434
+ {
435
+ "kind": "shape",
436
+ "x": 382.6666666666667,
437
+ "y": 121.33333333333333,
438
+ "width": 22.666666666666668,
439
+ "height": 22.666666666666668,
440
+ "shape": "rect",
441
+ "fill": "E6FF3D"
442
+ },
443
+ {
444
+ "kind": "shape",
445
+ "x": 405.3333333333333,
446
+ "y": 121.33333333333333,
447
+ "width": 22.666666666666668,
448
+ "height": 22.666666666666668,
449
+ "shape": "rect",
450
+ "fill": "0A0A0A"
451
+ },
452
+ {
453
+ "kind": "title",
454
+ "x": 338.6666666666667,
455
+ "y": 401.3333333333333,
456
+ "width": 562.6666666666666,
457
+ "height": 221.33333333333334,
458
+ "textRole": "title",
459
+ "fontSize": 42,
460
+ "textCapacity": 30
461
+ },
462
+ {
463
+ "kind": "text",
464
+ "x": 953.3333333333334,
465
+ "y": 526.6666666666666,
466
+ "width": 264,
467
+ "height": 85.33333333333333,
468
+ "textRole": "body",
469
+ "fontSize": 13,
470
+ "textCapacity": 60
471
+ },
472
+ {
473
+ "kind": "text",
474
+ "x": 64,
475
+ "y": 674.6666666666666,
476
+ "width": 1013.3333333333334,
477
+ "height": 21.333333333333332,
478
+ "textRole": "body",
479
+ "fontSize": 9,
480
+ "textCapacity": 84
481
+ },
482
+ {
483
+ "kind": "text",
484
+ "x": 1160,
485
+ "y": 670.6666666666666,
486
+ "width": 53.333333333333336,
487
+ "height": 26.666666666666668,
488
+ "textRole": "body",
489
+ "fontSize": 11,
490
+ "textCapacity": 3
491
+ }
492
+ ],
493
+ "jsxReference": ""
494
+ },
495
+ {
496
+ "slideNumber": 2,
497
+ "sourceTitle": "Find the next repeatable growth loop",
498
+ "family": "insights",
499
+ "titlePosition": "left",
500
+ "bodyColumns": 2,
501
+ "density": "medium",
502
+ "features": [
503
+ "thesis"
504
+ ],
505
+ "recommendedRoles": [
506
+ "insights"
507
+ ],
508
+ "structureSummary": "Asymmetric argument with three supporting evidence rows",
509
+ "zones": [
510
+ {
511
+ "kind": "shape",
512
+ "x": 1157.3333333333333,
513
+ "y": 32,
514
+ "width": 13.333333333333334,
515
+ "height": 13.333333333333334,
516
+ "shape": "rect",
517
+ "fill": "E6FF3D"
518
+ },
519
+ {
520
+ "kind": "shape",
521
+ "x": 1184,
522
+ "y": 32,
523
+ "width": 13.333333333333334,
524
+ "height": 13.333333333333334,
525
+ "shape": "rect",
526
+ "fill": "E6FF3D"
527
+ },
528
+ {
529
+ "kind": "shape",
530
+ "x": 1170.6666666666667,
531
+ "y": 45.333333333333336,
532
+ "width": 13.333333333333334,
533
+ "height": 13.333333333333334,
534
+ "shape": "rect",
535
+ "fill": "E6FF3D"
536
+ },
537
+ {
538
+ "kind": "shape",
539
+ "x": 1157.3333333333333,
540
+ "y": 58.666666666666664,
541
+ "width": 13.333333333333334,
542
+ "height": 13.333333333333334,
543
+ "shape": "rect",
544
+ "fill": "E6FF3D"
545
+ },
546
+ {
547
+ "kind": "shape",
548
+ "x": 1184,
549
+ "y": 58.666666666666664,
550
+ "width": 13.333333333333334,
551
+ "height": 13.333333333333334,
552
+ "shape": "rect",
553
+ "fill": "E6FF3D"
554
+ },
555
+ {
556
+ "kind": "text",
557
+ "x": 64,
558
+ "y": 36,
559
+ "width": 886.6666666666666,
560
+ "height": 26.666666666666668,
561
+ "textRole": "body",
562
+ "fontSize": 10,
563
+ "textCapacity": 66
564
+ },
565
+ {
566
+ "kind": "title",
567
+ "x": 64,
568
+ "y": 101.33333333333333,
569
+ "width": 1152,
570
+ "height": 85.33333333333333,
571
+ "textRole": "title",
572
+ "fontSize": 32,
573
+ "textCapacity": 27
574
+ },
575
+ {
576
+ "kind": "text",
577
+ "x": 1005.3333333333334,
578
+ "y": 61.333333333333336,
579
+ "width": 210.66666666666666,
580
+ "height": 17.333333333333332,
581
+ "textRole": "body",
582
+ "fontSize": 9,
583
+ "textCapacity": 17
584
+ },
585
+ {
586
+ "kind": "text",
587
+ "x": 64,
588
+ "y": 218.66666666666666,
589
+ "width": 464,
590
+ "height": 33.333333333333336,
591
+ "textRole": "body",
592
+ "fontSize": 13,
593
+ "textCapacity": 26
594
+ },
595
+ {
596
+ "kind": "title",
597
+ "x": 64,
598
+ "y": 276,
599
+ "width": 442.6666666666667,
600
+ "height": 236,
601
+ "textRole": "title",
602
+ "fontSize": 30,
603
+ "textCapacity": 55
604
+ },
605
+ {
606
+ "kind": "text",
607
+ "x": 64,
608
+ "y": 560,
609
+ "width": 440,
610
+ "height": 57.333333333333336,
611
+ "textRole": "body",
612
+ "fontSize": 17,
613
+ "textCapacity": 38
614
+ },
615
+ {
616
+ "kind": "text",
617
+ "x": 588,
618
+ "y": 222.66666666666666,
619
+ "width": 66.66666666666667,
620
+ "height": 50.666666666666664,
621
+ "textRole": "body",
622
+ "fontSize": 26,
623
+ "textCapacity": 1
624
+ },
625
+ {
626
+ "kind": "text",
627
+ "x": 685.3333333333334,
628
+ "y": 226.66666666666666,
629
+ "width": 332,
630
+ "height": 42.666666666666664,
631
+ "textRole": "body",
632
+ "fontSize": 23,
633
+ "textCapacity": 10
634
+ },
635
+ {
636
+ "kind": "text",
637
+ "x": 1040,
638
+ "y": 234.66666666666666,
639
+ "width": 176,
640
+ "height": 32,
641
+ "textRole": "body",
642
+ "fontSize": 10,
643
+ "textCapacity": 26
644
+ },
645
+ {
646
+ "kind": "text",
647
+ "x": 685.3333333333334,
648
+ "y": 281.3333333333333,
649
+ "width": 530.6666666666666,
650
+ "height": 62.666666666666664,
651
+ "textRole": "body",
652
+ "fontSize": 18,
653
+ "textCapacity": 44
654
+ },
655
+ {
656
+ "kind": "text",
657
+ "x": 588,
658
+ "y": 348,
659
+ "width": 66.66666666666667,
660
+ "height": 50.666666666666664,
661
+ "textRole": "body",
662
+ "fontSize": 26,
663
+ "textCapacity": 1
664
+ },
665
+ {
666
+ "kind": "text",
667
+ "x": 685.3333333333334,
668
+ "y": 352,
669
+ "width": 332,
670
+ "height": 42.666666666666664,
671
+ "textRole": "body",
672
+ "fontSize": 23,
673
+ "textCapacity": 10
674
+ },
675
+ {
676
+ "kind": "text",
677
+ "x": 1040,
678
+ "y": 360,
679
+ "width": 176,
680
+ "height": 32,
681
+ "textRole": "body",
682
+ "fontSize": 10,
683
+ "textCapacity": 26
684
+ },
685
+ {
686
+ "kind": "text",
687
+ "x": 685.3333333333334,
688
+ "y": 406.6666666666667,
689
+ "width": 530.6666666666666,
690
+ "height": 62.666666666666664,
691
+ "textRole": "body",
692
+ "fontSize": 18,
693
+ "textCapacity": 44
694
+ },
695
+ {
696
+ "kind": "text",
697
+ "x": 588,
698
+ "y": 473.3333333333333,
699
+ "width": 66.66666666666667,
700
+ "height": 50.666666666666664,
701
+ "textRole": "body",
702
+ "fontSize": 26,
703
+ "textCapacity": 1
704
+ },
705
+ {
706
+ "kind": "text",
707
+ "x": 685.3333333333334,
708
+ "y": 477.3333333333333,
709
+ "width": 332,
710
+ "height": 42.666666666666664,
711
+ "textRole": "body",
712
+ "fontSize": 23,
713
+ "textCapacity": 10
714
+ },
715
+ {
716
+ "kind": "text",
717
+ "x": 1040,
718
+ "y": 485.3333333333333,
719
+ "width": 176,
720
+ "height": 32,
721
+ "textRole": "body",
722
+ "fontSize": 10,
723
+ "textCapacity": 26
724
+ },
725
+ {
726
+ "kind": "text",
727
+ "x": 685.3333333333334,
728
+ "y": 532,
729
+ "width": 530.6666666666666,
730
+ "height": 62.666666666666664,
731
+ "textRole": "body",
732
+ "fontSize": 18,
733
+ "textCapacity": 44
734
+ },
735
+ {
736
+ "kind": "text",
737
+ "x": 64,
738
+ "y": 676,
739
+ "width": 1044,
740
+ "height": 21.333333333333332,
741
+ "textRole": "body",
742
+ "fontSize": 9,
743
+ "textCapacity": 87
744
+ },
745
+ {
746
+ "kind": "text",
747
+ "x": 1161.3333333333333,
748
+ "y": 672,
749
+ "width": 54.666666666666664,
750
+ "height": 29.333333333333332,
751
+ "textRole": "body",
752
+ "fontSize": 11,
753
+ "textCapacity": 3
754
+ }
755
+ ],
756
+ "jsxReference": ""
757
+ },
758
+ {
759
+ "slideNumber": 3,
760
+ "sourceTitle": "Follow one cohort through the funnel",
761
+ "family": "data",
762
+ "titlePosition": "left",
763
+ "bodyColumns": 2,
764
+ "density": "high",
765
+ "features": [
766
+ "funnel"
767
+ ],
768
+ "recommendedRoles": [
769
+ "data"
770
+ ],
771
+ "structureSummary": "A single cohort with explicit conversion counts and an overall rate",
772
+ "zones": [
773
+ {
774
+ "kind": "shape",
775
+ "x": 1157.3333333333333,
776
+ "y": 32,
777
+ "width": 13.333333333333334,
778
+ "height": 13.333333333333334,
779
+ "shape": "rect",
780
+ "fill": "E6FF3D"
781
+ },
782
+ {
783
+ "kind": "shape",
784
+ "x": 1184,
785
+ "y": 32,
786
+ "width": 13.333333333333334,
787
+ "height": 13.333333333333334,
788
+ "shape": "rect",
789
+ "fill": "E6FF3D"
790
+ },
791
+ {
792
+ "kind": "shape",
793
+ "x": 1170.6666666666667,
794
+ "y": 45.333333333333336,
795
+ "width": 13.333333333333334,
796
+ "height": 13.333333333333334,
797
+ "shape": "rect",
798
+ "fill": "E6FF3D"
799
+ },
800
+ {
801
+ "kind": "shape",
802
+ "x": 1157.3333333333333,
803
+ "y": 58.666666666666664,
804
+ "width": 13.333333333333334,
805
+ "height": 13.333333333333334,
806
+ "shape": "rect",
807
+ "fill": "E6FF3D"
808
+ },
809
+ {
810
+ "kind": "shape",
811
+ "x": 1184,
812
+ "y": 58.666666666666664,
813
+ "width": 13.333333333333334,
814
+ "height": 13.333333333333334,
815
+ "shape": "rect",
816
+ "fill": "E6FF3D"
817
+ },
818
+ {
819
+ "kind": "text",
820
+ "x": 64,
821
+ "y": 36,
822
+ "width": 886.6666666666666,
823
+ "height": 26.666666666666668,
824
+ "textRole": "body",
825
+ "fontSize": 10,
826
+ "textCapacity": 66
827
+ },
828
+ {
829
+ "kind": "title",
830
+ "x": 64,
831
+ "y": 101.33333333333333,
832
+ "width": 1152,
833
+ "height": 85.33333333333333,
834
+ "textRole": "title",
835
+ "fontSize": 32,
836
+ "textCapacity": 27
837
+ },
838
+ {
839
+ "kind": "text",
840
+ "x": 1005.3333333333334,
841
+ "y": 61.333333333333336,
842
+ "width": 210.66666666666666,
843
+ "height": 17.333333333333332,
844
+ "textRole": "body",
845
+ "fontSize": 9,
846
+ "textCapacity": 17
847
+ },
848
+ {
849
+ "kind": "text",
850
+ "x": 64,
851
+ "y": 202.66666666666666,
852
+ "width": 1133.3333333333333,
853
+ "height": 33.333333333333336,
854
+ "textRole": "body",
855
+ "fontSize": 13,
856
+ "textCapacity": 65
857
+ },
858
+ {
859
+ "kind": "shape",
860
+ "x": 64,
861
+ "y": 241.33333333333334,
862
+ "width": 201.33333333333334,
863
+ "height": 380,
864
+ "shape": "rect",
865
+ "fill": "ECECE8"
866
+ },
867
+ {
868
+ "kind": "title",
869
+ "x": 80,
870
+ "y": 262.6666666666667,
871
+ "width": 170.66666666666666,
872
+ "height": 74.66666666666667,
873
+ "textRole": "title",
874
+ "fontSize": 36,
875
+ "textCapacity": 3
876
+ },
877
+ {
878
+ "kind": "text",
879
+ "x": 74.66666666666667,
880
+ "y": 534.6666666666666,
881
+ "width": 180,
882
+ "height": 72,
883
+ "textRole": "body",
884
+ "fontSize": 15,
885
+ "textCapacity": 27
886
+ },
887
+ {
888
+ "kind": "shape",
889
+ "x": 288,
890
+ "y": 305.3333333333333,
891
+ "width": 201.33333333333334,
892
+ "height": 316,
893
+ "shape": "rect",
894
+ "fill": "ECECE8"
895
+ },
896
+ {
897
+ "kind": "title",
898
+ "x": 304,
899
+ "y": 326.6666666666667,
900
+ "width": 170.66666666666666,
901
+ "height": 74.66666666666667,
902
+ "textRole": "title",
903
+ "fontSize": 36,
904
+ "textCapacity": 3
905
+ },
906
+ {
907
+ "kind": "text",
908
+ "x": 298.6666666666667,
909
+ "y": 534.6666666666666,
910
+ "width": 180,
911
+ "height": 72,
912
+ "textRole": "body",
913
+ "fontSize": 15,
914
+ "textCapacity": 27
915
+ },
916
+ {
917
+ "kind": "shape",
918
+ "x": 512,
919
+ "y": 369.3333333333333,
920
+ "width": 201.33333333333334,
921
+ "height": 252,
922
+ "shape": "rect",
923
+ "fill": "E6FF3D"
924
+ },
925
+ {
926
+ "kind": "title",
927
+ "x": 528,
928
+ "y": 390.6666666666667,
929
+ "width": 170.66666666666666,
930
+ "height": 74.66666666666667,
931
+ "textRole": "title",
932
+ "fontSize": 36,
933
+ "textCapacity": 3
934
+ },
935
+ {
936
+ "kind": "text",
937
+ "x": 522.6666666666666,
938
+ "y": 534.6666666666666,
939
+ "width": 180,
940
+ "height": 72,
941
+ "textRole": "body",
942
+ "fontSize": 15,
943
+ "textCapacity": 27
944
+ },
945
+ {
946
+ "kind": "shape",
947
+ "x": 736,
948
+ "y": 433.3333333333333,
949
+ "width": 201.33333333333334,
950
+ "height": 188,
951
+ "shape": "rect",
952
+ "fill": "ECECE8"
953
+ },
954
+ {
955
+ "kind": "title",
956
+ "x": 752,
957
+ "y": 454.6666666666667,
958
+ "width": 170.66666666666666,
959
+ "height": 74.66666666666667,
960
+ "textRole": "title",
961
+ "fontSize": 36,
962
+ "textCapacity": 3
963
+ },
964
+ {
965
+ "kind": "text",
966
+ "x": 746.6666666666666,
967
+ "y": 534.6666666666666,
968
+ "width": 180,
969
+ "height": 72,
970
+ "textRole": "body",
971
+ "fontSize": 15,
972
+ "textCapacity": 27
973
+ },
974
+ {
975
+ "kind": "title",
976
+ "x": 1026.6666666666667,
977
+ "y": 261.3333333333333,
978
+ "width": 192,
979
+ "height": 92,
980
+ "textRole": "title",
981
+ "fontSize": 33,
982
+ "textCapacity": 4
983
+ },
984
+ {
985
+ "kind": "text",
986
+ "x": 1026.6666666666667,
987
+ "y": 389.3333333333333,
988
+ "width": 189.33333333333334,
989
+ "height": 102.66666666666667,
990
+ "textRole": "body",
991
+ "fontSize": 20,
992
+ "textCapacity": 21
993
+ },
994
+ {
995
+ "kind": "text",
996
+ "x": 1026.6666666666667,
997
+ "y": 540,
998
+ "width": 189.33333333333334,
999
+ "height": 33.333333333333336,
1000
+ "textRole": "body",
1001
+ "fontSize": 13,
1002
+ "textCapacity": 10
1003
+ },
1004
+ {
1005
+ "kind": "text",
1006
+ "x": 64,
1007
+ "y": 633.3333333333334,
1008
+ "width": 1152,
1009
+ "height": 33.333333333333336,
1010
+ "textRole": "body",
1011
+ "fontSize": 13,
1012
+ "textCapacity": 66
1013
+ },
1014
+ {
1015
+ "kind": "text",
1016
+ "x": 64,
1017
+ "y": 676,
1018
+ "width": 1044,
1019
+ "height": 21.333333333333332,
1020
+ "textRole": "body",
1021
+ "fontSize": 9,
1022
+ "textCapacity": 87
1023
+ },
1024
+ {
1025
+ "kind": "text",
1026
+ "x": 1161.3333333333333,
1027
+ "y": 672,
1028
+ "width": 54.666666666666664,
1029
+ "height": 29.333333333333332,
1030
+ "textRole": "body",
1031
+ "fontSize": 11,
1032
+ "textCapacity": 3
1033
+ }
1034
+ ],
1035
+ "jsxReference": ""
1036
+ },
1037
+ {
1038
+ "slideNumber": 4,
1039
+ "sourceTitle": "Read the trend and investigate the pause",
1040
+ "family": "data",
1041
+ "titlePosition": "left",
1042
+ "bodyColumns": 2,
1043
+ "density": "high",
1044
+ "features": [
1045
+ "trend"
1046
+ ],
1047
+ "recommendedRoles": [
1048
+ "data"
1049
+ ],
1050
+ "structureSummary": "Labeled six-point trend with common scale and a separate interpretation",
1051
+ "zones": [
1052
+ {
1053
+ "kind": "shape",
1054
+ "x": 1157.3333333333333,
1055
+ "y": 32,
1056
+ "width": 13.333333333333334,
1057
+ "height": 13.333333333333334,
1058
+ "shape": "rect",
1059
+ "fill": "E6FF3D"
1060
+ },
1061
+ {
1062
+ "kind": "shape",
1063
+ "x": 1184,
1064
+ "y": 32,
1065
+ "width": 13.333333333333334,
1066
+ "height": 13.333333333333334,
1067
+ "shape": "rect",
1068
+ "fill": "E6FF3D"
1069
+ },
1070
+ {
1071
+ "kind": "shape",
1072
+ "x": 1170.6666666666667,
1073
+ "y": 45.333333333333336,
1074
+ "width": 13.333333333333334,
1075
+ "height": 13.333333333333334,
1076
+ "shape": "rect",
1077
+ "fill": "E6FF3D"
1078
+ },
1079
+ {
1080
+ "kind": "shape",
1081
+ "x": 1157.3333333333333,
1082
+ "y": 58.666666666666664,
1083
+ "width": 13.333333333333334,
1084
+ "height": 13.333333333333334,
1085
+ "shape": "rect",
1086
+ "fill": "E6FF3D"
1087
+ },
1088
+ {
1089
+ "kind": "shape",
1090
+ "x": 1184,
1091
+ "y": 58.666666666666664,
1092
+ "width": 13.333333333333334,
1093
+ "height": 13.333333333333334,
1094
+ "shape": "rect",
1095
+ "fill": "E6FF3D"
1096
+ },
1097
+ {
1098
+ "kind": "text",
1099
+ "x": 64,
1100
+ "y": 36,
1101
+ "width": 886.6666666666666,
1102
+ "height": 26.666666666666668,
1103
+ "textRole": "body",
1104
+ "fontSize": 10,
1105
+ "textCapacity": 66
1106
+ },
1107
+ {
1108
+ "kind": "title",
1109
+ "x": 64,
1110
+ "y": 101.33333333333333,
1111
+ "width": 1152,
1112
+ "height": 85.33333333333333,
1113
+ "textRole": "title",
1114
+ "fontSize": 32,
1115
+ "textCapacity": 27
1116
+ },
1117
+ {
1118
+ "kind": "text",
1119
+ "x": 1005.3333333333334,
1120
+ "y": 61.333333333333336,
1121
+ "width": 210.66666666666666,
1122
+ "height": 17.333333333333332,
1123
+ "textRole": "body",
1124
+ "fontSize": 9,
1125
+ "textCapacity": 17
1126
+ },
1127
+ {
1128
+ "kind": "text",
1129
+ "x": 64,
1130
+ "y": 202.66666666666666,
1131
+ "width": 1133.3333333333333,
1132
+ "height": 33.333333333333336,
1133
+ "textRole": "body",
1134
+ "fontSize": 13,
1135
+ "textCapacity": 65
1136
+ },
1137
+ {
1138
+ "kind": "shape",
1139
+ "x": 437.3333333333333,
1140
+ "y": 253.33333333333334,
1141
+ "width": 121.33333333333333,
1142
+ "height": 314.6666666666667,
1143
+ "shape": "rect",
1144
+ "fill": "2a2d15"
1145
+ },
1146
+ {
1147
+ "kind": "text",
1148
+ "x": 64,
1149
+ "y": 554.6666666666666,
1150
+ "width": 40,
1151
+ "height": 29.333333333333332,
1152
+ "textRole": "body",
1153
+ "fontSize": 11,
1154
+ "textCapacity": 2
1155
+ },
1156
+ {
1157
+ "kind": "text",
1158
+ "x": 64,
1159
+ "y": 480,
1160
+ "width": 40,
1161
+ "height": 29.333333333333332,
1162
+ "textRole": "body",
1163
+ "fontSize": 11,
1164
+ "textCapacity": 2
1165
+ },
1166
+ {
1167
+ "kind": "text",
1168
+ "x": 64,
1169
+ "y": 405.3333333333333,
1170
+ "width": 40,
1171
+ "height": 29.333333333333332,
1172
+ "textRole": "body",
1173
+ "fontSize": 11,
1174
+ "textCapacity": 2
1175
+ },
1176
+ {
1177
+ "kind": "text",
1178
+ "x": 64,
1179
+ "y": 330.6666666666667,
1180
+ "width": 40,
1181
+ "height": 29.333333333333332,
1182
+ "textRole": "body",
1183
+ "fontSize": 11,
1184
+ "textCapacity": 2
1185
+ },
1186
+ {
1187
+ "kind": "text",
1188
+ "x": 64,
1189
+ "y": 256,
1190
+ "width": 40,
1191
+ "height": 29.333333333333332,
1192
+ "textRole": "body",
1193
+ "fontSize": 11,
1194
+ "textCapacity": 2
1195
+ },
1196
+ {
1197
+ "kind": "shape",
1198
+ "x": 134.4,
1199
+ "y": 377.06666666666666,
1200
+ "width": 8.533333333333333,
1201
+ "height": 8.533333333333333,
1202
+ "shape": "ellipse",
1203
+ "fill": "F5F4EF"
1204
+ },
1205
+ {
1206
+ "kind": "text",
1207
+ "x": 108,
1208
+ "y": 341.3333333333333,
1209
+ "width": 62.666666666666664,
1210
+ "height": 33.333333333333336,
1211
+ "textRole": "body",
1212
+ "fontSize": 15,
1213
+ "textCapacity": 3
1214
+ },
1215
+ {
1216
+ "kind": "text",
1217
+ "x": 117.33333333333333,
1218
+ "y": 582.6666666666666,
1219
+ "width": 49.333333333333336,
1220
+ "height": 32,
1221
+ "textRole": "body",
1222
+ "fontSize": 12,
1223
+ "textCapacity": 3
1224
+ },
1225
+ {
1226
+ "kind": "shape",
1227
+ "x": 265.06666666666666,
1228
+ "y": 362.13333333333327,
1229
+ "width": 8.533333333333333,
1230
+ "height": 8.533333333333333,
1231
+ "shape": "ellipse",
1232
+ "fill": "F5F4EF"
1233
+ },
1234
+ {
1235
+ "kind": "text",
1236
+ "x": 238.66666666666666,
1237
+ "y": 326.3999999999999,
1238
+ "width": 62.666666666666664,
1239
+ "height": 33.333333333333336,
1240
+ "textRole": "body",
1241
+ "fontSize": 15,
1242
+ "textCapacity": 3
1243
+ },
1244
+ {
1245
+ "kind": "text",
1246
+ "x": 248,
1247
+ "y": 582.6666666666666,
1248
+ "width": 49.333333333333336,
1249
+ "height": 32,
1250
+ "textRole": "body",
1251
+ "fontSize": 12,
1252
+ "textCapacity": 3
1253
+ },
1254
+ {
1255
+ "kind": "shape",
1256
+ "x": 395.73333333333335,
1257
+ "y": 350.93333333333334,
1258
+ "width": 8.533333333333333,
1259
+ "height": 8.533333333333333,
1260
+ "shape": "ellipse",
1261
+ "fill": "F5F4EF"
1262
+ },
1263
+ {
1264
+ "kind": "text",
1265
+ "x": 369.3333333333333,
1266
+ "y": 315.2,
1267
+ "width": 62.666666666666664,
1268
+ "height": 33.333333333333336,
1269
+ "textRole": "body",
1270
+ "fontSize": 15,
1271
+ "textCapacity": 3
1272
+ },
1273
+ {
1274
+ "kind": "text",
1275
+ "x": 378.6666666666667,
1276
+ "y": 582.6666666666666,
1277
+ "width": 49.333333333333336,
1278
+ "height": 32,
1279
+ "textRole": "body",
1280
+ "fontSize": 12,
1281
+ "textCapacity": 3
1282
+ },
1283
+ {
1284
+ "kind": "shape",
1285
+ "x": 524,
1286
+ "y": 352.2666666666667,
1287
+ "width": 13.333333333333334,
1288
+ "height": 13.333333333333334,
1289
+ "shape": "ellipse",
1290
+ "fill": "E6FF3D"
1291
+ },
1292
+ {
1293
+ "kind": "text",
1294
+ "x": 500,
1295
+ "y": 318.9333333333334,
1296
+ "width": 62.666666666666664,
1297
+ "height": 33.333333333333336,
1298
+ "textRole": "body",
1299
+ "fontSize": 15,
1300
+ "textCapacity": 3
1301
+ },
1302
+ {
1303
+ "kind": "text",
1304
+ "x": 509.3333333333333,
1305
+ "y": 582.6666666666666,
1306
+ "width": 49.333333333333336,
1307
+ "height": 32,
1308
+ "textRole": "body",
1309
+ "fontSize": 12,
1310
+ "textCapacity": 3
1311
+ },
1312
+ {
1313
+ "kind": "shape",
1314
+ "x": 657.0666666666667,
1315
+ "y": 324.8,
1316
+ "width": 8.533333333333333,
1317
+ "height": 8.533333333333333,
1318
+ "shape": "ellipse",
1319
+ "fill": "F5F4EF"
1320
+ },
1321
+ {
1322
+ "kind": "text",
1323
+ "x": 630.6666666666666,
1324
+ "y": 289.06666666666666,
1325
+ "width": 62.666666666666664,
1326
+ "height": 33.333333333333336,
1327
+ "textRole": "body",
1328
+ "fontSize": 15,
1329
+ "textCapacity": 3
1330
+ },
1331
+ {
1332
+ "kind": "text",
1333
+ "x": 640,
1334
+ "y": 582.6666666666666,
1335
+ "width": 49.333333333333336,
1336
+ "height": 32,
1337
+ "textRole": "body",
1338
+ "fontSize": 12,
1339
+ "textCapacity": 3
1340
+ },
1341
+ {
1342
+ "kind": "shape",
1343
+ "x": 787.7333333333332,
1344
+ "y": 298.6666666666667,
1345
+ "width": 8.533333333333333,
1346
+ "height": 8.533333333333333,
1347
+ "shape": "ellipse",
1348
+ "fill": "F5F4EF"
1349
+ },
1350
+ {
1351
+ "kind": "text",
1352
+ "x": 761.3333333333334,
1353
+ "y": 262.93333333333334,
1354
+ "width": 62.666666666666664,
1355
+ "height": 33.333333333333336,
1356
+ "textRole": "body",
1357
+ "fontSize": 15,
1358
+ "textCapacity": 3
1359
+ },
1360
+ {
1361
+ "kind": "text",
1362
+ "x": 770.6666666666666,
1363
+ "y": 582.6666666666666,
1364
+ "width": 49.333333333333336,
1365
+ "height": 32,
1366
+ "textRole": "body",
1367
+ "fontSize": 12,
1368
+ "textCapacity": 3
1369
+ },
1370
+ {
1371
+ "kind": "text",
1372
+ "x": 365.3333333333333,
1373
+ "y": 248,
1374
+ "width": 206.66666666666666,
1375
+ "height": 33.333333333333336,
1376
+ "textRole": "body",
1377
+ "fontSize": 13,
1378
+ "textCapacity": 11
1379
+ },
1380
+ {
1381
+ "kind": "text",
1382
+ "x": 905.3333333333334,
1383
+ "y": 217.33333333333334,
1384
+ "width": 310.6666666666667,
1385
+ "height": 33.333333333333336,
1386
+ "textRole": "body",
1387
+ "fontSize": 13,
1388
+ "textCapacity": 17
1389
+ },
1390
+ {
1391
+ "kind": "title",
1392
+ "x": 905.3333333333334,
1393
+ "y": 269.3333333333333,
1394
+ "width": 310.6666666666667,
1395
+ "height": 104,
1396
+ "textRole": "title",
1397
+ "fontSize": 56,
1398
+ "textCapacity": 4
1399
+ },
1400
+ {
1401
+ "kind": "text",
1402
+ "x": 905.3333333333334,
1403
+ "y": 381.3333333333333,
1404
+ "width": 305.3333333333333,
1405
+ "height": 73.33333333333333,
1406
+ "textRole": "body",
1407
+ "fontSize": 18,
1408
+ "textCapacity": 24
1409
+ },
1410
+ {
1411
+ "kind": "text",
1412
+ "x": 905.3333333333334,
1413
+ "y": 492,
1414
+ "width": 305.3333333333333,
1415
+ "height": 29.333333333333332,
1416
+ "textRole": "body",
1417
+ "fontSize": 10,
1418
+ "textCapacity": 44
1419
+ },
1420
+ {
1421
+ "kind": "text",
1422
+ "x": 905.3333333333334,
1423
+ "y": 538.6666666666666,
1424
+ "width": 305.3333333333333,
1425
+ "height": 66.66666666666667,
1426
+ "textRole": "body",
1427
+ "fontSize": 20,
1428
+ "textCapacity": 22
1429
+ },
1430
+ {
1431
+ "kind": "text",
1432
+ "x": 64,
1433
+ "y": 633.3333333333334,
1434
+ "width": 1152,
1435
+ "height": 33.333333333333336,
1436
+ "textRole": "body",
1437
+ "fontSize": 13,
1438
+ "textCapacity": 66
1439
+ },
1440
+ {
1441
+ "kind": "text",
1442
+ "x": 64,
1443
+ "y": 676,
1444
+ "width": 1044,
1445
+ "height": 21.333333333333332,
1446
+ "textRole": "body",
1447
+ "fontSize": 9,
1448
+ "textCapacity": 87
1449
+ },
1450
+ {
1451
+ "kind": "text",
1452
+ "x": 1161.3333333333333,
1453
+ "y": 672,
1454
+ "width": 54.666666666666664,
1455
+ "height": 29.333333333333332,
1456
+ "textRole": "body",
1457
+ "fontSize": 11,
1458
+ "textCapacity": 3
1459
+ }
1460
+ ],
1461
+ "jsxReference": ""
1462
+ },
1463
+ {
1464
+ "slideNumber": 5,
1465
+ "sourceTitle": "Trace the question to testable branches",
1466
+ "family": "process",
1467
+ "titlePosition": "left",
1468
+ "bodyColumns": 3,
1469
+ "density": "high",
1470
+ "features": [
1471
+ "tree"
1472
+ ],
1473
+ "recommendedRoles": [
1474
+ "process"
1475
+ ],
1476
+ "structureSummary": "Three-branch hypothesis tree with six testable leaves",
1477
+ "zones": [
1478
+ {
1479
+ "kind": "shape",
1480
+ "x": 1157.3333333333333,
1481
+ "y": 32,
1482
+ "width": 13.333333333333334,
1483
+ "height": 13.333333333333334,
1484
+ "shape": "rect",
1485
+ "fill": "E6FF3D"
1486
+ },
1487
+ {
1488
+ "kind": "shape",
1489
+ "x": 1184,
1490
+ "y": 32,
1491
+ "width": 13.333333333333334,
1492
+ "height": 13.333333333333334,
1493
+ "shape": "rect",
1494
+ "fill": "E6FF3D"
1495
+ },
1496
+ {
1497
+ "kind": "shape",
1498
+ "x": 1170.6666666666667,
1499
+ "y": 45.333333333333336,
1500
+ "width": 13.333333333333334,
1501
+ "height": 13.333333333333334,
1502
+ "shape": "rect",
1503
+ "fill": "E6FF3D"
1504
+ },
1505
+ {
1506
+ "kind": "shape",
1507
+ "x": 1157.3333333333333,
1508
+ "y": 58.666666666666664,
1509
+ "width": 13.333333333333334,
1510
+ "height": 13.333333333333334,
1511
+ "shape": "rect",
1512
+ "fill": "E6FF3D"
1513
+ },
1514
+ {
1515
+ "kind": "shape",
1516
+ "x": 1184,
1517
+ "y": 58.666666666666664,
1518
+ "width": 13.333333333333334,
1519
+ "height": 13.333333333333334,
1520
+ "shape": "rect",
1521
+ "fill": "E6FF3D"
1522
+ },
1523
+ {
1524
+ "kind": "text",
1525
+ "x": 64,
1526
+ "y": 36,
1527
+ "width": 886.6666666666666,
1528
+ "height": 26.666666666666668,
1529
+ "textRole": "body",
1530
+ "fontSize": 10,
1531
+ "textCapacity": 66
1532
+ },
1533
+ {
1534
+ "kind": "title",
1535
+ "x": 64,
1536
+ "y": 101.33333333333333,
1537
+ "width": 1152,
1538
+ "height": 85.33333333333333,
1539
+ "textRole": "title",
1540
+ "fontSize": 32,
1541
+ "textCapacity": 27
1542
+ },
1543
+ {
1544
+ "kind": "text",
1545
+ "x": 1005.3333333333334,
1546
+ "y": 61.333333333333336,
1547
+ "width": 210.66666666666666,
1548
+ "height": 17.333333333333332,
1549
+ "textRole": "body",
1550
+ "fontSize": 9,
1551
+ "textCapacity": 17
1552
+ },
1553
+ {
1554
+ "kind": "text",
1555
+ "x": 64,
1556
+ "y": 202.66666666666666,
1557
+ "width": 1133.3333333333333,
1558
+ "height": 33.333333333333336,
1559
+ "textRole": "body",
1560
+ "fontSize": 13,
1561
+ "textCapacity": 65
1562
+ },
1563
+ {
1564
+ "kind": "shape",
1565
+ "x": 64,
1566
+ "y": 362.6666666666667,
1567
+ "width": 292,
1568
+ "height": 140,
1569
+ "shape": "rect",
1570
+ "fill": "E6FF3D"
1571
+ },
1572
+ {
1573
+ "kind": "text",
1574
+ "x": 80,
1575
+ "y": 380,
1576
+ "width": 260,
1577
+ "height": 114.66666666666667,
1578
+ "textRole": "body",
1579
+ "fontSize": 18,
1580
+ "textCapacity": 40
1581
+ },
1582
+ {
1583
+ "kind": "shape",
1584
+ "x": 466.6666666666667,
1585
+ "y": 245.33333333333334,
1586
+ "width": 226.66666666666666,
1587
+ "height": 77.33333333333333,
1588
+ "shape": "rect",
1589
+ "fill": "ECECE8"
1590
+ },
1591
+ {
1592
+ "kind": "text",
1593
+ "x": 482.6666666666667,
1594
+ "y": 262.6666666666667,
1595
+ "width": 194.66666666666666,
1596
+ "height": 52,
1597
+ "textRole": "body",
1598
+ "fontSize": 18,
1599
+ "textCapacity": 8
1600
+ },
1601
+ {
1602
+ "kind": "text",
1603
+ "x": 810.6666666666666,
1604
+ "y": 236,
1605
+ "width": 398.6666666666667,
1606
+ "height": 45.333333333333336,
1607
+ "textRole": "body",
1608
+ "fontSize": 18,
1609
+ "textCapacity": 16
1610
+ },
1611
+ {
1612
+ "kind": "text",
1613
+ "x": 810.6666666666666,
1614
+ "y": 292,
1615
+ "width": 398.6666666666667,
1616
+ "height": 45.333333333333336,
1617
+ "textRole": "body",
1618
+ "fontSize": 18,
1619
+ "textCapacity": 16
1620
+ },
1621
+ {
1622
+ "kind": "shape",
1623
+ "x": 466.6666666666667,
1624
+ "y": 376,
1625
+ "width": 226.66666666666666,
1626
+ "height": 77.33333333333333,
1627
+ "shape": "rect",
1628
+ "fill": "ECECE8"
1629
+ },
1630
+ {
1631
+ "kind": "text",
1632
+ "x": 482.6666666666667,
1633
+ "y": 393.3333333333333,
1634
+ "width": 194.66666666666666,
1635
+ "height": 52,
1636
+ "textRole": "body",
1637
+ "fontSize": 18,
1638
+ "textCapacity": 8
1639
+ },
1640
+ {
1641
+ "kind": "text",
1642
+ "x": 810.6666666666666,
1643
+ "y": 366.6666666666667,
1644
+ "width": 398.6666666666667,
1645
+ "height": 45.333333333333336,
1646
+ "textRole": "body",
1647
+ "fontSize": 18,
1648
+ "textCapacity": 16
1649
+ },
1650
+ {
1651
+ "kind": "text",
1652
+ "x": 810.6666666666666,
1653
+ "y": 422.6666666666667,
1654
+ "width": 398.6666666666667,
1655
+ "height": 45.333333333333336,
1656
+ "textRole": "body",
1657
+ "fontSize": 18,
1658
+ "textCapacity": 16
1659
+ },
1660
+ {
1661
+ "kind": "shape",
1662
+ "x": 466.6666666666667,
1663
+ "y": 506.6666666666667,
1664
+ "width": 226.66666666666666,
1665
+ "height": 77.33333333333333,
1666
+ "shape": "rect",
1667
+ "fill": "ECECE8"
1668
+ },
1669
+ {
1670
+ "kind": "text",
1671
+ "x": 482.6666666666667,
1672
+ "y": 524,
1673
+ "width": 194.66666666666666,
1674
+ "height": 52,
1675
+ "textRole": "body",
1676
+ "fontSize": 18,
1677
+ "textCapacity": 8
1678
+ },
1679
+ {
1680
+ "kind": "text",
1681
+ "x": 810.6666666666666,
1682
+ "y": 497.3333333333333,
1683
+ "width": 398.6666666666667,
1684
+ "height": 45.333333333333336,
1685
+ "textRole": "body",
1686
+ "fontSize": 18,
1687
+ "textCapacity": 16
1688
+ },
1689
+ {
1690
+ "kind": "text",
1691
+ "x": 810.6666666666666,
1692
+ "y": 553.3333333333334,
1693
+ "width": 398.6666666666667,
1694
+ "height": 45.333333333333336,
1695
+ "textRole": "body",
1696
+ "fontSize": 18,
1697
+ "textCapacity": 16
1698
+ },
1699
+ {
1700
+ "kind": "text",
1701
+ "x": 64,
1702
+ "y": 633.3333333333334,
1703
+ "width": 1152,
1704
+ "height": 33.333333333333336,
1705
+ "textRole": "body",
1706
+ "fontSize": 13,
1707
+ "textCapacity": 66
1708
+ },
1709
+ {
1710
+ "kind": "text",
1711
+ "x": 64,
1712
+ "y": 676,
1713
+ "width": 1044,
1714
+ "height": 21.333333333333332,
1715
+ "textRole": "body",
1716
+ "fontSize": 9,
1717
+ "textCapacity": 87
1718
+ },
1719
+ {
1720
+ "kind": "text",
1721
+ "x": 1161.3333333333333,
1722
+ "y": 672,
1723
+ "width": 54.666666666666664,
1724
+ "height": 29.333333333333332,
1725
+ "textRole": "body",
1726
+ "fontSize": 11,
1727
+ "textCapacity": 3
1728
+ }
1729
+ ],
1730
+ "jsxReference": ""
1731
+ },
1732
+ {
1733
+ "slideNumber": 6,
1734
+ "sourceTitle": "Choose the next move with evidence",
1735
+ "family": "comparison",
1736
+ "titlePosition": "left",
1737
+ "bodyColumns": 2,
1738
+ "density": "high",
1739
+ "features": [
1740
+ "matrix"
1741
+ ],
1742
+ "recommendedRoles": [
1743
+ "comparison"
1744
+ ],
1745
+ "structureSummary": "Two-axis decision map with direct labels and a recommended next step",
1746
+ "zones": [
1747
+ {
1748
+ "kind": "shape",
1749
+ "x": 1157.3333333333333,
1750
+ "y": 32,
1751
+ "width": 13.333333333333334,
1752
+ "height": 13.333333333333334,
1753
+ "shape": "rect",
1754
+ "fill": "E6FF3D"
1755
+ },
1756
+ {
1757
+ "kind": "shape",
1758
+ "x": 1184,
1759
+ "y": 32,
1760
+ "width": 13.333333333333334,
1761
+ "height": 13.333333333333334,
1762
+ "shape": "rect",
1763
+ "fill": "E6FF3D"
1764
+ },
1765
+ {
1766
+ "kind": "shape",
1767
+ "x": 1170.6666666666667,
1768
+ "y": 45.333333333333336,
1769
+ "width": 13.333333333333334,
1770
+ "height": 13.333333333333334,
1771
+ "shape": "rect",
1772
+ "fill": "E6FF3D"
1773
+ },
1774
+ {
1775
+ "kind": "shape",
1776
+ "x": 1157.3333333333333,
1777
+ "y": 58.666666666666664,
1778
+ "width": 13.333333333333334,
1779
+ "height": 13.333333333333334,
1780
+ "shape": "rect",
1781
+ "fill": "E6FF3D"
1782
+ },
1783
+ {
1784
+ "kind": "shape",
1785
+ "x": 1184,
1786
+ "y": 58.666666666666664,
1787
+ "width": 13.333333333333334,
1788
+ "height": 13.333333333333334,
1789
+ "shape": "rect",
1790
+ "fill": "E6FF3D"
1791
+ },
1792
+ {
1793
+ "kind": "text",
1794
+ "x": 64,
1795
+ "y": 36,
1796
+ "width": 886.6666666666666,
1797
+ "height": 26.666666666666668,
1798
+ "textRole": "body",
1799
+ "fontSize": 10,
1800
+ "textCapacity": 66
1801
+ },
1802
+ {
1803
+ "kind": "title",
1804
+ "x": 64,
1805
+ "y": 101.33333333333333,
1806
+ "width": 1152,
1807
+ "height": 85.33333333333333,
1808
+ "textRole": "title",
1809
+ "fontSize": 32,
1810
+ "textCapacity": 27
1811
+ },
1812
+ {
1813
+ "kind": "text",
1814
+ "x": 1005.3333333333334,
1815
+ "y": 61.333333333333336,
1816
+ "width": 210.66666666666666,
1817
+ "height": 17.333333333333332,
1818
+ "textRole": "body",
1819
+ "fontSize": 9,
1820
+ "textCapacity": 17
1821
+ },
1822
+ {
1823
+ "kind": "text",
1824
+ "x": 64,
1825
+ "y": 202.66666666666666,
1826
+ "width": 1133.3333333333333,
1827
+ "height": 33.333333333333336,
1828
+ "textRole": "body",
1829
+ "fontSize": 13,
1830
+ "textCapacity": 65
1831
+ },
1832
+ {
1833
+ "kind": "shape",
1834
+ "x": 118.66666666666667,
1835
+ "y": 245.33333333333334,
1836
+ "width": 662.6666666666666,
1837
+ "height": 336,
1838
+ "shape": "rect",
1839
+ "fill": "edece7"
1840
+ },
1841
+ {
1842
+ "kind": "shape",
1843
+ "x": 450.6666666666667,
1844
+ "y": 245.33333333333334,
1845
+ "width": 330.6666666666667,
1846
+ "height": 168,
1847
+ "shape": "rect",
1848
+ "fill": "f2f6cb"
1849
+ },
1850
+ {
1851
+ "kind": "text",
1852
+ "x": 137.33333333333334,
1853
+ "y": 258.6666666666667,
1854
+ "width": 285.3333333333333,
1855
+ "height": 30.666666666666668,
1856
+ "textRole": "body",
1857
+ "fontSize": 10,
1858
+ "textCapacity": 42
1859
+ },
1860
+ {
1861
+ "kind": "text",
1862
+ "x": 472,
1863
+ "y": 258.6666666666667,
1864
+ "width": 285.3333333333333,
1865
+ "height": 30.666666666666668,
1866
+ "textRole": "body",
1867
+ "fontSize": 10,
1868
+ "textCapacity": 42
1869
+ },
1870
+ {
1871
+ "kind": "text",
1872
+ "x": 137.33333333333334,
1873
+ "y": 545.3333333333334,
1874
+ "width": 285.3333333333333,
1875
+ "height": 30.666666666666668,
1876
+ "textRole": "body",
1877
+ "fontSize": 10,
1878
+ "textCapacity": 42
1879
+ },
1880
+ {
1881
+ "kind": "text",
1882
+ "x": 472,
1883
+ "y": 545.3333333333334,
1884
+ "width": 285.3333333333333,
1885
+ "height": 30.666666666666668,
1886
+ "textRole": "body",
1887
+ "fontSize": 10,
1888
+ "textCapacity": 42
1889
+ },
1890
+ {
1891
+ "kind": "shape",
1892
+ "x": 236,
1893
+ "y": 345.3333333333333,
1894
+ "width": 18.666666666666668,
1895
+ "height": 18.666666666666668,
1896
+ "shape": "ellipse",
1897
+ "fill": "848481"
1898
+ },
1899
+ {
1900
+ "kind": "text",
1901
+ "x": 269.3333333333333,
1902
+ "y": 338.6666666666667,
1903
+ "width": 50.666666666666664,
1904
+ "height": 37.333333333333336,
1905
+ "textRole": "body",
1906
+ "fontSize": 15,
1907
+ "textCapacity": 2
1908
+ },
1909
+ {
1910
+ "kind": "shape",
1911
+ "x": 557.3333333333334,
1912
+ "y": 322.6666666666667,
1913
+ "width": 34.666666666666664,
1914
+ "height": 34.666666666666664,
1915
+ "shape": "ellipse",
1916
+ "fill": "0A0A0A"
1917
+ },
1918
+ {
1919
+ "kind": "text",
1920
+ "x": 598.6666666666666,
1921
+ "y": 324,
1922
+ "width": 50.666666666666664,
1923
+ "height": 37.333333333333336,
1924
+ "textRole": "body",
1925
+ "fontSize": 15,
1926
+ "textCapacity": 2
1927
+ },
1928
+ {
1929
+ "kind": "shape",
1930
+ "x": 500,
1931
+ "y": 376,
1932
+ "width": 18.666666666666668,
1933
+ "height": 18.666666666666668,
1934
+ "shape": "ellipse",
1935
+ "fill": "848481"
1936
+ },
1937
+ {
1938
+ "kind": "text",
1939
+ "x": 533.3333333333334,
1940
+ "y": 369.3333333333333,
1941
+ "width": 50.666666666666664,
1942
+ "height": 37.333333333333336,
1943
+ "textRole": "body",
1944
+ "fontSize": 15,
1945
+ "textCapacity": 2
1946
+ },
1947
+ {
1948
+ "kind": "shape",
1949
+ "x": 293.3333333333333,
1950
+ "y": 462.6666666666667,
1951
+ "width": 18.666666666666668,
1952
+ "height": 18.666666666666668,
1953
+ "shape": "ellipse",
1954
+ "fill": "848481"
1955
+ },
1956
+ {
1957
+ "kind": "text",
1958
+ "x": 326.6666666666667,
1959
+ "y": 456,
1960
+ "width": 50.666666666666664,
1961
+ "height": 37.333333333333336,
1962
+ "textRole": "body",
1963
+ "fontSize": 15,
1964
+ "textCapacity": 2
1965
+ },
1966
+ {
1967
+ "kind": "shape",
1968
+ "x": 634.6666666666666,
1969
+ "y": 473.3333333333333,
1970
+ "width": 18.666666666666668,
1971
+ "height": 18.666666666666668,
1972
+ "shape": "ellipse",
1973
+ "fill": "848481"
1974
+ },
1975
+ {
1976
+ "kind": "text",
1977
+ "x": 668,
1978
+ "y": 466.6666666666667,
1979
+ "width": 50.666666666666664,
1980
+ "height": 37.333333333333336,
1981
+ "textRole": "body",
1982
+ "fontSize": 15,
1983
+ "textCapacity": 2
1984
+ },
1985
+ {
1986
+ "kind": "text",
1987
+ "x": 118.66666666666667,
1988
+ "y": 589.3333333333334,
1989
+ "width": 317.3333333333333,
1990
+ "height": 29.333333333333332,
1991
+ "textRole": "body",
1992
+ "fontSize": 11,
1993
+ "textCapacity": 21
1994
+ },
1995
+ {
1996
+ "kind": "text",
1997
+ "x": 469.3333333333333,
1998
+ "y": 589.3333333333334,
1999
+ "width": 312,
2000
+ "height": 29.333333333333332,
2001
+ "textRole": "body",
2002
+ "fontSize": 11,
2003
+ "textCapacity": 21
2004
+ },
2005
+ {
2006
+ "kind": "text",
2007
+ "x": 842.6666666666666,
2008
+ "y": 230.66666666666666,
2009
+ "width": 373.3333333333333,
2010
+ "height": 33.333333333333336,
2011
+ "textRole": "body",
2012
+ "fontSize": 13,
2013
+ "textCapacity": 21
2014
+ },
2015
+ {
2016
+ "kind": "title",
2017
+ "x": 842.6666666666666,
2018
+ "y": 286.6666666666667,
2019
+ "width": 373.3333333333333,
2020
+ "height": 82.66666666666667,
2021
+ "textRole": "title",
2022
+ "fontSize": 32,
2023
+ "textCapacity": 8
2024
+ },
2025
+ {
2026
+ "kind": "text",
2027
+ "x": 842.6666666666666,
2028
+ "y": 414.6666666666667,
2029
+ "width": 146.66666666666666,
2030
+ "height": 41.333333333333336,
2031
+ "textRole": "body",
2032
+ "fontSize": 14,
2033
+ "textCapacity": 14
2034
+ },
2035
+ {
2036
+ "kind": "text",
2037
+ "x": 1004,
2038
+ "y": 414.6666666666667,
2039
+ "width": 212,
2040
+ "height": 45.333333333333336,
2041
+ "textRole": "body",
2042
+ "fontSize": 16,
2043
+ "textCapacity": 9
2044
+ },
2045
+ {
2046
+ "kind": "text",
2047
+ "x": 842.6666666666666,
2048
+ "y": 476,
2049
+ "width": 146.66666666666666,
2050
+ "height": 41.333333333333336,
2051
+ "textRole": "body",
2052
+ "fontSize": 14,
2053
+ "textCapacity": 14
2054
+ },
2055
+ {
2056
+ "kind": "text",
2057
+ "x": 1004,
2058
+ "y": 476,
2059
+ "width": 212,
2060
+ "height": 45.333333333333336,
2061
+ "textRole": "body",
2062
+ "fontSize": 16,
2063
+ "textCapacity": 9
2064
+ },
2065
+ {
2066
+ "kind": "text",
2067
+ "x": 842.6666666666666,
2068
+ "y": 537.3333333333334,
2069
+ "width": 146.66666666666666,
2070
+ "height": 41.333333333333336,
2071
+ "textRole": "body",
2072
+ "fontSize": 14,
2073
+ "textCapacity": 14
2074
+ },
2075
+ {
2076
+ "kind": "text",
2077
+ "x": 1004,
2078
+ "y": 537.3333333333334,
2079
+ "width": 212,
2080
+ "height": 45.333333333333336,
2081
+ "textRole": "body",
2082
+ "fontSize": 16,
2083
+ "textCapacity": 9
2084
+ },
2085
+ {
2086
+ "kind": "text",
2087
+ "x": 64,
2088
+ "y": 633.3333333333334,
2089
+ "width": 1152,
2090
+ "height": 33.333333333333336,
2091
+ "textRole": "body",
2092
+ "fontSize": 13,
2093
+ "textCapacity": 66
2094
+ },
2095
+ {
2096
+ "kind": "text",
2097
+ "x": 64,
2098
+ "y": 676,
2099
+ "width": 1044,
2100
+ "height": 21.333333333333332,
2101
+ "textRole": "body",
2102
+ "fontSize": 9,
2103
+ "textCapacity": 87
2104
+ },
2105
+ {
2106
+ "kind": "text",
2107
+ "x": 1161.3333333333333,
2108
+ "y": 672,
2109
+ "width": 54.666666666666664,
2110
+ "height": 29.333333333333332,
2111
+ "textRole": "body",
2112
+ "fontSize": 11,
2113
+ "textCapacity": 3
2114
+ }
2115
+ ],
2116
+ "jsxReference": ""
2117
+ },
2118
+ {
2119
+ "slideNumber": 7,
2120
+ "sourceTitle": "Design around explicit boundaries",
2121
+ "family": "process",
2122
+ "titlePosition": "left",
2123
+ "bodyColumns": 3,
2124
+ "density": "high",
2125
+ "features": [
2126
+ "architecture"
2127
+ ],
2128
+ "recommendedRoles": [
2129
+ "process"
2130
+ ],
2131
+ "structureSummary": "Three layers, nine native nodes, horizontal handoffs and vertical dependencies",
2132
+ "zones": [
2133
+ {
2134
+ "kind": "shape",
2135
+ "x": 1157.3333333333333,
2136
+ "y": 32,
2137
+ "width": 13.333333333333334,
2138
+ "height": 13.333333333333334,
2139
+ "shape": "rect",
2140
+ "fill": "E6FF3D"
2141
+ },
2142
+ {
2143
+ "kind": "shape",
2144
+ "x": 1184,
2145
+ "y": 32,
2146
+ "width": 13.333333333333334,
2147
+ "height": 13.333333333333334,
2148
+ "shape": "rect",
2149
+ "fill": "E6FF3D"
2150
+ },
2151
+ {
2152
+ "kind": "shape",
2153
+ "x": 1170.6666666666667,
2154
+ "y": 45.333333333333336,
2155
+ "width": 13.333333333333334,
2156
+ "height": 13.333333333333334,
2157
+ "shape": "rect",
2158
+ "fill": "E6FF3D"
2159
+ },
2160
+ {
2161
+ "kind": "shape",
2162
+ "x": 1157.3333333333333,
2163
+ "y": 58.666666666666664,
2164
+ "width": 13.333333333333334,
2165
+ "height": 13.333333333333334,
2166
+ "shape": "rect",
2167
+ "fill": "E6FF3D"
2168
+ },
2169
+ {
2170
+ "kind": "shape",
2171
+ "x": 1184,
2172
+ "y": 58.666666666666664,
2173
+ "width": 13.333333333333334,
2174
+ "height": 13.333333333333334,
2175
+ "shape": "rect",
2176
+ "fill": "E6FF3D"
2177
+ },
2178
+ {
2179
+ "kind": "text",
2180
+ "x": 64,
2181
+ "y": 36,
2182
+ "width": 886.6666666666666,
2183
+ "height": 26.666666666666668,
2184
+ "textRole": "body",
2185
+ "fontSize": 10,
2186
+ "textCapacity": 66
2187
+ },
2188
+ {
2189
+ "kind": "title",
2190
+ "x": 64,
2191
+ "y": 101.33333333333333,
2192
+ "width": 1152,
2193
+ "height": 85.33333333333333,
2194
+ "textRole": "title",
2195
+ "fontSize": 32,
2196
+ "textCapacity": 27
2197
+ },
2198
+ {
2199
+ "kind": "text",
2200
+ "x": 1005.3333333333334,
2201
+ "y": 61.333333333333336,
2202
+ "width": 210.66666666666666,
2203
+ "height": 17.333333333333332,
2204
+ "textRole": "body",
2205
+ "fontSize": 9,
2206
+ "textCapacity": 17
2207
+ },
2208
+ {
2209
+ "kind": "text",
2210
+ "x": 64,
2211
+ "y": 261.3333333333333,
2212
+ "width": 168,
2213
+ "height": 33.333333333333336,
2214
+ "textRole": "body",
2215
+ "fontSize": 13,
2216
+ "textCapacity": 9
2217
+ },
2218
+ {
2219
+ "kind": "shape",
2220
+ "x": 254.66666666666666,
2221
+ "y": 234.66666666666666,
2222
+ "width": 190.66666666666666,
2223
+ "height": 84,
2224
+ "shape": "rect",
2225
+ "fill": "ECECE8"
2226
+ },
2227
+ {
2228
+ "kind": "text",
2229
+ "x": 270.6666666666667,
2230
+ "y": 252,
2231
+ "width": 158.66666666666666,
2232
+ "height": 58.666666666666664,
2233
+ "textRole": "body",
2234
+ "fontSize": 18,
2235
+ "textCapacity": 12
2236
+ },
2237
+ {
2238
+ "kind": "shape",
2239
+ "x": 468,
2240
+ "y": 234.66666666666666,
2241
+ "width": 190.66666666666666,
2242
+ "height": 84,
2243
+ "shape": "rect",
2244
+ "fill": "ECECE8"
2245
+ },
2246
+ {
2247
+ "kind": "text",
2248
+ "x": 484,
2249
+ "y": 252,
2250
+ "width": 158.66666666666666,
2251
+ "height": 58.666666666666664,
2252
+ "textRole": "body",
2253
+ "fontSize": 18,
2254
+ "textCapacity": 12
2255
+ },
2256
+ {
2257
+ "kind": "shape",
2258
+ "x": 681.3333333333334,
2259
+ "y": 234.66666666666666,
2260
+ "width": 190.66666666666666,
2261
+ "height": 84,
2262
+ "shape": "rect",
2263
+ "fill": "ECECE8"
2264
+ },
2265
+ {
2266
+ "kind": "text",
2267
+ "x": 697.3333333333334,
2268
+ "y": 252,
2269
+ "width": 158.66666666666666,
2270
+ "height": 58.666666666666664,
2271
+ "textRole": "body",
2272
+ "fontSize": 18,
2273
+ "textCapacity": 12
2274
+ },
2275
+ {
2276
+ "kind": "text",
2277
+ "x": 64,
2278
+ "y": 392,
2279
+ "width": 168,
2280
+ "height": 33.333333333333336,
2281
+ "textRole": "body",
2282
+ "fontSize": 13,
2283
+ "textCapacity": 9
2284
+ },
2285
+ {
2286
+ "kind": "shape",
2287
+ "x": 254.66666666666666,
2288
+ "y": 365.3333333333333,
2289
+ "width": 190.66666666666666,
2290
+ "height": 84,
2291
+ "shape": "rect",
2292
+ "fill": "E6FF3D"
2293
+ },
2294
+ {
2295
+ "kind": "text",
2296
+ "x": 270.6666666666667,
2297
+ "y": 382.6666666666667,
2298
+ "width": 158.66666666666666,
2299
+ "height": 58.666666666666664,
2300
+ "textRole": "body",
2301
+ "fontSize": 18,
2302
+ "textCapacity": 12
2303
+ },
2304
+ {
2305
+ "kind": "shape",
2306
+ "x": 468,
2307
+ "y": 365.3333333333333,
2308
+ "width": 190.66666666666666,
2309
+ "height": 84,
2310
+ "shape": "rect",
2311
+ "fill": "E6FF3D"
2312
+ },
2313
+ {
2314
+ "kind": "text",
2315
+ "x": 484,
2316
+ "y": 382.6666666666667,
2317
+ "width": 158.66666666666666,
2318
+ "height": 58.666666666666664,
2319
+ "textRole": "body",
2320
+ "fontSize": 18,
2321
+ "textCapacity": 12
2322
+ },
2323
+ {
2324
+ "kind": "shape",
2325
+ "x": 681.3333333333334,
2326
+ "y": 365.3333333333333,
2327
+ "width": 190.66666666666666,
2328
+ "height": 84,
2329
+ "shape": "rect",
2330
+ "fill": "E6FF3D"
2331
+ },
2332
+ {
2333
+ "kind": "text",
2334
+ "x": 697.3333333333334,
2335
+ "y": 382.6666666666667,
2336
+ "width": 158.66666666666666,
2337
+ "height": 58.666666666666664,
2338
+ "textRole": "body",
2339
+ "fontSize": 18,
2340
+ "textCapacity": 12
2341
+ },
2342
+ {
2343
+ "kind": "text",
2344
+ "x": 64,
2345
+ "y": 522.6666666666666,
2346
+ "width": 168,
2347
+ "height": 33.333333333333336,
2348
+ "textRole": "body",
2349
+ "fontSize": 13,
2350
+ "textCapacity": 9
2351
+ },
2352
+ {
2353
+ "kind": "shape",
2354
+ "x": 254.66666666666666,
2355
+ "y": 496,
2356
+ "width": 190.66666666666666,
2357
+ "height": 84,
2358
+ "shape": "rect",
2359
+ "fill": "ECECE8"
2360
+ },
2361
+ {
2362
+ "kind": "text",
2363
+ "x": 270.6666666666667,
2364
+ "y": 513.3333333333334,
2365
+ "width": 158.66666666666666,
2366
+ "height": 58.666666666666664,
2367
+ "textRole": "body",
2368
+ "fontSize": 18,
2369
+ "textCapacity": 12
2370
+ },
2371
+ {
2372
+ "kind": "shape",
2373
+ "x": 468,
2374
+ "y": 496,
2375
+ "width": 190.66666666666666,
2376
+ "height": 84,
2377
+ "shape": "rect",
2378
+ "fill": "ECECE8"
2379
+ },
2380
+ {
2381
+ "kind": "text",
2382
+ "x": 484,
2383
+ "y": 513.3333333333334,
2384
+ "width": 158.66666666666666,
2385
+ "height": 58.666666666666664,
2386
+ "textRole": "body",
2387
+ "fontSize": 18,
2388
+ "textCapacity": 12
2389
+ },
2390
+ {
2391
+ "kind": "shape",
2392
+ "x": 681.3333333333334,
2393
+ "y": 496,
2394
+ "width": 190.66666666666666,
2395
+ "height": 84,
2396
+ "shape": "rect",
2397
+ "fill": "ECECE8"
2398
+ },
2399
+ {
2400
+ "kind": "text",
2401
+ "x": 697.3333333333334,
2402
+ "y": 513.3333333333334,
2403
+ "width": 158.66666666666666,
2404
+ "height": 58.666666666666664,
2405
+ "textRole": "body",
2406
+ "fontSize": 18,
2407
+ "textCapacity": 12
2408
+ },
2409
+ {
2410
+ "kind": "text",
2411
+ "x": 982.6666666666666,
2412
+ "y": 245.33333333333334,
2413
+ "width": 229.33333333333334,
2414
+ "height": 148,
2415
+ "textRole": "body",
2416
+ "fontSize": 28,
2417
+ "textCapacity": 18
2418
+ },
2419
+ {
2420
+ "kind": "text",
2421
+ "x": 982.6666666666666,
2422
+ "y": 420,
2423
+ "width": 233.33333333333334,
2424
+ "height": 164,
2425
+ "textRole": "body",
2426
+ "fontSize": 20,
2427
+ "textCapacity": 40
2428
+ },
2429
+ {
2430
+ "kind": "text",
2431
+ "x": 64,
2432
+ "y": 633.3333333333334,
2433
+ "width": 1152,
2434
+ "height": 33.333333333333336,
2435
+ "textRole": "body",
2436
+ "fontSize": 13,
2437
+ "textCapacity": 66
2438
+ },
2439
+ {
2440
+ "kind": "text",
2441
+ "x": 64,
2442
+ "y": 676,
2443
+ "width": 1044,
2444
+ "height": 21.333333333333332,
2445
+ "textRole": "body",
2446
+ "fontSize": 9,
2447
+ "textCapacity": 87
2448
+ },
2449
+ {
2450
+ "kind": "text",
2451
+ "x": 1161.3333333333333,
2452
+ "y": 672,
2453
+ "width": 54.666666666666664,
2454
+ "height": 29.333333333333332,
2455
+ "textRole": "body",
2456
+ "fontSize": 11,
2457
+ "textCapacity": 3
2458
+ }
2459
+ ],
2460
+ "jsxReference": ""
2461
+ },
2462
+ {
2463
+ "slideNumber": 8,
2464
+ "sourceTitle": "Reconcile the benefit with the cost",
2465
+ "family": "data",
2466
+ "titlePosition": "left",
2467
+ "bodyColumns": 2,
2468
+ "density": "high",
2469
+ "features": [
2470
+ "bridge"
2471
+ ],
2472
+ "recommendedRoles": [
2473
+ "data"
2474
+ ],
2475
+ "structureSummary": "Sequential contribution waterfall with an explicitly reconciled net change",
2476
+ "zones": [
2477
+ {
2478
+ "kind": "shape",
2479
+ "x": 1157.3333333333333,
2480
+ "y": 32,
2481
+ "width": 13.333333333333334,
2482
+ "height": 13.333333333333334,
2483
+ "shape": "rect",
2484
+ "fill": "E6FF3D"
2485
+ },
2486
+ {
2487
+ "kind": "shape",
2488
+ "x": 1184,
2489
+ "y": 32,
2490
+ "width": 13.333333333333334,
2491
+ "height": 13.333333333333334,
2492
+ "shape": "rect",
2493
+ "fill": "E6FF3D"
2494
+ },
2495
+ {
2496
+ "kind": "shape",
2497
+ "x": 1170.6666666666667,
2498
+ "y": 45.333333333333336,
2499
+ "width": 13.333333333333334,
2500
+ "height": 13.333333333333334,
2501
+ "shape": "rect",
2502
+ "fill": "E6FF3D"
2503
+ },
2504
+ {
2505
+ "kind": "shape",
2506
+ "x": 1157.3333333333333,
2507
+ "y": 58.666666666666664,
2508
+ "width": 13.333333333333334,
2509
+ "height": 13.333333333333334,
2510
+ "shape": "rect",
2511
+ "fill": "E6FF3D"
2512
+ },
2513
+ {
2514
+ "kind": "shape",
2515
+ "x": 1184,
2516
+ "y": 58.666666666666664,
2517
+ "width": 13.333333333333334,
2518
+ "height": 13.333333333333334,
2519
+ "shape": "rect",
2520
+ "fill": "E6FF3D"
2521
+ },
2522
+ {
2523
+ "kind": "text",
2524
+ "x": 64,
2525
+ "y": 36,
2526
+ "width": 886.6666666666666,
2527
+ "height": 26.666666666666668,
2528
+ "textRole": "body",
2529
+ "fontSize": 10,
2530
+ "textCapacity": 66
2531
+ },
2532
+ {
2533
+ "kind": "title",
2534
+ "x": 64,
2535
+ "y": 101.33333333333333,
2536
+ "width": 1152,
2537
+ "height": 85.33333333333333,
2538
+ "textRole": "title",
2539
+ "fontSize": 32,
2540
+ "textCapacity": 27
2541
+ },
2542
+ {
2543
+ "kind": "text",
2544
+ "x": 1005.3333333333334,
2545
+ "y": 61.333333333333336,
2546
+ "width": 210.66666666666666,
2547
+ "height": 17.333333333333332,
2548
+ "textRole": "body",
2549
+ "fontSize": 9,
2550
+ "textCapacity": 17
2551
+ },
2552
+ {
2553
+ "kind": "text",
2554
+ "x": 64,
2555
+ "y": 202.66666666666666,
2556
+ "width": 1133.3333333333333,
2557
+ "height": 33.333333333333336,
2558
+ "textRole": "body",
2559
+ "fontSize": 13,
2560
+ "textCapacity": 65
2561
+ },
2562
+ {
2563
+ "kind": "text",
2564
+ "x": 64,
2565
+ "y": 552,
2566
+ "width": 40,
2567
+ "height": 30.666666666666668,
2568
+ "textRole": "body",
2569
+ "fontSize": 10,
2570
+ "textCapacity": 6
2571
+ },
2572
+ {
2573
+ "kind": "text",
2574
+ "x": 64,
2575
+ "y": 458.6666666666667,
2576
+ "width": 40,
2577
+ "height": 30.666666666666668,
2578
+ "textRole": "body",
2579
+ "fontSize": 10,
2580
+ "textCapacity": 6
2581
+ },
2582
+ {
2583
+ "kind": "text",
2584
+ "x": 64,
2585
+ "y": 365.3333333333333,
2586
+ "width": 40,
2587
+ "height": 30.666666666666668,
2588
+ "textRole": "body",
2589
+ "fontSize": 10,
2590
+ "textCapacity": 6
2591
+ },
2592
+ {
2593
+ "kind": "text",
2594
+ "x": 64,
2595
+ "y": 272,
2596
+ "width": 40,
2597
+ "height": 30.666666666666668,
2598
+ "textRole": "body",
2599
+ "fontSize": 10,
2600
+ "textCapacity": 6
2601
+ },
2602
+ {
2603
+ "kind": "shape",
2604
+ "x": 128,
2605
+ "y": 377.3333333333333,
2606
+ "width": 80,
2607
+ "height": 186.66666666666666,
2608
+ "shape": "rect",
2609
+ "fill": "F5F4EF"
2610
+ },
2611
+ {
2612
+ "kind": "text",
2613
+ "x": 114.66666666666667,
2614
+ "y": 333.3333333333333,
2615
+ "width": 106.66666666666667,
2616
+ "height": 37.333333333333336,
2617
+ "textRole": "body",
2618
+ "fontSize": 20,
2619
+ "textCapacity": 4
2620
+ },
2621
+ {
2622
+ "kind": "text",
2623
+ "x": 104,
2624
+ "y": 581.3333333333334,
2625
+ "width": 132,
2626
+ "height": 34.666666666666664,
2627
+ "textRole": "body",
2628
+ "fontSize": 13,
2629
+ "textCapacity": 7
2630
+ },
2631
+ {
2632
+ "kind": "shape",
2633
+ "x": 268,
2634
+ "y": 317.6,
2635
+ "width": 80,
2636
+ "height": 59.73333333333333,
2637
+ "shape": "rect",
2638
+ "fill": "898984"
2639
+ },
2640
+ {
2641
+ "kind": "text",
2642
+ "x": 254.66666666666666,
2643
+ "y": 273.6,
2644
+ "width": 106.66666666666667,
2645
+ "height": 37.333333333333336,
2646
+ "textRole": "body",
2647
+ "fontSize": 20,
2648
+ "textCapacity": 4
2649
+ },
2650
+ {
2651
+ "kind": "text",
2652
+ "x": 244,
2653
+ "y": 581.3333333333334,
2654
+ "width": 132,
2655
+ "height": 34.666666666666664,
2656
+ "textRole": "body",
2657
+ "fontSize": 13,
2658
+ "textCapacity": 7
2659
+ },
2660
+ {
2661
+ "kind": "shape",
2662
+ "x": 408,
2663
+ "y": 317.6,
2664
+ "width": 80,
2665
+ "height": 24.266666666666666,
2666
+ "shape": "rect",
2667
+ "fill": "4d4e49"
2668
+ },
2669
+ {
2670
+ "kind": "text",
2671
+ "x": 394.6666666666667,
2672
+ "y": 273.6,
2673
+ "width": 106.66666666666667,
2674
+ "height": 37.333333333333336,
2675
+ "textRole": "body",
2676
+ "fontSize": 20,
2677
+ "textCapacity": 4
2678
+ },
2679
+ {
2680
+ "kind": "text",
2681
+ "x": 384,
2682
+ "y": 581.3333333333334,
2683
+ "width": 132,
2684
+ "height": 34.666666666666664,
2685
+ "textRole": "body",
2686
+ "fontSize": 13,
2687
+ "textCapacity": 7
2688
+ },
2689
+ {
2690
+ "kind": "shape",
2691
+ "x": 548,
2692
+ "y": 341.8666666666666,
2693
+ "width": 80,
2694
+ "height": 13.066666666666665,
2695
+ "shape": "rect",
2696
+ "fill": "4d4e49"
2697
+ },
2698
+ {
2699
+ "kind": "text",
2700
+ "x": 534.6666666666666,
2701
+ "y": 297.8666666666666,
2702
+ "width": 106.66666666666667,
2703
+ "height": 37.333333333333336,
2704
+ "textRole": "body",
2705
+ "fontSize": 20,
2706
+ "textCapacity": 4
2707
+ },
2708
+ {
2709
+ "kind": "text",
2710
+ "x": 524,
2711
+ "y": 581.3333333333334,
2712
+ "width": 132,
2713
+ "height": 34.666666666666664,
2714
+ "textRole": "body",
2715
+ "fontSize": 13,
2716
+ "textCapacity": 7
2717
+ },
2718
+ {
2719
+ "kind": "shape",
2720
+ "x": 688,
2721
+ "y": 354.9333333333334,
2722
+ "width": 80,
2723
+ "height": 209.06666666666663,
2724
+ "shape": "rect",
2725
+ "fill": "F5F4EF"
2726
+ },
2727
+ {
2728
+ "kind": "text",
2729
+ "x": 674.6666666666666,
2730
+ "y": 310.9333333333334,
2731
+ "width": 106.66666666666667,
2732
+ "height": 37.333333333333336,
2733
+ "textRole": "body",
2734
+ "fontSize": 20,
2735
+ "textCapacity": 4
2736
+ },
2737
+ {
2738
+ "kind": "text",
2739
+ "x": 664,
2740
+ "y": 581.3333333333334,
2741
+ "width": 132,
2742
+ "height": 34.666666666666664,
2743
+ "textRole": "body",
2744
+ "fontSize": 13,
2745
+ "textCapacity": 7
2746
+ },
2747
+ {
2748
+ "kind": "text",
2749
+ "x": 905.3333333333334,
2750
+ "y": 221.33333333333334,
2751
+ "width": 310.6666666666667,
2752
+ "height": 33.333333333333336,
2753
+ "textRole": "body",
2754
+ "fontSize": 13,
2755
+ "textCapacity": 17
2756
+ },
2757
+ {
2758
+ "kind": "title",
2759
+ "x": 905.3333333333334,
2760
+ "y": 273.3333333333333,
2761
+ "width": 310.6666666666667,
2762
+ "height": 102.66666666666667,
2763
+ "textRole": "title",
2764
+ "fontSize": 57,
2765
+ "textCapacity": 4
2766
+ },
2767
+ {
2768
+ "kind": "text",
2769
+ "x": 905.3333333333334,
2770
+ "y": 385.3333333333333,
2771
+ "width": 310.6666666666667,
2772
+ "height": 53.333333333333336,
2773
+ "textRole": "body",
2774
+ "fontSize": 18,
2775
+ "textCapacity": 24
2776
+ },
2777
+ {
2778
+ "kind": "text",
2779
+ "x": 905.3333333333334,
2780
+ "y": 458.6666666666667,
2781
+ "width": 196,
2782
+ "height": 40,
2783
+ "textRole": "body",
2784
+ "fontSize": 15,
2785
+ "textCapacity": 9
2786
+ },
2787
+ {
2788
+ "kind": "text",
2789
+ "x": 1101.3333333333333,
2790
+ "y": 456,
2791
+ "width": 114.66666666666667,
2792
+ "height": 41.333333333333336,
2793
+ "textRole": "body",
2794
+ "fontSize": 20,
2795
+ "textCapacity": 4
2796
+ },
2797
+ {
2798
+ "kind": "text",
2799
+ "x": 905.3333333333334,
2800
+ "y": 506.6666666666667,
2801
+ "width": 196,
2802
+ "height": 40,
2803
+ "textRole": "body",
2804
+ "fontSize": 15,
2805
+ "textCapacity": 9
2806
+ },
2807
+ {
2808
+ "kind": "text",
2809
+ "x": 1101.3333333333333,
2810
+ "y": 504,
2811
+ "width": 114.66666666666667,
2812
+ "height": 41.333333333333336,
2813
+ "textRole": "body",
2814
+ "fontSize": 20,
2815
+ "textCapacity": 4
2816
+ },
2817
+ {
2818
+ "kind": "text",
2819
+ "x": 905.3333333333334,
2820
+ "y": 554.6666666666666,
2821
+ "width": 196,
2822
+ "height": 40,
2823
+ "textRole": "body",
2824
+ "fontSize": 15,
2825
+ "textCapacity": 9
2826
+ },
2827
+ {
2828
+ "kind": "text",
2829
+ "x": 1101.3333333333333,
2830
+ "y": 552,
2831
+ "width": 114.66666666666667,
2832
+ "height": 41.333333333333336,
2833
+ "textRole": "body",
2834
+ "fontSize": 20,
2835
+ "textCapacity": 4
2836
+ },
2837
+ {
2838
+ "kind": "text",
2839
+ "x": 64,
2840
+ "y": 633.3333333333334,
2841
+ "width": 1152,
2842
+ "height": 33.333333333333336,
2843
+ "textRole": "body",
2844
+ "fontSize": 13,
2845
+ "textCapacity": 66
2846
+ },
2847
+ {
2848
+ "kind": "text",
2849
+ "x": 64,
2850
+ "y": 676,
2851
+ "width": 1044,
2852
+ "height": 21.333333333333332,
2853
+ "textRole": "body",
2854
+ "fontSize": 9,
2855
+ "textCapacity": 87
2856
+ },
2857
+ {
2858
+ "kind": "text",
2859
+ "x": 1161.3333333333333,
2860
+ "y": 672,
2861
+ "width": 54.666666666666664,
2862
+ "height": 29.333333333333332,
2863
+ "textRole": "body",
2864
+ "fontSize": 11,
2865
+ "textCapacity": 3
2866
+ }
2867
+ ],
2868
+ "jsxReference": ""
2869
+ },
2870
+ {
2871
+ "slideNumber": 9,
2872
+ "sourceTitle": "A small intervention, a measurable change",
2873
+ "family": "comparison",
2874
+ "titlePosition": "left",
2875
+ "bodyColumns": 2,
2876
+ "density": "high",
2877
+ "features": [
2878
+ "case"
2879
+ ],
2880
+ "recommendedRoles": [
2881
+ "comparison"
2882
+ ],
2883
+ "structureSummary": "Intervention narrative beside paired before and after comparisons",
2884
+ "zones": [
2885
+ {
2886
+ "kind": "shape",
2887
+ "x": 1157.3333333333333,
2888
+ "y": 32,
2889
+ "width": 13.333333333333334,
2890
+ "height": 13.333333333333334,
2891
+ "shape": "rect",
2892
+ "fill": "E6FF3D"
2893
+ },
2894
+ {
2895
+ "kind": "shape",
2896
+ "x": 1184,
2897
+ "y": 32,
2898
+ "width": 13.333333333333334,
2899
+ "height": 13.333333333333334,
2900
+ "shape": "rect",
2901
+ "fill": "E6FF3D"
2902
+ },
2903
+ {
2904
+ "kind": "shape",
2905
+ "x": 1170.6666666666667,
2906
+ "y": 45.333333333333336,
2907
+ "width": 13.333333333333334,
2908
+ "height": 13.333333333333334,
2909
+ "shape": "rect",
2910
+ "fill": "E6FF3D"
2911
+ },
2912
+ {
2913
+ "kind": "shape",
2914
+ "x": 1157.3333333333333,
2915
+ "y": 58.666666666666664,
2916
+ "width": 13.333333333333334,
2917
+ "height": 13.333333333333334,
2918
+ "shape": "rect",
2919
+ "fill": "E6FF3D"
2920
+ },
2921
+ {
2922
+ "kind": "shape",
2923
+ "x": 1184,
2924
+ "y": 58.666666666666664,
2925
+ "width": 13.333333333333334,
2926
+ "height": 13.333333333333334,
2927
+ "shape": "rect",
2928
+ "fill": "E6FF3D"
2929
+ },
2930
+ {
2931
+ "kind": "text",
2932
+ "x": 64,
2933
+ "y": 36,
2934
+ "width": 886.6666666666666,
2935
+ "height": 26.666666666666668,
2936
+ "textRole": "body",
2937
+ "fontSize": 10,
2938
+ "textCapacity": 66
2939
+ },
2940
+ {
2941
+ "kind": "title",
2942
+ "x": 64,
2943
+ "y": 101.33333333333333,
2944
+ "width": 1152,
2945
+ "height": 85.33333333333333,
2946
+ "textRole": "title",
2947
+ "fontSize": 32,
2948
+ "textCapacity": 27
2949
+ },
2950
+ {
2951
+ "kind": "text",
2952
+ "x": 1005.3333333333334,
2953
+ "y": 61.333333333333336,
2954
+ "width": 210.66666666666666,
2955
+ "height": 17.333333333333332,
2956
+ "textRole": "body",
2957
+ "fontSize": 9,
2958
+ "textCapacity": 17
2959
+ },
2960
+ {
2961
+ "kind": "text",
2962
+ "x": 64,
2963
+ "y": 224,
2964
+ "width": 386.6666666666667,
2965
+ "height": 34.666666666666664,
2966
+ "textRole": "body",
2967
+ "fontSize": 12,
2968
+ "textCapacity": 24
2969
+ },
2970
+ {
2971
+ "kind": "title",
2972
+ "x": 64,
2973
+ "y": 289.3333333333333,
2974
+ "width": 384,
2975
+ "height": 161.33333333333334,
2976
+ "textRole": "title",
2977
+ "fontSize": 34,
2978
+ "textCapacity": 24
2979
+ },
2980
+ {
2981
+ "kind": "text",
2982
+ "x": 64,
2983
+ "y": 492,
2984
+ "width": 374.6666666666667,
2985
+ "height": 104,
2986
+ "textRole": "body",
2987
+ "fontSize": 20,
2988
+ "textCapacity": 42
2989
+ },
2990
+ {
2991
+ "kind": "text",
2992
+ "x": 552,
2993
+ "y": 232,
2994
+ "width": 649.3333333333334,
2995
+ "height": 42.666666666666664,
2996
+ "textRole": "body",
2997
+ "fontSize": 20,
2998
+ "textCapacity": 24
2999
+ },
3000
+ {
3001
+ "kind": "shape",
3002
+ "x": 553.3333333333334,
3003
+ "y": 300,
3004
+ "width": 388.8,
3005
+ "height": 26.666666666666668,
3006
+ "shape": "rect",
3007
+ "fill": "afaeaa"
3008
+ },
3009
+ {
3010
+ "kind": "shape",
3011
+ "x": 553.3333333333334,
3012
+ "y": 340,
3013
+ "width": 151.20000000000002,
3014
+ "height": 26.666666666666668,
3015
+ "shape": "rect",
3016
+ "fill": "E6FF3D"
3017
+ },
3018
+ {
3019
+ "kind": "text",
3020
+ "x": 1005.3333333333334,
3021
+ "y": 305.3333333333333,
3022
+ "width": 210.66666666666666,
3023
+ "height": 60,
3024
+ "textRole": "body",
3025
+ "fontSize": 23,
3026
+ "textCapacity": 6
3027
+ },
3028
+ {
3029
+ "kind": "text",
3030
+ "x": 552,
3031
+ "y": 421.3333333333333,
3032
+ "width": 649.3333333333334,
3033
+ "height": 42.666666666666664,
3034
+ "textRole": "body",
3035
+ "fontSize": 20,
3036
+ "textCapacity": 24
3037
+ },
3038
+ {
3039
+ "kind": "shape",
3040
+ "x": 553.3333333333334,
3041
+ "y": 489.3333333333333,
3042
+ "width": 198.72,
3043
+ "height": 26.666666666666668,
3044
+ "shape": "rect",
3045
+ "fill": "afaeaa"
3046
+ },
3047
+ {
3048
+ "kind": "shape",
3049
+ "x": 553.3333333333334,
3050
+ "y": 529.3333333333334,
3051
+ "width": 315.36,
3052
+ "height": 26.666666666666668,
3053
+ "shape": "rect",
3054
+ "fill": "E6FF3D"
3055
+ },
3056
+ {
3057
+ "kind": "text",
3058
+ "x": 1005.3333333333334,
3059
+ "y": 494.6666666666667,
3060
+ "width": 210.66666666666666,
3061
+ "height": 60,
3062
+ "textRole": "body",
3063
+ "fontSize": 23,
3064
+ "textCapacity": 6
3065
+ },
3066
+ {
3067
+ "kind": "text",
3068
+ "x": 64,
3069
+ "y": 633.3333333333334,
3070
+ "width": 1152,
3071
+ "height": 33.333333333333336,
3072
+ "textRole": "body",
3073
+ "fontSize": 13,
3074
+ "textCapacity": 66
3075
+ },
3076
+ {
3077
+ "kind": "text",
3078
+ "x": 64,
3079
+ "y": 676,
3080
+ "width": 1044,
3081
+ "height": 21.333333333333332,
3082
+ "textRole": "body",
3083
+ "fontSize": 9,
3084
+ "textCapacity": 87
3085
+ },
3086
+ {
3087
+ "kind": "text",
3088
+ "x": 1161.3333333333333,
3089
+ "y": 672,
3090
+ "width": 54.666666666666664,
3091
+ "height": 29.333333333333332,
3092
+ "textRole": "body",
3093
+ "fontSize": 11,
3094
+ "textCapacity": 3
3095
+ }
3096
+ ],
3097
+ "jsxReference": ""
3098
+ },
3099
+ {
3100
+ "slideNumber": 10,
3101
+ "sourceTitle": "Connect each measure to a response",
3102
+ "family": "table",
3103
+ "titlePosition": "left",
3104
+ "bodyColumns": 2,
3105
+ "density": "high",
3106
+ "features": [
3107
+ "scorecard"
3108
+ ],
3109
+ "recommendedRoles": [
3110
+ "table"
3111
+ ],
3112
+ "structureSummary": "Actual, target and response aligned across four measures",
3113
+ "zones": [
3114
+ {
3115
+ "kind": "shape",
3116
+ "x": 1157.3333333333333,
3117
+ "y": 32,
3118
+ "width": 13.333333333333334,
3119
+ "height": 13.333333333333334,
3120
+ "shape": "rect",
3121
+ "fill": "E6FF3D"
3122
+ },
3123
+ {
3124
+ "kind": "shape",
3125
+ "x": 1184,
3126
+ "y": 32,
3127
+ "width": 13.333333333333334,
3128
+ "height": 13.333333333333334,
3129
+ "shape": "rect",
3130
+ "fill": "E6FF3D"
3131
+ },
3132
+ {
3133
+ "kind": "shape",
3134
+ "x": 1170.6666666666667,
3135
+ "y": 45.333333333333336,
3136
+ "width": 13.333333333333334,
3137
+ "height": 13.333333333333334,
3138
+ "shape": "rect",
3139
+ "fill": "E6FF3D"
3140
+ },
3141
+ {
3142
+ "kind": "shape",
3143
+ "x": 1157.3333333333333,
3144
+ "y": 58.666666666666664,
3145
+ "width": 13.333333333333334,
3146
+ "height": 13.333333333333334,
3147
+ "shape": "rect",
3148
+ "fill": "E6FF3D"
3149
+ },
3150
+ {
3151
+ "kind": "shape",
3152
+ "x": 1184,
3153
+ "y": 58.666666666666664,
3154
+ "width": 13.333333333333334,
3155
+ "height": 13.333333333333334,
3156
+ "shape": "rect",
3157
+ "fill": "E6FF3D"
3158
+ },
3159
+ {
3160
+ "kind": "text",
3161
+ "x": 64,
3162
+ "y": 36,
3163
+ "width": 886.6666666666666,
3164
+ "height": 26.666666666666668,
3165
+ "textRole": "body",
3166
+ "fontSize": 10,
3167
+ "textCapacity": 66
3168
+ },
3169
+ {
3170
+ "kind": "title",
3171
+ "x": 64,
3172
+ "y": 101.33333333333333,
3173
+ "width": 1152,
3174
+ "height": 85.33333333333333,
3175
+ "textRole": "title",
3176
+ "fontSize": 32,
3177
+ "textCapacity": 27
3178
+ },
3179
+ {
3180
+ "kind": "text",
3181
+ "x": 1005.3333333333334,
3182
+ "y": 61.333333333333336,
3183
+ "width": 210.66666666666666,
3184
+ "height": 17.333333333333332,
3185
+ "textRole": "body",
3186
+ "fontSize": 9,
3187
+ "textCapacity": 17
3188
+ },
3189
+ {
3190
+ "kind": "text",
3191
+ "x": 64,
3192
+ "y": 222.66666666666666,
3193
+ "width": 373.3333333333333,
3194
+ "height": 32,
3195
+ "textRole": "body",
3196
+ "fontSize": 11,
3197
+ "textCapacity": 25
3198
+ },
3199
+ {
3200
+ "kind": "text",
3201
+ "x": 497.3333333333333,
3202
+ "y": 222.66666666666666,
3203
+ "width": 226.66666666666666,
3204
+ "height": 32,
3205
+ "textRole": "body",
3206
+ "fontSize": 11,
3207
+ "textCapacity": 15
3208
+ },
3209
+ {
3210
+ "kind": "text",
3211
+ "x": 697.3333333333334,
3212
+ "y": 222.66666666666666,
3213
+ "width": 226.66666666666666,
3214
+ "height": 32,
3215
+ "textRole": "body",
3216
+ "fontSize": 11,
3217
+ "textCapacity": 15
3218
+ },
3219
+ {
3220
+ "kind": "text",
3221
+ "x": 922.6666666666666,
3222
+ "y": 222.66666666666666,
3223
+ "width": 226.66666666666666,
3224
+ "height": 32,
3225
+ "textRole": "body",
3226
+ "fontSize": 11,
3227
+ "textCapacity": 15
3228
+ },
3229
+ {
3230
+ "kind": "text",
3231
+ "x": 81.33333333333333,
3232
+ "y": 294.6666666666667,
3233
+ "width": 373.3333333333333,
3234
+ "height": 49.333333333333336,
3235
+ "textRole": "body",
3236
+ "fontSize": 18,
3237
+ "textCapacity": 15
3238
+ },
3239
+ {
3240
+ "kind": "text",
3241
+ "x": 497.3333333333333,
3242
+ "y": 285.3333333333333,
3243
+ "width": 172,
3244
+ "height": 60,
3245
+ "textRole": "body",
3246
+ "fontSize": 28,
3247
+ "textCapacity": 4
3248
+ },
3249
+ {
3250
+ "kind": "text",
3251
+ "x": 697.3333333333334,
3252
+ "y": 298.6666666666667,
3253
+ "width": 193.33333333333334,
3254
+ "height": 44,
3255
+ "textRole": "body",
3256
+ "fontSize": 17,
3257
+ "textCapacity": 8
3258
+ },
3259
+ {
3260
+ "kind": "text",
3261
+ "x": 922.6666666666666,
3262
+ "y": 297.3333333333333,
3263
+ "width": 36,
3264
+ "height": 40,
3265
+ "textRole": "body",
3266
+ "fontSize": 18,
3267
+ "textCapacity": 1
3268
+ },
3269
+ {
3270
+ "kind": "text",
3271
+ "x": 980,
3272
+ "y": 298.6666666666667,
3273
+ "width": 210.66666666666666,
3274
+ "height": 40,
3275
+ "textRole": "body",
3276
+ "fontSize": 16,
3277
+ "textCapacity": 9
3278
+ },
3279
+ {
3280
+ "kind": "text",
3281
+ "x": 81.33333333333333,
3282
+ "y": 376,
3283
+ "width": 373.3333333333333,
3284
+ "height": 49.333333333333336,
3285
+ "textRole": "body",
3286
+ "fontSize": 18,
3287
+ "textCapacity": 15
3288
+ },
3289
+ {
3290
+ "kind": "text",
3291
+ "x": 497.3333333333333,
3292
+ "y": 366.6666666666667,
3293
+ "width": 172,
3294
+ "height": 60,
3295
+ "textRole": "body",
3296
+ "fontSize": 28,
3297
+ "textCapacity": 4
3298
+ },
3299
+ {
3300
+ "kind": "text",
3301
+ "x": 697.3333333333334,
3302
+ "y": 380,
3303
+ "width": 193.33333333333334,
3304
+ "height": 44,
3305
+ "textRole": "body",
3306
+ "fontSize": 17,
3307
+ "textCapacity": 8
3308
+ },
3309
+ {
3310
+ "kind": "text",
3311
+ "x": 922.6666666666666,
3312
+ "y": 378.6666666666667,
3313
+ "width": 36,
3314
+ "height": 40,
3315
+ "textRole": "body",
3316
+ "fontSize": 18,
3317
+ "textCapacity": 1
3318
+ },
3319
+ {
3320
+ "kind": "text",
3321
+ "x": 980,
3322
+ "y": 380,
3323
+ "width": 210.66666666666666,
3324
+ "height": 40,
3325
+ "textRole": "body",
3326
+ "fontSize": 16,
3327
+ "textCapacity": 9
3328
+ },
3329
+ {
3330
+ "kind": "shape",
3331
+ "x": 64,
3332
+ "y": 434.6666666666667,
3333
+ "width": 1152,
3334
+ "height": 81.33333333333333,
3335
+ "shape": "rect",
3336
+ "fill": "f3f5db"
3337
+ },
3338
+ {
3339
+ "kind": "shape",
3340
+ "x": 64,
3341
+ "y": 434.6666666666667,
3342
+ "width": 4,
3343
+ "height": 81.33333333333333,
3344
+ "shape": "rect",
3345
+ "fill": "0A0A0A"
3346
+ },
3347
+ {
3348
+ "kind": "text",
3349
+ "x": 81.33333333333333,
3350
+ "y": 457.3333333333333,
3351
+ "width": 373.3333333333333,
3352
+ "height": 49.333333333333336,
3353
+ "textRole": "body",
3354
+ "fontSize": 18,
3355
+ "textCapacity": 15
3356
+ },
3357
+ {
3358
+ "kind": "text",
3359
+ "x": 497.3333333333333,
3360
+ "y": 448,
3361
+ "width": 172,
3362
+ "height": 60,
3363
+ "textRole": "body",
3364
+ "fontSize": 28,
3365
+ "textCapacity": 4
3366
+ },
3367
+ {
3368
+ "kind": "text",
3369
+ "x": 697.3333333333334,
3370
+ "y": 461.3333333333333,
3371
+ "width": 193.33333333333334,
3372
+ "height": 44,
3373
+ "textRole": "body",
3374
+ "fontSize": 17,
3375
+ "textCapacity": 8
3376
+ },
3377
+ {
3378
+ "kind": "text",
3379
+ "x": 922.6666666666666,
3380
+ "y": 460,
3381
+ "width": 36,
3382
+ "height": 40,
3383
+ "textRole": "body",
3384
+ "fontSize": 18,
3385
+ "textCapacity": 1
3386
+ },
3387
+ {
3388
+ "kind": "text",
3389
+ "x": 980,
3390
+ "y": 461.3333333333333,
3391
+ "width": 210.66666666666666,
3392
+ "height": 40,
3393
+ "textRole": "body",
3394
+ "fontSize": 16,
3395
+ "textCapacity": 9
3396
+ },
3397
+ {
3398
+ "kind": "text",
3399
+ "x": 81.33333333333333,
3400
+ "y": 538.6666666666666,
3401
+ "width": 373.3333333333333,
3402
+ "height": 49.333333333333336,
3403
+ "textRole": "body",
3404
+ "fontSize": 18,
3405
+ "textCapacity": 15
3406
+ },
3407
+ {
3408
+ "kind": "text",
3409
+ "x": 497.3333333333333,
3410
+ "y": 529.3333333333334,
3411
+ "width": 172,
3412
+ "height": 60,
3413
+ "textRole": "body",
3414
+ "fontSize": 28,
3415
+ "textCapacity": 4
3416
+ },
3417
+ {
3418
+ "kind": "text",
3419
+ "x": 697.3333333333334,
3420
+ "y": 542.6666666666666,
3421
+ "width": 193.33333333333334,
3422
+ "height": 44,
3423
+ "textRole": "body",
3424
+ "fontSize": 17,
3425
+ "textCapacity": 8
3426
+ },
3427
+ {
3428
+ "kind": "text",
3429
+ "x": 922.6666666666666,
3430
+ "y": 541.3333333333334,
3431
+ "width": 36,
3432
+ "height": 40,
3433
+ "textRole": "body",
3434
+ "fontSize": 18,
3435
+ "textCapacity": 1
3436
+ },
3437
+ {
3438
+ "kind": "text",
3439
+ "x": 980,
3440
+ "y": 542.6666666666666,
3441
+ "width": 210.66666666666666,
3442
+ "height": 40,
3443
+ "textRole": "body",
3444
+ "fontSize": 16,
3445
+ "textCapacity": 9
3446
+ },
3447
+ {
3448
+ "kind": "text",
3449
+ "x": 64,
3450
+ "y": 633.3333333333334,
3451
+ "width": 1152,
3452
+ "height": 33.333333333333336,
3453
+ "textRole": "body",
3454
+ "fontSize": 13,
3455
+ "textCapacity": 66
3456
+ },
3457
+ {
3458
+ "kind": "text",
3459
+ "x": 64,
3460
+ "y": 676,
3461
+ "width": 1044,
3462
+ "height": 21.333333333333332,
3463
+ "textRole": "body",
3464
+ "fontSize": 9,
3465
+ "textCapacity": 87
3466
+ },
3467
+ {
3468
+ "kind": "text",
3469
+ "x": 1161.3333333333333,
3470
+ "y": 672,
3471
+ "width": 54.666666666666664,
3472
+ "height": 29.333333333333332,
3473
+ "textRole": "body",
3474
+ "fontSize": 11,
3475
+ "textCapacity": 3
3476
+ }
3477
+ ],
3478
+ "jsxReference": ""
3479
+ },
3480
+ {
3481
+ "slideNumber": 11,
3482
+ "sourceTitle": "Sequence the work around a decision gate",
3483
+ "family": "process",
3484
+ "titlePosition": "left",
3485
+ "bodyColumns": 2,
3486
+ "density": "high",
3487
+ "features": [
3488
+ "roadmap"
3489
+ ],
3490
+ "recommendedRoles": [
3491
+ "process"
3492
+ ],
3493
+ "structureSummary": "Four timed workstreams and a decision gate",
3494
+ "zones": [
3495
+ {
3496
+ "kind": "shape",
3497
+ "x": 1157.3333333333333,
3498
+ "y": 32,
3499
+ "width": 13.333333333333334,
3500
+ "height": 13.333333333333334,
3501
+ "shape": "rect",
3502
+ "fill": "E6FF3D"
3503
+ },
3504
+ {
3505
+ "kind": "shape",
3506
+ "x": 1184,
3507
+ "y": 32,
3508
+ "width": 13.333333333333334,
3509
+ "height": 13.333333333333334,
3510
+ "shape": "rect",
3511
+ "fill": "E6FF3D"
3512
+ },
3513
+ {
3514
+ "kind": "shape",
3515
+ "x": 1170.6666666666667,
3516
+ "y": 45.333333333333336,
3517
+ "width": 13.333333333333334,
3518
+ "height": 13.333333333333334,
3519
+ "shape": "rect",
3520
+ "fill": "E6FF3D"
3521
+ },
3522
+ {
3523
+ "kind": "shape",
3524
+ "x": 1157.3333333333333,
3525
+ "y": 58.666666666666664,
3526
+ "width": 13.333333333333334,
3527
+ "height": 13.333333333333334,
3528
+ "shape": "rect",
3529
+ "fill": "E6FF3D"
3530
+ },
3531
+ {
3532
+ "kind": "shape",
3533
+ "x": 1184,
3534
+ "y": 58.666666666666664,
3535
+ "width": 13.333333333333334,
3536
+ "height": 13.333333333333334,
3537
+ "shape": "rect",
3538
+ "fill": "E6FF3D"
3539
+ },
3540
+ {
3541
+ "kind": "text",
3542
+ "x": 64,
3543
+ "y": 36,
3544
+ "width": 886.6666666666666,
3545
+ "height": 26.666666666666668,
3546
+ "textRole": "body",
3547
+ "fontSize": 10,
3548
+ "textCapacity": 66
3549
+ },
3550
+ {
3551
+ "kind": "title",
3552
+ "x": 64,
3553
+ "y": 101.33333333333333,
3554
+ "width": 1152,
3555
+ "height": 85.33333333333333,
3556
+ "textRole": "title",
3557
+ "fontSize": 32,
3558
+ "textCapacity": 27
3559
+ },
3560
+ {
3561
+ "kind": "text",
3562
+ "x": 1005.3333333333334,
3563
+ "y": 61.333333333333336,
3564
+ "width": 210.66666666666666,
3565
+ "height": 17.333333333333332,
3566
+ "textRole": "body",
3567
+ "fontSize": 9,
3568
+ "textCapacity": 17
3569
+ },
3570
+ {
3571
+ "kind": "text",
3572
+ "x": 64,
3573
+ "y": 222.66666666666666,
3574
+ "width": 324,
3575
+ "height": 30.666666666666668,
3576
+ "textRole": "body",
3577
+ "fontSize": 11,
3578
+ "textCapacity": 22
3579
+ },
3580
+ {
3581
+ "kind": "text",
3582
+ "x": 421.3333333333333,
3583
+ "y": 221.33333333333334,
3584
+ "width": 176,
3585
+ "height": 33.333333333333336,
3586
+ "textRole": "body",
3587
+ "fontSize": 12,
3588
+ "textCapacity": 11
3589
+ },
3590
+ {
3591
+ "kind": "text",
3592
+ "x": 617.3333333333334,
3593
+ "y": 221.33333333333334,
3594
+ "width": 176,
3595
+ "height": 33.333333333333336,
3596
+ "textRole": "body",
3597
+ "fontSize": 12,
3598
+ "textCapacity": 11
3599
+ },
3600
+ {
3601
+ "kind": "text",
3602
+ "x": 813.3333333333334,
3603
+ "y": 221.33333333333334,
3604
+ "width": 176,
3605
+ "height": 33.333333333333336,
3606
+ "textRole": "body",
3607
+ "fontSize": 12,
3608
+ "textCapacity": 11
3609
+ },
3610
+ {
3611
+ "kind": "text",
3612
+ "x": 1009.3333333333334,
3613
+ "y": 221.33333333333334,
3614
+ "width": 176,
3615
+ "height": 33.333333333333336,
3616
+ "textRole": "body",
3617
+ "fontSize": 12,
3618
+ "textCapacity": 11
3619
+ },
3620
+ {
3621
+ "kind": "text",
3622
+ "x": 64,
3623
+ "y": 273.3333333333333,
3624
+ "width": 318.6666666666667,
3625
+ "height": 40,
3626
+ "textRole": "body",
3627
+ "fontSize": 18,
3628
+ "textCapacity": 13
3629
+ },
3630
+ {
3631
+ "kind": "text",
3632
+ "x": 64,
3633
+ "y": 313.3333333333333,
3634
+ "width": 318.6666666666667,
3635
+ "height": 32,
3636
+ "textRole": "body",
3637
+ "fontSize": 11,
3638
+ "textCapacity": 21
3639
+ },
3640
+ {
3641
+ "kind": "shape",
3642
+ "x": 406.6666666666667,
3643
+ "y": 289.3333333333333,
3644
+ "width": 176.4,
3645
+ "height": 29.333333333333332,
3646
+ "shape": "rect",
3647
+ "fill": "b6b5b1"
3648
+ },
3649
+ {
3650
+ "kind": "shape",
3651
+ "x": 579.0666666666667,
3652
+ "y": 300,
3653
+ "width": 8,
3654
+ "height": 8,
3655
+ "shape": "ellipse",
3656
+ "fill": "747371"
3657
+ },
3658
+ {
3659
+ "kind": "text",
3660
+ "x": 64,
3661
+ "y": 354.6666666666667,
3662
+ "width": 318.6666666666667,
3663
+ "height": 40,
3664
+ "textRole": "body",
3665
+ "fontSize": 18,
3666
+ "textCapacity": 13
3667
+ },
3668
+ {
3669
+ "kind": "text",
3670
+ "x": 64,
3671
+ "y": 394.6666666666667,
3672
+ "width": 318.6666666666667,
3673
+ "height": 32,
3674
+ "textRole": "body",
3675
+ "fontSize": 11,
3676
+ "textCapacity": 21
3677
+ },
3678
+ {
3679
+ "kind": "shape",
3680
+ "x": 543.8666666666667,
3681
+ "y": 370.6666666666667,
3682
+ "width": 254.79999999999998,
3683
+ "height": 29.333333333333332,
3684
+ "shape": "rect",
3685
+ "fill": "b6b5b1"
3686
+ },
3687
+ {
3688
+ "kind": "shape",
3689
+ "x": 794.6666666666666,
3690
+ "y": 381.3333333333333,
3691
+ "width": 8,
3692
+ "height": 8,
3693
+ "shape": "ellipse",
3694
+ "fill": "747371"
3695
+ },
3696
+ {
3697
+ "kind": "text",
3698
+ "x": 64,
3699
+ "y": 436,
3700
+ "width": 318.6666666666667,
3701
+ "height": 40,
3702
+ "textRole": "body",
3703
+ "fontSize": 18,
3704
+ "textCapacity": 13
3705
+ },
3706
+ {
3707
+ "kind": "text",
3708
+ "x": 64,
3709
+ "y": 476,
3710
+ "width": 318.6666666666667,
3711
+ "height": 32,
3712
+ "textRole": "body",
3713
+ "fontSize": 11,
3714
+ "textCapacity": 21
3715
+ },
3716
+ {
3717
+ "kind": "shape",
3718
+ "x": 759.4666666666667,
3719
+ "y": 452,
3720
+ "width": 215.60000000000002,
3721
+ "height": 29.333333333333332,
3722
+ "shape": "rect",
3723
+ "fill": "0A0A0A"
3724
+ },
3725
+ {
3726
+ "kind": "shape",
3727
+ "x": 971.0666666666667,
3728
+ "y": 462.6666666666667,
3729
+ "width": 8,
3730
+ "height": 8,
3731
+ "shape": "ellipse",
3732
+ "fill": "0A0A0A"
3733
+ },
3734
+ {
3735
+ "kind": "text",
3736
+ "x": 64,
3737
+ "y": 517.3333333333334,
3738
+ "width": 318.6666666666667,
3739
+ "height": 40,
3740
+ "textRole": "body",
3741
+ "fontSize": 18,
3742
+ "textCapacity": 13
3743
+ },
3744
+ {
3745
+ "kind": "text",
3746
+ "x": 64,
3747
+ "y": 557.3333333333334,
3748
+ "width": 318.6666666666667,
3749
+ "height": 32,
3750
+ "textRole": "body",
3751
+ "fontSize": 11,
3752
+ "textCapacity": 21
3753
+ },
3754
+ {
3755
+ "kind": "shape",
3756
+ "x": 955.4666666666666,
3757
+ "y": 533.3333333333334,
3758
+ "width": 235.20000000000002,
3759
+ "height": 29.333333333333332,
3760
+ "shape": "rect",
3761
+ "fill": "b6b5b1"
3762
+ },
3763
+ {
3764
+ "kind": "shape",
3765
+ "x": 1186.6666666666665,
3766
+ "y": 544,
3767
+ "width": 8,
3768
+ "height": 8,
3769
+ "shape": "ellipse",
3770
+ "fill": "747371"
3771
+ },
3772
+ {
3773
+ "kind": "shape",
3774
+ "x": 949.3333333333334,
3775
+ "y": 592,
3776
+ "width": 10.666666666666666,
3777
+ "height": 10.666666666666666,
3778
+ "shape": "ellipse",
3779
+ "fill": "E6FF3D"
3780
+ },
3781
+ {
3782
+ "kind": "text",
3783
+ "x": 64,
3784
+ "y": 633.3333333333334,
3785
+ "width": 1152,
3786
+ "height": 33.333333333333336,
3787
+ "textRole": "body",
3788
+ "fontSize": 13,
3789
+ "textCapacity": 66
3790
+ },
3791
+ {
3792
+ "kind": "text",
3793
+ "x": 64,
3794
+ "y": 676,
3795
+ "width": 1044,
3796
+ "height": 21.333333333333332,
3797
+ "textRole": "body",
3798
+ "fontSize": 9,
3799
+ "textCapacity": 87
3800
+ },
3801
+ {
3802
+ "kind": "text",
3803
+ "x": 1161.3333333333333,
3804
+ "y": 672,
3805
+ "width": 54.666666666666664,
3806
+ "height": 29.333333333333332,
3807
+ "textRole": "body",
3808
+ "fontSize": 11,
3809
+ "textCapacity": 3
3810
+ }
3811
+ ],
3812
+ "jsxReference": ""
3813
+ },
3814
+ {
3815
+ "slideNumber": 12,
3816
+ "sourceTitle": "Closing",
3817
+ "family": "closing",
3818
+ "titlePosition": "left",
3819
+ "bodyColumns": 1,
3820
+ "density": "medium",
3821
+ "features": [
3822
+ "closing"
3823
+ ],
3824
+ "recommendedRoles": [
3825
+ "closing"
3826
+ ],
3827
+ "structureSummary": "Closing",
3828
+ "zones": [
3829
+ {
3830
+ "kind": "text",
3831
+ "x": 64,
3832
+ "y": 105.33333333333333,
3833
+ "width": 1133.3333333333333,
3834
+ "height": 34.666666666666664,
3835
+ "textRole": "body",
3836
+ "fontSize": 13,
3837
+ "textCapacity": 65
3838
+ },
3839
+ {
3840
+ "kind": "title",
3841
+ "x": 64,
3842
+ "y": 245.33333333333334,
3843
+ "width": 1146.6666666666667,
3844
+ "height": 262.6666666666667,
3845
+ "textRole": "title",
3846
+ "fontSize": 55,
3847
+ "textCapacity": 45
3848
+ },
3849
+ {
3850
+ "kind": "text",
3851
+ "x": 64,
3852
+ "y": 674.6666666666666,
3853
+ "width": 1013.3333333333334,
3854
+ "height": 21.333333333333332,
3855
+ "textRole": "body",
3856
+ "fontSize": 9,
3857
+ "textCapacity": 84
3858
+ },
3859
+ {
3860
+ "kind": "text",
3861
+ "x": 1160,
3862
+ "y": 670.6666666666666,
3863
+ "width": 53.333333333333336,
3864
+ "height": 26.666666666666668,
3865
+ "textRole": "body",
3866
+ "fontSize": 11,
3867
+ "textCapacity": 3
3868
+ }
3869
+ ],
3870
+ "jsxReference": ""
3871
+ }
3872
+ ]
3873
+ }
3874
+ },
3875
+ "provenance": {
3876
+ "kind": "mit-adaptation",
3877
+ "license": "MIT",
3878
+ "upstream": "https://github.com/zarazhangrui/beautiful-html-templates/tree/e5e204fb1f3b06290846e7dcd7aceddabeceec8c/templates/neo-grid-bold",
3879
+ "author": "Zara Zhang",
3880
+ "adaptedBy": "DSH Desktop contributors",
3881
+ "modified": "2026-09-06"
3882
+ }
3883
+ }