@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,3196 @@
1
+ {
2
+ "definition": {
3
+ "id": "dsh-cartesian",
4
+ "category": "consulting",
5
+ "sourceCollection": "curated",
6
+ "slug": "dsh-cartesian",
7
+ "name": "Cartesian",
8
+ "localizedNames": {
9
+ "en": "Cartesian",
10
+ "zh": "理性简报"
11
+ },
12
+ "variantLabel": "DSH",
13
+ "description": "理性简报 · Cartesian",
14
+ "previewTitle": "Cartesian",
15
+ "previewSubtitle": "12 editable layouts",
16
+ "titleFontFace": "Georgia",
17
+ "bodyFontFace": "Arial",
18
+ "fonts": {
19
+ "en": {
20
+ "title": "Georgia",
21
+ "body": "Arial"
22
+ },
23
+ "zh": {
24
+ "title": "Songti SC",
25
+ "body": "PingFang SC"
26
+ },
27
+ "fallbacks": {
28
+ "en": {
29
+ "title": "Georgia",
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": "Playfair Display"
48
+ },
49
+ "previewLanguage": "en",
50
+ "palette": {
51
+ "background": "EDE8E0",
52
+ "text": "1A1A1A",
53
+ "accent": "8A8178",
54
+ "surface": "E2DBD1",
55
+ "secondary": "5A5A5A",
56
+ "muted": "5A5A5A"
57
+ },
58
+ "referenceDirectory": "consulting/dsh-cartesian",
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": "92d3e9126ea77f522857b431b287de482a81f7137a6e7b6a9f1758389fe0b5af"
91
+ },
92
+ "semantics": {
93
+ "palette": {
94
+ "background": "EDE8E0",
95
+ "text": "1A1A1A",
96
+ "accent": "8A8178",
97
+ "surface": "E2DBD1",
98
+ "secondary": "5A5A5A",
99
+ "muted": "5A5A5A"
100
+ },
101
+ "source": {
102
+ "fileName": "cartesian-reference.jpg",
103
+ "sha256": "92d3e9126ea77f522857b431b287de482a81f7137a6e7b6a9f1758389fe0b5af",
104
+ "slideCount": 12,
105
+ "averageTextBlocks": 19,
106
+ "averageCharacters": 312,
107
+ "visualGrammar": "cartesian",
108
+ "recommendedDensity": "medium",
109
+ "designSummary": "# Cartesian / 理性简报\n\nAdapted from Zara Zhang's Cartesian, 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: Georgia; English body: Arial. These portable Office substitutions replace the upstream display face Playfair Display. Chinese display: Songti SC; body: PingFang SC. On Windows use SimSun / Microsoft YaHei; on Linux use Noto Serif 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 quiet, museum-catalog editorial system built on Playfair Display serif headlines, Inter sans body, and a five-tone warm-stone palette. The aesthetic is \"consulting deck meets architectural monograph\" — minimal geometric line decorations (thin circles, dashed arcs, vertical and horizontal hairlines) drift behind content, suggesting drafting paper and compass work. Every divider is a single 1px line in a muted taupe; nothing is bold, nothing is loud. The cultural reference is Massimo Vignelli's editorial work, the Cooper Hewitt catalog, and pencil-and-tracing-paper urban planning documents.\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. Turn uncertainty into a decision — Asymmetric argument with three supporting evidence rows\n3. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n4. Separate the record from the explanation — Interview excerpt, observation, competing explanation and next check\n5. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n6. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n7. Design the test before reading the result — One hypothesis with comparison, measure and a predeclared decision rule\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": 5,
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": "process",
137
+ "slideCount": 1,
138
+ "sampleSlideNumbers": [
139
+ 3
140
+ ],
141
+ "titlePosition": "left",
142
+ "bodyColumns": 3,
143
+ "density": "high",
144
+ "averageTextFrames": 17,
145
+ "averageMediaFrames": 0
146
+ },
147
+ {
148
+ "family": "quote",
149
+ "slideCount": 1,
150
+ "sampleSlideNumbers": [
151
+ 4
152
+ ],
153
+ "titlePosition": "left",
154
+ "bodyColumns": 2,
155
+ "density": "high",
156
+ "averageTextFrames": 18,
157
+ "averageMediaFrames": 0
158
+ },
159
+ {
160
+ "family": "comparison",
161
+ "slideCount": 1,
162
+ "sampleSlideNumbers": [
163
+ 5
164
+ ],
165
+ "titlePosition": "left",
166
+ "bodyColumns": 2,
167
+ "density": "high",
168
+ "averageTextFrames": 26,
169
+ "averageMediaFrames": 0
170
+ },
171
+ {
172
+ "family": "data",
173
+ "slideCount": 1,
174
+ "sampleSlideNumbers": [
175
+ 6
176
+ ],
177
+ "titlePosition": "left",
178
+ "bodyColumns": 2,
179
+ "density": "high",
180
+ "averageTextFrames": 30,
181
+ "averageMediaFrames": 0
182
+ },
183
+ {
184
+ "family": "comparison",
185
+ "slideCount": 1,
186
+ "sampleSlideNumbers": [
187
+ 7
188
+ ],
189
+ "titlePosition": "left",
190
+ "bodyColumns": 2,
191
+ "density": "high",
192
+ "averageTextFrames": 16,
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": 942.6666666666666,
275
+ "y": 253.33333333333334,
276
+ "width": 242.66666666666666,
277
+ "height": 242.66666666666666,
278
+ "shape": "ellipse",
279
+ "fill": "EDE8E0"
280
+ },
281
+ {
282
+ "kind": "text",
283
+ "x": 64,
284
+ "y": 206.66666666666666,
285
+ "width": 1066.6666666666667,
286
+ "height": 32,
287
+ "textRole": "body",
288
+ "fontSize": 11,
289
+ "textCapacity": 72
290
+ },
291
+ {
292
+ "kind": "title",
293
+ "x": 64,
294
+ "y": 300,
295
+ "width": 906.6666666666666,
296
+ "height": 140,
297
+ "textRole": "title",
298
+ "fontSize": 66,
299
+ "textCapacity": 10
300
+ },
301
+ {
302
+ "kind": "text",
303
+ "x": 64,
304
+ "y": 472,
305
+ "width": 860,
306
+ "height": 73.33333333333333,
307
+ "textRole": "body",
308
+ "fontSize": 21,
309
+ "textCapacity": 60
310
+ },
311
+ {
312
+ "kind": "text",
313
+ "x": 64,
314
+ "y": 674.6666666666666,
315
+ "width": 1013.3333333333334,
316
+ "height": 21.333333333333332,
317
+ "textRole": "body",
318
+ "fontSize": 9,
319
+ "textCapacity": 84
320
+ },
321
+ {
322
+ "kind": "text",
323
+ "x": 1160,
324
+ "y": 670.6666666666666,
325
+ "width": 53.333333333333336,
326
+ "height": 26.666666666666668,
327
+ "textRole": "body",
328
+ "fontSize": 11,
329
+ "textCapacity": 3
330
+ }
331
+ ],
332
+ "jsxReference": ""
333
+ },
334
+ {
335
+ "slideNumber": 2,
336
+ "sourceTitle": "Turn uncertainty into a decision",
337
+ "family": "insights",
338
+ "titlePosition": "left",
339
+ "bodyColumns": 2,
340
+ "density": "medium",
341
+ "features": [
342
+ "thesis"
343
+ ],
344
+ "recommendedRoles": [
345
+ "insights"
346
+ ],
347
+ "structureSummary": "Asymmetric argument with three supporting evidence rows",
348
+ "zones": [
349
+ {
350
+ "kind": "text",
351
+ "x": 64,
352
+ "y": 36,
353
+ "width": 886.6666666666666,
354
+ "height": 26.666666666666668,
355
+ "textRole": "body",
356
+ "fontSize": 10,
357
+ "textCapacity": 66
358
+ },
359
+ {
360
+ "kind": "title",
361
+ "x": 64,
362
+ "y": 101.33333333333333,
363
+ "width": 1152,
364
+ "height": 85.33333333333333,
365
+ "textRole": "title",
366
+ "fontSize": 32,
367
+ "textCapacity": 27
368
+ },
369
+ {
370
+ "kind": "text",
371
+ "x": 1005.3333333333334,
372
+ "y": 61.333333333333336,
373
+ "width": 210.66666666666666,
374
+ "height": 17.333333333333332,
375
+ "textRole": "body",
376
+ "fontSize": 9,
377
+ "textCapacity": 17
378
+ },
379
+ {
380
+ "kind": "text",
381
+ "x": 64,
382
+ "y": 218.66666666666666,
383
+ "width": 464,
384
+ "height": 33.333333333333336,
385
+ "textRole": "body",
386
+ "fontSize": 13,
387
+ "textCapacity": 26
388
+ },
389
+ {
390
+ "kind": "title",
391
+ "x": 64,
392
+ "y": 276,
393
+ "width": 442.6666666666667,
394
+ "height": 236,
395
+ "textRole": "title",
396
+ "fontSize": 30,
397
+ "textCapacity": 55
398
+ },
399
+ {
400
+ "kind": "text",
401
+ "x": 64,
402
+ "y": 560,
403
+ "width": 440,
404
+ "height": 57.333333333333336,
405
+ "textRole": "body",
406
+ "fontSize": 17,
407
+ "textCapacity": 38
408
+ },
409
+ {
410
+ "kind": "text",
411
+ "x": 588,
412
+ "y": 222.66666666666666,
413
+ "width": 66.66666666666667,
414
+ "height": 50.666666666666664,
415
+ "textRole": "body",
416
+ "fontSize": 26,
417
+ "textCapacity": 1
418
+ },
419
+ {
420
+ "kind": "text",
421
+ "x": 685.3333333333334,
422
+ "y": 226.66666666666666,
423
+ "width": 332,
424
+ "height": 42.666666666666664,
425
+ "textRole": "body",
426
+ "fontSize": 23,
427
+ "textCapacity": 10
428
+ },
429
+ {
430
+ "kind": "text",
431
+ "x": 1040,
432
+ "y": 234.66666666666666,
433
+ "width": 176,
434
+ "height": 32,
435
+ "textRole": "body",
436
+ "fontSize": 10,
437
+ "textCapacity": 26
438
+ },
439
+ {
440
+ "kind": "text",
441
+ "x": 685.3333333333334,
442
+ "y": 281.3333333333333,
443
+ "width": 530.6666666666666,
444
+ "height": 62.666666666666664,
445
+ "textRole": "body",
446
+ "fontSize": 18,
447
+ "textCapacity": 44
448
+ },
449
+ {
450
+ "kind": "text",
451
+ "x": 588,
452
+ "y": 348,
453
+ "width": 66.66666666666667,
454
+ "height": 50.666666666666664,
455
+ "textRole": "body",
456
+ "fontSize": 26,
457
+ "textCapacity": 1
458
+ },
459
+ {
460
+ "kind": "text",
461
+ "x": 685.3333333333334,
462
+ "y": 352,
463
+ "width": 332,
464
+ "height": 42.666666666666664,
465
+ "textRole": "body",
466
+ "fontSize": 23,
467
+ "textCapacity": 10
468
+ },
469
+ {
470
+ "kind": "text",
471
+ "x": 1040,
472
+ "y": 360,
473
+ "width": 176,
474
+ "height": 32,
475
+ "textRole": "body",
476
+ "fontSize": 10,
477
+ "textCapacity": 26
478
+ },
479
+ {
480
+ "kind": "text",
481
+ "x": 685.3333333333334,
482
+ "y": 406.6666666666667,
483
+ "width": 530.6666666666666,
484
+ "height": 62.666666666666664,
485
+ "textRole": "body",
486
+ "fontSize": 18,
487
+ "textCapacity": 44
488
+ },
489
+ {
490
+ "kind": "text",
491
+ "x": 588,
492
+ "y": 473.3333333333333,
493
+ "width": 66.66666666666667,
494
+ "height": 50.666666666666664,
495
+ "textRole": "body",
496
+ "fontSize": 26,
497
+ "textCapacity": 1
498
+ },
499
+ {
500
+ "kind": "text",
501
+ "x": 685.3333333333334,
502
+ "y": 477.3333333333333,
503
+ "width": 332,
504
+ "height": 42.666666666666664,
505
+ "textRole": "body",
506
+ "fontSize": 23,
507
+ "textCapacity": 10
508
+ },
509
+ {
510
+ "kind": "text",
511
+ "x": 1040,
512
+ "y": 485.3333333333333,
513
+ "width": 176,
514
+ "height": 32,
515
+ "textRole": "body",
516
+ "fontSize": 10,
517
+ "textCapacity": 26
518
+ },
519
+ {
520
+ "kind": "text",
521
+ "x": 685.3333333333334,
522
+ "y": 532,
523
+ "width": 530.6666666666666,
524
+ "height": 62.666666666666664,
525
+ "textRole": "body",
526
+ "fontSize": 18,
527
+ "textCapacity": 44
528
+ },
529
+ {
530
+ "kind": "text",
531
+ "x": 64,
532
+ "y": 676,
533
+ "width": 1044,
534
+ "height": 21.333333333333332,
535
+ "textRole": "body",
536
+ "fontSize": 9,
537
+ "textCapacity": 87
538
+ },
539
+ {
540
+ "kind": "text",
541
+ "x": 1161.3333333333333,
542
+ "y": 672,
543
+ "width": 54.666666666666664,
544
+ "height": 29.333333333333332,
545
+ "textRole": "body",
546
+ "fontSize": 11,
547
+ "textCapacity": 3
548
+ }
549
+ ],
550
+ "jsxReference": ""
551
+ },
552
+ {
553
+ "slideNumber": 3,
554
+ "sourceTitle": "Trace the question to testable branches",
555
+ "family": "process",
556
+ "titlePosition": "left",
557
+ "bodyColumns": 3,
558
+ "density": "high",
559
+ "features": [
560
+ "tree"
561
+ ],
562
+ "recommendedRoles": [
563
+ "process"
564
+ ],
565
+ "structureSummary": "Three-branch hypothesis tree with six testable leaves",
566
+ "zones": [
567
+ {
568
+ "kind": "text",
569
+ "x": 64,
570
+ "y": 36,
571
+ "width": 886.6666666666666,
572
+ "height": 26.666666666666668,
573
+ "textRole": "body",
574
+ "fontSize": 10,
575
+ "textCapacity": 66
576
+ },
577
+ {
578
+ "kind": "title",
579
+ "x": 64,
580
+ "y": 101.33333333333333,
581
+ "width": 1152,
582
+ "height": 85.33333333333333,
583
+ "textRole": "title",
584
+ "fontSize": 32,
585
+ "textCapacity": 27
586
+ },
587
+ {
588
+ "kind": "text",
589
+ "x": 1005.3333333333334,
590
+ "y": 61.333333333333336,
591
+ "width": 210.66666666666666,
592
+ "height": 17.333333333333332,
593
+ "textRole": "body",
594
+ "fontSize": 9,
595
+ "textCapacity": 17
596
+ },
597
+ {
598
+ "kind": "text",
599
+ "x": 64,
600
+ "y": 202.66666666666666,
601
+ "width": 1133.3333333333333,
602
+ "height": 33.333333333333336,
603
+ "textRole": "body",
604
+ "fontSize": 13,
605
+ "textCapacity": 65
606
+ },
607
+ {
608
+ "kind": "shape",
609
+ "x": 64,
610
+ "y": 362.6666666666667,
611
+ "width": 292,
612
+ "height": 140,
613
+ "shape": "rect",
614
+ "fill": "8A8178"
615
+ },
616
+ {
617
+ "kind": "text",
618
+ "x": 80,
619
+ "y": 380,
620
+ "width": 260,
621
+ "height": 114.66666666666667,
622
+ "textRole": "body",
623
+ "fontSize": 18,
624
+ "textCapacity": 40
625
+ },
626
+ {
627
+ "kind": "shape",
628
+ "x": 466.6666666666667,
629
+ "y": 245.33333333333334,
630
+ "width": 226.66666666666666,
631
+ "height": 77.33333333333333,
632
+ "shape": "rect",
633
+ "fill": "E2DBD1"
634
+ },
635
+ {
636
+ "kind": "text",
637
+ "x": 482.6666666666667,
638
+ "y": 262.6666666666667,
639
+ "width": 194.66666666666666,
640
+ "height": 52,
641
+ "textRole": "body",
642
+ "fontSize": 18,
643
+ "textCapacity": 8
644
+ },
645
+ {
646
+ "kind": "text",
647
+ "x": 810.6666666666666,
648
+ "y": 236,
649
+ "width": 398.6666666666667,
650
+ "height": 45.333333333333336,
651
+ "textRole": "body",
652
+ "fontSize": 18,
653
+ "textCapacity": 16
654
+ },
655
+ {
656
+ "kind": "text",
657
+ "x": 810.6666666666666,
658
+ "y": 292,
659
+ "width": 398.6666666666667,
660
+ "height": 45.333333333333336,
661
+ "textRole": "body",
662
+ "fontSize": 18,
663
+ "textCapacity": 16
664
+ },
665
+ {
666
+ "kind": "shape",
667
+ "x": 466.6666666666667,
668
+ "y": 376,
669
+ "width": 226.66666666666666,
670
+ "height": 77.33333333333333,
671
+ "shape": "rect",
672
+ "fill": "E2DBD1"
673
+ },
674
+ {
675
+ "kind": "text",
676
+ "x": 482.6666666666667,
677
+ "y": 393.3333333333333,
678
+ "width": 194.66666666666666,
679
+ "height": 52,
680
+ "textRole": "body",
681
+ "fontSize": 18,
682
+ "textCapacity": 8
683
+ },
684
+ {
685
+ "kind": "text",
686
+ "x": 810.6666666666666,
687
+ "y": 366.6666666666667,
688
+ "width": 398.6666666666667,
689
+ "height": 45.333333333333336,
690
+ "textRole": "body",
691
+ "fontSize": 18,
692
+ "textCapacity": 16
693
+ },
694
+ {
695
+ "kind": "text",
696
+ "x": 810.6666666666666,
697
+ "y": 422.6666666666667,
698
+ "width": 398.6666666666667,
699
+ "height": 45.333333333333336,
700
+ "textRole": "body",
701
+ "fontSize": 18,
702
+ "textCapacity": 16
703
+ },
704
+ {
705
+ "kind": "shape",
706
+ "x": 466.6666666666667,
707
+ "y": 506.6666666666667,
708
+ "width": 226.66666666666666,
709
+ "height": 77.33333333333333,
710
+ "shape": "rect",
711
+ "fill": "E2DBD1"
712
+ },
713
+ {
714
+ "kind": "text",
715
+ "x": 482.6666666666667,
716
+ "y": 524,
717
+ "width": 194.66666666666666,
718
+ "height": 52,
719
+ "textRole": "body",
720
+ "fontSize": 18,
721
+ "textCapacity": 8
722
+ },
723
+ {
724
+ "kind": "text",
725
+ "x": 810.6666666666666,
726
+ "y": 497.3333333333333,
727
+ "width": 398.6666666666667,
728
+ "height": 45.333333333333336,
729
+ "textRole": "body",
730
+ "fontSize": 18,
731
+ "textCapacity": 16
732
+ },
733
+ {
734
+ "kind": "text",
735
+ "x": 810.6666666666666,
736
+ "y": 553.3333333333334,
737
+ "width": 398.6666666666667,
738
+ "height": 45.333333333333336,
739
+ "textRole": "body",
740
+ "fontSize": 18,
741
+ "textCapacity": 16
742
+ },
743
+ {
744
+ "kind": "text",
745
+ "x": 64,
746
+ "y": 633.3333333333334,
747
+ "width": 1152,
748
+ "height": 33.333333333333336,
749
+ "textRole": "body",
750
+ "fontSize": 13,
751
+ "textCapacity": 66
752
+ },
753
+ {
754
+ "kind": "text",
755
+ "x": 64,
756
+ "y": 676,
757
+ "width": 1044,
758
+ "height": 21.333333333333332,
759
+ "textRole": "body",
760
+ "fontSize": 9,
761
+ "textCapacity": 87
762
+ },
763
+ {
764
+ "kind": "text",
765
+ "x": 1161.3333333333333,
766
+ "y": 672,
767
+ "width": 54.666666666666664,
768
+ "height": 29.333333333333332,
769
+ "textRole": "body",
770
+ "fontSize": 11,
771
+ "textCapacity": 3
772
+ }
773
+ ],
774
+ "jsxReference": ""
775
+ },
776
+ {
777
+ "slideNumber": 4,
778
+ "sourceTitle": "Separate the record from the explanation",
779
+ "family": "quote",
780
+ "titlePosition": "left",
781
+ "bodyColumns": 2,
782
+ "density": "high",
783
+ "features": [
784
+ "evidence"
785
+ ],
786
+ "recommendedRoles": [
787
+ "quote"
788
+ ],
789
+ "structureSummary": "Interview excerpt, observation, competing explanation and next check",
790
+ "zones": [
791
+ {
792
+ "kind": "text",
793
+ "x": 64,
794
+ "y": 36,
795
+ "width": 886.6666666666666,
796
+ "height": 26.666666666666668,
797
+ "textRole": "body",
798
+ "fontSize": 10,
799
+ "textCapacity": 66
800
+ },
801
+ {
802
+ "kind": "title",
803
+ "x": 64,
804
+ "y": 101.33333333333333,
805
+ "width": 1152,
806
+ "height": 85.33333333333333,
807
+ "textRole": "title",
808
+ "fontSize": 32,
809
+ "textCapacity": 27
810
+ },
811
+ {
812
+ "kind": "text",
813
+ "x": 1005.3333333333334,
814
+ "y": 61.333333333333336,
815
+ "width": 210.66666666666666,
816
+ "height": 17.333333333333332,
817
+ "textRole": "body",
818
+ "fontSize": 9,
819
+ "textCapacity": 17
820
+ },
821
+ {
822
+ "kind": "shape",
823
+ "x": 64,
824
+ "y": 234.66666666666666,
825
+ "width": 369.3333333333333,
826
+ "height": 365.3333333333333,
827
+ "shape": "rect",
828
+ "fill": "E2DBD1"
829
+ },
830
+ {
831
+ "kind": "text",
832
+ "x": 92,
833
+ "y": 253.33333333333334,
834
+ "width": 313.3333333333333,
835
+ "height": 30.666666666666668,
836
+ "textRole": "body",
837
+ "fontSize": 10,
838
+ "textCapacity": 46
839
+ },
840
+ {
841
+ "kind": "text",
842
+ "x": 92,
843
+ "y": 317.3333333333333,
844
+ "width": 309.3333333333333,
845
+ "height": 173.33333333333334,
846
+ "textRole": "body",
847
+ "fontSize": 28,
848
+ "textCapacity": 32
849
+ },
850
+ {
851
+ "kind": "text",
852
+ "x": 92,
853
+ "y": 546.6666666666666,
854
+ "width": 312,
855
+ "height": 36,
856
+ "textRole": "body",
857
+ "fontSize": 12,
858
+ "textCapacity": 38
859
+ },
860
+ {
861
+ "kind": "title",
862
+ "x": 482.6666666666667,
863
+ "y": 221.33333333333334,
864
+ "width": 253.33333333333334,
865
+ "height": 90.66666666666667,
866
+ "textRole": "title",
867
+ "fontSize": 48,
868
+ "textCapacity": 3
869
+ },
870
+ {
871
+ "kind": "text",
872
+ "x": 740,
873
+ "y": 234.66666666666666,
874
+ "width": 462.6666666666667,
875
+ "height": 64,
876
+ "textRole": "body",
877
+ "fontSize": 22,
878
+ "textCapacity": 15
879
+ },
880
+ {
881
+ "kind": "shape",
882
+ "x": 485.3333333333333,
883
+ "y": 321.3333333333333,
884
+ "width": 18.666666666666668,
885
+ "height": 18.666666666666668,
886
+ "shape": "rect",
887
+ "fill": "1A1A1A"
888
+ },
889
+ {
890
+ "kind": "shape",
891
+ "x": 514.6666666666666,
892
+ "y": 321.3333333333333,
893
+ "width": 18.666666666666668,
894
+ "height": 18.666666666666668,
895
+ "shape": "rect",
896
+ "fill": "1A1A1A"
897
+ },
898
+ {
899
+ "kind": "shape",
900
+ "x": 544,
901
+ "y": 321.3333333333333,
902
+ "width": 18.666666666666668,
903
+ "height": 18.666666666666668,
904
+ "shape": "rect",
905
+ "fill": "1A1A1A"
906
+ },
907
+ {
908
+ "kind": "shape",
909
+ "x": 573.3333333333334,
910
+ "y": 321.3333333333333,
911
+ "width": 18.666666666666668,
912
+ "height": 18.666666666666668,
913
+ "shape": "rect",
914
+ "fill": "c7c3bc"
915
+ },
916
+ {
917
+ "kind": "shape",
918
+ "x": 602.6666666666666,
919
+ "y": 321.3333333333333,
920
+ "width": 18.666666666666668,
921
+ "height": 18.666666666666668,
922
+ "shape": "rect",
923
+ "fill": "c7c3bc"
924
+ },
925
+ {
926
+ "kind": "shape",
927
+ "x": 632,
928
+ "y": 321.3333333333333,
929
+ "width": 18.666666666666668,
930
+ "height": 18.666666666666668,
931
+ "shape": "rect",
932
+ "fill": "c7c3bc"
933
+ },
934
+ {
935
+ "kind": "shape",
936
+ "x": 661.3333333333334,
937
+ "y": 321.3333333333333,
938
+ "width": 18.666666666666668,
939
+ "height": 18.666666666666668,
940
+ "shape": "rect",
941
+ "fill": "c7c3bc"
942
+ },
943
+ {
944
+ "kind": "shape",
945
+ "x": 690.6666666666666,
946
+ "y": 321.3333333333333,
947
+ "width": 18.666666666666668,
948
+ "height": 18.666666666666668,
949
+ "shape": "rect",
950
+ "fill": "c7c3bc"
951
+ },
952
+ {
953
+ "kind": "text",
954
+ "x": 748,
955
+ "y": 317.3333333333333,
956
+ "width": 468,
957
+ "height": 33.333333333333336,
958
+ "textRole": "body",
959
+ "fontSize": 10,
960
+ "textCapacity": 70
961
+ },
962
+ {
963
+ "kind": "text",
964
+ "x": 482.6666666666667,
965
+ "y": 390.6666666666667,
966
+ "width": 233.33333333333334,
967
+ "height": 45.333333333333336,
968
+ "textRole": "body",
969
+ "fontSize": 15,
970
+ "textCapacity": 22
971
+ },
972
+ {
973
+ "kind": "text",
974
+ "x": 741.3333333333334,
975
+ "y": 389.3333333333333,
976
+ "width": 469.3333333333333,
977
+ "height": 62.666666666666664,
978
+ "textRole": "body",
979
+ "fontSize": 17,
980
+ "textCapacity": 40
981
+ },
982
+ {
983
+ "kind": "text",
984
+ "x": 482.6666666666667,
985
+ "y": 466.6666666666667,
986
+ "width": 233.33333333333334,
987
+ "height": 45.333333333333336,
988
+ "textRole": "body",
989
+ "fontSize": 15,
990
+ "textCapacity": 22
991
+ },
992
+ {
993
+ "kind": "text",
994
+ "x": 741.3333333333334,
995
+ "y": 465.3333333333333,
996
+ "width": 469.3333333333333,
997
+ "height": 62.666666666666664,
998
+ "textRole": "body",
999
+ "fontSize": 17,
1000
+ "textCapacity": 40
1001
+ },
1002
+ {
1003
+ "kind": "text",
1004
+ "x": 482.6666666666667,
1005
+ "y": 542.6666666666666,
1006
+ "width": 233.33333333333334,
1007
+ "height": 45.333333333333336,
1008
+ "textRole": "body",
1009
+ "fontSize": 15,
1010
+ "textCapacity": 22
1011
+ },
1012
+ {
1013
+ "kind": "text",
1014
+ "x": 741.3333333333334,
1015
+ "y": 541.3333333333334,
1016
+ "width": 469.3333333333333,
1017
+ "height": 62.666666666666664,
1018
+ "textRole": "body",
1019
+ "fontSize": 17,
1020
+ "textCapacity": 40
1021
+ },
1022
+ {
1023
+ "kind": "text",
1024
+ "x": 64,
1025
+ "y": 633.3333333333334,
1026
+ "width": 1152,
1027
+ "height": 33.333333333333336,
1028
+ "textRole": "body",
1029
+ "fontSize": 13,
1030
+ "textCapacity": 66
1031
+ },
1032
+ {
1033
+ "kind": "text",
1034
+ "x": 64,
1035
+ "y": 676,
1036
+ "width": 1044,
1037
+ "height": 21.333333333333332,
1038
+ "textRole": "body",
1039
+ "fontSize": 9,
1040
+ "textCapacity": 87
1041
+ },
1042
+ {
1043
+ "kind": "text",
1044
+ "x": 1161.3333333333333,
1045
+ "y": 672,
1046
+ "width": 54.666666666666664,
1047
+ "height": 29.333333333333332,
1048
+ "textRole": "body",
1049
+ "fontSize": 11,
1050
+ "textCapacity": 3
1051
+ }
1052
+ ],
1053
+ "jsxReference": ""
1054
+ },
1055
+ {
1056
+ "slideNumber": 5,
1057
+ "sourceTitle": "Choose the next move with evidence",
1058
+ "family": "comparison",
1059
+ "titlePosition": "left",
1060
+ "bodyColumns": 2,
1061
+ "density": "high",
1062
+ "features": [
1063
+ "matrix"
1064
+ ],
1065
+ "recommendedRoles": [
1066
+ "comparison"
1067
+ ],
1068
+ "structureSummary": "Two-axis decision map with direct labels and a recommended next step",
1069
+ "zones": [
1070
+ {
1071
+ "kind": "text",
1072
+ "x": 64,
1073
+ "y": 36,
1074
+ "width": 886.6666666666666,
1075
+ "height": 26.666666666666668,
1076
+ "textRole": "body",
1077
+ "fontSize": 10,
1078
+ "textCapacity": 66
1079
+ },
1080
+ {
1081
+ "kind": "title",
1082
+ "x": 64,
1083
+ "y": 101.33333333333333,
1084
+ "width": 1152,
1085
+ "height": 85.33333333333333,
1086
+ "textRole": "title",
1087
+ "fontSize": 32,
1088
+ "textCapacity": 27
1089
+ },
1090
+ {
1091
+ "kind": "text",
1092
+ "x": 1005.3333333333334,
1093
+ "y": 61.333333333333336,
1094
+ "width": 210.66666666666666,
1095
+ "height": 17.333333333333332,
1096
+ "textRole": "body",
1097
+ "fontSize": 9,
1098
+ "textCapacity": 17
1099
+ },
1100
+ {
1101
+ "kind": "text",
1102
+ "x": 64,
1103
+ "y": 202.66666666666666,
1104
+ "width": 1133.3333333333333,
1105
+ "height": 33.333333333333336,
1106
+ "textRole": "body",
1107
+ "fontSize": 13,
1108
+ "textCapacity": 65
1109
+ },
1110
+ {
1111
+ "kind": "shape",
1112
+ "x": 118.66666666666667,
1113
+ "y": 245.33333333333334,
1114
+ "width": 662.6666666666666,
1115
+ "height": 336,
1116
+ "shape": "rect",
1117
+ "fill": "e6e1d9"
1118
+ },
1119
+ {
1120
+ "kind": "shape",
1121
+ "x": 450.6666666666667,
1122
+ "y": 245.33333333333334,
1123
+ "width": 330.6666666666667,
1124
+ "height": 168,
1125
+ "shape": "rect",
1126
+ "fill": "d9d3cb"
1127
+ },
1128
+ {
1129
+ "kind": "text",
1130
+ "x": 137.33333333333334,
1131
+ "y": 258.6666666666667,
1132
+ "width": 285.3333333333333,
1133
+ "height": 30.666666666666668,
1134
+ "textRole": "body",
1135
+ "fontSize": 10,
1136
+ "textCapacity": 42
1137
+ },
1138
+ {
1139
+ "kind": "text",
1140
+ "x": 472,
1141
+ "y": 258.6666666666667,
1142
+ "width": 285.3333333333333,
1143
+ "height": 30.666666666666668,
1144
+ "textRole": "body",
1145
+ "fontSize": 10,
1146
+ "textCapacity": 42
1147
+ },
1148
+ {
1149
+ "kind": "text",
1150
+ "x": 137.33333333333334,
1151
+ "y": 545.3333333333334,
1152
+ "width": 285.3333333333333,
1153
+ "height": 30.666666666666668,
1154
+ "textRole": "body",
1155
+ "fontSize": 10,
1156
+ "textCapacity": 42
1157
+ },
1158
+ {
1159
+ "kind": "text",
1160
+ "x": 472,
1161
+ "y": 545.3333333333334,
1162
+ "width": 285.3333333333333,
1163
+ "height": 30.666666666666668,
1164
+ "textRole": "body",
1165
+ "fontSize": 10,
1166
+ "textCapacity": 42
1167
+ },
1168
+ {
1169
+ "kind": "shape",
1170
+ "x": 236,
1171
+ "y": 345.3333333333333,
1172
+ "width": 18.666666666666668,
1173
+ "height": 18.666666666666668,
1174
+ "shape": "ellipse",
1175
+ "fill": "888581"
1176
+ },
1177
+ {
1178
+ "kind": "text",
1179
+ "x": 269.3333333333333,
1180
+ "y": 338.6666666666667,
1181
+ "width": 50.666666666666664,
1182
+ "height": 37.333333333333336,
1183
+ "textRole": "body",
1184
+ "fontSize": 15,
1185
+ "textCapacity": 2
1186
+ },
1187
+ {
1188
+ "kind": "shape",
1189
+ "x": 557.3333333333334,
1190
+ "y": 322.6666666666667,
1191
+ "width": 34.666666666666664,
1192
+ "height": 34.666666666666664,
1193
+ "shape": "ellipse",
1194
+ "fill": "1A1A1A"
1195
+ },
1196
+ {
1197
+ "kind": "text",
1198
+ "x": 598.6666666666666,
1199
+ "y": 324,
1200
+ "width": 50.666666666666664,
1201
+ "height": 37.333333333333336,
1202
+ "textRole": "body",
1203
+ "fontSize": 15,
1204
+ "textCapacity": 2
1205
+ },
1206
+ {
1207
+ "kind": "shape",
1208
+ "x": 500,
1209
+ "y": 376,
1210
+ "width": 18.666666666666668,
1211
+ "height": 18.666666666666668,
1212
+ "shape": "ellipse",
1213
+ "fill": "888581"
1214
+ },
1215
+ {
1216
+ "kind": "text",
1217
+ "x": 533.3333333333334,
1218
+ "y": 369.3333333333333,
1219
+ "width": 50.666666666666664,
1220
+ "height": 37.333333333333336,
1221
+ "textRole": "body",
1222
+ "fontSize": 15,
1223
+ "textCapacity": 2
1224
+ },
1225
+ {
1226
+ "kind": "shape",
1227
+ "x": 293.3333333333333,
1228
+ "y": 462.6666666666667,
1229
+ "width": 18.666666666666668,
1230
+ "height": 18.666666666666668,
1231
+ "shape": "ellipse",
1232
+ "fill": "888581"
1233
+ },
1234
+ {
1235
+ "kind": "text",
1236
+ "x": 326.6666666666667,
1237
+ "y": 456,
1238
+ "width": 50.666666666666664,
1239
+ "height": 37.333333333333336,
1240
+ "textRole": "body",
1241
+ "fontSize": 15,
1242
+ "textCapacity": 2
1243
+ },
1244
+ {
1245
+ "kind": "shape",
1246
+ "x": 634.6666666666666,
1247
+ "y": 473.3333333333333,
1248
+ "width": 18.666666666666668,
1249
+ "height": 18.666666666666668,
1250
+ "shape": "ellipse",
1251
+ "fill": "888581"
1252
+ },
1253
+ {
1254
+ "kind": "text",
1255
+ "x": 668,
1256
+ "y": 466.6666666666667,
1257
+ "width": 50.666666666666664,
1258
+ "height": 37.333333333333336,
1259
+ "textRole": "body",
1260
+ "fontSize": 15,
1261
+ "textCapacity": 2
1262
+ },
1263
+ {
1264
+ "kind": "text",
1265
+ "x": 118.66666666666667,
1266
+ "y": 589.3333333333334,
1267
+ "width": 317.3333333333333,
1268
+ "height": 29.333333333333332,
1269
+ "textRole": "body",
1270
+ "fontSize": 11,
1271
+ "textCapacity": 21
1272
+ },
1273
+ {
1274
+ "kind": "text",
1275
+ "x": 469.3333333333333,
1276
+ "y": 589.3333333333334,
1277
+ "width": 312,
1278
+ "height": 29.333333333333332,
1279
+ "textRole": "body",
1280
+ "fontSize": 11,
1281
+ "textCapacity": 21
1282
+ },
1283
+ {
1284
+ "kind": "text",
1285
+ "x": 842.6666666666666,
1286
+ "y": 230.66666666666666,
1287
+ "width": 373.3333333333333,
1288
+ "height": 33.333333333333336,
1289
+ "textRole": "body",
1290
+ "fontSize": 13,
1291
+ "textCapacity": 21
1292
+ },
1293
+ {
1294
+ "kind": "title",
1295
+ "x": 842.6666666666666,
1296
+ "y": 286.6666666666667,
1297
+ "width": 373.3333333333333,
1298
+ "height": 82.66666666666667,
1299
+ "textRole": "title",
1300
+ "fontSize": 32,
1301
+ "textCapacity": 8
1302
+ },
1303
+ {
1304
+ "kind": "text",
1305
+ "x": 842.6666666666666,
1306
+ "y": 414.6666666666667,
1307
+ "width": 146.66666666666666,
1308
+ "height": 41.333333333333336,
1309
+ "textRole": "body",
1310
+ "fontSize": 14,
1311
+ "textCapacity": 14
1312
+ },
1313
+ {
1314
+ "kind": "text",
1315
+ "x": 1004,
1316
+ "y": 414.6666666666667,
1317
+ "width": 212,
1318
+ "height": 45.333333333333336,
1319
+ "textRole": "body",
1320
+ "fontSize": 16,
1321
+ "textCapacity": 9
1322
+ },
1323
+ {
1324
+ "kind": "text",
1325
+ "x": 842.6666666666666,
1326
+ "y": 476,
1327
+ "width": 146.66666666666666,
1328
+ "height": 41.333333333333336,
1329
+ "textRole": "body",
1330
+ "fontSize": 14,
1331
+ "textCapacity": 14
1332
+ },
1333
+ {
1334
+ "kind": "text",
1335
+ "x": 1004,
1336
+ "y": 476,
1337
+ "width": 212,
1338
+ "height": 45.333333333333336,
1339
+ "textRole": "body",
1340
+ "fontSize": 16,
1341
+ "textCapacity": 9
1342
+ },
1343
+ {
1344
+ "kind": "text",
1345
+ "x": 842.6666666666666,
1346
+ "y": 537.3333333333334,
1347
+ "width": 146.66666666666666,
1348
+ "height": 41.333333333333336,
1349
+ "textRole": "body",
1350
+ "fontSize": 14,
1351
+ "textCapacity": 14
1352
+ },
1353
+ {
1354
+ "kind": "text",
1355
+ "x": 1004,
1356
+ "y": 537.3333333333334,
1357
+ "width": 212,
1358
+ "height": 45.333333333333336,
1359
+ "textRole": "body",
1360
+ "fontSize": 16,
1361
+ "textCapacity": 9
1362
+ },
1363
+ {
1364
+ "kind": "text",
1365
+ "x": 64,
1366
+ "y": 633.3333333333334,
1367
+ "width": 1152,
1368
+ "height": 33.333333333333336,
1369
+ "textRole": "body",
1370
+ "fontSize": 13,
1371
+ "textCapacity": 66
1372
+ },
1373
+ {
1374
+ "kind": "text",
1375
+ "x": 64,
1376
+ "y": 676,
1377
+ "width": 1044,
1378
+ "height": 21.333333333333332,
1379
+ "textRole": "body",
1380
+ "fontSize": 9,
1381
+ "textCapacity": 87
1382
+ },
1383
+ {
1384
+ "kind": "text",
1385
+ "x": 1161.3333333333333,
1386
+ "y": 672,
1387
+ "width": 54.666666666666664,
1388
+ "height": 29.333333333333332,
1389
+ "textRole": "body",
1390
+ "fontSize": 11,
1391
+ "textCapacity": 3
1392
+ }
1393
+ ],
1394
+ "jsxReference": ""
1395
+ },
1396
+ {
1397
+ "slideNumber": 6,
1398
+ "sourceTitle": "Read the trend and investigate the pause",
1399
+ "family": "data",
1400
+ "titlePosition": "left",
1401
+ "bodyColumns": 2,
1402
+ "density": "high",
1403
+ "features": [
1404
+ "trend"
1405
+ ],
1406
+ "recommendedRoles": [
1407
+ "data"
1408
+ ],
1409
+ "structureSummary": "Labeled six-point trend with common scale and a separate interpretation",
1410
+ "zones": [
1411
+ {
1412
+ "kind": "text",
1413
+ "x": 64,
1414
+ "y": 36,
1415
+ "width": 886.6666666666666,
1416
+ "height": 26.666666666666668,
1417
+ "textRole": "body",
1418
+ "fontSize": 10,
1419
+ "textCapacity": 66
1420
+ },
1421
+ {
1422
+ "kind": "title",
1423
+ "x": 64,
1424
+ "y": 101.33333333333333,
1425
+ "width": 1152,
1426
+ "height": 85.33333333333333,
1427
+ "textRole": "title",
1428
+ "fontSize": 32,
1429
+ "textCapacity": 27
1430
+ },
1431
+ {
1432
+ "kind": "text",
1433
+ "x": 1005.3333333333334,
1434
+ "y": 61.333333333333336,
1435
+ "width": 210.66666666666666,
1436
+ "height": 17.333333333333332,
1437
+ "textRole": "body",
1438
+ "fontSize": 9,
1439
+ "textCapacity": 17
1440
+ },
1441
+ {
1442
+ "kind": "text",
1443
+ "x": 64,
1444
+ "y": 202.66666666666666,
1445
+ "width": 1133.3333333333333,
1446
+ "height": 33.333333333333336,
1447
+ "textRole": "body",
1448
+ "fontSize": 13,
1449
+ "textCapacity": 65
1450
+ },
1451
+ {
1452
+ "kind": "shape",
1453
+ "x": 437.3333333333333,
1454
+ "y": 253.33333333333334,
1455
+ "width": 121.33333333333333,
1456
+ "height": 314.6666666666667,
1457
+ "shape": "rect",
1458
+ "fill": "e3ded6"
1459
+ },
1460
+ {
1461
+ "kind": "text",
1462
+ "x": 64,
1463
+ "y": 554.6666666666666,
1464
+ "width": 40,
1465
+ "height": 29.333333333333332,
1466
+ "textRole": "body",
1467
+ "fontSize": 11,
1468
+ "textCapacity": 2
1469
+ },
1470
+ {
1471
+ "kind": "text",
1472
+ "x": 64,
1473
+ "y": 480,
1474
+ "width": 40,
1475
+ "height": 29.333333333333332,
1476
+ "textRole": "body",
1477
+ "fontSize": 11,
1478
+ "textCapacity": 2
1479
+ },
1480
+ {
1481
+ "kind": "text",
1482
+ "x": 64,
1483
+ "y": 405.3333333333333,
1484
+ "width": 40,
1485
+ "height": 29.333333333333332,
1486
+ "textRole": "body",
1487
+ "fontSize": 11,
1488
+ "textCapacity": 2
1489
+ },
1490
+ {
1491
+ "kind": "text",
1492
+ "x": 64,
1493
+ "y": 330.6666666666667,
1494
+ "width": 40,
1495
+ "height": 29.333333333333332,
1496
+ "textRole": "body",
1497
+ "fontSize": 11,
1498
+ "textCapacity": 2
1499
+ },
1500
+ {
1501
+ "kind": "text",
1502
+ "x": 64,
1503
+ "y": 256,
1504
+ "width": 40,
1505
+ "height": 29.333333333333332,
1506
+ "textRole": "body",
1507
+ "fontSize": 11,
1508
+ "textCapacity": 2
1509
+ },
1510
+ {
1511
+ "kind": "shape",
1512
+ "x": 134.4,
1513
+ "y": 377.06666666666666,
1514
+ "width": 8.533333333333333,
1515
+ "height": 8.533333333333333,
1516
+ "shape": "ellipse",
1517
+ "fill": "1A1A1A"
1518
+ },
1519
+ {
1520
+ "kind": "text",
1521
+ "x": 108,
1522
+ "y": 341.3333333333333,
1523
+ "width": 62.666666666666664,
1524
+ "height": 33.333333333333336,
1525
+ "textRole": "body",
1526
+ "fontSize": 15,
1527
+ "textCapacity": 3
1528
+ },
1529
+ {
1530
+ "kind": "text",
1531
+ "x": 117.33333333333333,
1532
+ "y": 582.6666666666666,
1533
+ "width": 49.333333333333336,
1534
+ "height": 32,
1535
+ "textRole": "body",
1536
+ "fontSize": 12,
1537
+ "textCapacity": 3
1538
+ },
1539
+ {
1540
+ "kind": "shape",
1541
+ "x": 265.06666666666666,
1542
+ "y": 362.13333333333327,
1543
+ "width": 8.533333333333333,
1544
+ "height": 8.533333333333333,
1545
+ "shape": "ellipse",
1546
+ "fill": "1A1A1A"
1547
+ },
1548
+ {
1549
+ "kind": "text",
1550
+ "x": 238.66666666666666,
1551
+ "y": 326.3999999999999,
1552
+ "width": 62.666666666666664,
1553
+ "height": 33.333333333333336,
1554
+ "textRole": "body",
1555
+ "fontSize": 15,
1556
+ "textCapacity": 3
1557
+ },
1558
+ {
1559
+ "kind": "text",
1560
+ "x": 248,
1561
+ "y": 582.6666666666666,
1562
+ "width": 49.333333333333336,
1563
+ "height": 32,
1564
+ "textRole": "body",
1565
+ "fontSize": 12,
1566
+ "textCapacity": 3
1567
+ },
1568
+ {
1569
+ "kind": "shape",
1570
+ "x": 395.73333333333335,
1571
+ "y": 350.93333333333334,
1572
+ "width": 8.533333333333333,
1573
+ "height": 8.533333333333333,
1574
+ "shape": "ellipse",
1575
+ "fill": "1A1A1A"
1576
+ },
1577
+ {
1578
+ "kind": "text",
1579
+ "x": 369.3333333333333,
1580
+ "y": 315.2,
1581
+ "width": 62.666666666666664,
1582
+ "height": 33.333333333333336,
1583
+ "textRole": "body",
1584
+ "fontSize": 15,
1585
+ "textCapacity": 3
1586
+ },
1587
+ {
1588
+ "kind": "text",
1589
+ "x": 378.6666666666667,
1590
+ "y": 582.6666666666666,
1591
+ "width": 49.333333333333336,
1592
+ "height": 32,
1593
+ "textRole": "body",
1594
+ "fontSize": 12,
1595
+ "textCapacity": 3
1596
+ },
1597
+ {
1598
+ "kind": "shape",
1599
+ "x": 524,
1600
+ "y": 352.2666666666667,
1601
+ "width": 13.333333333333334,
1602
+ "height": 13.333333333333334,
1603
+ "shape": "ellipse",
1604
+ "fill": "8A8178"
1605
+ },
1606
+ {
1607
+ "kind": "text",
1608
+ "x": 500,
1609
+ "y": 318.9333333333334,
1610
+ "width": 62.666666666666664,
1611
+ "height": 33.333333333333336,
1612
+ "textRole": "body",
1613
+ "fontSize": 15,
1614
+ "textCapacity": 3
1615
+ },
1616
+ {
1617
+ "kind": "text",
1618
+ "x": 509.3333333333333,
1619
+ "y": 582.6666666666666,
1620
+ "width": 49.333333333333336,
1621
+ "height": 32,
1622
+ "textRole": "body",
1623
+ "fontSize": 12,
1624
+ "textCapacity": 3
1625
+ },
1626
+ {
1627
+ "kind": "shape",
1628
+ "x": 657.0666666666667,
1629
+ "y": 324.8,
1630
+ "width": 8.533333333333333,
1631
+ "height": 8.533333333333333,
1632
+ "shape": "ellipse",
1633
+ "fill": "1A1A1A"
1634
+ },
1635
+ {
1636
+ "kind": "text",
1637
+ "x": 630.6666666666666,
1638
+ "y": 289.06666666666666,
1639
+ "width": 62.666666666666664,
1640
+ "height": 33.333333333333336,
1641
+ "textRole": "body",
1642
+ "fontSize": 15,
1643
+ "textCapacity": 3
1644
+ },
1645
+ {
1646
+ "kind": "text",
1647
+ "x": 640,
1648
+ "y": 582.6666666666666,
1649
+ "width": 49.333333333333336,
1650
+ "height": 32,
1651
+ "textRole": "body",
1652
+ "fontSize": 12,
1653
+ "textCapacity": 3
1654
+ },
1655
+ {
1656
+ "kind": "shape",
1657
+ "x": 787.7333333333332,
1658
+ "y": 298.6666666666667,
1659
+ "width": 8.533333333333333,
1660
+ "height": 8.533333333333333,
1661
+ "shape": "ellipse",
1662
+ "fill": "1A1A1A"
1663
+ },
1664
+ {
1665
+ "kind": "text",
1666
+ "x": 761.3333333333334,
1667
+ "y": 262.93333333333334,
1668
+ "width": 62.666666666666664,
1669
+ "height": 33.333333333333336,
1670
+ "textRole": "body",
1671
+ "fontSize": 15,
1672
+ "textCapacity": 3
1673
+ },
1674
+ {
1675
+ "kind": "text",
1676
+ "x": 770.6666666666666,
1677
+ "y": 582.6666666666666,
1678
+ "width": 49.333333333333336,
1679
+ "height": 32,
1680
+ "textRole": "body",
1681
+ "fontSize": 12,
1682
+ "textCapacity": 3
1683
+ },
1684
+ {
1685
+ "kind": "text",
1686
+ "x": 365.3333333333333,
1687
+ "y": 248,
1688
+ "width": 206.66666666666666,
1689
+ "height": 33.333333333333336,
1690
+ "textRole": "body",
1691
+ "fontSize": 13,
1692
+ "textCapacity": 11
1693
+ },
1694
+ {
1695
+ "kind": "text",
1696
+ "x": 905.3333333333334,
1697
+ "y": 217.33333333333334,
1698
+ "width": 310.6666666666667,
1699
+ "height": 33.333333333333336,
1700
+ "textRole": "body",
1701
+ "fontSize": 13,
1702
+ "textCapacity": 17
1703
+ },
1704
+ {
1705
+ "kind": "title",
1706
+ "x": 905.3333333333334,
1707
+ "y": 269.3333333333333,
1708
+ "width": 310.6666666666667,
1709
+ "height": 104,
1710
+ "textRole": "title",
1711
+ "fontSize": 56,
1712
+ "textCapacity": 4
1713
+ },
1714
+ {
1715
+ "kind": "text",
1716
+ "x": 905.3333333333334,
1717
+ "y": 381.3333333333333,
1718
+ "width": 305.3333333333333,
1719
+ "height": 73.33333333333333,
1720
+ "textRole": "body",
1721
+ "fontSize": 18,
1722
+ "textCapacity": 24
1723
+ },
1724
+ {
1725
+ "kind": "text",
1726
+ "x": 905.3333333333334,
1727
+ "y": 492,
1728
+ "width": 305.3333333333333,
1729
+ "height": 29.333333333333332,
1730
+ "textRole": "body",
1731
+ "fontSize": 10,
1732
+ "textCapacity": 44
1733
+ },
1734
+ {
1735
+ "kind": "text",
1736
+ "x": 905.3333333333334,
1737
+ "y": 538.6666666666666,
1738
+ "width": 305.3333333333333,
1739
+ "height": 66.66666666666667,
1740
+ "textRole": "body",
1741
+ "fontSize": 20,
1742
+ "textCapacity": 22
1743
+ },
1744
+ {
1745
+ "kind": "text",
1746
+ "x": 64,
1747
+ "y": 633.3333333333334,
1748
+ "width": 1152,
1749
+ "height": 33.333333333333336,
1750
+ "textRole": "body",
1751
+ "fontSize": 13,
1752
+ "textCapacity": 66
1753
+ },
1754
+ {
1755
+ "kind": "text",
1756
+ "x": 64,
1757
+ "y": 676,
1758
+ "width": 1044,
1759
+ "height": 21.333333333333332,
1760
+ "textRole": "body",
1761
+ "fontSize": 9,
1762
+ "textCapacity": 87
1763
+ },
1764
+ {
1765
+ "kind": "text",
1766
+ "x": 1161.3333333333333,
1767
+ "y": 672,
1768
+ "width": 54.666666666666664,
1769
+ "height": 29.333333333333332,
1770
+ "textRole": "body",
1771
+ "fontSize": 11,
1772
+ "textCapacity": 3
1773
+ }
1774
+ ],
1775
+ "jsxReference": ""
1776
+ },
1777
+ {
1778
+ "slideNumber": 7,
1779
+ "sourceTitle": "Design the test before reading the result",
1780
+ "family": "comparison",
1781
+ "titlePosition": "left",
1782
+ "bodyColumns": 2,
1783
+ "density": "high",
1784
+ "features": [
1785
+ "experiment"
1786
+ ],
1787
+ "recommendedRoles": [
1788
+ "comparison"
1789
+ ],
1790
+ "structureSummary": "One hypothesis with comparison, measure and a predeclared decision rule",
1791
+ "zones": [
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": "title",
1824
+ "x": 64,
1825
+ "y": 232,
1826
+ "width": 366.6666666666667,
1827
+ "height": 138.66666666666666,
1828
+ "textRole": "title",
1829
+ "fontSize": 32,
1830
+ "textCapacity": 16
1831
+ },
1832
+ {
1833
+ "kind": "text",
1834
+ "x": 64,
1835
+ "y": 441.3333333333333,
1836
+ "width": 370.6666666666667,
1837
+ "height": 156,
1838
+ "textRole": "body",
1839
+ "fontSize": 21,
1840
+ "textCapacity": 65
1841
+ },
1842
+ {
1843
+ "kind": "text",
1844
+ "x": 536,
1845
+ "y": 236,
1846
+ "width": 188,
1847
+ "height": 45.333333333333336,
1848
+ "textRole": "body",
1849
+ "fontSize": 18,
1850
+ "textCapacity": 7
1851
+ },
1852
+ {
1853
+ "kind": "text",
1854
+ "x": 748,
1855
+ "y": 236,
1856
+ "width": 466.6666666666667,
1857
+ "height": 77.33333333333333,
1858
+ "textRole": "body",
1859
+ "fontSize": 18,
1860
+ "textCapacity": 38
1861
+ },
1862
+ {
1863
+ "kind": "text",
1864
+ "x": 536,
1865
+ "y": 330.6666666666667,
1866
+ "width": 188,
1867
+ "height": 45.333333333333336,
1868
+ "textRole": "body",
1869
+ "fontSize": 18,
1870
+ "textCapacity": 7
1871
+ },
1872
+ {
1873
+ "kind": "text",
1874
+ "x": 748,
1875
+ "y": 330.6666666666667,
1876
+ "width": 466.6666666666667,
1877
+ "height": 77.33333333333333,
1878
+ "textRole": "body",
1879
+ "fontSize": 18,
1880
+ "textCapacity": 38
1881
+ },
1882
+ {
1883
+ "kind": "text",
1884
+ "x": 536,
1885
+ "y": 425.3333333333333,
1886
+ "width": 188,
1887
+ "height": 45.333333333333336,
1888
+ "textRole": "body",
1889
+ "fontSize": 18,
1890
+ "textCapacity": 7
1891
+ },
1892
+ {
1893
+ "kind": "text",
1894
+ "x": 748,
1895
+ "y": 425.3333333333333,
1896
+ "width": 466.6666666666667,
1897
+ "height": 77.33333333333333,
1898
+ "textRole": "body",
1899
+ "fontSize": 18,
1900
+ "textCapacity": 38
1901
+ },
1902
+ {
1903
+ "kind": "text",
1904
+ "x": 536,
1905
+ "y": 520,
1906
+ "width": 188,
1907
+ "height": 45.333333333333336,
1908
+ "textRole": "body",
1909
+ "fontSize": 18,
1910
+ "textCapacity": 7
1911
+ },
1912
+ {
1913
+ "kind": "text",
1914
+ "x": 748,
1915
+ "y": 520,
1916
+ "width": 466.6666666666667,
1917
+ "height": 77.33333333333333,
1918
+ "textRole": "body",
1919
+ "fontSize": 18,
1920
+ "textCapacity": 38
1921
+ },
1922
+ {
1923
+ "kind": "text",
1924
+ "x": 64,
1925
+ "y": 633.3333333333334,
1926
+ "width": 1152,
1927
+ "height": 33.333333333333336,
1928
+ "textRole": "body",
1929
+ "fontSize": 13,
1930
+ "textCapacity": 66
1931
+ },
1932
+ {
1933
+ "kind": "text",
1934
+ "x": 64,
1935
+ "y": 676,
1936
+ "width": 1044,
1937
+ "height": 21.333333333333332,
1938
+ "textRole": "body",
1939
+ "fontSize": 9,
1940
+ "textCapacity": 87
1941
+ },
1942
+ {
1943
+ "kind": "text",
1944
+ "x": 1161.3333333333333,
1945
+ "y": 672,
1946
+ "width": 54.666666666666664,
1947
+ "height": 29.333333333333332,
1948
+ "textRole": "body",
1949
+ "fontSize": 11,
1950
+ "textCapacity": 3
1951
+ }
1952
+ ],
1953
+ "jsxReference": ""
1954
+ },
1955
+ {
1956
+ "slideNumber": 8,
1957
+ "sourceTitle": "Reconcile the benefit with the cost",
1958
+ "family": "data",
1959
+ "titlePosition": "left",
1960
+ "bodyColumns": 2,
1961
+ "density": "high",
1962
+ "features": [
1963
+ "bridge"
1964
+ ],
1965
+ "recommendedRoles": [
1966
+ "data"
1967
+ ],
1968
+ "structureSummary": "Sequential contribution waterfall with an explicitly reconciled net change",
1969
+ "zones": [
1970
+ {
1971
+ "kind": "text",
1972
+ "x": 64,
1973
+ "y": 36,
1974
+ "width": 886.6666666666666,
1975
+ "height": 26.666666666666668,
1976
+ "textRole": "body",
1977
+ "fontSize": 10,
1978
+ "textCapacity": 66
1979
+ },
1980
+ {
1981
+ "kind": "title",
1982
+ "x": 64,
1983
+ "y": 101.33333333333333,
1984
+ "width": 1152,
1985
+ "height": 85.33333333333333,
1986
+ "textRole": "title",
1987
+ "fontSize": 32,
1988
+ "textCapacity": 27
1989
+ },
1990
+ {
1991
+ "kind": "text",
1992
+ "x": 1005.3333333333334,
1993
+ "y": 61.333333333333336,
1994
+ "width": 210.66666666666666,
1995
+ "height": 17.333333333333332,
1996
+ "textRole": "body",
1997
+ "fontSize": 9,
1998
+ "textCapacity": 17
1999
+ },
2000
+ {
2001
+ "kind": "text",
2002
+ "x": 64,
2003
+ "y": 202.66666666666666,
2004
+ "width": 1133.3333333333333,
2005
+ "height": 33.333333333333336,
2006
+ "textRole": "body",
2007
+ "fontSize": 13,
2008
+ "textCapacity": 65
2009
+ },
2010
+ {
2011
+ "kind": "text",
2012
+ "x": 64,
2013
+ "y": 552,
2014
+ "width": 40,
2015
+ "height": 30.666666666666668,
2016
+ "textRole": "body",
2017
+ "fontSize": 10,
2018
+ "textCapacity": 6
2019
+ },
2020
+ {
2021
+ "kind": "text",
2022
+ "x": 64,
2023
+ "y": 458.6666666666667,
2024
+ "width": 40,
2025
+ "height": 30.666666666666668,
2026
+ "textRole": "body",
2027
+ "fontSize": 10,
2028
+ "textCapacity": 6
2029
+ },
2030
+ {
2031
+ "kind": "text",
2032
+ "x": 64,
2033
+ "y": 365.3333333333333,
2034
+ "width": 40,
2035
+ "height": 30.666666666666668,
2036
+ "textRole": "body",
2037
+ "fontSize": 10,
2038
+ "textCapacity": 6
2039
+ },
2040
+ {
2041
+ "kind": "text",
2042
+ "x": 64,
2043
+ "y": 272,
2044
+ "width": 40,
2045
+ "height": 30.666666666666668,
2046
+ "textRole": "body",
2047
+ "fontSize": 10,
2048
+ "textCapacity": 6
2049
+ },
2050
+ {
2051
+ "kind": "shape",
2052
+ "x": 128,
2053
+ "y": 377.3333333333333,
2054
+ "width": 80,
2055
+ "height": 186.66666666666666,
2056
+ "shape": "rect",
2057
+ "fill": "1A1A1A"
2058
+ },
2059
+ {
2060
+ "kind": "text",
2061
+ "x": 114.66666666666667,
2062
+ "y": 333.3333333333333,
2063
+ "width": 106.66666666666667,
2064
+ "height": 37.333333333333336,
2065
+ "textRole": "body",
2066
+ "fontSize": 20,
2067
+ "textCapacity": 4
2068
+ },
2069
+ {
2070
+ "kind": "text",
2071
+ "x": 104,
2072
+ "y": 581.3333333333334,
2073
+ "width": 132,
2074
+ "height": 34.666666666666664,
2075
+ "textRole": "body",
2076
+ "fontSize": 13,
2077
+ "textCapacity": 7
2078
+ },
2079
+ {
2080
+ "kind": "shape",
2081
+ "x": 268,
2082
+ "y": 317.6,
2083
+ "width": 80,
2084
+ "height": 59.73333333333333,
2085
+ "shape": "rect",
2086
+ "fill": "7f7d79"
2087
+ },
2088
+ {
2089
+ "kind": "text",
2090
+ "x": 254.66666666666666,
2091
+ "y": 273.6,
2092
+ "width": 106.66666666666667,
2093
+ "height": 37.333333333333336,
2094
+ "textRole": "body",
2095
+ "fontSize": 20,
2096
+ "textCapacity": 4
2097
+ },
2098
+ {
2099
+ "kind": "text",
2100
+ "x": 244,
2101
+ "y": 581.3333333333334,
2102
+ "width": 132,
2103
+ "height": 34.666666666666664,
2104
+ "textRole": "body",
2105
+ "fontSize": 13,
2106
+ "textCapacity": 7
2107
+ },
2108
+ {
2109
+ "kind": "shape",
2110
+ "x": 408,
2111
+ "y": 317.6,
2112
+ "width": 80,
2113
+ "height": 24.266666666666666,
2114
+ "shape": "rect",
2115
+ "fill": "b8b5af"
2116
+ },
2117
+ {
2118
+ "kind": "text",
2119
+ "x": 394.6666666666667,
2120
+ "y": 273.6,
2121
+ "width": 106.66666666666667,
2122
+ "height": 37.333333333333336,
2123
+ "textRole": "body",
2124
+ "fontSize": 20,
2125
+ "textCapacity": 4
2126
+ },
2127
+ {
2128
+ "kind": "text",
2129
+ "x": 384,
2130
+ "y": 581.3333333333334,
2131
+ "width": 132,
2132
+ "height": 34.666666666666664,
2133
+ "textRole": "body",
2134
+ "fontSize": 13,
2135
+ "textCapacity": 7
2136
+ },
2137
+ {
2138
+ "kind": "shape",
2139
+ "x": 548,
2140
+ "y": 341.8666666666666,
2141
+ "width": 80,
2142
+ "height": 13.066666666666665,
2143
+ "shape": "rect",
2144
+ "fill": "b8b5af"
2145
+ },
2146
+ {
2147
+ "kind": "text",
2148
+ "x": 534.6666666666666,
2149
+ "y": 297.8666666666666,
2150
+ "width": 106.66666666666667,
2151
+ "height": 37.333333333333336,
2152
+ "textRole": "body",
2153
+ "fontSize": 20,
2154
+ "textCapacity": 4
2155
+ },
2156
+ {
2157
+ "kind": "text",
2158
+ "x": 524,
2159
+ "y": 581.3333333333334,
2160
+ "width": 132,
2161
+ "height": 34.666666666666664,
2162
+ "textRole": "body",
2163
+ "fontSize": 13,
2164
+ "textCapacity": 7
2165
+ },
2166
+ {
2167
+ "kind": "shape",
2168
+ "x": 688,
2169
+ "y": 354.9333333333334,
2170
+ "width": 80,
2171
+ "height": 209.06666666666663,
2172
+ "shape": "rect",
2173
+ "fill": "1A1A1A"
2174
+ },
2175
+ {
2176
+ "kind": "text",
2177
+ "x": 674.6666666666666,
2178
+ "y": 310.9333333333334,
2179
+ "width": 106.66666666666667,
2180
+ "height": 37.333333333333336,
2181
+ "textRole": "body",
2182
+ "fontSize": 20,
2183
+ "textCapacity": 4
2184
+ },
2185
+ {
2186
+ "kind": "text",
2187
+ "x": 664,
2188
+ "y": 581.3333333333334,
2189
+ "width": 132,
2190
+ "height": 34.666666666666664,
2191
+ "textRole": "body",
2192
+ "fontSize": 13,
2193
+ "textCapacity": 7
2194
+ },
2195
+ {
2196
+ "kind": "text",
2197
+ "x": 905.3333333333334,
2198
+ "y": 221.33333333333334,
2199
+ "width": 310.6666666666667,
2200
+ "height": 33.333333333333336,
2201
+ "textRole": "body",
2202
+ "fontSize": 13,
2203
+ "textCapacity": 17
2204
+ },
2205
+ {
2206
+ "kind": "title",
2207
+ "x": 905.3333333333334,
2208
+ "y": 273.3333333333333,
2209
+ "width": 310.6666666666667,
2210
+ "height": 102.66666666666667,
2211
+ "textRole": "title",
2212
+ "fontSize": 57,
2213
+ "textCapacity": 4
2214
+ },
2215
+ {
2216
+ "kind": "text",
2217
+ "x": 905.3333333333334,
2218
+ "y": 385.3333333333333,
2219
+ "width": 310.6666666666667,
2220
+ "height": 53.333333333333336,
2221
+ "textRole": "body",
2222
+ "fontSize": 18,
2223
+ "textCapacity": 24
2224
+ },
2225
+ {
2226
+ "kind": "text",
2227
+ "x": 905.3333333333334,
2228
+ "y": 458.6666666666667,
2229
+ "width": 196,
2230
+ "height": 40,
2231
+ "textRole": "body",
2232
+ "fontSize": 15,
2233
+ "textCapacity": 9
2234
+ },
2235
+ {
2236
+ "kind": "text",
2237
+ "x": 1101.3333333333333,
2238
+ "y": 456,
2239
+ "width": 114.66666666666667,
2240
+ "height": 41.333333333333336,
2241
+ "textRole": "body",
2242
+ "fontSize": 20,
2243
+ "textCapacity": 4
2244
+ },
2245
+ {
2246
+ "kind": "text",
2247
+ "x": 905.3333333333334,
2248
+ "y": 506.6666666666667,
2249
+ "width": 196,
2250
+ "height": 40,
2251
+ "textRole": "body",
2252
+ "fontSize": 15,
2253
+ "textCapacity": 9
2254
+ },
2255
+ {
2256
+ "kind": "text",
2257
+ "x": 1101.3333333333333,
2258
+ "y": 504,
2259
+ "width": 114.66666666666667,
2260
+ "height": 41.333333333333336,
2261
+ "textRole": "body",
2262
+ "fontSize": 20,
2263
+ "textCapacity": 4
2264
+ },
2265
+ {
2266
+ "kind": "text",
2267
+ "x": 905.3333333333334,
2268
+ "y": 554.6666666666666,
2269
+ "width": 196,
2270
+ "height": 40,
2271
+ "textRole": "body",
2272
+ "fontSize": 15,
2273
+ "textCapacity": 9
2274
+ },
2275
+ {
2276
+ "kind": "text",
2277
+ "x": 1101.3333333333333,
2278
+ "y": 552,
2279
+ "width": 114.66666666666667,
2280
+ "height": 41.333333333333336,
2281
+ "textRole": "body",
2282
+ "fontSize": 20,
2283
+ "textCapacity": 4
2284
+ },
2285
+ {
2286
+ "kind": "text",
2287
+ "x": 64,
2288
+ "y": 633.3333333333334,
2289
+ "width": 1152,
2290
+ "height": 33.333333333333336,
2291
+ "textRole": "body",
2292
+ "fontSize": 13,
2293
+ "textCapacity": 66
2294
+ },
2295
+ {
2296
+ "kind": "text",
2297
+ "x": 64,
2298
+ "y": 676,
2299
+ "width": 1044,
2300
+ "height": 21.333333333333332,
2301
+ "textRole": "body",
2302
+ "fontSize": 9,
2303
+ "textCapacity": 87
2304
+ },
2305
+ {
2306
+ "kind": "text",
2307
+ "x": 1161.3333333333333,
2308
+ "y": 672,
2309
+ "width": 54.666666666666664,
2310
+ "height": 29.333333333333332,
2311
+ "textRole": "body",
2312
+ "fontSize": 11,
2313
+ "textCapacity": 3
2314
+ }
2315
+ ],
2316
+ "jsxReference": ""
2317
+ },
2318
+ {
2319
+ "slideNumber": 9,
2320
+ "sourceTitle": "A small intervention, a measurable change",
2321
+ "family": "comparison",
2322
+ "titlePosition": "left",
2323
+ "bodyColumns": 2,
2324
+ "density": "high",
2325
+ "features": [
2326
+ "case"
2327
+ ],
2328
+ "recommendedRoles": [
2329
+ "comparison"
2330
+ ],
2331
+ "structureSummary": "Intervention narrative beside paired before and after comparisons",
2332
+ "zones": [
2333
+ {
2334
+ "kind": "text",
2335
+ "x": 64,
2336
+ "y": 36,
2337
+ "width": 886.6666666666666,
2338
+ "height": 26.666666666666668,
2339
+ "textRole": "body",
2340
+ "fontSize": 10,
2341
+ "textCapacity": 66
2342
+ },
2343
+ {
2344
+ "kind": "title",
2345
+ "x": 64,
2346
+ "y": 101.33333333333333,
2347
+ "width": 1152,
2348
+ "height": 85.33333333333333,
2349
+ "textRole": "title",
2350
+ "fontSize": 32,
2351
+ "textCapacity": 27
2352
+ },
2353
+ {
2354
+ "kind": "text",
2355
+ "x": 1005.3333333333334,
2356
+ "y": 61.333333333333336,
2357
+ "width": 210.66666666666666,
2358
+ "height": 17.333333333333332,
2359
+ "textRole": "body",
2360
+ "fontSize": 9,
2361
+ "textCapacity": 17
2362
+ },
2363
+ {
2364
+ "kind": "text",
2365
+ "x": 64,
2366
+ "y": 224,
2367
+ "width": 386.6666666666667,
2368
+ "height": 34.666666666666664,
2369
+ "textRole": "body",
2370
+ "fontSize": 12,
2371
+ "textCapacity": 24
2372
+ },
2373
+ {
2374
+ "kind": "title",
2375
+ "x": 64,
2376
+ "y": 289.3333333333333,
2377
+ "width": 384,
2378
+ "height": 161.33333333333334,
2379
+ "textRole": "title",
2380
+ "fontSize": 34,
2381
+ "textCapacity": 24
2382
+ },
2383
+ {
2384
+ "kind": "text",
2385
+ "x": 64,
2386
+ "y": 492,
2387
+ "width": 374.6666666666667,
2388
+ "height": 104,
2389
+ "textRole": "body",
2390
+ "fontSize": 20,
2391
+ "textCapacity": 42
2392
+ },
2393
+ {
2394
+ "kind": "text",
2395
+ "x": 552,
2396
+ "y": 232,
2397
+ "width": 649.3333333333334,
2398
+ "height": 42.666666666666664,
2399
+ "textRole": "body",
2400
+ "fontSize": 20,
2401
+ "textCapacity": 24
2402
+ },
2403
+ {
2404
+ "kind": "shape",
2405
+ "x": 553.3333333333334,
2406
+ "y": 300,
2407
+ "width": 388.8,
2408
+ "height": 26.666666666666668,
2409
+ "shape": "rect",
2410
+ "fill": "aeaaa5"
2411
+ },
2412
+ {
2413
+ "kind": "shape",
2414
+ "x": 553.3333333333334,
2415
+ "y": 340,
2416
+ "width": 151.20000000000002,
2417
+ "height": 26.666666666666668,
2418
+ "shape": "rect",
2419
+ "fill": "8A8178"
2420
+ },
2421
+ {
2422
+ "kind": "text",
2423
+ "x": 1005.3333333333334,
2424
+ "y": 305.3333333333333,
2425
+ "width": 210.66666666666666,
2426
+ "height": 60,
2427
+ "textRole": "body",
2428
+ "fontSize": 23,
2429
+ "textCapacity": 6
2430
+ },
2431
+ {
2432
+ "kind": "text",
2433
+ "x": 552,
2434
+ "y": 421.3333333333333,
2435
+ "width": 649.3333333333334,
2436
+ "height": 42.666666666666664,
2437
+ "textRole": "body",
2438
+ "fontSize": 20,
2439
+ "textCapacity": 24
2440
+ },
2441
+ {
2442
+ "kind": "shape",
2443
+ "x": 553.3333333333334,
2444
+ "y": 489.3333333333333,
2445
+ "width": 198.72,
2446
+ "height": 26.666666666666668,
2447
+ "shape": "rect",
2448
+ "fill": "aeaaa5"
2449
+ },
2450
+ {
2451
+ "kind": "shape",
2452
+ "x": 553.3333333333334,
2453
+ "y": 529.3333333333334,
2454
+ "width": 315.36,
2455
+ "height": 26.666666666666668,
2456
+ "shape": "rect",
2457
+ "fill": "8A8178"
2458
+ },
2459
+ {
2460
+ "kind": "text",
2461
+ "x": 1005.3333333333334,
2462
+ "y": 494.6666666666667,
2463
+ "width": 210.66666666666666,
2464
+ "height": 60,
2465
+ "textRole": "body",
2466
+ "fontSize": 23,
2467
+ "textCapacity": 6
2468
+ },
2469
+ {
2470
+ "kind": "text",
2471
+ "x": 64,
2472
+ "y": 633.3333333333334,
2473
+ "width": 1152,
2474
+ "height": 33.333333333333336,
2475
+ "textRole": "body",
2476
+ "fontSize": 13,
2477
+ "textCapacity": 66
2478
+ },
2479
+ {
2480
+ "kind": "text",
2481
+ "x": 64,
2482
+ "y": 676,
2483
+ "width": 1044,
2484
+ "height": 21.333333333333332,
2485
+ "textRole": "body",
2486
+ "fontSize": 9,
2487
+ "textCapacity": 87
2488
+ },
2489
+ {
2490
+ "kind": "text",
2491
+ "x": 1161.3333333333333,
2492
+ "y": 672,
2493
+ "width": 54.666666666666664,
2494
+ "height": 29.333333333333332,
2495
+ "textRole": "body",
2496
+ "fontSize": 11,
2497
+ "textCapacity": 3
2498
+ }
2499
+ ],
2500
+ "jsxReference": ""
2501
+ },
2502
+ {
2503
+ "slideNumber": 10,
2504
+ "sourceTitle": "Connect each measure to a response",
2505
+ "family": "table",
2506
+ "titlePosition": "left",
2507
+ "bodyColumns": 2,
2508
+ "density": "high",
2509
+ "features": [
2510
+ "scorecard"
2511
+ ],
2512
+ "recommendedRoles": [
2513
+ "table"
2514
+ ],
2515
+ "structureSummary": "Actual, target and response aligned across four measures",
2516
+ "zones": [
2517
+ {
2518
+ "kind": "text",
2519
+ "x": 64,
2520
+ "y": 36,
2521
+ "width": 886.6666666666666,
2522
+ "height": 26.666666666666668,
2523
+ "textRole": "body",
2524
+ "fontSize": 10,
2525
+ "textCapacity": 66
2526
+ },
2527
+ {
2528
+ "kind": "title",
2529
+ "x": 64,
2530
+ "y": 101.33333333333333,
2531
+ "width": 1152,
2532
+ "height": 85.33333333333333,
2533
+ "textRole": "title",
2534
+ "fontSize": 32,
2535
+ "textCapacity": 27
2536
+ },
2537
+ {
2538
+ "kind": "text",
2539
+ "x": 1005.3333333333334,
2540
+ "y": 61.333333333333336,
2541
+ "width": 210.66666666666666,
2542
+ "height": 17.333333333333332,
2543
+ "textRole": "body",
2544
+ "fontSize": 9,
2545
+ "textCapacity": 17
2546
+ },
2547
+ {
2548
+ "kind": "text",
2549
+ "x": 64,
2550
+ "y": 222.66666666666666,
2551
+ "width": 373.3333333333333,
2552
+ "height": 32,
2553
+ "textRole": "body",
2554
+ "fontSize": 11,
2555
+ "textCapacity": 25
2556
+ },
2557
+ {
2558
+ "kind": "text",
2559
+ "x": 497.3333333333333,
2560
+ "y": 222.66666666666666,
2561
+ "width": 226.66666666666666,
2562
+ "height": 32,
2563
+ "textRole": "body",
2564
+ "fontSize": 11,
2565
+ "textCapacity": 15
2566
+ },
2567
+ {
2568
+ "kind": "text",
2569
+ "x": 697.3333333333334,
2570
+ "y": 222.66666666666666,
2571
+ "width": 226.66666666666666,
2572
+ "height": 32,
2573
+ "textRole": "body",
2574
+ "fontSize": 11,
2575
+ "textCapacity": 15
2576
+ },
2577
+ {
2578
+ "kind": "text",
2579
+ "x": 922.6666666666666,
2580
+ "y": 222.66666666666666,
2581
+ "width": 226.66666666666666,
2582
+ "height": 32,
2583
+ "textRole": "body",
2584
+ "fontSize": 11,
2585
+ "textCapacity": 15
2586
+ },
2587
+ {
2588
+ "kind": "text",
2589
+ "x": 81.33333333333333,
2590
+ "y": 294.6666666666667,
2591
+ "width": 373.3333333333333,
2592
+ "height": 49.333333333333336,
2593
+ "textRole": "body",
2594
+ "fontSize": 18,
2595
+ "textCapacity": 15
2596
+ },
2597
+ {
2598
+ "kind": "text",
2599
+ "x": 497.3333333333333,
2600
+ "y": 285.3333333333333,
2601
+ "width": 172,
2602
+ "height": 60,
2603
+ "textRole": "body",
2604
+ "fontSize": 28,
2605
+ "textCapacity": 4
2606
+ },
2607
+ {
2608
+ "kind": "text",
2609
+ "x": 697.3333333333334,
2610
+ "y": 298.6666666666667,
2611
+ "width": 193.33333333333334,
2612
+ "height": 44,
2613
+ "textRole": "body",
2614
+ "fontSize": 17,
2615
+ "textCapacity": 8
2616
+ },
2617
+ {
2618
+ "kind": "text",
2619
+ "x": 922.6666666666666,
2620
+ "y": 297.3333333333333,
2621
+ "width": 36,
2622
+ "height": 40,
2623
+ "textRole": "body",
2624
+ "fontSize": 18,
2625
+ "textCapacity": 1
2626
+ },
2627
+ {
2628
+ "kind": "text",
2629
+ "x": 980,
2630
+ "y": 298.6666666666667,
2631
+ "width": 210.66666666666666,
2632
+ "height": 40,
2633
+ "textRole": "body",
2634
+ "fontSize": 16,
2635
+ "textCapacity": 9
2636
+ },
2637
+ {
2638
+ "kind": "text",
2639
+ "x": 81.33333333333333,
2640
+ "y": 376,
2641
+ "width": 373.3333333333333,
2642
+ "height": 49.333333333333336,
2643
+ "textRole": "body",
2644
+ "fontSize": 18,
2645
+ "textCapacity": 15
2646
+ },
2647
+ {
2648
+ "kind": "text",
2649
+ "x": 497.3333333333333,
2650
+ "y": 366.6666666666667,
2651
+ "width": 172,
2652
+ "height": 60,
2653
+ "textRole": "body",
2654
+ "fontSize": 28,
2655
+ "textCapacity": 4
2656
+ },
2657
+ {
2658
+ "kind": "text",
2659
+ "x": 697.3333333333334,
2660
+ "y": 380,
2661
+ "width": 193.33333333333334,
2662
+ "height": 44,
2663
+ "textRole": "body",
2664
+ "fontSize": 17,
2665
+ "textCapacity": 8
2666
+ },
2667
+ {
2668
+ "kind": "text",
2669
+ "x": 922.6666666666666,
2670
+ "y": 378.6666666666667,
2671
+ "width": 36,
2672
+ "height": 40,
2673
+ "textRole": "body",
2674
+ "fontSize": 18,
2675
+ "textCapacity": 1
2676
+ },
2677
+ {
2678
+ "kind": "text",
2679
+ "x": 980,
2680
+ "y": 380,
2681
+ "width": 210.66666666666666,
2682
+ "height": 40,
2683
+ "textRole": "body",
2684
+ "fontSize": 16,
2685
+ "textCapacity": 9
2686
+ },
2687
+ {
2688
+ "kind": "shape",
2689
+ "x": 64,
2690
+ "y": 434.6666666666667,
2691
+ "width": 1152,
2692
+ "height": 81.33333333333333,
2693
+ "shape": "rect",
2694
+ "fill": "e2ddd5"
2695
+ },
2696
+ {
2697
+ "kind": "shape",
2698
+ "x": 64,
2699
+ "y": 434.6666666666667,
2700
+ "width": 4,
2701
+ "height": 81.33333333333333,
2702
+ "shape": "rect",
2703
+ "fill": "1A1A1A"
2704
+ },
2705
+ {
2706
+ "kind": "text",
2707
+ "x": 81.33333333333333,
2708
+ "y": 457.3333333333333,
2709
+ "width": 373.3333333333333,
2710
+ "height": 49.333333333333336,
2711
+ "textRole": "body",
2712
+ "fontSize": 18,
2713
+ "textCapacity": 15
2714
+ },
2715
+ {
2716
+ "kind": "text",
2717
+ "x": 497.3333333333333,
2718
+ "y": 448,
2719
+ "width": 172,
2720
+ "height": 60,
2721
+ "textRole": "body",
2722
+ "fontSize": 28,
2723
+ "textCapacity": 4
2724
+ },
2725
+ {
2726
+ "kind": "text",
2727
+ "x": 697.3333333333334,
2728
+ "y": 461.3333333333333,
2729
+ "width": 193.33333333333334,
2730
+ "height": 44,
2731
+ "textRole": "body",
2732
+ "fontSize": 17,
2733
+ "textCapacity": 8
2734
+ },
2735
+ {
2736
+ "kind": "text",
2737
+ "x": 922.6666666666666,
2738
+ "y": 460,
2739
+ "width": 36,
2740
+ "height": 40,
2741
+ "textRole": "body",
2742
+ "fontSize": 18,
2743
+ "textCapacity": 1
2744
+ },
2745
+ {
2746
+ "kind": "text",
2747
+ "x": 980,
2748
+ "y": 461.3333333333333,
2749
+ "width": 210.66666666666666,
2750
+ "height": 40,
2751
+ "textRole": "body",
2752
+ "fontSize": 16,
2753
+ "textCapacity": 9
2754
+ },
2755
+ {
2756
+ "kind": "text",
2757
+ "x": 81.33333333333333,
2758
+ "y": 538.6666666666666,
2759
+ "width": 373.3333333333333,
2760
+ "height": 49.333333333333336,
2761
+ "textRole": "body",
2762
+ "fontSize": 18,
2763
+ "textCapacity": 15
2764
+ },
2765
+ {
2766
+ "kind": "text",
2767
+ "x": 497.3333333333333,
2768
+ "y": 529.3333333333334,
2769
+ "width": 172,
2770
+ "height": 60,
2771
+ "textRole": "body",
2772
+ "fontSize": 28,
2773
+ "textCapacity": 4
2774
+ },
2775
+ {
2776
+ "kind": "text",
2777
+ "x": 697.3333333333334,
2778
+ "y": 542.6666666666666,
2779
+ "width": 193.33333333333334,
2780
+ "height": 44,
2781
+ "textRole": "body",
2782
+ "fontSize": 17,
2783
+ "textCapacity": 8
2784
+ },
2785
+ {
2786
+ "kind": "text",
2787
+ "x": 922.6666666666666,
2788
+ "y": 541.3333333333334,
2789
+ "width": 36,
2790
+ "height": 40,
2791
+ "textRole": "body",
2792
+ "fontSize": 18,
2793
+ "textCapacity": 1
2794
+ },
2795
+ {
2796
+ "kind": "text",
2797
+ "x": 980,
2798
+ "y": 542.6666666666666,
2799
+ "width": 210.66666666666666,
2800
+ "height": 40,
2801
+ "textRole": "body",
2802
+ "fontSize": 16,
2803
+ "textCapacity": 9
2804
+ },
2805
+ {
2806
+ "kind": "text",
2807
+ "x": 64,
2808
+ "y": 633.3333333333334,
2809
+ "width": 1152,
2810
+ "height": 33.333333333333336,
2811
+ "textRole": "body",
2812
+ "fontSize": 13,
2813
+ "textCapacity": 66
2814
+ },
2815
+ {
2816
+ "kind": "text",
2817
+ "x": 64,
2818
+ "y": 676,
2819
+ "width": 1044,
2820
+ "height": 21.333333333333332,
2821
+ "textRole": "body",
2822
+ "fontSize": 9,
2823
+ "textCapacity": 87
2824
+ },
2825
+ {
2826
+ "kind": "text",
2827
+ "x": 1161.3333333333333,
2828
+ "y": 672,
2829
+ "width": 54.666666666666664,
2830
+ "height": 29.333333333333332,
2831
+ "textRole": "body",
2832
+ "fontSize": 11,
2833
+ "textCapacity": 3
2834
+ }
2835
+ ],
2836
+ "jsxReference": ""
2837
+ },
2838
+ {
2839
+ "slideNumber": 11,
2840
+ "sourceTitle": "Sequence the work around a decision gate",
2841
+ "family": "process",
2842
+ "titlePosition": "left",
2843
+ "bodyColumns": 2,
2844
+ "density": "high",
2845
+ "features": [
2846
+ "roadmap"
2847
+ ],
2848
+ "recommendedRoles": [
2849
+ "process"
2850
+ ],
2851
+ "structureSummary": "Four timed workstreams and a decision gate",
2852
+ "zones": [
2853
+ {
2854
+ "kind": "text",
2855
+ "x": 64,
2856
+ "y": 36,
2857
+ "width": 886.6666666666666,
2858
+ "height": 26.666666666666668,
2859
+ "textRole": "body",
2860
+ "fontSize": 10,
2861
+ "textCapacity": 66
2862
+ },
2863
+ {
2864
+ "kind": "title",
2865
+ "x": 64,
2866
+ "y": 101.33333333333333,
2867
+ "width": 1152,
2868
+ "height": 85.33333333333333,
2869
+ "textRole": "title",
2870
+ "fontSize": 32,
2871
+ "textCapacity": 27
2872
+ },
2873
+ {
2874
+ "kind": "text",
2875
+ "x": 1005.3333333333334,
2876
+ "y": 61.333333333333336,
2877
+ "width": 210.66666666666666,
2878
+ "height": 17.333333333333332,
2879
+ "textRole": "body",
2880
+ "fontSize": 9,
2881
+ "textCapacity": 17
2882
+ },
2883
+ {
2884
+ "kind": "text",
2885
+ "x": 64,
2886
+ "y": 222.66666666666666,
2887
+ "width": 324,
2888
+ "height": 30.666666666666668,
2889
+ "textRole": "body",
2890
+ "fontSize": 11,
2891
+ "textCapacity": 22
2892
+ },
2893
+ {
2894
+ "kind": "text",
2895
+ "x": 421.3333333333333,
2896
+ "y": 221.33333333333334,
2897
+ "width": 176,
2898
+ "height": 33.333333333333336,
2899
+ "textRole": "body",
2900
+ "fontSize": 12,
2901
+ "textCapacity": 11
2902
+ },
2903
+ {
2904
+ "kind": "text",
2905
+ "x": 617.3333333333334,
2906
+ "y": 221.33333333333334,
2907
+ "width": 176,
2908
+ "height": 33.333333333333336,
2909
+ "textRole": "body",
2910
+ "fontSize": 12,
2911
+ "textCapacity": 11
2912
+ },
2913
+ {
2914
+ "kind": "text",
2915
+ "x": 813.3333333333334,
2916
+ "y": 221.33333333333334,
2917
+ "width": 176,
2918
+ "height": 33.333333333333336,
2919
+ "textRole": "body",
2920
+ "fontSize": 12,
2921
+ "textCapacity": 11
2922
+ },
2923
+ {
2924
+ "kind": "text",
2925
+ "x": 1009.3333333333334,
2926
+ "y": 221.33333333333334,
2927
+ "width": 176,
2928
+ "height": 33.333333333333336,
2929
+ "textRole": "body",
2930
+ "fontSize": 12,
2931
+ "textCapacity": 11
2932
+ },
2933
+ {
2934
+ "kind": "text",
2935
+ "x": 64,
2936
+ "y": 273.3333333333333,
2937
+ "width": 318.6666666666667,
2938
+ "height": 40,
2939
+ "textRole": "body",
2940
+ "fontSize": 18,
2941
+ "textCapacity": 13
2942
+ },
2943
+ {
2944
+ "kind": "text",
2945
+ "x": 64,
2946
+ "y": 313.3333333333333,
2947
+ "width": 318.6666666666667,
2948
+ "height": 32,
2949
+ "textRole": "body",
2950
+ "fontSize": 11,
2951
+ "textCapacity": 21
2952
+ },
2953
+ {
2954
+ "kind": "shape",
2955
+ "x": 406.6666666666667,
2956
+ "y": 289.3333333333333,
2957
+ "width": 176.4,
2958
+ "height": 29.333333333333332,
2959
+ "shape": "rect",
2960
+ "fill": "b4b0ab"
2961
+ },
2962
+ {
2963
+ "kind": "shape",
2964
+ "x": 579.0666666666667,
2965
+ "y": 300,
2966
+ "width": 8,
2967
+ "height": 8,
2968
+ "shape": "ellipse",
2969
+ "fill": "797773"
2970
+ },
2971
+ {
2972
+ "kind": "text",
2973
+ "x": 64,
2974
+ "y": 354.6666666666667,
2975
+ "width": 318.6666666666667,
2976
+ "height": 40,
2977
+ "textRole": "body",
2978
+ "fontSize": 18,
2979
+ "textCapacity": 13
2980
+ },
2981
+ {
2982
+ "kind": "text",
2983
+ "x": 64,
2984
+ "y": 394.6666666666667,
2985
+ "width": 318.6666666666667,
2986
+ "height": 32,
2987
+ "textRole": "body",
2988
+ "fontSize": 11,
2989
+ "textCapacity": 21
2990
+ },
2991
+ {
2992
+ "kind": "shape",
2993
+ "x": 543.8666666666667,
2994
+ "y": 370.6666666666667,
2995
+ "width": 254.79999999999998,
2996
+ "height": 29.333333333333332,
2997
+ "shape": "rect",
2998
+ "fill": "b4b0ab"
2999
+ },
3000
+ {
3001
+ "kind": "shape",
3002
+ "x": 794.6666666666666,
3003
+ "y": 381.3333333333333,
3004
+ "width": 8,
3005
+ "height": 8,
3006
+ "shape": "ellipse",
3007
+ "fill": "797773"
3008
+ },
3009
+ {
3010
+ "kind": "text",
3011
+ "x": 64,
3012
+ "y": 436,
3013
+ "width": 318.6666666666667,
3014
+ "height": 40,
3015
+ "textRole": "body",
3016
+ "fontSize": 18,
3017
+ "textCapacity": 13
3018
+ },
3019
+ {
3020
+ "kind": "text",
3021
+ "x": 64,
3022
+ "y": 476,
3023
+ "width": 318.6666666666667,
3024
+ "height": 32,
3025
+ "textRole": "body",
3026
+ "fontSize": 11,
3027
+ "textCapacity": 21
3028
+ },
3029
+ {
3030
+ "kind": "shape",
3031
+ "x": 759.4666666666667,
3032
+ "y": 452,
3033
+ "width": 215.60000000000002,
3034
+ "height": 29.333333333333332,
3035
+ "shape": "rect",
3036
+ "fill": "1A1A1A"
3037
+ },
3038
+ {
3039
+ "kind": "shape",
3040
+ "x": 971.0666666666667,
3041
+ "y": 462.6666666666667,
3042
+ "width": 8,
3043
+ "height": 8,
3044
+ "shape": "ellipse",
3045
+ "fill": "1A1A1A"
3046
+ },
3047
+ {
3048
+ "kind": "text",
3049
+ "x": 64,
3050
+ "y": 517.3333333333334,
3051
+ "width": 318.6666666666667,
3052
+ "height": 40,
3053
+ "textRole": "body",
3054
+ "fontSize": 18,
3055
+ "textCapacity": 13
3056
+ },
3057
+ {
3058
+ "kind": "text",
3059
+ "x": 64,
3060
+ "y": 557.3333333333334,
3061
+ "width": 318.6666666666667,
3062
+ "height": 32,
3063
+ "textRole": "body",
3064
+ "fontSize": 11,
3065
+ "textCapacity": 21
3066
+ },
3067
+ {
3068
+ "kind": "shape",
3069
+ "x": 955.4666666666666,
3070
+ "y": 533.3333333333334,
3071
+ "width": 235.20000000000002,
3072
+ "height": 29.333333333333332,
3073
+ "shape": "rect",
3074
+ "fill": "b4b0ab"
3075
+ },
3076
+ {
3077
+ "kind": "shape",
3078
+ "x": 1186.6666666666665,
3079
+ "y": 544,
3080
+ "width": 8,
3081
+ "height": 8,
3082
+ "shape": "ellipse",
3083
+ "fill": "797773"
3084
+ },
3085
+ {
3086
+ "kind": "shape",
3087
+ "x": 949.3333333333334,
3088
+ "y": 592,
3089
+ "width": 10.666666666666666,
3090
+ "height": 10.666666666666666,
3091
+ "shape": "ellipse",
3092
+ "fill": "8A8178"
3093
+ },
3094
+ {
3095
+ "kind": "text",
3096
+ "x": 64,
3097
+ "y": 633.3333333333334,
3098
+ "width": 1152,
3099
+ "height": 33.333333333333336,
3100
+ "textRole": "body",
3101
+ "fontSize": 13,
3102
+ "textCapacity": 66
3103
+ },
3104
+ {
3105
+ "kind": "text",
3106
+ "x": 64,
3107
+ "y": 676,
3108
+ "width": 1044,
3109
+ "height": 21.333333333333332,
3110
+ "textRole": "body",
3111
+ "fontSize": 9,
3112
+ "textCapacity": 87
3113
+ },
3114
+ {
3115
+ "kind": "text",
3116
+ "x": 1161.3333333333333,
3117
+ "y": 672,
3118
+ "width": 54.666666666666664,
3119
+ "height": 29.333333333333332,
3120
+ "textRole": "body",
3121
+ "fontSize": 11,
3122
+ "textCapacity": 3
3123
+ }
3124
+ ],
3125
+ "jsxReference": ""
3126
+ },
3127
+ {
3128
+ "slideNumber": 12,
3129
+ "sourceTitle": "Closing",
3130
+ "family": "closing",
3131
+ "titlePosition": "left",
3132
+ "bodyColumns": 1,
3133
+ "density": "medium",
3134
+ "features": [
3135
+ "closing"
3136
+ ],
3137
+ "recommendedRoles": [
3138
+ "closing"
3139
+ ],
3140
+ "structureSummary": "Closing",
3141
+ "zones": [
3142
+ {
3143
+ "kind": "text",
3144
+ "x": 64,
3145
+ "y": 105.33333333333333,
3146
+ "width": 1133.3333333333333,
3147
+ "height": 34.666666666666664,
3148
+ "textRole": "body",
3149
+ "fontSize": 13,
3150
+ "textCapacity": 65
3151
+ },
3152
+ {
3153
+ "kind": "title",
3154
+ "x": 64,
3155
+ "y": 245.33333333333334,
3156
+ "width": 1146.6666666666667,
3157
+ "height": 262.6666666666667,
3158
+ "textRole": "title",
3159
+ "fontSize": 55,
3160
+ "textCapacity": 45
3161
+ },
3162
+ {
3163
+ "kind": "text",
3164
+ "x": 64,
3165
+ "y": 674.6666666666666,
3166
+ "width": 1013.3333333333334,
3167
+ "height": 21.333333333333332,
3168
+ "textRole": "body",
3169
+ "fontSize": 9,
3170
+ "textCapacity": 84
3171
+ },
3172
+ {
3173
+ "kind": "text",
3174
+ "x": 1160,
3175
+ "y": 670.6666666666666,
3176
+ "width": 53.333333333333336,
3177
+ "height": 26.666666666666668,
3178
+ "textRole": "body",
3179
+ "fontSize": 11,
3180
+ "textCapacity": 3
3181
+ }
3182
+ ],
3183
+ "jsxReference": ""
3184
+ }
3185
+ ]
3186
+ }
3187
+ },
3188
+ "provenance": {
3189
+ "kind": "mit-adaptation",
3190
+ "license": "MIT",
3191
+ "upstream": "https://github.com/zarazhangrui/beautiful-html-templates/tree/e5e204fb1f3b06290846e7dcd7aceddabeceec8c/templates/cartesian",
3192
+ "author": "Zara Zhang",
3193
+ "adaptedBy": "DSH Desktop contributors",
3194
+ "modified": "2026-09-06"
3195
+ }
3196
+ }