@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,3338 @@
1
+ {
2
+ "definition": {
3
+ "id": "dsh-editorial-forest",
4
+ "category": "work",
5
+ "sourceCollection": "curated",
6
+ "slug": "dsh-editorial-forest",
7
+ "name": "Editorial Forest",
8
+ "localizedNames": {
9
+ "en": "Editorial Forest",
10
+ "zh": "森林季刊"
11
+ },
12
+ "variantLabel": "DSH",
13
+ "description": "森林季刊 · Editorial Forest",
14
+ "previewTitle": "Editorial Forest",
15
+ "previewSubtitle": "12 editable layouts",
16
+ "titleFontFace": "Georgia",
17
+ "bodyFontFace": "Arial",
18
+ "fonts": {
19
+ "en": {
20
+ "title": "Georgia",
21
+ "body": "Arial"
22
+ },
23
+ "zh": {
24
+ "title": "Songti SC",
25
+ "body": "PingFang SC"
26
+ },
27
+ "fallbacks": {
28
+ "en": {
29
+ "title": "Georgia",
30
+ "body": "Arial"
31
+ },
32
+ "zh": {
33
+ "macOS": {
34
+ "serif": "Songti SC",
35
+ "sans": "PingFang SC"
36
+ },
37
+ "Windows": {
38
+ "serif": "SimSun",
39
+ "sans": "Microsoft YaHei"
40
+ },
41
+ "Linux": {
42
+ "serif": "Noto Serif CJK SC",
43
+ "sans": "Noto Sans CJK SC"
44
+ }
45
+ }
46
+ },
47
+ "upstreamTitle": "Source Serif 4"
48
+ },
49
+ "previewLanguage": "en",
50
+ "palette": {
51
+ "background": "2E4A2A",
52
+ "text": "EFE7D4",
53
+ "accent": "E89CB1",
54
+ "surface": "3A5A36",
55
+ "secondary": "E6DCC4",
56
+ "muted": "E6DCC4"
57
+ },
58
+ "referenceDirectory": "work/dsh-editorial-forest",
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": "a1702b5ab8337a3836f889d0b277adb81374c0ef9b619146752d9e36ac38e6e6"
91
+ },
92
+ "semantics": {
93
+ "palette": {
94
+ "background": "2E4A2A",
95
+ "text": "EFE7D4",
96
+ "accent": "E89CB1",
97
+ "surface": "3A5A36",
98
+ "secondary": "E6DCC4",
99
+ "muted": "E6DCC4"
100
+ },
101
+ "source": {
102
+ "fileName": "editorial-forest-reference.jpg",
103
+ "sha256": "a1702b5ab8337a3836f889d0b277adb81374c0ef9b619146752d9e36ac38e6e6",
104
+ "slideCount": 12,
105
+ "averageTextBlocks": 20,
106
+ "averageCharacters": 298,
107
+ "visualGrammar": "editorial-forest",
108
+ "recommendedDensity": "medium",
109
+ "designSummary": "# Editorial Forest / 森林季刊\n\nAdapted from Zara Zhang's Editorial Forest, commit e5e204fb1f3b06290846e7dcd7aceddabeceec8c. MIT. This native edition rebuilds twelve editable layouts; it is not an HTML import or an exact copy of every upstream slide.\n\n## Typography\n\nEnglish display: Georgia; English body: Arial. These portable Office substitutions replace the upstream display face Source Serif 4. Chinese display: Songti SC; body: PingFang SC. On Windows use SimSun / Microsoft YaHei; on Linux use Noto Serif CJK SC / Noto Sans CJK SC. No font binary is distributed. Keep the serif/sans distinction.\n\nEnglish previews use source/. Chinese examples use source-zh/. Preview language does not select the language of the user's output. Choose the matching fonts for the actual content; reflow longer translations instead of shrinking titles.\n\n## Layout grammar\n\n A serif-led editorial presentation system in the register of a literary quarterly or art-book monograph. Display type runs in Source Serif 4 at weight 500 with optical-size axis engaged, scaling up to 220px for cover and stat moments. The palette pairs a deep forest green (#2e4a2a) with a dusty rose pink (#e89cb1) over an oat-cream paper ground (#efe7d4), with JetBrains Mono as the editorial chrome (labels, captions, axis ticks). The aesthetic is closer to a Penguin classic, Apartamento spread, or quiet annual report than a tech keynote — confident, paper-feeling, and committed to a small color vocabulary.\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. A more resilient operating cycle — Asymmetric argument with three supporting evidence rows\n3. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n4. Reconcile the benefit with the cost — Sequential contribution waterfall with an explicitly reconciled net change\n5. Separate the record from the explanation — Interview excerpt, observation, competing explanation and next check\n6. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n7. Locate the friction along the journey — Four stages aligned across actions and independent outcome measures\n8. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n9. Design around explicit boundaries — Three layers, nine native nodes, horizontal handoffs and vertical dependencies\n10. Connect each measure to a response — Actual, target and response aligned across four measures\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. Closing — Closing\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n",
110
+ "layoutPatterns": [
111
+ {
112
+ "family": "cover",
113
+ "slideCount": 1,
114
+ "sampleSlideNumbers": [
115
+ 1
116
+ ],
117
+ "titlePosition": "left",
118
+ "bodyColumns": 1,
119
+ "density": "medium",
120
+ "averageTextFrames": 4,
121
+ "averageMediaFrames": 0
122
+ },
123
+ {
124
+ "family": "insights",
125
+ "slideCount": 1,
126
+ "sampleSlideNumbers": [
127
+ 2
128
+ ],
129
+ "titlePosition": "left",
130
+ "bodyColumns": 2,
131
+ "density": "medium",
132
+ "averageTextFrames": 20,
133
+ "averageMediaFrames": 0
134
+ },
135
+ {
136
+ "family": "data",
137
+ "slideCount": 1,
138
+ "sampleSlideNumbers": [
139
+ 3
140
+ ],
141
+ "titlePosition": "left",
142
+ "bodyColumns": 2,
143
+ "density": "high",
144
+ "averageTextFrames": 30,
145
+ "averageMediaFrames": 0
146
+ },
147
+ {
148
+ "family": "data",
149
+ "slideCount": 1,
150
+ "sampleSlideNumbers": [
151
+ 4
152
+ ],
153
+ "titlePosition": "left",
154
+ "bodyColumns": 2,
155
+ "density": "high",
156
+ "averageTextFrames": 30,
157
+ "averageMediaFrames": 0
158
+ },
159
+ {
160
+ "family": "quote",
161
+ "slideCount": 1,
162
+ "sampleSlideNumbers": [
163
+ 5
164
+ ],
165
+ "titlePosition": "left",
166
+ "bodyColumns": 2,
167
+ "density": "high",
168
+ "averageTextFrames": 18,
169
+ "averageMediaFrames": 0
170
+ },
171
+ {
172
+ "family": "comparison",
173
+ "slideCount": 1,
174
+ "sampleSlideNumbers": [
175
+ 6
176
+ ],
177
+ "titlePosition": "left",
178
+ "bodyColumns": 2,
179
+ "density": "high",
180
+ "averageTextFrames": 26,
181
+ "averageMediaFrames": 0
182
+ },
183
+ {
184
+ "family": "process",
185
+ "slideCount": 1,
186
+ "sampleSlideNumbers": [
187
+ 7
188
+ ],
189
+ "titlePosition": "left",
190
+ "bodyColumns": 2,
191
+ "density": "high",
192
+ "averageTextFrames": 21,
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": 13,
205
+ "averageMediaFrames": 0
206
+ },
207
+ {
208
+ "family": "process",
209
+ "slideCount": 1,
210
+ "sampleSlideNumbers": [
211
+ 9
212
+ ],
213
+ "titlePosition": "left",
214
+ "bodyColumns": 3,
215
+ "density": "high",
216
+ "averageTextFrames": 20,
217
+ "averageMediaFrames": 0
218
+ },
219
+ {
220
+ "family": "table",
221
+ "slideCount": 1,
222
+ "sampleSlideNumbers": [
223
+ 10
224
+ ],
225
+ "titlePosition": "left",
226
+ "bodyColumns": 2,
227
+ "density": "high",
228
+ "averageTextFrames": 30,
229
+ "averageMediaFrames": 0
230
+ },
231
+ {
232
+ "family": "process",
233
+ "slideCount": 1,
234
+ "sampleSlideNumbers": [
235
+ 11
236
+ ],
237
+ "titlePosition": "left",
238
+ "bodyColumns": 2,
239
+ "density": "high",
240
+ "averageTextFrames": 19,
241
+ "averageMediaFrames": 0
242
+ },
243
+ {
244
+ "family": "closing",
245
+ "slideCount": 1,
246
+ "sampleSlideNumbers": [
247
+ 12
248
+ ],
249
+ "titlePosition": "left",
250
+ "bodyColumns": 1,
251
+ "density": "medium",
252
+ "averageTextFrames": 4,
253
+ "averageMediaFrames": 0
254
+ }
255
+ ],
256
+ "pageReferences": [
257
+ {
258
+ "slideNumber": 1,
259
+ "sourceTitle": "Cover",
260
+ "family": "cover",
261
+ "titlePosition": "left",
262
+ "bodyColumns": 1,
263
+ "density": "medium",
264
+ "features": [
265
+ "cover"
266
+ ],
267
+ "recommendedRoles": [
268
+ "cover"
269
+ ],
270
+ "structureSummary": "Cover",
271
+ "zones": [
272
+ {
273
+ "kind": "text",
274
+ "x": 64,
275
+ "y": 45.333333333333336,
276
+ "width": 1066.6666666666667,
277
+ "height": 32,
278
+ "textRole": "body",
279
+ "fontSize": 12,
280
+ "textCapacity": 66
281
+ },
282
+ {
283
+ "kind": "title",
284
+ "x": 64,
285
+ "y": 162.66666666666666,
286
+ "width": 1053.3333333333333,
287
+ "height": 400,
288
+ "textRole": "title",
289
+ "fontSize": 78,
290
+ "textCapacity": 30
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": "A more resilient operating cycle",
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": "Read the trend and investigate the pause",
536
+ "family": "data",
537
+ "titlePosition": "left",
538
+ "bodyColumns": 2,
539
+ "density": "high",
540
+ "features": [
541
+ "trend"
542
+ ],
543
+ "recommendedRoles": [
544
+ "data"
545
+ ],
546
+ "structureSummary": "Labeled six-point trend with common scale and a separate interpretation",
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": "text",
580
+ "x": 64,
581
+ "y": 202.66666666666666,
582
+ "width": 1133.3333333333333,
583
+ "height": 33.333333333333336,
584
+ "textRole": "body",
585
+ "fontSize": 13,
586
+ "textCapacity": 65
587
+ },
588
+ {
589
+ "kind": "shape",
590
+ "x": 437.3333333333333,
591
+ "y": 253.33333333333334,
592
+ "width": 121.33333333333333,
593
+ "height": 314.6666666666667,
594
+ "shape": "rect",
595
+ "fill": "415238"
596
+ },
597
+ {
598
+ "kind": "text",
599
+ "x": 64,
600
+ "y": 554.6666666666666,
601
+ "width": 40,
602
+ "height": 29.333333333333332,
603
+ "textRole": "body",
604
+ "fontSize": 11,
605
+ "textCapacity": 2
606
+ },
607
+ {
608
+ "kind": "text",
609
+ "x": 64,
610
+ "y": 480,
611
+ "width": 40,
612
+ "height": 29.333333333333332,
613
+ "textRole": "body",
614
+ "fontSize": 11,
615
+ "textCapacity": 2
616
+ },
617
+ {
618
+ "kind": "text",
619
+ "x": 64,
620
+ "y": 405.3333333333333,
621
+ "width": 40,
622
+ "height": 29.333333333333332,
623
+ "textRole": "body",
624
+ "fontSize": 11,
625
+ "textCapacity": 2
626
+ },
627
+ {
628
+ "kind": "text",
629
+ "x": 64,
630
+ "y": 330.6666666666667,
631
+ "width": 40,
632
+ "height": 29.333333333333332,
633
+ "textRole": "body",
634
+ "fontSize": 11,
635
+ "textCapacity": 2
636
+ },
637
+ {
638
+ "kind": "text",
639
+ "x": 64,
640
+ "y": 256,
641
+ "width": 40,
642
+ "height": 29.333333333333332,
643
+ "textRole": "body",
644
+ "fontSize": 11,
645
+ "textCapacity": 2
646
+ },
647
+ {
648
+ "kind": "shape",
649
+ "x": 134.4,
650
+ "y": 377.06666666666666,
651
+ "width": 8.533333333333333,
652
+ "height": 8.533333333333333,
653
+ "shape": "ellipse",
654
+ "fill": "EFE7D4"
655
+ },
656
+ {
657
+ "kind": "text",
658
+ "x": 108,
659
+ "y": 341.3333333333333,
660
+ "width": 62.666666666666664,
661
+ "height": 33.333333333333336,
662
+ "textRole": "body",
663
+ "fontSize": 15,
664
+ "textCapacity": 3
665
+ },
666
+ {
667
+ "kind": "text",
668
+ "x": 117.33333333333333,
669
+ "y": 582.6666666666666,
670
+ "width": 49.333333333333336,
671
+ "height": 32,
672
+ "textRole": "body",
673
+ "fontSize": 12,
674
+ "textCapacity": 3
675
+ },
676
+ {
677
+ "kind": "shape",
678
+ "x": 265.06666666666666,
679
+ "y": 362.13333333333327,
680
+ "width": 8.533333333333333,
681
+ "height": 8.533333333333333,
682
+ "shape": "ellipse",
683
+ "fill": "EFE7D4"
684
+ },
685
+ {
686
+ "kind": "text",
687
+ "x": 238.66666666666666,
688
+ "y": 326.3999999999999,
689
+ "width": 62.666666666666664,
690
+ "height": 33.333333333333336,
691
+ "textRole": "body",
692
+ "fontSize": 15,
693
+ "textCapacity": 3
694
+ },
695
+ {
696
+ "kind": "text",
697
+ "x": 248,
698
+ "y": 582.6666666666666,
699
+ "width": 49.333333333333336,
700
+ "height": 32,
701
+ "textRole": "body",
702
+ "fontSize": 12,
703
+ "textCapacity": 3
704
+ },
705
+ {
706
+ "kind": "shape",
707
+ "x": 395.73333333333335,
708
+ "y": 350.93333333333334,
709
+ "width": 8.533333333333333,
710
+ "height": 8.533333333333333,
711
+ "shape": "ellipse",
712
+ "fill": "EFE7D4"
713
+ },
714
+ {
715
+ "kind": "text",
716
+ "x": 369.3333333333333,
717
+ "y": 315.2,
718
+ "width": 62.666666666666664,
719
+ "height": 33.333333333333336,
720
+ "textRole": "body",
721
+ "fontSize": 15,
722
+ "textCapacity": 3
723
+ },
724
+ {
725
+ "kind": "text",
726
+ "x": 378.6666666666667,
727
+ "y": 582.6666666666666,
728
+ "width": 49.333333333333336,
729
+ "height": 32,
730
+ "textRole": "body",
731
+ "fontSize": 12,
732
+ "textCapacity": 3
733
+ },
734
+ {
735
+ "kind": "shape",
736
+ "x": 524,
737
+ "y": 352.2666666666667,
738
+ "width": 13.333333333333334,
739
+ "height": 13.333333333333334,
740
+ "shape": "ellipse",
741
+ "fill": "E89CB1"
742
+ },
743
+ {
744
+ "kind": "text",
745
+ "x": 500,
746
+ "y": 318.9333333333334,
747
+ "width": 62.666666666666664,
748
+ "height": 33.333333333333336,
749
+ "textRole": "body",
750
+ "fontSize": 15,
751
+ "textCapacity": 3
752
+ },
753
+ {
754
+ "kind": "text",
755
+ "x": 509.3333333333333,
756
+ "y": 582.6666666666666,
757
+ "width": 49.333333333333336,
758
+ "height": 32,
759
+ "textRole": "body",
760
+ "fontSize": 12,
761
+ "textCapacity": 3
762
+ },
763
+ {
764
+ "kind": "shape",
765
+ "x": 657.0666666666667,
766
+ "y": 324.8,
767
+ "width": 8.533333333333333,
768
+ "height": 8.533333333333333,
769
+ "shape": "ellipse",
770
+ "fill": "EFE7D4"
771
+ },
772
+ {
773
+ "kind": "text",
774
+ "x": 630.6666666666666,
775
+ "y": 289.06666666666666,
776
+ "width": 62.666666666666664,
777
+ "height": 33.333333333333336,
778
+ "textRole": "body",
779
+ "fontSize": 15,
780
+ "textCapacity": 3
781
+ },
782
+ {
783
+ "kind": "text",
784
+ "x": 640,
785
+ "y": 582.6666666666666,
786
+ "width": 49.333333333333336,
787
+ "height": 32,
788
+ "textRole": "body",
789
+ "fontSize": 12,
790
+ "textCapacity": 3
791
+ },
792
+ {
793
+ "kind": "shape",
794
+ "x": 787.7333333333332,
795
+ "y": 298.6666666666667,
796
+ "width": 8.533333333333333,
797
+ "height": 8.533333333333333,
798
+ "shape": "ellipse",
799
+ "fill": "EFE7D4"
800
+ },
801
+ {
802
+ "kind": "text",
803
+ "x": 761.3333333333334,
804
+ "y": 262.93333333333334,
805
+ "width": 62.666666666666664,
806
+ "height": 33.333333333333336,
807
+ "textRole": "body",
808
+ "fontSize": 15,
809
+ "textCapacity": 3
810
+ },
811
+ {
812
+ "kind": "text",
813
+ "x": 770.6666666666666,
814
+ "y": 582.6666666666666,
815
+ "width": 49.333333333333336,
816
+ "height": 32,
817
+ "textRole": "body",
818
+ "fontSize": 12,
819
+ "textCapacity": 3
820
+ },
821
+ {
822
+ "kind": "text",
823
+ "x": 365.3333333333333,
824
+ "y": 248,
825
+ "width": 206.66666666666666,
826
+ "height": 33.333333333333336,
827
+ "textRole": "body",
828
+ "fontSize": 13,
829
+ "textCapacity": 11
830
+ },
831
+ {
832
+ "kind": "text",
833
+ "x": 905.3333333333334,
834
+ "y": 217.33333333333334,
835
+ "width": 310.6666666666667,
836
+ "height": 33.333333333333336,
837
+ "textRole": "body",
838
+ "fontSize": 13,
839
+ "textCapacity": 17
840
+ },
841
+ {
842
+ "kind": "title",
843
+ "x": 905.3333333333334,
844
+ "y": 269.3333333333333,
845
+ "width": 310.6666666666667,
846
+ "height": 104,
847
+ "textRole": "title",
848
+ "fontSize": 56,
849
+ "textCapacity": 4
850
+ },
851
+ {
852
+ "kind": "text",
853
+ "x": 905.3333333333334,
854
+ "y": 381.3333333333333,
855
+ "width": 305.3333333333333,
856
+ "height": 73.33333333333333,
857
+ "textRole": "body",
858
+ "fontSize": 18,
859
+ "textCapacity": 24
860
+ },
861
+ {
862
+ "kind": "text",
863
+ "x": 905.3333333333334,
864
+ "y": 492,
865
+ "width": 305.3333333333333,
866
+ "height": 29.333333333333332,
867
+ "textRole": "body",
868
+ "fontSize": 10,
869
+ "textCapacity": 44
870
+ },
871
+ {
872
+ "kind": "text",
873
+ "x": 905.3333333333334,
874
+ "y": 538.6666666666666,
875
+ "width": 305.3333333333333,
876
+ "height": 66.66666666666667,
877
+ "textRole": "body",
878
+ "fontSize": 20,
879
+ "textCapacity": 22
880
+ },
881
+ {
882
+ "kind": "text",
883
+ "x": 64,
884
+ "y": 633.3333333333334,
885
+ "width": 1152,
886
+ "height": 33.333333333333336,
887
+ "textRole": "body",
888
+ "fontSize": 13,
889
+ "textCapacity": 66
890
+ },
891
+ {
892
+ "kind": "text",
893
+ "x": 64,
894
+ "y": 676,
895
+ "width": 1044,
896
+ "height": 21.333333333333332,
897
+ "textRole": "body",
898
+ "fontSize": 9,
899
+ "textCapacity": 87
900
+ },
901
+ {
902
+ "kind": "text",
903
+ "x": 1161.3333333333333,
904
+ "y": 672,
905
+ "width": 54.666666666666664,
906
+ "height": 29.333333333333332,
907
+ "textRole": "body",
908
+ "fontSize": 11,
909
+ "textCapacity": 3
910
+ }
911
+ ],
912
+ "jsxReference": ""
913
+ },
914
+ {
915
+ "slideNumber": 4,
916
+ "sourceTitle": "Reconcile the benefit with the cost",
917
+ "family": "data",
918
+ "titlePosition": "left",
919
+ "bodyColumns": 2,
920
+ "density": "high",
921
+ "features": [
922
+ "bridge"
923
+ ],
924
+ "recommendedRoles": [
925
+ "data"
926
+ ],
927
+ "structureSummary": "Sequential contribution waterfall with an explicitly reconciled net change",
928
+ "zones": [
929
+ {
930
+ "kind": "text",
931
+ "x": 64,
932
+ "y": 36,
933
+ "width": 886.6666666666666,
934
+ "height": 26.666666666666668,
935
+ "textRole": "body",
936
+ "fontSize": 10,
937
+ "textCapacity": 66
938
+ },
939
+ {
940
+ "kind": "title",
941
+ "x": 64,
942
+ "y": 101.33333333333333,
943
+ "width": 1152,
944
+ "height": 85.33333333333333,
945
+ "textRole": "title",
946
+ "fontSize": 32,
947
+ "textCapacity": 27
948
+ },
949
+ {
950
+ "kind": "text",
951
+ "x": 1005.3333333333334,
952
+ "y": 61.333333333333336,
953
+ "width": 210.66666666666666,
954
+ "height": 17.333333333333332,
955
+ "textRole": "body",
956
+ "fontSize": 9,
957
+ "textCapacity": 17
958
+ },
959
+ {
960
+ "kind": "text",
961
+ "x": 64,
962
+ "y": 202.66666666666666,
963
+ "width": 1133.3333333333333,
964
+ "height": 33.333333333333336,
965
+ "textRole": "body",
966
+ "fontSize": 13,
967
+ "textCapacity": 65
968
+ },
969
+ {
970
+ "kind": "text",
971
+ "x": 64,
972
+ "y": 552,
973
+ "width": 40,
974
+ "height": 30.666666666666668,
975
+ "textRole": "body",
976
+ "fontSize": 10,
977
+ "textCapacity": 6
978
+ },
979
+ {
980
+ "kind": "text",
981
+ "x": 64,
982
+ "y": 458.6666666666667,
983
+ "width": 40,
984
+ "height": 30.666666666666668,
985
+ "textRole": "body",
986
+ "fontSize": 10,
987
+ "textCapacity": 6
988
+ },
989
+ {
990
+ "kind": "text",
991
+ "x": 64,
992
+ "y": 365.3333333333333,
993
+ "width": 40,
994
+ "height": 30.666666666666668,
995
+ "textRole": "body",
996
+ "fontSize": 10,
997
+ "textCapacity": 6
998
+ },
999
+ {
1000
+ "kind": "text",
1001
+ "x": 64,
1002
+ "y": 272,
1003
+ "width": 40,
1004
+ "height": 30.666666666666668,
1005
+ "textRole": "body",
1006
+ "fontSize": 10,
1007
+ "textCapacity": 6
1008
+ },
1009
+ {
1010
+ "kind": "shape",
1011
+ "x": 128,
1012
+ "y": 377.3333333333333,
1013
+ "width": 80,
1014
+ "height": 186.66666666666666,
1015
+ "shape": "rect",
1016
+ "fill": "2E4A2A"
1017
+ },
1018
+ {
1019
+ "kind": "text",
1020
+ "x": 114.66666666666667,
1021
+ "y": 333.3333333333333,
1022
+ "width": 106.66666666666667,
1023
+ "height": 37.333333333333336,
1024
+ "textRole": "body",
1025
+ "fontSize": 20,
1026
+ "textCapacity": 4
1027
+ },
1028
+ {
1029
+ "kind": "text",
1030
+ "x": 104,
1031
+ "y": 581.3333333333334,
1032
+ "width": 132,
1033
+ "height": 34.666666666666664,
1034
+ "textRole": "body",
1035
+ "fontSize": 13,
1036
+ "textCapacity": 7
1037
+ },
1038
+ {
1039
+ "kind": "shape",
1040
+ "x": 268,
1041
+ "y": 317.6,
1042
+ "width": 80,
1043
+ "height": 59.73333333333333,
1044
+ "shape": "rect",
1045
+ "fill": "8b957c"
1046
+ },
1047
+ {
1048
+ "kind": "text",
1049
+ "x": 254.66666666666666,
1050
+ "y": 273.6,
1051
+ "width": 106.66666666666667,
1052
+ "height": 37.333333333333336,
1053
+ "textRole": "body",
1054
+ "fontSize": 20,
1055
+ "textCapacity": 4
1056
+ },
1057
+ {
1058
+ "kind": "text",
1059
+ "x": 244,
1060
+ "y": 581.3333333333334,
1061
+ "width": 132,
1062
+ "height": 34.666666666666664,
1063
+ "textRole": "body",
1064
+ "fontSize": 13,
1065
+ "textCapacity": 7
1066
+ },
1067
+ {
1068
+ "kind": "shape",
1069
+ "x": 408,
1070
+ "y": 317.6,
1071
+ "width": 80,
1072
+ "height": 24.266666666666666,
1073
+ "shape": "rect",
1074
+ "fill": "bfc0aa"
1075
+ },
1076
+ {
1077
+ "kind": "text",
1078
+ "x": 394.6666666666667,
1079
+ "y": 273.6,
1080
+ "width": 106.66666666666667,
1081
+ "height": 37.333333333333336,
1082
+ "textRole": "body",
1083
+ "fontSize": 20,
1084
+ "textCapacity": 4
1085
+ },
1086
+ {
1087
+ "kind": "text",
1088
+ "x": 384,
1089
+ "y": 581.3333333333334,
1090
+ "width": 132,
1091
+ "height": 34.666666666666664,
1092
+ "textRole": "body",
1093
+ "fontSize": 13,
1094
+ "textCapacity": 7
1095
+ },
1096
+ {
1097
+ "kind": "shape",
1098
+ "x": 548,
1099
+ "y": 341.8666666666666,
1100
+ "width": 80,
1101
+ "height": 13.066666666666665,
1102
+ "shape": "rect",
1103
+ "fill": "bfc0aa"
1104
+ },
1105
+ {
1106
+ "kind": "text",
1107
+ "x": 534.6666666666666,
1108
+ "y": 297.8666666666666,
1109
+ "width": 106.66666666666667,
1110
+ "height": 37.333333333333336,
1111
+ "textRole": "body",
1112
+ "fontSize": 20,
1113
+ "textCapacity": 4
1114
+ },
1115
+ {
1116
+ "kind": "text",
1117
+ "x": 524,
1118
+ "y": 581.3333333333334,
1119
+ "width": 132,
1120
+ "height": 34.666666666666664,
1121
+ "textRole": "body",
1122
+ "fontSize": 13,
1123
+ "textCapacity": 7
1124
+ },
1125
+ {
1126
+ "kind": "shape",
1127
+ "x": 688,
1128
+ "y": 354.9333333333334,
1129
+ "width": 80,
1130
+ "height": 209.06666666666663,
1131
+ "shape": "rect",
1132
+ "fill": "2E4A2A"
1133
+ },
1134
+ {
1135
+ "kind": "text",
1136
+ "x": 674.6666666666666,
1137
+ "y": 310.9333333333334,
1138
+ "width": 106.66666666666667,
1139
+ "height": 37.333333333333336,
1140
+ "textRole": "body",
1141
+ "fontSize": 20,
1142
+ "textCapacity": 4
1143
+ },
1144
+ {
1145
+ "kind": "text",
1146
+ "x": 664,
1147
+ "y": 581.3333333333334,
1148
+ "width": 132,
1149
+ "height": 34.666666666666664,
1150
+ "textRole": "body",
1151
+ "fontSize": 13,
1152
+ "textCapacity": 7
1153
+ },
1154
+ {
1155
+ "kind": "text",
1156
+ "x": 905.3333333333334,
1157
+ "y": 221.33333333333334,
1158
+ "width": 310.6666666666667,
1159
+ "height": 33.333333333333336,
1160
+ "textRole": "body",
1161
+ "fontSize": 13,
1162
+ "textCapacity": 17
1163
+ },
1164
+ {
1165
+ "kind": "title",
1166
+ "x": 905.3333333333334,
1167
+ "y": 273.3333333333333,
1168
+ "width": 310.6666666666667,
1169
+ "height": 102.66666666666667,
1170
+ "textRole": "title",
1171
+ "fontSize": 57,
1172
+ "textCapacity": 4
1173
+ },
1174
+ {
1175
+ "kind": "text",
1176
+ "x": 905.3333333333334,
1177
+ "y": 385.3333333333333,
1178
+ "width": 310.6666666666667,
1179
+ "height": 53.333333333333336,
1180
+ "textRole": "body",
1181
+ "fontSize": 18,
1182
+ "textCapacity": 24
1183
+ },
1184
+ {
1185
+ "kind": "text",
1186
+ "x": 905.3333333333334,
1187
+ "y": 458.6666666666667,
1188
+ "width": 196,
1189
+ "height": 40,
1190
+ "textRole": "body",
1191
+ "fontSize": 15,
1192
+ "textCapacity": 9
1193
+ },
1194
+ {
1195
+ "kind": "text",
1196
+ "x": 1101.3333333333333,
1197
+ "y": 456,
1198
+ "width": 114.66666666666667,
1199
+ "height": 41.333333333333336,
1200
+ "textRole": "body",
1201
+ "fontSize": 20,
1202
+ "textCapacity": 4
1203
+ },
1204
+ {
1205
+ "kind": "text",
1206
+ "x": 905.3333333333334,
1207
+ "y": 506.6666666666667,
1208
+ "width": 196,
1209
+ "height": 40,
1210
+ "textRole": "body",
1211
+ "fontSize": 15,
1212
+ "textCapacity": 9
1213
+ },
1214
+ {
1215
+ "kind": "text",
1216
+ "x": 1101.3333333333333,
1217
+ "y": 504,
1218
+ "width": 114.66666666666667,
1219
+ "height": 41.333333333333336,
1220
+ "textRole": "body",
1221
+ "fontSize": 20,
1222
+ "textCapacity": 4
1223
+ },
1224
+ {
1225
+ "kind": "text",
1226
+ "x": 905.3333333333334,
1227
+ "y": 554.6666666666666,
1228
+ "width": 196,
1229
+ "height": 40,
1230
+ "textRole": "body",
1231
+ "fontSize": 15,
1232
+ "textCapacity": 9
1233
+ },
1234
+ {
1235
+ "kind": "text",
1236
+ "x": 1101.3333333333333,
1237
+ "y": 552,
1238
+ "width": 114.66666666666667,
1239
+ "height": 41.333333333333336,
1240
+ "textRole": "body",
1241
+ "fontSize": 20,
1242
+ "textCapacity": 4
1243
+ },
1244
+ {
1245
+ "kind": "text",
1246
+ "x": 64,
1247
+ "y": 633.3333333333334,
1248
+ "width": 1152,
1249
+ "height": 33.333333333333336,
1250
+ "textRole": "body",
1251
+ "fontSize": 13,
1252
+ "textCapacity": 66
1253
+ },
1254
+ {
1255
+ "kind": "text",
1256
+ "x": 64,
1257
+ "y": 676,
1258
+ "width": 1044,
1259
+ "height": 21.333333333333332,
1260
+ "textRole": "body",
1261
+ "fontSize": 9,
1262
+ "textCapacity": 87
1263
+ },
1264
+ {
1265
+ "kind": "text",
1266
+ "x": 1161.3333333333333,
1267
+ "y": 672,
1268
+ "width": 54.666666666666664,
1269
+ "height": 29.333333333333332,
1270
+ "textRole": "body",
1271
+ "fontSize": 11,
1272
+ "textCapacity": 3
1273
+ }
1274
+ ],
1275
+ "jsxReference": ""
1276
+ },
1277
+ {
1278
+ "slideNumber": 5,
1279
+ "sourceTitle": "Separate the record from the explanation",
1280
+ "family": "quote",
1281
+ "titlePosition": "left",
1282
+ "bodyColumns": 2,
1283
+ "density": "high",
1284
+ "features": [
1285
+ "evidence"
1286
+ ],
1287
+ "recommendedRoles": [
1288
+ "quote"
1289
+ ],
1290
+ "structureSummary": "Interview excerpt, observation, competing explanation and next check",
1291
+ "zones": [
1292
+ {
1293
+ "kind": "text",
1294
+ "x": 64,
1295
+ "y": 36,
1296
+ "width": 886.6666666666666,
1297
+ "height": 26.666666666666668,
1298
+ "textRole": "body",
1299
+ "fontSize": 10,
1300
+ "textCapacity": 66
1301
+ },
1302
+ {
1303
+ "kind": "title",
1304
+ "x": 64,
1305
+ "y": 101.33333333333333,
1306
+ "width": 1152,
1307
+ "height": 85.33333333333333,
1308
+ "textRole": "title",
1309
+ "fontSize": 32,
1310
+ "textCapacity": 27
1311
+ },
1312
+ {
1313
+ "kind": "text",
1314
+ "x": 1005.3333333333334,
1315
+ "y": 61.333333333333336,
1316
+ "width": 210.66666666666666,
1317
+ "height": 17.333333333333332,
1318
+ "textRole": "body",
1319
+ "fontSize": 9,
1320
+ "textCapacity": 17
1321
+ },
1322
+ {
1323
+ "kind": "shape",
1324
+ "x": 64,
1325
+ "y": 234.66666666666666,
1326
+ "width": 369.3333333333333,
1327
+ "height": 365.3333333333333,
1328
+ "shape": "rect",
1329
+ "fill": "3A5A36"
1330
+ },
1331
+ {
1332
+ "kind": "text",
1333
+ "x": 92,
1334
+ "y": 253.33333333333334,
1335
+ "width": 313.3333333333333,
1336
+ "height": 30.666666666666668,
1337
+ "textRole": "body",
1338
+ "fontSize": 10,
1339
+ "textCapacity": 46
1340
+ },
1341
+ {
1342
+ "kind": "text",
1343
+ "x": 92,
1344
+ "y": 317.3333333333333,
1345
+ "width": 309.3333333333333,
1346
+ "height": 173.33333333333334,
1347
+ "textRole": "body",
1348
+ "fontSize": 28,
1349
+ "textCapacity": 32
1350
+ },
1351
+ {
1352
+ "kind": "text",
1353
+ "x": 92,
1354
+ "y": 546.6666666666666,
1355
+ "width": 312,
1356
+ "height": 36,
1357
+ "textRole": "body",
1358
+ "fontSize": 12,
1359
+ "textCapacity": 38
1360
+ },
1361
+ {
1362
+ "kind": "title",
1363
+ "x": 482.6666666666667,
1364
+ "y": 221.33333333333334,
1365
+ "width": 253.33333333333334,
1366
+ "height": 90.66666666666667,
1367
+ "textRole": "title",
1368
+ "fontSize": 48,
1369
+ "textCapacity": 3
1370
+ },
1371
+ {
1372
+ "kind": "text",
1373
+ "x": 740,
1374
+ "y": 234.66666666666666,
1375
+ "width": 462.6666666666667,
1376
+ "height": 64,
1377
+ "textRole": "body",
1378
+ "fontSize": 22,
1379
+ "textCapacity": 15
1380
+ },
1381
+ {
1382
+ "kind": "shape",
1383
+ "x": 485.3333333333333,
1384
+ "y": 321.3333333333333,
1385
+ "width": 18.666666666666668,
1386
+ "height": 18.666666666666668,
1387
+ "shape": "rect",
1388
+ "fill": "EFE7D4"
1389
+ },
1390
+ {
1391
+ "kind": "shape",
1392
+ "x": 514.6666666666666,
1393
+ "y": 321.3333333333333,
1394
+ "width": 18.666666666666668,
1395
+ "height": 18.666666666666668,
1396
+ "shape": "rect",
1397
+ "fill": "EFE7D4"
1398
+ },
1399
+ {
1400
+ "kind": "shape",
1401
+ "x": 544,
1402
+ "y": 321.3333333333333,
1403
+ "width": 18.666666666666668,
1404
+ "height": 18.666666666666668,
1405
+ "shape": "rect",
1406
+ "fill": "EFE7D4"
1407
+ },
1408
+ {
1409
+ "kind": "shape",
1410
+ "x": 573.3333333333334,
1411
+ "y": 321.3333333333333,
1412
+ "width": 18.666666666666668,
1413
+ "height": 18.666666666666668,
1414
+ "shape": "rect",
1415
+ "fill": "516649"
1416
+ },
1417
+ {
1418
+ "kind": "shape",
1419
+ "x": 602.6666666666666,
1420
+ "y": 321.3333333333333,
1421
+ "width": 18.666666666666668,
1422
+ "height": 18.666666666666668,
1423
+ "shape": "rect",
1424
+ "fill": "516649"
1425
+ },
1426
+ {
1427
+ "kind": "shape",
1428
+ "x": 632,
1429
+ "y": 321.3333333333333,
1430
+ "width": 18.666666666666668,
1431
+ "height": 18.666666666666668,
1432
+ "shape": "rect",
1433
+ "fill": "516649"
1434
+ },
1435
+ {
1436
+ "kind": "shape",
1437
+ "x": 661.3333333333334,
1438
+ "y": 321.3333333333333,
1439
+ "width": 18.666666666666668,
1440
+ "height": 18.666666666666668,
1441
+ "shape": "rect",
1442
+ "fill": "516649"
1443
+ },
1444
+ {
1445
+ "kind": "shape",
1446
+ "x": 690.6666666666666,
1447
+ "y": 321.3333333333333,
1448
+ "width": 18.666666666666668,
1449
+ "height": 18.666666666666668,
1450
+ "shape": "rect",
1451
+ "fill": "516649"
1452
+ },
1453
+ {
1454
+ "kind": "text",
1455
+ "x": 748,
1456
+ "y": 317.3333333333333,
1457
+ "width": 468,
1458
+ "height": 33.333333333333336,
1459
+ "textRole": "body",
1460
+ "fontSize": 10,
1461
+ "textCapacity": 70
1462
+ },
1463
+ {
1464
+ "kind": "text",
1465
+ "x": 482.6666666666667,
1466
+ "y": 390.6666666666667,
1467
+ "width": 233.33333333333334,
1468
+ "height": 45.333333333333336,
1469
+ "textRole": "body",
1470
+ "fontSize": 15,
1471
+ "textCapacity": 22
1472
+ },
1473
+ {
1474
+ "kind": "text",
1475
+ "x": 741.3333333333334,
1476
+ "y": 389.3333333333333,
1477
+ "width": 469.3333333333333,
1478
+ "height": 62.666666666666664,
1479
+ "textRole": "body",
1480
+ "fontSize": 17,
1481
+ "textCapacity": 40
1482
+ },
1483
+ {
1484
+ "kind": "text",
1485
+ "x": 482.6666666666667,
1486
+ "y": 466.6666666666667,
1487
+ "width": 233.33333333333334,
1488
+ "height": 45.333333333333336,
1489
+ "textRole": "body",
1490
+ "fontSize": 15,
1491
+ "textCapacity": 22
1492
+ },
1493
+ {
1494
+ "kind": "text",
1495
+ "x": 741.3333333333334,
1496
+ "y": 465.3333333333333,
1497
+ "width": 469.3333333333333,
1498
+ "height": 62.666666666666664,
1499
+ "textRole": "body",
1500
+ "fontSize": 17,
1501
+ "textCapacity": 40
1502
+ },
1503
+ {
1504
+ "kind": "text",
1505
+ "x": 482.6666666666667,
1506
+ "y": 542.6666666666666,
1507
+ "width": 233.33333333333334,
1508
+ "height": 45.333333333333336,
1509
+ "textRole": "body",
1510
+ "fontSize": 15,
1511
+ "textCapacity": 22
1512
+ },
1513
+ {
1514
+ "kind": "text",
1515
+ "x": 741.3333333333334,
1516
+ "y": 541.3333333333334,
1517
+ "width": 469.3333333333333,
1518
+ "height": 62.666666666666664,
1519
+ "textRole": "body",
1520
+ "fontSize": 17,
1521
+ "textCapacity": 40
1522
+ },
1523
+ {
1524
+ "kind": "text",
1525
+ "x": 64,
1526
+ "y": 633.3333333333334,
1527
+ "width": 1152,
1528
+ "height": 33.333333333333336,
1529
+ "textRole": "body",
1530
+ "fontSize": 13,
1531
+ "textCapacity": 66
1532
+ },
1533
+ {
1534
+ "kind": "text",
1535
+ "x": 64,
1536
+ "y": 676,
1537
+ "width": 1044,
1538
+ "height": 21.333333333333332,
1539
+ "textRole": "body",
1540
+ "fontSize": 9,
1541
+ "textCapacity": 87
1542
+ },
1543
+ {
1544
+ "kind": "text",
1545
+ "x": 1161.3333333333333,
1546
+ "y": 672,
1547
+ "width": 54.666666666666664,
1548
+ "height": 29.333333333333332,
1549
+ "textRole": "body",
1550
+ "fontSize": 11,
1551
+ "textCapacity": 3
1552
+ }
1553
+ ],
1554
+ "jsxReference": ""
1555
+ },
1556
+ {
1557
+ "slideNumber": 6,
1558
+ "sourceTitle": "Choose the next move with evidence",
1559
+ "family": "comparison",
1560
+ "titlePosition": "left",
1561
+ "bodyColumns": 2,
1562
+ "density": "high",
1563
+ "features": [
1564
+ "matrix"
1565
+ ],
1566
+ "recommendedRoles": [
1567
+ "comparison"
1568
+ ],
1569
+ "structureSummary": "Two-axis decision map with direct labels and a recommended next step",
1570
+ "zones": [
1571
+ {
1572
+ "kind": "text",
1573
+ "x": 64,
1574
+ "y": 36,
1575
+ "width": 886.6666666666666,
1576
+ "height": 26.666666666666668,
1577
+ "textRole": "body",
1578
+ "fontSize": 10,
1579
+ "textCapacity": 66
1580
+ },
1581
+ {
1582
+ "kind": "title",
1583
+ "x": 64,
1584
+ "y": 101.33333333333333,
1585
+ "width": 1152,
1586
+ "height": 85.33333333333333,
1587
+ "textRole": "title",
1588
+ "fontSize": 32,
1589
+ "textCapacity": 27
1590
+ },
1591
+ {
1592
+ "kind": "text",
1593
+ "x": 1005.3333333333334,
1594
+ "y": 61.333333333333336,
1595
+ "width": 210.66666666666666,
1596
+ "height": 17.333333333333332,
1597
+ "textRole": "body",
1598
+ "fontSize": 9,
1599
+ "textCapacity": 17
1600
+ },
1601
+ {
1602
+ "kind": "text",
1603
+ "x": 64,
1604
+ "y": 202.66666666666666,
1605
+ "width": 1133.3333333333333,
1606
+ "height": 33.333333333333336,
1607
+ "textRole": "body",
1608
+ "fontSize": 13,
1609
+ "textCapacity": 65
1610
+ },
1611
+ {
1612
+ "kind": "shape",
1613
+ "x": 118.66666666666667,
1614
+ "y": 245.33333333333334,
1615
+ "width": 662.6666666666666,
1616
+ "height": 336,
1617
+ "shape": "rect",
1618
+ "fill": "354f30"
1619
+ },
1620
+ {
1621
+ "kind": "shape",
1622
+ "x": 450.6666666666667,
1623
+ "y": 245.33333333333334,
1624
+ "width": 330.6666666666667,
1625
+ "height": 168,
1626
+ "shape": "rect",
1627
+ "fill": "535a45"
1628
+ },
1629
+ {
1630
+ "kind": "text",
1631
+ "x": 137.33333333333334,
1632
+ "y": 258.6666666666667,
1633
+ "width": 285.3333333333333,
1634
+ "height": 30.666666666666668,
1635
+ "textRole": "body",
1636
+ "fontSize": 10,
1637
+ "textCapacity": 42
1638
+ },
1639
+ {
1640
+ "kind": "text",
1641
+ "x": 472,
1642
+ "y": 258.6666666666667,
1643
+ "width": 285.3333333333333,
1644
+ "height": 30.666666666666668,
1645
+ "textRole": "body",
1646
+ "fontSize": 10,
1647
+ "textCapacity": 42
1648
+ },
1649
+ {
1650
+ "kind": "text",
1651
+ "x": 137.33333333333334,
1652
+ "y": 545.3333333333334,
1653
+ "width": 285.3333333333333,
1654
+ "height": 30.666666666666668,
1655
+ "textRole": "body",
1656
+ "fontSize": 10,
1657
+ "textCapacity": 42
1658
+ },
1659
+ {
1660
+ "kind": "text",
1661
+ "x": 472,
1662
+ "y": 545.3333333333334,
1663
+ "width": 285.3333333333333,
1664
+ "height": 30.666666666666668,
1665
+ "textRole": "body",
1666
+ "fontSize": 10,
1667
+ "textCapacity": 42
1668
+ },
1669
+ {
1670
+ "kind": "shape",
1671
+ "x": 236,
1672
+ "y": 345.3333333333333,
1673
+ "width": 18.666666666666668,
1674
+ "height": 18.666666666666668,
1675
+ "shape": "ellipse",
1676
+ "fill": "8b957c"
1677
+ },
1678
+ {
1679
+ "kind": "text",
1680
+ "x": 269.3333333333333,
1681
+ "y": 338.6666666666667,
1682
+ "width": 50.666666666666664,
1683
+ "height": 37.333333333333336,
1684
+ "textRole": "body",
1685
+ "fontSize": 15,
1686
+ "textCapacity": 2
1687
+ },
1688
+ {
1689
+ "kind": "shape",
1690
+ "x": 557.3333333333334,
1691
+ "y": 322.6666666666667,
1692
+ "width": 34.666666666666664,
1693
+ "height": 34.666666666666664,
1694
+ "shape": "ellipse",
1695
+ "fill": "EFE7D4"
1696
+ },
1697
+ {
1698
+ "kind": "text",
1699
+ "x": 598.6666666666666,
1700
+ "y": 324,
1701
+ "width": 50.666666666666664,
1702
+ "height": 37.333333333333336,
1703
+ "textRole": "body",
1704
+ "fontSize": 15,
1705
+ "textCapacity": 2
1706
+ },
1707
+ {
1708
+ "kind": "shape",
1709
+ "x": 500,
1710
+ "y": 376,
1711
+ "width": 18.666666666666668,
1712
+ "height": 18.666666666666668,
1713
+ "shape": "ellipse",
1714
+ "fill": "8b957c"
1715
+ },
1716
+ {
1717
+ "kind": "text",
1718
+ "x": 533.3333333333334,
1719
+ "y": 369.3333333333333,
1720
+ "width": 50.666666666666664,
1721
+ "height": 37.333333333333336,
1722
+ "textRole": "body",
1723
+ "fontSize": 15,
1724
+ "textCapacity": 2
1725
+ },
1726
+ {
1727
+ "kind": "shape",
1728
+ "x": 293.3333333333333,
1729
+ "y": 462.6666666666667,
1730
+ "width": 18.666666666666668,
1731
+ "height": 18.666666666666668,
1732
+ "shape": "ellipse",
1733
+ "fill": "8b957c"
1734
+ },
1735
+ {
1736
+ "kind": "text",
1737
+ "x": 326.6666666666667,
1738
+ "y": 456,
1739
+ "width": 50.666666666666664,
1740
+ "height": 37.333333333333336,
1741
+ "textRole": "body",
1742
+ "fontSize": 15,
1743
+ "textCapacity": 2
1744
+ },
1745
+ {
1746
+ "kind": "shape",
1747
+ "x": 634.6666666666666,
1748
+ "y": 473.3333333333333,
1749
+ "width": 18.666666666666668,
1750
+ "height": 18.666666666666668,
1751
+ "shape": "ellipse",
1752
+ "fill": "8b957c"
1753
+ },
1754
+ {
1755
+ "kind": "text",
1756
+ "x": 668,
1757
+ "y": 466.6666666666667,
1758
+ "width": 50.666666666666664,
1759
+ "height": 37.333333333333336,
1760
+ "textRole": "body",
1761
+ "fontSize": 15,
1762
+ "textCapacity": 2
1763
+ },
1764
+ {
1765
+ "kind": "text",
1766
+ "x": 118.66666666666667,
1767
+ "y": 589.3333333333334,
1768
+ "width": 317.3333333333333,
1769
+ "height": 29.333333333333332,
1770
+ "textRole": "body",
1771
+ "fontSize": 11,
1772
+ "textCapacity": 21
1773
+ },
1774
+ {
1775
+ "kind": "text",
1776
+ "x": 469.3333333333333,
1777
+ "y": 589.3333333333334,
1778
+ "width": 312,
1779
+ "height": 29.333333333333332,
1780
+ "textRole": "body",
1781
+ "fontSize": 11,
1782
+ "textCapacity": 21
1783
+ },
1784
+ {
1785
+ "kind": "text",
1786
+ "x": 842.6666666666666,
1787
+ "y": 230.66666666666666,
1788
+ "width": 373.3333333333333,
1789
+ "height": 33.333333333333336,
1790
+ "textRole": "body",
1791
+ "fontSize": 13,
1792
+ "textCapacity": 21
1793
+ },
1794
+ {
1795
+ "kind": "title",
1796
+ "x": 842.6666666666666,
1797
+ "y": 286.6666666666667,
1798
+ "width": 373.3333333333333,
1799
+ "height": 82.66666666666667,
1800
+ "textRole": "title",
1801
+ "fontSize": 32,
1802
+ "textCapacity": 8
1803
+ },
1804
+ {
1805
+ "kind": "text",
1806
+ "x": 842.6666666666666,
1807
+ "y": 414.6666666666667,
1808
+ "width": 146.66666666666666,
1809
+ "height": 41.333333333333336,
1810
+ "textRole": "body",
1811
+ "fontSize": 14,
1812
+ "textCapacity": 14
1813
+ },
1814
+ {
1815
+ "kind": "text",
1816
+ "x": 1004,
1817
+ "y": 414.6666666666667,
1818
+ "width": 212,
1819
+ "height": 45.333333333333336,
1820
+ "textRole": "body",
1821
+ "fontSize": 16,
1822
+ "textCapacity": 9
1823
+ },
1824
+ {
1825
+ "kind": "text",
1826
+ "x": 842.6666666666666,
1827
+ "y": 476,
1828
+ "width": 146.66666666666666,
1829
+ "height": 41.333333333333336,
1830
+ "textRole": "body",
1831
+ "fontSize": 14,
1832
+ "textCapacity": 14
1833
+ },
1834
+ {
1835
+ "kind": "text",
1836
+ "x": 1004,
1837
+ "y": 476,
1838
+ "width": 212,
1839
+ "height": 45.333333333333336,
1840
+ "textRole": "body",
1841
+ "fontSize": 16,
1842
+ "textCapacity": 9
1843
+ },
1844
+ {
1845
+ "kind": "text",
1846
+ "x": 842.6666666666666,
1847
+ "y": 537.3333333333334,
1848
+ "width": 146.66666666666666,
1849
+ "height": 41.333333333333336,
1850
+ "textRole": "body",
1851
+ "fontSize": 14,
1852
+ "textCapacity": 14
1853
+ },
1854
+ {
1855
+ "kind": "text",
1856
+ "x": 1004,
1857
+ "y": 537.3333333333334,
1858
+ "width": 212,
1859
+ "height": 45.333333333333336,
1860
+ "textRole": "body",
1861
+ "fontSize": 16,
1862
+ "textCapacity": 9
1863
+ },
1864
+ {
1865
+ "kind": "text",
1866
+ "x": 64,
1867
+ "y": 633.3333333333334,
1868
+ "width": 1152,
1869
+ "height": 33.333333333333336,
1870
+ "textRole": "body",
1871
+ "fontSize": 13,
1872
+ "textCapacity": 66
1873
+ },
1874
+ {
1875
+ "kind": "text",
1876
+ "x": 64,
1877
+ "y": 676,
1878
+ "width": 1044,
1879
+ "height": 21.333333333333332,
1880
+ "textRole": "body",
1881
+ "fontSize": 9,
1882
+ "textCapacity": 87
1883
+ },
1884
+ {
1885
+ "kind": "text",
1886
+ "x": 1161.3333333333333,
1887
+ "y": 672,
1888
+ "width": 54.666666666666664,
1889
+ "height": 29.333333333333332,
1890
+ "textRole": "body",
1891
+ "fontSize": 11,
1892
+ "textCapacity": 3
1893
+ }
1894
+ ],
1895
+ "jsxReference": ""
1896
+ },
1897
+ {
1898
+ "slideNumber": 7,
1899
+ "sourceTitle": "Locate the friction along the journey",
1900
+ "family": "process",
1901
+ "titlePosition": "left",
1902
+ "bodyColumns": 2,
1903
+ "density": "high",
1904
+ "features": [
1905
+ "journey"
1906
+ ],
1907
+ "recommendedRoles": [
1908
+ "process"
1909
+ ],
1910
+ "structureSummary": "Four stages aligned across actions and independent outcome measures",
1911
+ "zones": [
1912
+ {
1913
+ "kind": "text",
1914
+ "x": 64,
1915
+ "y": 36,
1916
+ "width": 886.6666666666666,
1917
+ "height": 26.666666666666668,
1918
+ "textRole": "body",
1919
+ "fontSize": 10,
1920
+ "textCapacity": 66
1921
+ },
1922
+ {
1923
+ "kind": "title",
1924
+ "x": 64,
1925
+ "y": 101.33333333333333,
1926
+ "width": 1152,
1927
+ "height": 85.33333333333333,
1928
+ "textRole": "title",
1929
+ "fontSize": 32,
1930
+ "textCapacity": 27
1931
+ },
1932
+ {
1933
+ "kind": "text",
1934
+ "x": 1005.3333333333334,
1935
+ "y": 61.333333333333336,
1936
+ "width": 210.66666666666666,
1937
+ "height": 17.333333333333332,
1938
+ "textRole": "body",
1939
+ "fontSize": 9,
1940
+ "textCapacity": 17
1941
+ },
1942
+ {
1943
+ "kind": "text",
1944
+ "x": 64,
1945
+ "y": 250.66666666666666,
1946
+ "width": 153.33333333333334,
1947
+ "height": 40,
1948
+ "textRole": "body",
1949
+ "fontSize": 12,
1950
+ "textCapacity": 18
1951
+ },
1952
+ {
1953
+ "kind": "text",
1954
+ "x": 64,
1955
+ "y": 376,
1956
+ "width": 153.33333333333334,
1957
+ "height": 40,
1958
+ "textRole": "body",
1959
+ "fontSize": 12,
1960
+ "textCapacity": 18
1961
+ },
1962
+ {
1963
+ "kind": "text",
1964
+ "x": 64,
1965
+ "y": 501.3333333333333,
1966
+ "width": 153.33333333333334,
1967
+ "height": 40,
1968
+ "textRole": "body",
1969
+ "fontSize": 12,
1970
+ "textCapacity": 18
1971
+ },
1972
+ {
1973
+ "kind": "shape",
1974
+ "x": 244,
1975
+ "y": 232,
1976
+ "width": 222.66666666666666,
1977
+ "height": 84,
1978
+ "shape": "rect",
1979
+ "fill": "3A5A36"
1980
+ },
1981
+ {
1982
+ "kind": "text",
1983
+ "x": 260,
1984
+ "y": 249.33333333333334,
1985
+ "width": 190.66666666666666,
1986
+ "height": 58.666666666666664,
1987
+ "textRole": "body",
1988
+ "fontSize": 18,
1989
+ "textCapacity": 14
1990
+ },
1991
+ {
1992
+ "kind": "text",
1993
+ "x": 244,
1994
+ "y": 372,
1995
+ "width": 212,
1996
+ "height": 82.66666666666667,
1997
+ "textRole": "body",
1998
+ "fontSize": 20,
1999
+ "textCapacity": 14
2000
+ },
2001
+ {
2002
+ "kind": "title",
2003
+ "x": 244,
2004
+ "y": 490.6666666666667,
2005
+ "width": 212,
2006
+ "height": 73.33333333333333,
2007
+ "textRole": "title",
2008
+ "fontSize": 35,
2009
+ "textCapacity": 4
2010
+ },
2011
+ {
2012
+ "kind": "shape",
2013
+ "x": 488,
2014
+ "y": 232,
2015
+ "width": 222.66666666666666,
2016
+ "height": 84,
2017
+ "shape": "rect",
2018
+ "fill": "E89CB1"
2019
+ },
2020
+ {
2021
+ "kind": "text",
2022
+ "x": 504,
2023
+ "y": 249.33333333333334,
2024
+ "width": 190.66666666666666,
2025
+ "height": 58.666666666666664,
2026
+ "textRole": "body",
2027
+ "fontSize": 18,
2028
+ "textCapacity": 14
2029
+ },
2030
+ {
2031
+ "kind": "text",
2032
+ "x": 488,
2033
+ "y": 372,
2034
+ "width": 212,
2035
+ "height": 82.66666666666667,
2036
+ "textRole": "body",
2037
+ "fontSize": 20,
2038
+ "textCapacity": 14
2039
+ },
2040
+ {
2041
+ "kind": "title",
2042
+ "x": 488,
2043
+ "y": 490.6666666666667,
2044
+ "width": 212,
2045
+ "height": 73.33333333333333,
2046
+ "textRole": "title",
2047
+ "fontSize": 35,
2048
+ "textCapacity": 4
2049
+ },
2050
+ {
2051
+ "kind": "shape",
2052
+ "x": 732,
2053
+ "y": 232,
2054
+ "width": 222.66666666666666,
2055
+ "height": 84,
2056
+ "shape": "rect",
2057
+ "fill": "3A5A36"
2058
+ },
2059
+ {
2060
+ "kind": "text",
2061
+ "x": 748,
2062
+ "y": 249.33333333333334,
2063
+ "width": 190.66666666666666,
2064
+ "height": 58.666666666666664,
2065
+ "textRole": "body",
2066
+ "fontSize": 18,
2067
+ "textCapacity": 14
2068
+ },
2069
+ {
2070
+ "kind": "text",
2071
+ "x": 732,
2072
+ "y": 372,
2073
+ "width": 212,
2074
+ "height": 82.66666666666667,
2075
+ "textRole": "body",
2076
+ "fontSize": 20,
2077
+ "textCapacity": 14
2078
+ },
2079
+ {
2080
+ "kind": "title",
2081
+ "x": 732,
2082
+ "y": 490.6666666666667,
2083
+ "width": 212,
2084
+ "height": 73.33333333333333,
2085
+ "textRole": "title",
2086
+ "fontSize": 35,
2087
+ "textCapacity": 4
2088
+ },
2089
+ {
2090
+ "kind": "shape",
2091
+ "x": 976,
2092
+ "y": 232,
2093
+ "width": 222.66666666666666,
2094
+ "height": 84,
2095
+ "shape": "rect",
2096
+ "fill": "3A5A36"
2097
+ },
2098
+ {
2099
+ "kind": "text",
2100
+ "x": 992,
2101
+ "y": 249.33333333333334,
2102
+ "width": 190.66666666666666,
2103
+ "height": 58.666666666666664,
2104
+ "textRole": "body",
2105
+ "fontSize": 18,
2106
+ "textCapacity": 14
2107
+ },
2108
+ {
2109
+ "kind": "text",
2110
+ "x": 976,
2111
+ "y": 372,
2112
+ "width": 212,
2113
+ "height": 82.66666666666667,
2114
+ "textRole": "body",
2115
+ "fontSize": 20,
2116
+ "textCapacity": 14
2117
+ },
2118
+ {
2119
+ "kind": "title",
2120
+ "x": 976,
2121
+ "y": 490.6666666666667,
2122
+ "width": 212,
2123
+ "height": 73.33333333333333,
2124
+ "textRole": "title",
2125
+ "fontSize": 35,
2126
+ "textCapacity": 4
2127
+ },
2128
+ {
2129
+ "kind": "text",
2130
+ "x": 64,
2131
+ "y": 633.3333333333334,
2132
+ "width": 1152,
2133
+ "height": 33.333333333333336,
2134
+ "textRole": "body",
2135
+ "fontSize": 13,
2136
+ "textCapacity": 66
2137
+ },
2138
+ {
2139
+ "kind": "text",
2140
+ "x": 64,
2141
+ "y": 676,
2142
+ "width": 1044,
2143
+ "height": 21.333333333333332,
2144
+ "textRole": "body",
2145
+ "fontSize": 9,
2146
+ "textCapacity": 87
2147
+ },
2148
+ {
2149
+ "kind": "text",
2150
+ "x": 1161.3333333333333,
2151
+ "y": 672,
2152
+ "width": 54.666666666666664,
2153
+ "height": 29.333333333333332,
2154
+ "textRole": "body",
2155
+ "fontSize": 11,
2156
+ "textCapacity": 3
2157
+ }
2158
+ ],
2159
+ "jsxReference": ""
2160
+ },
2161
+ {
2162
+ "slideNumber": 8,
2163
+ "sourceTitle": "A small intervention, a measurable change",
2164
+ "family": "comparison",
2165
+ "titlePosition": "left",
2166
+ "bodyColumns": 2,
2167
+ "density": "high",
2168
+ "features": [
2169
+ "case"
2170
+ ],
2171
+ "recommendedRoles": [
2172
+ "comparison"
2173
+ ],
2174
+ "structureSummary": "Intervention narrative beside paired before and after comparisons",
2175
+ "zones": [
2176
+ {
2177
+ "kind": "text",
2178
+ "x": 64,
2179
+ "y": 36,
2180
+ "width": 886.6666666666666,
2181
+ "height": 26.666666666666668,
2182
+ "textRole": "body",
2183
+ "fontSize": 10,
2184
+ "textCapacity": 66
2185
+ },
2186
+ {
2187
+ "kind": "title",
2188
+ "x": 64,
2189
+ "y": 101.33333333333333,
2190
+ "width": 1152,
2191
+ "height": 85.33333333333333,
2192
+ "textRole": "title",
2193
+ "fontSize": 32,
2194
+ "textCapacity": 27
2195
+ },
2196
+ {
2197
+ "kind": "text",
2198
+ "x": 1005.3333333333334,
2199
+ "y": 61.333333333333336,
2200
+ "width": 210.66666666666666,
2201
+ "height": 17.333333333333332,
2202
+ "textRole": "body",
2203
+ "fontSize": 9,
2204
+ "textCapacity": 17
2205
+ },
2206
+ {
2207
+ "kind": "text",
2208
+ "x": 64,
2209
+ "y": 224,
2210
+ "width": 386.6666666666667,
2211
+ "height": 34.666666666666664,
2212
+ "textRole": "body",
2213
+ "fontSize": 12,
2214
+ "textCapacity": 24
2215
+ },
2216
+ {
2217
+ "kind": "title",
2218
+ "x": 64,
2219
+ "y": 289.3333333333333,
2220
+ "width": 384,
2221
+ "height": 161.33333333333334,
2222
+ "textRole": "title",
2223
+ "fontSize": 34,
2224
+ "textCapacity": 24
2225
+ },
2226
+ {
2227
+ "kind": "text",
2228
+ "x": 64,
2229
+ "y": 492,
2230
+ "width": 374.6666666666667,
2231
+ "height": 104,
2232
+ "textRole": "body",
2233
+ "fontSize": 20,
2234
+ "textCapacity": 42
2235
+ },
2236
+ {
2237
+ "kind": "text",
2238
+ "x": 552,
2239
+ "y": 232,
2240
+ "width": 649.3333333333334,
2241
+ "height": 42.666666666666664,
2242
+ "textRole": "body",
2243
+ "fontSize": 20,
2244
+ "textCapacity": 24
2245
+ },
2246
+ {
2247
+ "kind": "shape",
2248
+ "x": 553.3333333333334,
2249
+ "y": 300,
2250
+ "width": 388.8,
2251
+ "height": 26.666666666666668,
2252
+ "shape": "rect",
2253
+ "fill": "b5b8a1"
2254
+ },
2255
+ {
2256
+ "kind": "shape",
2257
+ "x": 553.3333333333334,
2258
+ "y": 340,
2259
+ "width": 151.20000000000002,
2260
+ "height": 26.666666666666668,
2261
+ "shape": "rect",
2262
+ "fill": "785348"
2263
+ },
2264
+ {
2265
+ "kind": "text",
2266
+ "x": 1005.3333333333334,
2267
+ "y": 305.3333333333333,
2268
+ "width": 210.66666666666666,
2269
+ "height": 60,
2270
+ "textRole": "body",
2271
+ "fontSize": 23,
2272
+ "textCapacity": 6
2273
+ },
2274
+ {
2275
+ "kind": "text",
2276
+ "x": 552,
2277
+ "y": 421.3333333333333,
2278
+ "width": 649.3333333333334,
2279
+ "height": 42.666666666666664,
2280
+ "textRole": "body",
2281
+ "fontSize": 20,
2282
+ "textCapacity": 24
2283
+ },
2284
+ {
2285
+ "kind": "shape",
2286
+ "x": 553.3333333333334,
2287
+ "y": 489.3333333333333,
2288
+ "width": 198.72,
2289
+ "height": 26.666666666666668,
2290
+ "shape": "rect",
2291
+ "fill": "b5b8a1"
2292
+ },
2293
+ {
2294
+ "kind": "shape",
2295
+ "x": 553.3333333333334,
2296
+ "y": 529.3333333333334,
2297
+ "width": 315.36,
2298
+ "height": 26.666666666666668,
2299
+ "shape": "rect",
2300
+ "fill": "785348"
2301
+ },
2302
+ {
2303
+ "kind": "text",
2304
+ "x": 1005.3333333333334,
2305
+ "y": 494.6666666666667,
2306
+ "width": 210.66666666666666,
2307
+ "height": 60,
2308
+ "textRole": "body",
2309
+ "fontSize": 23,
2310
+ "textCapacity": 6
2311
+ },
2312
+ {
2313
+ "kind": "text",
2314
+ "x": 64,
2315
+ "y": 633.3333333333334,
2316
+ "width": 1152,
2317
+ "height": 33.333333333333336,
2318
+ "textRole": "body",
2319
+ "fontSize": 13,
2320
+ "textCapacity": 66
2321
+ },
2322
+ {
2323
+ "kind": "text",
2324
+ "x": 64,
2325
+ "y": 676,
2326
+ "width": 1044,
2327
+ "height": 21.333333333333332,
2328
+ "textRole": "body",
2329
+ "fontSize": 9,
2330
+ "textCapacity": 87
2331
+ },
2332
+ {
2333
+ "kind": "text",
2334
+ "x": 1161.3333333333333,
2335
+ "y": 672,
2336
+ "width": 54.666666666666664,
2337
+ "height": 29.333333333333332,
2338
+ "textRole": "body",
2339
+ "fontSize": 11,
2340
+ "textCapacity": 3
2341
+ }
2342
+ ],
2343
+ "jsxReference": ""
2344
+ },
2345
+ {
2346
+ "slideNumber": 9,
2347
+ "sourceTitle": "Design around explicit boundaries",
2348
+ "family": "process",
2349
+ "titlePosition": "left",
2350
+ "bodyColumns": 3,
2351
+ "density": "high",
2352
+ "features": [
2353
+ "architecture"
2354
+ ],
2355
+ "recommendedRoles": [
2356
+ "process"
2357
+ ],
2358
+ "structureSummary": "Three layers, nine native nodes, horizontal handoffs and vertical dependencies",
2359
+ "zones": [
2360
+ {
2361
+ "kind": "text",
2362
+ "x": 64,
2363
+ "y": 36,
2364
+ "width": 886.6666666666666,
2365
+ "height": 26.666666666666668,
2366
+ "textRole": "body",
2367
+ "fontSize": 10,
2368
+ "textCapacity": 66
2369
+ },
2370
+ {
2371
+ "kind": "title",
2372
+ "x": 64,
2373
+ "y": 101.33333333333333,
2374
+ "width": 1152,
2375
+ "height": 85.33333333333333,
2376
+ "textRole": "title",
2377
+ "fontSize": 32,
2378
+ "textCapacity": 27
2379
+ },
2380
+ {
2381
+ "kind": "text",
2382
+ "x": 1005.3333333333334,
2383
+ "y": 61.333333333333336,
2384
+ "width": 210.66666666666666,
2385
+ "height": 17.333333333333332,
2386
+ "textRole": "body",
2387
+ "fontSize": 9,
2388
+ "textCapacity": 17
2389
+ },
2390
+ {
2391
+ "kind": "text",
2392
+ "x": 64,
2393
+ "y": 261.3333333333333,
2394
+ "width": 168,
2395
+ "height": 33.333333333333336,
2396
+ "textRole": "body",
2397
+ "fontSize": 13,
2398
+ "textCapacity": 9
2399
+ },
2400
+ {
2401
+ "kind": "shape",
2402
+ "x": 254.66666666666666,
2403
+ "y": 234.66666666666666,
2404
+ "width": 190.66666666666666,
2405
+ "height": 84,
2406
+ "shape": "rect",
2407
+ "fill": "3A5A36"
2408
+ },
2409
+ {
2410
+ "kind": "text",
2411
+ "x": 270.6666666666667,
2412
+ "y": 252,
2413
+ "width": 158.66666666666666,
2414
+ "height": 58.666666666666664,
2415
+ "textRole": "body",
2416
+ "fontSize": 18,
2417
+ "textCapacity": 12
2418
+ },
2419
+ {
2420
+ "kind": "shape",
2421
+ "x": 468,
2422
+ "y": 234.66666666666666,
2423
+ "width": 190.66666666666666,
2424
+ "height": 84,
2425
+ "shape": "rect",
2426
+ "fill": "3A5A36"
2427
+ },
2428
+ {
2429
+ "kind": "text",
2430
+ "x": 484,
2431
+ "y": 252,
2432
+ "width": 158.66666666666666,
2433
+ "height": 58.666666666666664,
2434
+ "textRole": "body",
2435
+ "fontSize": 18,
2436
+ "textCapacity": 12
2437
+ },
2438
+ {
2439
+ "kind": "shape",
2440
+ "x": 681.3333333333334,
2441
+ "y": 234.66666666666666,
2442
+ "width": 190.66666666666666,
2443
+ "height": 84,
2444
+ "shape": "rect",
2445
+ "fill": "3A5A36"
2446
+ },
2447
+ {
2448
+ "kind": "text",
2449
+ "x": 697.3333333333334,
2450
+ "y": 252,
2451
+ "width": 158.66666666666666,
2452
+ "height": 58.666666666666664,
2453
+ "textRole": "body",
2454
+ "fontSize": 18,
2455
+ "textCapacity": 12
2456
+ },
2457
+ {
2458
+ "kind": "text",
2459
+ "x": 64,
2460
+ "y": 392,
2461
+ "width": 168,
2462
+ "height": 33.333333333333336,
2463
+ "textRole": "body",
2464
+ "fontSize": 13,
2465
+ "textCapacity": 9
2466
+ },
2467
+ {
2468
+ "kind": "shape",
2469
+ "x": 254.66666666666666,
2470
+ "y": 365.3333333333333,
2471
+ "width": 190.66666666666666,
2472
+ "height": 84,
2473
+ "shape": "rect",
2474
+ "fill": "E89CB1"
2475
+ },
2476
+ {
2477
+ "kind": "text",
2478
+ "x": 270.6666666666667,
2479
+ "y": 382.6666666666667,
2480
+ "width": 158.66666666666666,
2481
+ "height": 58.666666666666664,
2482
+ "textRole": "body",
2483
+ "fontSize": 18,
2484
+ "textCapacity": 12
2485
+ },
2486
+ {
2487
+ "kind": "shape",
2488
+ "x": 468,
2489
+ "y": 365.3333333333333,
2490
+ "width": 190.66666666666666,
2491
+ "height": 84,
2492
+ "shape": "rect",
2493
+ "fill": "E89CB1"
2494
+ },
2495
+ {
2496
+ "kind": "text",
2497
+ "x": 484,
2498
+ "y": 382.6666666666667,
2499
+ "width": 158.66666666666666,
2500
+ "height": 58.666666666666664,
2501
+ "textRole": "body",
2502
+ "fontSize": 18,
2503
+ "textCapacity": 12
2504
+ },
2505
+ {
2506
+ "kind": "shape",
2507
+ "x": 681.3333333333334,
2508
+ "y": 365.3333333333333,
2509
+ "width": 190.66666666666666,
2510
+ "height": 84,
2511
+ "shape": "rect",
2512
+ "fill": "E89CB1"
2513
+ },
2514
+ {
2515
+ "kind": "text",
2516
+ "x": 697.3333333333334,
2517
+ "y": 382.6666666666667,
2518
+ "width": 158.66666666666666,
2519
+ "height": 58.666666666666664,
2520
+ "textRole": "body",
2521
+ "fontSize": 18,
2522
+ "textCapacity": 12
2523
+ },
2524
+ {
2525
+ "kind": "text",
2526
+ "x": 64,
2527
+ "y": 522.6666666666666,
2528
+ "width": 168,
2529
+ "height": 33.333333333333336,
2530
+ "textRole": "body",
2531
+ "fontSize": 13,
2532
+ "textCapacity": 9
2533
+ },
2534
+ {
2535
+ "kind": "shape",
2536
+ "x": 254.66666666666666,
2537
+ "y": 496,
2538
+ "width": 190.66666666666666,
2539
+ "height": 84,
2540
+ "shape": "rect",
2541
+ "fill": "3A5A36"
2542
+ },
2543
+ {
2544
+ "kind": "text",
2545
+ "x": 270.6666666666667,
2546
+ "y": 513.3333333333334,
2547
+ "width": 158.66666666666666,
2548
+ "height": 58.666666666666664,
2549
+ "textRole": "body",
2550
+ "fontSize": 18,
2551
+ "textCapacity": 12
2552
+ },
2553
+ {
2554
+ "kind": "shape",
2555
+ "x": 468,
2556
+ "y": 496,
2557
+ "width": 190.66666666666666,
2558
+ "height": 84,
2559
+ "shape": "rect",
2560
+ "fill": "3A5A36"
2561
+ },
2562
+ {
2563
+ "kind": "text",
2564
+ "x": 484,
2565
+ "y": 513.3333333333334,
2566
+ "width": 158.66666666666666,
2567
+ "height": 58.666666666666664,
2568
+ "textRole": "body",
2569
+ "fontSize": 18,
2570
+ "textCapacity": 12
2571
+ },
2572
+ {
2573
+ "kind": "shape",
2574
+ "x": 681.3333333333334,
2575
+ "y": 496,
2576
+ "width": 190.66666666666666,
2577
+ "height": 84,
2578
+ "shape": "rect",
2579
+ "fill": "3A5A36"
2580
+ },
2581
+ {
2582
+ "kind": "text",
2583
+ "x": 697.3333333333334,
2584
+ "y": 513.3333333333334,
2585
+ "width": 158.66666666666666,
2586
+ "height": 58.666666666666664,
2587
+ "textRole": "body",
2588
+ "fontSize": 18,
2589
+ "textCapacity": 12
2590
+ },
2591
+ {
2592
+ "kind": "text",
2593
+ "x": 982.6666666666666,
2594
+ "y": 245.33333333333334,
2595
+ "width": 229.33333333333334,
2596
+ "height": 148,
2597
+ "textRole": "body",
2598
+ "fontSize": 28,
2599
+ "textCapacity": 18
2600
+ },
2601
+ {
2602
+ "kind": "text",
2603
+ "x": 982.6666666666666,
2604
+ "y": 420,
2605
+ "width": 233.33333333333334,
2606
+ "height": 164,
2607
+ "textRole": "body",
2608
+ "fontSize": 20,
2609
+ "textCapacity": 40
2610
+ },
2611
+ {
2612
+ "kind": "text",
2613
+ "x": 64,
2614
+ "y": 633.3333333333334,
2615
+ "width": 1152,
2616
+ "height": 33.333333333333336,
2617
+ "textRole": "body",
2618
+ "fontSize": 13,
2619
+ "textCapacity": 66
2620
+ },
2621
+ {
2622
+ "kind": "text",
2623
+ "x": 64,
2624
+ "y": 676,
2625
+ "width": 1044,
2626
+ "height": 21.333333333333332,
2627
+ "textRole": "body",
2628
+ "fontSize": 9,
2629
+ "textCapacity": 87
2630
+ },
2631
+ {
2632
+ "kind": "text",
2633
+ "x": 1161.3333333333333,
2634
+ "y": 672,
2635
+ "width": 54.666666666666664,
2636
+ "height": 29.333333333333332,
2637
+ "textRole": "body",
2638
+ "fontSize": 11,
2639
+ "textCapacity": 3
2640
+ }
2641
+ ],
2642
+ "jsxReference": ""
2643
+ },
2644
+ {
2645
+ "slideNumber": 10,
2646
+ "sourceTitle": "Connect each measure to a response",
2647
+ "family": "table",
2648
+ "titlePosition": "left",
2649
+ "bodyColumns": 2,
2650
+ "density": "high",
2651
+ "features": [
2652
+ "scorecard"
2653
+ ],
2654
+ "recommendedRoles": [
2655
+ "table"
2656
+ ],
2657
+ "structureSummary": "Actual, target and response aligned across four measures",
2658
+ "zones": [
2659
+ {
2660
+ "kind": "text",
2661
+ "x": 64,
2662
+ "y": 36,
2663
+ "width": 886.6666666666666,
2664
+ "height": 26.666666666666668,
2665
+ "textRole": "body",
2666
+ "fontSize": 10,
2667
+ "textCapacity": 66
2668
+ },
2669
+ {
2670
+ "kind": "title",
2671
+ "x": 64,
2672
+ "y": 101.33333333333333,
2673
+ "width": 1152,
2674
+ "height": 85.33333333333333,
2675
+ "textRole": "title",
2676
+ "fontSize": 32,
2677
+ "textCapacity": 27
2678
+ },
2679
+ {
2680
+ "kind": "text",
2681
+ "x": 1005.3333333333334,
2682
+ "y": 61.333333333333336,
2683
+ "width": 210.66666666666666,
2684
+ "height": 17.333333333333332,
2685
+ "textRole": "body",
2686
+ "fontSize": 9,
2687
+ "textCapacity": 17
2688
+ },
2689
+ {
2690
+ "kind": "text",
2691
+ "x": 64,
2692
+ "y": 222.66666666666666,
2693
+ "width": 373.3333333333333,
2694
+ "height": 32,
2695
+ "textRole": "body",
2696
+ "fontSize": 11,
2697
+ "textCapacity": 25
2698
+ },
2699
+ {
2700
+ "kind": "text",
2701
+ "x": 497.3333333333333,
2702
+ "y": 222.66666666666666,
2703
+ "width": 226.66666666666666,
2704
+ "height": 32,
2705
+ "textRole": "body",
2706
+ "fontSize": 11,
2707
+ "textCapacity": 15
2708
+ },
2709
+ {
2710
+ "kind": "text",
2711
+ "x": 697.3333333333334,
2712
+ "y": 222.66666666666666,
2713
+ "width": 226.66666666666666,
2714
+ "height": 32,
2715
+ "textRole": "body",
2716
+ "fontSize": 11,
2717
+ "textCapacity": 15
2718
+ },
2719
+ {
2720
+ "kind": "text",
2721
+ "x": 922.6666666666666,
2722
+ "y": 222.66666666666666,
2723
+ "width": 226.66666666666666,
2724
+ "height": 32,
2725
+ "textRole": "body",
2726
+ "fontSize": 11,
2727
+ "textCapacity": 15
2728
+ },
2729
+ {
2730
+ "kind": "text",
2731
+ "x": 81.33333333333333,
2732
+ "y": 294.6666666666667,
2733
+ "width": 373.3333333333333,
2734
+ "height": 49.333333333333336,
2735
+ "textRole": "body",
2736
+ "fontSize": 18,
2737
+ "textCapacity": 15
2738
+ },
2739
+ {
2740
+ "kind": "text",
2741
+ "x": 497.3333333333333,
2742
+ "y": 285.3333333333333,
2743
+ "width": 172,
2744
+ "height": 60,
2745
+ "textRole": "body",
2746
+ "fontSize": 28,
2747
+ "textCapacity": 4
2748
+ },
2749
+ {
2750
+ "kind": "text",
2751
+ "x": 697.3333333333334,
2752
+ "y": 298.6666666666667,
2753
+ "width": 193.33333333333334,
2754
+ "height": 44,
2755
+ "textRole": "body",
2756
+ "fontSize": 17,
2757
+ "textCapacity": 8
2758
+ },
2759
+ {
2760
+ "kind": "text",
2761
+ "x": 922.6666666666666,
2762
+ "y": 297.3333333333333,
2763
+ "width": 36,
2764
+ "height": 40,
2765
+ "textRole": "body",
2766
+ "fontSize": 18,
2767
+ "textCapacity": 1
2768
+ },
2769
+ {
2770
+ "kind": "text",
2771
+ "x": 980,
2772
+ "y": 298.6666666666667,
2773
+ "width": 210.66666666666666,
2774
+ "height": 40,
2775
+ "textRole": "body",
2776
+ "fontSize": 16,
2777
+ "textCapacity": 9
2778
+ },
2779
+ {
2780
+ "kind": "text",
2781
+ "x": 81.33333333333333,
2782
+ "y": 376,
2783
+ "width": 373.3333333333333,
2784
+ "height": 49.333333333333336,
2785
+ "textRole": "body",
2786
+ "fontSize": 18,
2787
+ "textCapacity": 15
2788
+ },
2789
+ {
2790
+ "kind": "text",
2791
+ "x": 497.3333333333333,
2792
+ "y": 366.6666666666667,
2793
+ "width": 172,
2794
+ "height": 60,
2795
+ "textRole": "body",
2796
+ "fontSize": 28,
2797
+ "textCapacity": 4
2798
+ },
2799
+ {
2800
+ "kind": "text",
2801
+ "x": 697.3333333333334,
2802
+ "y": 380,
2803
+ "width": 193.33333333333334,
2804
+ "height": 44,
2805
+ "textRole": "body",
2806
+ "fontSize": 17,
2807
+ "textCapacity": 8
2808
+ },
2809
+ {
2810
+ "kind": "text",
2811
+ "x": 922.6666666666666,
2812
+ "y": 378.6666666666667,
2813
+ "width": 36,
2814
+ "height": 40,
2815
+ "textRole": "body",
2816
+ "fontSize": 18,
2817
+ "textCapacity": 1
2818
+ },
2819
+ {
2820
+ "kind": "text",
2821
+ "x": 980,
2822
+ "y": 380,
2823
+ "width": 210.66666666666666,
2824
+ "height": 40,
2825
+ "textRole": "body",
2826
+ "fontSize": 16,
2827
+ "textCapacity": 9
2828
+ },
2829
+ {
2830
+ "kind": "shape",
2831
+ "x": 64,
2832
+ "y": 434.6666666666667,
2833
+ "width": 1152,
2834
+ "height": 81.33333333333333,
2835
+ "shape": "rect",
2836
+ "fill": "425339"
2837
+ },
2838
+ {
2839
+ "kind": "shape",
2840
+ "x": 64,
2841
+ "y": 434.6666666666667,
2842
+ "width": 4,
2843
+ "height": 81.33333333333333,
2844
+ "shape": "rect",
2845
+ "fill": "EFE7D4"
2846
+ },
2847
+ {
2848
+ "kind": "text",
2849
+ "x": 81.33333333333333,
2850
+ "y": 457.3333333333333,
2851
+ "width": 373.3333333333333,
2852
+ "height": 49.333333333333336,
2853
+ "textRole": "body",
2854
+ "fontSize": 18,
2855
+ "textCapacity": 15
2856
+ },
2857
+ {
2858
+ "kind": "text",
2859
+ "x": 497.3333333333333,
2860
+ "y": 448,
2861
+ "width": 172,
2862
+ "height": 60,
2863
+ "textRole": "body",
2864
+ "fontSize": 28,
2865
+ "textCapacity": 4
2866
+ },
2867
+ {
2868
+ "kind": "text",
2869
+ "x": 697.3333333333334,
2870
+ "y": 461.3333333333333,
2871
+ "width": 193.33333333333334,
2872
+ "height": 44,
2873
+ "textRole": "body",
2874
+ "fontSize": 17,
2875
+ "textCapacity": 8
2876
+ },
2877
+ {
2878
+ "kind": "text",
2879
+ "x": 922.6666666666666,
2880
+ "y": 460,
2881
+ "width": 36,
2882
+ "height": 40,
2883
+ "textRole": "body",
2884
+ "fontSize": 18,
2885
+ "textCapacity": 1
2886
+ },
2887
+ {
2888
+ "kind": "text",
2889
+ "x": 980,
2890
+ "y": 461.3333333333333,
2891
+ "width": 210.66666666666666,
2892
+ "height": 40,
2893
+ "textRole": "body",
2894
+ "fontSize": 16,
2895
+ "textCapacity": 9
2896
+ },
2897
+ {
2898
+ "kind": "text",
2899
+ "x": 81.33333333333333,
2900
+ "y": 538.6666666666666,
2901
+ "width": 373.3333333333333,
2902
+ "height": 49.333333333333336,
2903
+ "textRole": "body",
2904
+ "fontSize": 18,
2905
+ "textCapacity": 15
2906
+ },
2907
+ {
2908
+ "kind": "text",
2909
+ "x": 497.3333333333333,
2910
+ "y": 529.3333333333334,
2911
+ "width": 172,
2912
+ "height": 60,
2913
+ "textRole": "body",
2914
+ "fontSize": 28,
2915
+ "textCapacity": 4
2916
+ },
2917
+ {
2918
+ "kind": "text",
2919
+ "x": 697.3333333333334,
2920
+ "y": 542.6666666666666,
2921
+ "width": 193.33333333333334,
2922
+ "height": 44,
2923
+ "textRole": "body",
2924
+ "fontSize": 17,
2925
+ "textCapacity": 8
2926
+ },
2927
+ {
2928
+ "kind": "text",
2929
+ "x": 922.6666666666666,
2930
+ "y": 541.3333333333334,
2931
+ "width": 36,
2932
+ "height": 40,
2933
+ "textRole": "body",
2934
+ "fontSize": 18,
2935
+ "textCapacity": 1
2936
+ },
2937
+ {
2938
+ "kind": "text",
2939
+ "x": 980,
2940
+ "y": 542.6666666666666,
2941
+ "width": 210.66666666666666,
2942
+ "height": 40,
2943
+ "textRole": "body",
2944
+ "fontSize": 16,
2945
+ "textCapacity": 9
2946
+ },
2947
+ {
2948
+ "kind": "text",
2949
+ "x": 64,
2950
+ "y": 633.3333333333334,
2951
+ "width": 1152,
2952
+ "height": 33.333333333333336,
2953
+ "textRole": "body",
2954
+ "fontSize": 13,
2955
+ "textCapacity": 66
2956
+ },
2957
+ {
2958
+ "kind": "text",
2959
+ "x": 64,
2960
+ "y": 676,
2961
+ "width": 1044,
2962
+ "height": 21.333333333333332,
2963
+ "textRole": "body",
2964
+ "fontSize": 9,
2965
+ "textCapacity": 87
2966
+ },
2967
+ {
2968
+ "kind": "text",
2969
+ "x": 1161.3333333333333,
2970
+ "y": 672,
2971
+ "width": 54.666666666666664,
2972
+ "height": 29.333333333333332,
2973
+ "textRole": "body",
2974
+ "fontSize": 11,
2975
+ "textCapacity": 3
2976
+ }
2977
+ ],
2978
+ "jsxReference": ""
2979
+ },
2980
+ {
2981
+ "slideNumber": 11,
2982
+ "sourceTitle": "Sequence the work around a decision gate",
2983
+ "family": "process",
2984
+ "titlePosition": "left",
2985
+ "bodyColumns": 2,
2986
+ "density": "high",
2987
+ "features": [
2988
+ "roadmap"
2989
+ ],
2990
+ "recommendedRoles": [
2991
+ "process"
2992
+ ],
2993
+ "structureSummary": "Four timed workstreams and a decision gate",
2994
+ "zones": [
2995
+ {
2996
+ "kind": "text",
2997
+ "x": 64,
2998
+ "y": 36,
2999
+ "width": 886.6666666666666,
3000
+ "height": 26.666666666666668,
3001
+ "textRole": "body",
3002
+ "fontSize": 10,
3003
+ "textCapacity": 66
3004
+ },
3005
+ {
3006
+ "kind": "title",
3007
+ "x": 64,
3008
+ "y": 101.33333333333333,
3009
+ "width": 1152,
3010
+ "height": 85.33333333333333,
3011
+ "textRole": "title",
3012
+ "fontSize": 32,
3013
+ "textCapacity": 27
3014
+ },
3015
+ {
3016
+ "kind": "text",
3017
+ "x": 1005.3333333333334,
3018
+ "y": 61.333333333333336,
3019
+ "width": 210.66666666666666,
3020
+ "height": 17.333333333333332,
3021
+ "textRole": "body",
3022
+ "fontSize": 9,
3023
+ "textCapacity": 17
3024
+ },
3025
+ {
3026
+ "kind": "text",
3027
+ "x": 64,
3028
+ "y": 222.66666666666666,
3029
+ "width": 324,
3030
+ "height": 30.666666666666668,
3031
+ "textRole": "body",
3032
+ "fontSize": 11,
3033
+ "textCapacity": 22
3034
+ },
3035
+ {
3036
+ "kind": "text",
3037
+ "x": 421.3333333333333,
3038
+ "y": 221.33333333333334,
3039
+ "width": 176,
3040
+ "height": 33.333333333333336,
3041
+ "textRole": "body",
3042
+ "fontSize": 12,
3043
+ "textCapacity": 11
3044
+ },
3045
+ {
3046
+ "kind": "text",
3047
+ "x": 617.3333333333334,
3048
+ "y": 221.33333333333334,
3049
+ "width": 176,
3050
+ "height": 33.333333333333336,
3051
+ "textRole": "body",
3052
+ "fontSize": 12,
3053
+ "textCapacity": 11
3054
+ },
3055
+ {
3056
+ "kind": "text",
3057
+ "x": 813.3333333333334,
3058
+ "y": 221.33333333333334,
3059
+ "width": 176,
3060
+ "height": 33.333333333333336,
3061
+ "textRole": "body",
3062
+ "fontSize": 12,
3063
+ "textCapacity": 11
3064
+ },
3065
+ {
3066
+ "kind": "text",
3067
+ "x": 1009.3333333333334,
3068
+ "y": 221.33333333333334,
3069
+ "width": 176,
3070
+ "height": 33.333333333333336,
3071
+ "textRole": "body",
3072
+ "fontSize": 12,
3073
+ "textCapacity": 11
3074
+ },
3075
+ {
3076
+ "kind": "text",
3077
+ "x": 64,
3078
+ "y": 273.3333333333333,
3079
+ "width": 318.6666666666667,
3080
+ "height": 40,
3081
+ "textRole": "body",
3082
+ "fontSize": 18,
3083
+ "textCapacity": 13
3084
+ },
3085
+ {
3086
+ "kind": "text",
3087
+ "x": 64,
3088
+ "y": 313.3333333333333,
3089
+ "width": 318.6666666666667,
3090
+ "height": 32,
3091
+ "textRole": "body",
3092
+ "fontSize": 11,
3093
+ "textCapacity": 21
3094
+ },
3095
+ {
3096
+ "kind": "shape",
3097
+ "x": 406.6666666666667,
3098
+ "y": 289.3333333333333,
3099
+ "width": 176.4,
3100
+ "height": 29.333333333333332,
3101
+ "shape": "rect",
3102
+ "fill": "627458"
3103
+ },
3104
+ {
3105
+ "kind": "shape",
3106
+ "x": 579.0666666666667,
3107
+ "y": 300,
3108
+ "width": 8,
3109
+ "height": 8,
3110
+ "shape": "ellipse",
3111
+ "fill": "98a088"
3112
+ },
3113
+ {
3114
+ "kind": "text",
3115
+ "x": 64,
3116
+ "y": 354.6666666666667,
3117
+ "width": 318.6666666666667,
3118
+ "height": 40,
3119
+ "textRole": "body",
3120
+ "fontSize": 18,
3121
+ "textCapacity": 13
3122
+ },
3123
+ {
3124
+ "kind": "text",
3125
+ "x": 64,
3126
+ "y": 394.6666666666667,
3127
+ "width": 318.6666666666667,
3128
+ "height": 32,
3129
+ "textRole": "body",
3130
+ "fontSize": 11,
3131
+ "textCapacity": 21
3132
+ },
3133
+ {
3134
+ "kind": "shape",
3135
+ "x": 543.8666666666667,
3136
+ "y": 370.6666666666667,
3137
+ "width": 254.79999999999998,
3138
+ "height": 29.333333333333332,
3139
+ "shape": "rect",
3140
+ "fill": "627458"
3141
+ },
3142
+ {
3143
+ "kind": "shape",
3144
+ "x": 794.6666666666666,
3145
+ "y": 381.3333333333333,
3146
+ "width": 8,
3147
+ "height": 8,
3148
+ "shape": "ellipse",
3149
+ "fill": "98a088"
3150
+ },
3151
+ {
3152
+ "kind": "text",
3153
+ "x": 64,
3154
+ "y": 436,
3155
+ "width": 318.6666666666667,
3156
+ "height": 40,
3157
+ "textRole": "body",
3158
+ "fontSize": 18,
3159
+ "textCapacity": 13
3160
+ },
3161
+ {
3162
+ "kind": "text",
3163
+ "x": 64,
3164
+ "y": 476,
3165
+ "width": 318.6666666666667,
3166
+ "height": 32,
3167
+ "textRole": "body",
3168
+ "fontSize": 11,
3169
+ "textCapacity": 21
3170
+ },
3171
+ {
3172
+ "kind": "shape",
3173
+ "x": 759.4666666666667,
3174
+ "y": 452,
3175
+ "width": 215.60000000000002,
3176
+ "height": 29.333333333333332,
3177
+ "shape": "rect",
3178
+ "fill": "EFE7D4"
3179
+ },
3180
+ {
3181
+ "kind": "shape",
3182
+ "x": 971.0666666666667,
3183
+ "y": 462.6666666666667,
3184
+ "width": 8,
3185
+ "height": 8,
3186
+ "shape": "ellipse",
3187
+ "fill": "EFE7D4"
3188
+ },
3189
+ {
3190
+ "kind": "text",
3191
+ "x": 64,
3192
+ "y": 517.3333333333334,
3193
+ "width": 318.6666666666667,
3194
+ "height": 40,
3195
+ "textRole": "body",
3196
+ "fontSize": 18,
3197
+ "textCapacity": 13
3198
+ },
3199
+ {
3200
+ "kind": "text",
3201
+ "x": 64,
3202
+ "y": 557.3333333333334,
3203
+ "width": 318.6666666666667,
3204
+ "height": 32,
3205
+ "textRole": "body",
3206
+ "fontSize": 11,
3207
+ "textCapacity": 21
3208
+ },
3209
+ {
3210
+ "kind": "shape",
3211
+ "x": 955.4666666666666,
3212
+ "y": 533.3333333333334,
3213
+ "width": 235.20000000000002,
3214
+ "height": 29.333333333333332,
3215
+ "shape": "rect",
3216
+ "fill": "627458"
3217
+ },
3218
+ {
3219
+ "kind": "shape",
3220
+ "x": 1186.6666666666665,
3221
+ "y": 544,
3222
+ "width": 8,
3223
+ "height": 8,
3224
+ "shape": "ellipse",
3225
+ "fill": "98a088"
3226
+ },
3227
+ {
3228
+ "kind": "shape",
3229
+ "x": 949.3333333333334,
3230
+ "y": 592,
3231
+ "width": 10.666666666666666,
3232
+ "height": 10.666666666666666,
3233
+ "shape": "ellipse",
3234
+ "fill": "E89CB1"
3235
+ },
3236
+ {
3237
+ "kind": "text",
3238
+ "x": 64,
3239
+ "y": 633.3333333333334,
3240
+ "width": 1152,
3241
+ "height": 33.333333333333336,
3242
+ "textRole": "body",
3243
+ "fontSize": 13,
3244
+ "textCapacity": 66
3245
+ },
3246
+ {
3247
+ "kind": "text",
3248
+ "x": 64,
3249
+ "y": 676,
3250
+ "width": 1044,
3251
+ "height": 21.333333333333332,
3252
+ "textRole": "body",
3253
+ "fontSize": 9,
3254
+ "textCapacity": 87
3255
+ },
3256
+ {
3257
+ "kind": "text",
3258
+ "x": 1161.3333333333333,
3259
+ "y": 672,
3260
+ "width": 54.666666666666664,
3261
+ "height": 29.333333333333332,
3262
+ "textRole": "body",
3263
+ "fontSize": 11,
3264
+ "textCapacity": 3
3265
+ }
3266
+ ],
3267
+ "jsxReference": ""
3268
+ },
3269
+ {
3270
+ "slideNumber": 12,
3271
+ "sourceTitle": "Closing",
3272
+ "family": "closing",
3273
+ "titlePosition": "left",
3274
+ "bodyColumns": 1,
3275
+ "density": "medium",
3276
+ "features": [
3277
+ "closing"
3278
+ ],
3279
+ "recommendedRoles": [
3280
+ "closing"
3281
+ ],
3282
+ "structureSummary": "Closing",
3283
+ "zones": [
3284
+ {
3285
+ "kind": "text",
3286
+ "x": 64,
3287
+ "y": 105.33333333333333,
3288
+ "width": 1133.3333333333333,
3289
+ "height": 34.666666666666664,
3290
+ "textRole": "body",
3291
+ "fontSize": 13,
3292
+ "textCapacity": 65
3293
+ },
3294
+ {
3295
+ "kind": "title",
3296
+ "x": 64,
3297
+ "y": 245.33333333333334,
3298
+ "width": 1146.6666666666667,
3299
+ "height": 262.6666666666667,
3300
+ "textRole": "title",
3301
+ "fontSize": 55,
3302
+ "textCapacity": 45
3303
+ },
3304
+ {
3305
+ "kind": "text",
3306
+ "x": 64,
3307
+ "y": 674.6666666666666,
3308
+ "width": 1013.3333333333334,
3309
+ "height": 21.333333333333332,
3310
+ "textRole": "body",
3311
+ "fontSize": 9,
3312
+ "textCapacity": 84
3313
+ },
3314
+ {
3315
+ "kind": "text",
3316
+ "x": 1160,
3317
+ "y": 670.6666666666666,
3318
+ "width": 53.333333333333336,
3319
+ "height": 26.666666666666668,
3320
+ "textRole": "body",
3321
+ "fontSize": 11,
3322
+ "textCapacity": 3
3323
+ }
3324
+ ],
3325
+ "jsxReference": ""
3326
+ }
3327
+ ]
3328
+ }
3329
+ },
3330
+ "provenance": {
3331
+ "kind": "mit-adaptation",
3332
+ "license": "MIT",
3333
+ "upstream": "https://github.com/zarazhangrui/beautiful-html-templates/tree/e5e204fb1f3b06290846e7dcd7aceddabeceec8c/templates/editorial-forest",
3334
+ "author": "Zara Zhang",
3335
+ "adaptedBy": "DSH Desktop contributors",
3336
+ "modified": "2026-09-06"
3337
+ }
3338
+ }