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