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