@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,2329 @@
1
+ {
2
+ "definition": {
3
+ "id": "dsh-broadside",
4
+ "category": "promotion",
5
+ "sourceCollection": "curated",
6
+ "slug": "dsh-broadside",
7
+ "name": "Broadside",
8
+ "localizedNames": {
9
+ "en": "Broadside",
10
+ "zh": "橙黑宣言"
11
+ },
12
+ "variantLabel": "DSH",
13
+ "description": "橙黑宣言 · Broadside",
14
+ "previewTitle": "Broadside",
15
+ "previewSubtitle": "12 editable layouts",
16
+ "titleFontFace": "Arial Black",
17
+ "bodyFontFace": "Arial",
18
+ "fonts": {
19
+ "en": {
20
+ "title": "Arial Black",
21
+ "body": "Arial"
22
+ },
23
+ "zh": {
24
+ "title": "PingFang SC",
25
+ "body": "PingFang SC"
26
+ },
27
+ "fallbacks": {
28
+ "en": {
29
+ "title": "Arial",
30
+ "body": "Arial"
31
+ },
32
+ "zh": {
33
+ "macOS": {
34
+ "serif": "Songti SC",
35
+ "sans": "PingFang SC"
36
+ },
37
+ "Windows": {
38
+ "serif": "SimSun",
39
+ "sans": "Microsoft YaHei"
40
+ },
41
+ "Linux": {
42
+ "serif": "Noto Serif CJK SC",
43
+ "sans": "Noto Sans CJK SC"
44
+ }
45
+ }
46
+ },
47
+ "upstreamTitle": "Barlow"
48
+ },
49
+ "previewLanguage": "en",
50
+ "palette": {
51
+ "background": "111111",
52
+ "text": "F0ECE5",
53
+ "accent": "E85D26",
54
+ "surface": "282826",
55
+ "secondary": "888880",
56
+ "muted": "888880"
57
+ },
58
+ "referenceDirectory": "promotion/dsh-broadside",
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
+ 5,
78
+ 1,
79
+ 2,
80
+ 3,
81
+ 4,
82
+ 6,
83
+ 7,
84
+ 8,
85
+ 9,
86
+ 10,
87
+ 11,
88
+ 12
89
+ ],
90
+ "designSha256": "0a8317e155cbe61f7ecf74106e9f813fc1d364e83f2124b91190ba466476f4e1"
91
+ },
92
+ "semantics": {
93
+ "palette": {
94
+ "background": "111111",
95
+ "text": "F0ECE5",
96
+ "accent": "E85D26",
97
+ "surface": "282826",
98
+ "secondary": "888880",
99
+ "muted": "888880"
100
+ },
101
+ "source": {
102
+ "fileName": "broadside-reference.jpg",
103
+ "sha256": "0a8317e155cbe61f7ecf74106e9f813fc1d364e83f2124b91190ba466476f4e1",
104
+ "slideCount": 12,
105
+ "averageTextBlocks": 14,
106
+ "averageCharacters": 204,
107
+ "visualGrammar": "broadside",
108
+ "recommendedDensity": "medium",
109
+ "designSummary": "# Broadside / 橙黑宣言\n\nAdapted from Zara Zhang's Broadside, commit e5e204fb1f3b06290846e7dcd7aceddabeceec8c. MIT. This native edition rebuilds 12 editable layouts; it is not an HTML import or an exact copy of every upstream slide.\n\n## Typography\n\nEnglish display: Arial Black; English body: Arial. These portable Office substitutions replace the upstream display face Barlow. Chinese display: PingFang SC; body: PingFang SC. On Windows use Microsoft YaHei / Microsoft YaHei; on Linux use Noto Sans CJK SC / Noto Sans CJK SC. No font binary is distributed. Keep the serif/sans distinction.\n\nEnglish previews use source/. Chinese examples use source-zh/. Preview language does not select the language of the user's output. Choose the matching fonts for the actual content; reflow longer translations instead of shrinking titles.\n\n## Layout grammar\n\n A protest-poster editorial system built on massive Barlow type and a single fire-orange environment color. The aesthetic is \"ink on fire\" — dark slides for documentation, orange slides for declaration. Display type is enormous (13vw, roughly 187px at 1440 width) in weight 900 lowercase, treating words as graphic elements rather than reading copy. The cultural reference is broadside printing, SPACE10 reports, and Wim Crouwel grids reinterpreted with one loud color and zero decoration.\n\n1. Cover (cover)\n2. Editorial thesis (insights)\n3. Evidence spread (data)\n4. Operating model contrast (comparison)\n5. Learning feedback loop (process)\n6. Conversion staircase (data)\n7. Effort and impact map (comparison)\n8. Campaign storyboard (agenda)\n9. Case results poster (comparison)\n10. Launch schedule (process)\n11. Performance scorecard (data)\n12. Closing (closing)\n\n## Expanded composition rules\n\nThis pack has twelve layouts. Start with the information relationship, then choose a reference page. Do not default to three equal cards or one chart per slide.\n\nUse editorial rhythm: alternate a quiet cream evidence page, a black analytical page and an orange statement page. Combine oversized type with smaller supporting evidence; use a conversion staircase, causal feedback loop, effort/impact map, annotated case results, campaign storyboard, launch schedule and scorecard. Do not apply one recolored grid to every page.\n\nFor a deck of six or more content pages, use at least four distinct structural families when the material supports them. Avoid repeating the same family on adjacent slides. A detailed page should have one dominant argument, a supporting chart/diagram/table, and one concise interpretation. Alternate detailed evidence pages with simpler synthesis pages.\n\nAdapt the reference geometry to the real content. Add annotations, units, direct labels, baselines, owners and dependencies where they carry meaning. These examples use invented, explicitly marked sample data: replace every value and conclusion with user evidence; never fabricate data to make a page look fuller. Preserve native editable text and geometry. Do not turn all content into images. Keep body text around 18–22 pt and chart labels around 13–16 pt; reflow or split before shrinking.\n\nReference families: 2 editorial thesis; 3 evidence spread; 4 operating model comparison; 5 feedback loop; 6 conversion staircase; 7 priority map; 8 campaign storyboard; 9 case study; 10 launch schedule; 11 performance scorecard.\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.\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",
110
+ "layoutPatterns": [
111
+ {
112
+ "family": "cover",
113
+ "slideCount": 1,
114
+ "sampleSlideNumbers": [
115
+ 1
116
+ ],
117
+ "titlePosition": "left",
118
+ "bodyColumns": 2,
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": "high",
132
+ "averageTextFrames": 8,
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": 17,
145
+ "averageMediaFrames": 0
146
+ },
147
+ {
148
+ "family": "comparison",
149
+ "slideCount": 1,
150
+ "sampleSlideNumbers": [
151
+ 4
152
+ ],
153
+ "titlePosition": "left",
154
+ "bodyColumns": 2,
155
+ "density": "high",
156
+ "averageTextFrames": 12,
157
+ "averageMediaFrames": 0
158
+ },
159
+ {
160
+ "family": "process",
161
+ "slideCount": 1,
162
+ "sampleSlideNumbers": [
163
+ 5
164
+ ],
165
+ "titlePosition": "left",
166
+ "bodyColumns": 2,
167
+ "density": "high",
168
+ "averageTextFrames": 12,
169
+ "averageMediaFrames": 0
170
+ },
171
+ {
172
+ "family": "data",
173
+ "slideCount": 1,
174
+ "sampleSlideNumbers": [
175
+ 6
176
+ ],
177
+ "titlePosition": "left",
178
+ "bodyColumns": 2,
179
+ "density": "high",
180
+ "averageTextFrames": 21,
181
+ "averageMediaFrames": 0
182
+ },
183
+ {
184
+ "family": "comparison",
185
+ "slideCount": 1,
186
+ "sampleSlideNumbers": [
187
+ 7
188
+ ],
189
+ "titlePosition": "left",
190
+ "bodyColumns": 2,
191
+ "density": "high",
192
+ "averageTextFrames": 20,
193
+ "averageMediaFrames": 0
194
+ },
195
+ {
196
+ "family": "agenda",
197
+ "slideCount": 1,
198
+ "sampleSlideNumbers": [
199
+ 8
200
+ ],
201
+ "titlePosition": "left",
202
+ "bodyColumns": 3,
203
+ "density": "high",
204
+ "averageTextFrames": 16,
205
+ "averageMediaFrames": 0
206
+ },
207
+ {
208
+ "family": "comparison",
209
+ "slideCount": 1,
210
+ "sampleSlideNumbers": [
211
+ 9
212
+ ],
213
+ "titlePosition": "left",
214
+ "bodyColumns": 3,
215
+ "density": "high",
216
+ "averageTextFrames": 12,
217
+ "averageMediaFrames": 0
218
+ },
219
+ {
220
+ "family": "process",
221
+ "slideCount": 1,
222
+ "sampleSlideNumbers": [
223
+ 10
224
+ ],
225
+ "titlePosition": "left",
226
+ "bodyColumns": 4,
227
+ "density": "high",
228
+ "averageTextFrames": 16,
229
+ "averageMediaFrames": 0
230
+ },
231
+ {
232
+ "family": "data",
233
+ "slideCount": 1,
234
+ "sampleSlideNumbers": [
235
+ 11
236
+ ],
237
+ "titlePosition": "left",
238
+ "bodyColumns": 4,
239
+ "density": "high",
240
+ "averageTextFrames": 21,
241
+ "averageMediaFrames": 0
242
+ },
243
+ {
244
+ "family": "closing",
245
+ "slideCount": 1,
246
+ "sampleSlideNumbers": [
247
+ 12
248
+ ],
249
+ "titlePosition": "left",
250
+ "bodyColumns": 2,
251
+ "density": "medium",
252
+ "averageTextFrames": 3,
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": 278.6666666666667,
286
+ "width": 1152,
287
+ "height": 298.6666666666667,
288
+ "textRole": "title",
289
+ "fontSize": 78,
290
+ "textCapacity": 22
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": "Editorial thesis",
318
+ "family": "insights",
319
+ "titlePosition": "left",
320
+ "bodyColumns": 2,
321
+ "density": "high",
322
+ "features": [
323
+ "insights"
324
+ ],
325
+ "recommendedRoles": [
326
+ "insights"
327
+ ],
328
+ "structureSummary": "Oversized chapter numeral against a compact operating thesis",
329
+ "zones": [
330
+ {
331
+ "kind": "text",
332
+ "x": 64,
333
+ "y": 34.666666666666664,
334
+ "width": 1093.3333333333333,
335
+ "height": 26.666666666666668,
336
+ "textRole": "body",
337
+ "fontSize": 11,
338
+ "textCapacity": 74
339
+ },
340
+ {
341
+ "kind": "title",
342
+ "x": 64,
343
+ "y": 104,
344
+ "width": 1152,
345
+ "height": 90.66666666666667,
346
+ "textRole": "title",
347
+ "fontSize": 37,
348
+ "textCapacity": 23
349
+ },
350
+ {
351
+ "kind": "title",
352
+ "x": 64,
353
+ "y": 206.66666666666666,
354
+ "width": 400,
355
+ "height": 236,
356
+ "textRole": "title",
357
+ "fontSize": 142,
358
+ "textCapacity": 2
359
+ },
360
+ {
361
+ "kind": "title",
362
+ "x": 522.6666666666666,
363
+ "y": 238.66666666666666,
364
+ "width": 693.3333333333334,
365
+ "height": 150.66666666666666,
366
+ "textRole": "title",
367
+ "fontSize": 39,
368
+ "textCapacity": 26
369
+ },
370
+ {
371
+ "kind": "text",
372
+ "x": 522.6666666666666,
373
+ "y": 468,
374
+ "width": 666.6666666666666,
375
+ "height": 149.33333333333334,
376
+ "textRole": "body",
377
+ "fontSize": 25,
378
+ "textCapacity": 60
379
+ },
380
+ {
381
+ "kind": "text",
382
+ "x": 64,
383
+ "y": 509.3333333333333,
384
+ "width": 384,
385
+ "height": 70.66666666666667,
386
+ "textRole": "body",
387
+ "fontSize": 16,
388
+ "textCapacity": 36
389
+ },
390
+ {
391
+ "kind": "text",
392
+ "x": 64,
393
+ "y": 676,
394
+ "width": 1013.3333333333334,
395
+ "height": 21.333333333333332,
396
+ "textRole": "body",
397
+ "fontSize": 9,
398
+ "textCapacity": 84
399
+ },
400
+ {
401
+ "kind": "text",
402
+ "x": 1160,
403
+ "y": 672,
404
+ "width": 56,
405
+ "height": 29.333333333333332,
406
+ "textRole": "body",
407
+ "fontSize": 11,
408
+ "textCapacity": 3
409
+ }
410
+ ],
411
+ "jsxReference": ""
412
+ },
413
+ {
414
+ "slideNumber": 3,
415
+ "sourceTitle": "Evidence spread",
416
+ "family": "data",
417
+ "titlePosition": "left",
418
+ "bodyColumns": 2,
419
+ "density": "high",
420
+ "features": [
421
+ "data"
422
+ ],
423
+ "recommendedRoles": [
424
+ "data"
425
+ ],
426
+ "structureSummary": "One editorial statistic and a ranked breakdown on a cream field",
427
+ "zones": [
428
+ {
429
+ "kind": "text",
430
+ "x": 64,
431
+ "y": 34.666666666666664,
432
+ "width": 1093.3333333333333,
433
+ "height": 26.666666666666668,
434
+ "textRole": "body",
435
+ "fontSize": 11,
436
+ "textCapacity": 74
437
+ },
438
+ {
439
+ "kind": "title",
440
+ "x": 64,
441
+ "y": 104,
442
+ "width": 1152,
443
+ "height": 90.66666666666667,
444
+ "textRole": "title",
445
+ "fontSize": 37,
446
+ "textCapacity": 23
447
+ },
448
+ {
449
+ "kind": "title",
450
+ "x": 64,
451
+ "y": 220,
452
+ "width": 596,
453
+ "height": 218.66666666666666,
454
+ "textRole": "title",
455
+ "fontSize": 125,
456
+ "textCapacity": 3
457
+ },
458
+ {
459
+ "kind": "text",
460
+ "x": 72,
461
+ "y": 446.6666666666667,
462
+ "width": 568,
463
+ "height": 62.666666666666664,
464
+ "textRole": "body",
465
+ "fontSize": 25,
466
+ "textCapacity": 17
467
+ },
468
+ {
469
+ "kind": "text",
470
+ "x": 72,
471
+ "y": 546.6666666666666,
472
+ "width": 569.3333333333334,
473
+ "height": 42.666666666666664,
474
+ "textRole": "body",
475
+ "fontSize": 10,
476
+ "textCapacity": 84
477
+ },
478
+ {
479
+ "kind": "text",
480
+ "x": 740,
481
+ "y": 204,
482
+ "width": 476,
483
+ "height": 34.666666666666664,
484
+ "textRole": "body",
485
+ "fontSize": 10,
486
+ "textCapacity": 70
487
+ },
488
+ {
489
+ "kind": "text",
490
+ "x": 740,
491
+ "y": 257.3333333333333,
492
+ "width": 380,
493
+ "height": 36,
494
+ "textRole": "body",
495
+ "fontSize": 17,
496
+ "textCapacity": 16
497
+ },
498
+ {
499
+ "kind": "shape",
500
+ "x": 740,
501
+ "y": 300,
502
+ "width": 365.3333333333333,
503
+ "height": 17.333333333333332,
504
+ "shape": "rect",
505
+ "fill": "E85D26"
506
+ },
507
+ {
508
+ "kind": "text",
509
+ "x": 1133.3333333333333,
510
+ "y": 281.3333333333333,
511
+ "width": 82.66666666666667,
512
+ "height": 41.333333333333336,
513
+ "textRole": "body",
514
+ "fontSize": 20,
515
+ "textCapacity": 3
516
+ },
517
+ {
518
+ "kind": "text",
519
+ "x": 740,
520
+ "y": 346.6666666666667,
521
+ "width": 380,
522
+ "height": 36,
523
+ "textRole": "body",
524
+ "fontSize": 17,
525
+ "textCapacity": 16
526
+ },
527
+ {
528
+ "kind": "shape",
529
+ "x": 740,
530
+ "y": 389.3333333333333,
531
+ "width": 287.04761904761904,
532
+ "height": 17.333333333333332,
533
+ "shape": "rect",
534
+ "fill": "ABADA3"
535
+ },
536
+ {
537
+ "kind": "text",
538
+ "x": 1133.3333333333333,
539
+ "y": 370.6666666666667,
540
+ "width": 82.66666666666667,
541
+ "height": 41.333333333333336,
542
+ "textRole": "body",
543
+ "fontSize": 20,
544
+ "textCapacity": 3
545
+ },
546
+ {
547
+ "kind": "text",
548
+ "x": 740,
549
+ "y": 436,
550
+ "width": 380,
551
+ "height": 36,
552
+ "textRole": "body",
553
+ "fontSize": 17,
554
+ "textCapacity": 16
555
+ },
556
+ {
557
+ "kind": "shape",
558
+ "x": 740,
559
+ "y": 478.6666666666667,
560
+ "width": 217.46031746031747,
561
+ "height": 17.333333333333332,
562
+ "shape": "rect",
563
+ "fill": "ABADA3"
564
+ },
565
+ {
566
+ "kind": "text",
567
+ "x": 1133.3333333333333,
568
+ "y": 460,
569
+ "width": 82.66666666666667,
570
+ "height": 41.333333333333336,
571
+ "textRole": "body",
572
+ "fontSize": 20,
573
+ "textCapacity": 3
574
+ },
575
+ {
576
+ "kind": "text",
577
+ "x": 740,
578
+ "y": 554.6666666666666,
579
+ "width": 130.66666666666666,
580
+ "height": 33.333333333333336,
581
+ "textRole": "body",
582
+ "fontSize": 10,
583
+ "textCapacity": 18
584
+ },
585
+ {
586
+ "kind": "text",
587
+ "x": 885.3333333333334,
588
+ "y": 548,
589
+ "width": 330.6666666666667,
590
+ "height": 64,
591
+ "textRole": "body",
592
+ "fontSize": 18,
593
+ "textCapacity": 26
594
+ },
595
+ {
596
+ "kind": "text",
597
+ "x": 64,
598
+ "y": 633.3333333333334,
599
+ "width": 1152,
600
+ "height": 33.333333333333336,
601
+ "textRole": "body",
602
+ "fontSize": 13,
603
+ "textCapacity": 66
604
+ },
605
+ {
606
+ "kind": "text",
607
+ "x": 64,
608
+ "y": 676,
609
+ "width": 1013.3333333333334,
610
+ "height": 21.333333333333332,
611
+ "textRole": "body",
612
+ "fontSize": 9,
613
+ "textCapacity": 84
614
+ },
615
+ {
616
+ "kind": "text",
617
+ "x": 1160,
618
+ "y": 672,
619
+ "width": 56,
620
+ "height": 29.333333333333332,
621
+ "textRole": "body",
622
+ "fontSize": 11,
623
+ "textCapacity": 3
624
+ }
625
+ ],
626
+ "jsxReference": ""
627
+ },
628
+ {
629
+ "slideNumber": 4,
630
+ "sourceTitle": "Operating model contrast",
631
+ "family": "comparison",
632
+ "titlePosition": "left",
633
+ "bodyColumns": 2,
634
+ "density": "high",
635
+ "features": [
636
+ "comparison"
637
+ ],
638
+ "recommendedRoles": [
639
+ "comparison"
640
+ ],
641
+ "structureSummary": "Big numerical contrast with aligned ownership and workflow differences",
642
+ "zones": [
643
+ {
644
+ "kind": "text",
645
+ "x": 64,
646
+ "y": 34.666666666666664,
647
+ "width": 1093.3333333333333,
648
+ "height": 26.666666666666668,
649
+ "textRole": "body",
650
+ "fontSize": 11,
651
+ "textCapacity": 74
652
+ },
653
+ {
654
+ "kind": "title",
655
+ "x": 64,
656
+ "y": 104,
657
+ "width": 1152,
658
+ "height": 90.66666666666667,
659
+ "textRole": "title",
660
+ "fontSize": 37,
661
+ "textCapacity": 23
662
+ },
663
+ {
664
+ "kind": "text",
665
+ "x": 64,
666
+ "y": 230.66666666666666,
667
+ "width": 520,
668
+ "height": 42.666666666666664,
669
+ "textRole": "body",
670
+ "fontSize": 15,
671
+ "textCapacity": 26
672
+ },
673
+ {
674
+ "kind": "text",
675
+ "x": 693.3333333333334,
676
+ "y": 230.66666666666666,
677
+ "width": 520,
678
+ "height": 42.666666666666664,
679
+ "textRole": "body",
680
+ "fontSize": 15,
681
+ "textCapacity": 26
682
+ },
683
+ {
684
+ "kind": "title",
685
+ "x": 64,
686
+ "y": 286.6666666666667,
687
+ "width": 493.3333333333333,
688
+ "height": 162.66666666666666,
689
+ "textRole": "title",
690
+ "fontSize": 93,
691
+ "textCapacity": 3
692
+ },
693
+ {
694
+ "kind": "title",
695
+ "x": 693.3333333333334,
696
+ "y": 286.6666666666667,
697
+ "width": 493.3333333333333,
698
+ "height": 162.66666666666666,
699
+ "textRole": "title",
700
+ "fontSize": 93,
701
+ "textCapacity": 3
702
+ },
703
+ {
704
+ "kind": "text",
705
+ "x": 64,
706
+ "y": 473.3333333333333,
707
+ "width": 520,
708
+ "height": 62.666666666666664,
709
+ "textRole": "body",
710
+ "fontSize": 25,
711
+ "textCapacity": 15
712
+ },
713
+ {
714
+ "kind": "text",
715
+ "x": 693.3333333333334,
716
+ "y": 473.3333333333333,
717
+ "width": 520,
718
+ "height": 62.666666666666664,
719
+ "textRole": "body",
720
+ "fontSize": 25,
721
+ "textCapacity": 15
722
+ },
723
+ {
724
+ "kind": "text",
725
+ "x": 64,
726
+ "y": 561.3333333333334,
727
+ "width": 520,
728
+ "height": 53.333333333333336,
729
+ "textRole": "body",
730
+ "fontSize": 18,
731
+ "textCapacity": 21
732
+ },
733
+ {
734
+ "kind": "text",
735
+ "x": 693.3333333333334,
736
+ "y": 561.3333333333334,
737
+ "width": 520,
738
+ "height": 53.333333333333336,
739
+ "textRole": "body",
740
+ "fontSize": 18,
741
+ "textCapacity": 21
742
+ },
743
+ {
744
+ "kind": "text",
745
+ "x": 64,
746
+ "y": 676,
747
+ "width": 1013.3333333333334,
748
+ "height": 21.333333333333332,
749
+ "textRole": "body",
750
+ "fontSize": 9,
751
+ "textCapacity": 84
752
+ },
753
+ {
754
+ "kind": "text",
755
+ "x": 1160,
756
+ "y": 672,
757
+ "width": 56,
758
+ "height": 29.333333333333332,
759
+ "textRole": "body",
760
+ "fontSize": 11,
761
+ "textCapacity": 3
762
+ }
763
+ ],
764
+ "jsxReference": ""
765
+ },
766
+ {
767
+ "slideNumber": 5,
768
+ "sourceTitle": "Learning feedback loop",
769
+ "family": "process",
770
+ "titlePosition": "left",
771
+ "bodyColumns": 2,
772
+ "density": "high",
773
+ "features": [
774
+ "process"
775
+ ],
776
+ "recommendedRoles": [
777
+ "process"
778
+ ],
779
+ "structureSummary": "Four-step closed loop with cycle time and an ownership annotation",
780
+ "zones": [
781
+ {
782
+ "kind": "text",
783
+ "x": 64,
784
+ "y": 34.666666666666664,
785
+ "width": 1093.3333333333333,
786
+ "height": 26.666666666666668,
787
+ "textRole": "body",
788
+ "fontSize": 11,
789
+ "textCapacity": 74
790
+ },
791
+ {
792
+ "kind": "title",
793
+ "x": 64,
794
+ "y": 104,
795
+ "width": 1152,
796
+ "height": 90.66666666666667,
797
+ "textRole": "title",
798
+ "fontSize": 37,
799
+ "textCapacity": 23
800
+ },
801
+ {
802
+ "kind": "text",
803
+ "x": 92,
804
+ "y": 265.3333333333333,
805
+ "width": 246.66666666666666,
806
+ "height": 60,
807
+ "textRole": "body",
808
+ "fontSize": 24,
809
+ "textCapacity": 7
810
+ },
811
+ {
812
+ "kind": "text",
813
+ "x": 477.3333333333333,
814
+ "y": 265.3333333333333,
815
+ "width": 246.66666666666666,
816
+ "height": 60,
817
+ "textRole": "body",
818
+ "fontSize": 24,
819
+ "textCapacity": 7
820
+ },
821
+ {
822
+ "kind": "text",
823
+ "x": 477.3333333333333,
824
+ "y": 520,
825
+ "width": 246.66666666666666,
826
+ "height": 60,
827
+ "textRole": "body",
828
+ "fontSize": 24,
829
+ "textCapacity": 7
830
+ },
831
+ {
832
+ "kind": "text",
833
+ "x": 92,
834
+ "y": 520,
835
+ "width": 246.66666666666666,
836
+ "height": 60,
837
+ "textRole": "body",
838
+ "fontSize": 24,
839
+ "textCapacity": 7
840
+ },
841
+ {
842
+ "kind": "title",
843
+ "x": 252,
844
+ "y": 374.6666666666667,
845
+ "width": 329.3333333333333,
846
+ "height": 73.33333333333333,
847
+ "textRole": "title",
848
+ "fontSize": 39,
849
+ "textCapacity": 6
850
+ },
851
+ {
852
+ "kind": "text",
853
+ "x": 253.33333333333334,
854
+ "y": 448,
855
+ "width": 326.6666666666667,
856
+ "height": 42.666666666666664,
857
+ "textRole": "body",
858
+ "fontSize": 17,
859
+ "textCapacity": 14
860
+ },
861
+ {
862
+ "kind": "title",
863
+ "x": 865.3333333333334,
864
+ "y": 264,
865
+ "width": 346.6666666666667,
866
+ "height": 152,
867
+ "textRole": "title",
868
+ "fontSize": 35,
869
+ "textCapacity": 14
870
+ },
871
+ {
872
+ "kind": "text",
873
+ "x": 865.3333333333334,
874
+ "y": 466.6666666666667,
875
+ "width": 346.6666666666667,
876
+ "height": 137.33333333333334,
877
+ "textRole": "body",
878
+ "fontSize": 22,
879
+ "textCapacity": 44
880
+ },
881
+ {
882
+ "kind": "text",
883
+ "x": 64,
884
+ "y": 676,
885
+ "width": 1013.3333333333334,
886
+ "height": 21.333333333333332,
887
+ "textRole": "body",
888
+ "fontSize": 9,
889
+ "textCapacity": 84
890
+ },
891
+ {
892
+ "kind": "text",
893
+ "x": 1160,
894
+ "y": 672,
895
+ "width": 56,
896
+ "height": 29.333333333333332,
897
+ "textRole": "body",
898
+ "fontSize": 11,
899
+ "textCapacity": 3
900
+ }
901
+ ],
902
+ "jsxReference": ""
903
+ },
904
+ {
905
+ "slideNumber": 6,
906
+ "sourceTitle": "Conversion staircase",
907
+ "family": "data",
908
+ "titlePosition": "left",
909
+ "bodyColumns": 2,
910
+ "density": "high",
911
+ "features": [
912
+ "data"
913
+ ],
914
+ "recommendedRoles": [
915
+ "data"
916
+ ],
917
+ "structureSummary": "Proportional descending bars, direct counts and a quantified bottleneck",
918
+ "zones": [
919
+ {
920
+ "kind": "text",
921
+ "x": 64,
922
+ "y": 34.666666666666664,
923
+ "width": 1093.3333333333333,
924
+ "height": 26.666666666666668,
925
+ "textRole": "body",
926
+ "fontSize": 11,
927
+ "textCapacity": 74
928
+ },
929
+ {
930
+ "kind": "title",
931
+ "x": 64,
932
+ "y": 104,
933
+ "width": 1152,
934
+ "height": 90.66666666666667,
935
+ "textRole": "title",
936
+ "fontSize": 37,
937
+ "textCapacity": 23
938
+ },
939
+ {
940
+ "kind": "text",
941
+ "x": 64,
942
+ "y": 204,
943
+ "width": 741.3333333333334,
944
+ "height": 30.666666666666668,
945
+ "textRole": "body",
946
+ "fontSize": 11,
947
+ "textCapacity": 50
948
+ },
949
+ {
950
+ "kind": "shape",
951
+ "x": 64,
952
+ "y": 250.66666666666666,
953
+ "width": 626.6666666666666,
954
+ "height": 56,
955
+ "shape": "rect",
956
+ "fill": "E85D26"
957
+ },
958
+ {
959
+ "kind": "text",
960
+ "x": 81.33333333333333,
961
+ "y": 262.6666666666667,
962
+ "width": 240,
963
+ "height": 37.333333333333336,
964
+ "textRole": "body",
965
+ "fontSize": 16,
966
+ "textCapacity": 11
967
+ },
968
+ {
969
+ "kind": "text",
970
+ "x": 738.6666666666666,
971
+ "y": 253.33333333333334,
972
+ "width": 105.33333333333333,
973
+ "height": 52,
974
+ "textRole": "body",
975
+ "fontSize": 27,
976
+ "textCapacity": 2
977
+ },
978
+ {
979
+ "kind": "text",
980
+ "x": 64,
981
+ "y": 312,
982
+ "width": 324,
983
+ "height": 33.333333333333336,
984
+ "textRole": "body",
985
+ "fontSize": 11,
986
+ "textCapacity": 44
987
+ },
988
+ {
989
+ "kind": "shape",
990
+ "x": 64,
991
+ "y": 345.3333333333333,
992
+ "width": 426.1333333333334,
993
+ "height": 56,
994
+ "shape": "rect",
995
+ "fill": "C9653E"
996
+ },
997
+ {
998
+ "kind": "text",
999
+ "x": 81.33333333333333,
1000
+ "y": 357.3333333333333,
1001
+ "width": 240,
1002
+ "height": 37.333333333333336,
1003
+ "textRole": "body",
1004
+ "fontSize": 16,
1005
+ "textCapacity": 11
1006
+ },
1007
+ {
1008
+ "kind": "text",
1009
+ "x": 738.6666666666666,
1010
+ "y": 348,
1011
+ "width": 105.33333333333333,
1012
+ "height": 52,
1013
+ "textRole": "body",
1014
+ "fontSize": 27,
1015
+ "textCapacity": 2
1016
+ },
1017
+ {
1018
+ "kind": "text",
1019
+ "x": 64,
1020
+ "y": 406.6666666666667,
1021
+ "width": 324,
1022
+ "height": 33.333333333333336,
1023
+ "textRole": "body",
1024
+ "fontSize": 11,
1025
+ "textCapacity": 44
1026
+ },
1027
+ {
1028
+ "kind": "shape",
1029
+ "x": 64,
1030
+ "y": 440,
1031
+ "width": 256.93333333333334,
1032
+ "height": 56,
1033
+ "shape": "rect",
1034
+ "fill": "995E46"
1035
+ },
1036
+ {
1037
+ "kind": "text",
1038
+ "x": 81.33333333333333,
1039
+ "y": 452,
1040
+ "width": 240,
1041
+ "height": 37.333333333333336,
1042
+ "textRole": "body",
1043
+ "fontSize": 16,
1044
+ "textCapacity": 11
1045
+ },
1046
+ {
1047
+ "kind": "text",
1048
+ "x": 738.6666666666666,
1049
+ "y": 442.6666666666667,
1050
+ "width": 105.33333333333333,
1051
+ "height": 52,
1052
+ "textRole": "body",
1053
+ "fontSize": 27,
1054
+ "textCapacity": 2
1055
+ },
1056
+ {
1057
+ "kind": "text",
1058
+ "x": 64,
1059
+ "y": 501.3333333333333,
1060
+ "width": 324,
1061
+ "height": 33.333333333333336,
1062
+ "textRole": "body",
1063
+ "fontSize": 11,
1064
+ "textCapacity": 44
1065
+ },
1066
+ {
1067
+ "kind": "shape",
1068
+ "x": 64,
1069
+ "y": 534.6666666666666,
1070
+ "width": 181.73333333333335,
1071
+ "height": 56,
1072
+ "shape": "rect",
1073
+ "fill": "6F5144"
1074
+ },
1075
+ {
1076
+ "kind": "text",
1077
+ "x": 81.33333333333333,
1078
+ "y": 546.6666666666666,
1079
+ "width": 240,
1080
+ "height": 37.333333333333336,
1081
+ "textRole": "body",
1082
+ "fontSize": 16,
1083
+ "textCapacity": 11
1084
+ },
1085
+ {
1086
+ "kind": "text",
1087
+ "x": 738.6666666666666,
1088
+ "y": 537.3333333333334,
1089
+ "width": 105.33333333333333,
1090
+ "height": 52,
1091
+ "textRole": "body",
1092
+ "fontSize": 27,
1093
+ "textCapacity": 2
1094
+ },
1095
+ {
1096
+ "kind": "text",
1097
+ "x": 941.3333333333334,
1098
+ "y": 221.33333333333334,
1099
+ "width": 274.6666666666667,
1100
+ "height": 36,
1101
+ "textRole": "body",
1102
+ "fontSize": 11,
1103
+ "textCapacity": 36
1104
+ },
1105
+ {
1106
+ "kind": "title",
1107
+ "x": 941.3333333333334,
1108
+ "y": 277.3333333333333,
1109
+ "width": 274.6666666666667,
1110
+ "height": 122.66666666666667,
1111
+ "textRole": "title",
1112
+ "fontSize": 70,
1113
+ "textCapacity": 2
1114
+ },
1115
+ {
1116
+ "kind": "text",
1117
+ "x": 941.3333333333334,
1118
+ "y": 412,
1119
+ "width": 274.6666666666667,
1120
+ "height": 117.33333333333333,
1121
+ "textRole": "body",
1122
+ "fontSize": 23,
1123
+ "textCapacity": 24
1124
+ },
1125
+ {
1126
+ "kind": "text",
1127
+ "x": 941.3333333333334,
1128
+ "y": 569.3333333333334,
1129
+ "width": 274.6666666666667,
1130
+ "height": 37.333333333333336,
1131
+ "textRole": "body",
1132
+ "fontSize": 16,
1133
+ "textCapacity": 12
1134
+ },
1135
+ {
1136
+ "kind": "text",
1137
+ "x": 64,
1138
+ "y": 633.3333333333334,
1139
+ "width": 1152,
1140
+ "height": 33.333333333333336,
1141
+ "textRole": "body",
1142
+ "fontSize": 13,
1143
+ "textCapacity": 66
1144
+ },
1145
+ {
1146
+ "kind": "text",
1147
+ "x": 64,
1148
+ "y": 676,
1149
+ "width": 1013.3333333333334,
1150
+ "height": 21.333333333333332,
1151
+ "textRole": "body",
1152
+ "fontSize": 9,
1153
+ "textCapacity": 84
1154
+ },
1155
+ {
1156
+ "kind": "text",
1157
+ "x": 1160,
1158
+ "y": 672,
1159
+ "width": 56,
1160
+ "height": 29.333333333333332,
1161
+ "textRole": "body",
1162
+ "fontSize": 11,
1163
+ "textCapacity": 3
1164
+ }
1165
+ ],
1166
+ "jsxReference": ""
1167
+ },
1168
+ {
1169
+ "slideNumber": 7,
1170
+ "sourceTitle": "Effort and impact map",
1171
+ "family": "comparison",
1172
+ "titlePosition": "left",
1173
+ "bodyColumns": 2,
1174
+ "density": "high",
1175
+ "features": [
1176
+ "comparison"
1177
+ ],
1178
+ "recommendedRoles": [
1179
+ "comparison"
1180
+ ],
1181
+ "structureSummary": "Prioritization scatter linked by letters to an action register",
1182
+ "zones": [
1183
+ {
1184
+ "kind": "text",
1185
+ "x": 64,
1186
+ "y": 34.666666666666664,
1187
+ "width": 1093.3333333333333,
1188
+ "height": 26.666666666666668,
1189
+ "textRole": "body",
1190
+ "fontSize": 11,
1191
+ "textCapacity": 74
1192
+ },
1193
+ {
1194
+ "kind": "title",
1195
+ "x": 64,
1196
+ "y": 104,
1197
+ "width": 1152,
1198
+ "height": 90.66666666666667,
1199
+ "textRole": "title",
1200
+ "fontSize": 37,
1201
+ "textCapacity": 23
1202
+ },
1203
+ {
1204
+ "kind": "shape",
1205
+ "x": 100,
1206
+ "y": 232,
1207
+ "width": 670.6666666666666,
1208
+ "height": 364,
1209
+ "shape": "rect",
1210
+ "fill": "E4DFD5"
1211
+ },
1212
+ {
1213
+ "kind": "shape",
1214
+ "x": 100,
1215
+ "y": 232,
1216
+ "width": 334.6666666666667,
1217
+ "height": 181.33333333333334,
1218
+ "shape": "rect",
1219
+ "fill": "EFC3B1"
1220
+ },
1221
+ {
1222
+ "kind": "text",
1223
+ "x": 122.66666666666667,
1224
+ "y": 248,
1225
+ "width": 282.6666666666667,
1226
+ "height": 34.666666666666664,
1227
+ "textRole": "body",
1228
+ "fontSize": 14,
1229
+ "textCapacity": 15
1230
+ },
1231
+ {
1232
+ "kind": "text",
1233
+ "x": 460,
1234
+ "y": 248,
1235
+ "width": 280,
1236
+ "height": 34.666666666666664,
1237
+ "textRole": "body",
1238
+ "fontSize": 14,
1239
+ "textCapacity": 15
1240
+ },
1241
+ {
1242
+ "kind": "shape",
1243
+ "x": 196,
1244
+ "y": 306.6666666666667,
1245
+ "width": 45.333333333333336,
1246
+ "height": 45.333333333333336,
1247
+ "shape": "ellipse",
1248
+ "fill": "E85D26"
1249
+ },
1250
+ {
1251
+ "kind": "text",
1252
+ "x": 202.66666666666666,
1253
+ "y": 312,
1254
+ "width": 32,
1255
+ "height": 40,
1256
+ "textRole": "body",
1257
+ "fontSize": 18,
1258
+ "textCapacity": 1
1259
+ },
1260
+ {
1261
+ "kind": "shape",
1262
+ "x": 294.6666666666667,
1263
+ "y": 348,
1264
+ "width": 45.333333333333336,
1265
+ "height": 45.333333333333336,
1266
+ "shape": "ellipse",
1267
+ "fill": "E85D26"
1268
+ },
1269
+ {
1270
+ "kind": "text",
1271
+ "x": 301.3333333333333,
1272
+ "y": 353.3333333333333,
1273
+ "width": 32,
1274
+ "height": 40,
1275
+ "textRole": "body",
1276
+ "fontSize": 18,
1277
+ "textCapacity": 1
1278
+ },
1279
+ {
1280
+ "kind": "shape",
1281
+ "x": 570.6666666666666,
1282
+ "y": 318.6666666666667,
1283
+ "width": 45.333333333333336,
1284
+ "height": 45.333333333333336,
1285
+ "shape": "ellipse",
1286
+ "fill": "E85D26"
1287
+ },
1288
+ {
1289
+ "kind": "text",
1290
+ "x": 577.3333333333334,
1291
+ "y": 324,
1292
+ "width": 32,
1293
+ "height": 40,
1294
+ "textRole": "body",
1295
+ "fontSize": 18,
1296
+ "textCapacity": 1
1297
+ },
1298
+ {
1299
+ "kind": "shape",
1300
+ "x": 497.3333333333333,
1301
+ "y": 473.3333333333333,
1302
+ "width": 45.333333333333336,
1303
+ "height": 45.333333333333336,
1304
+ "shape": "ellipse",
1305
+ "fill": "E85D26"
1306
+ },
1307
+ {
1308
+ "kind": "text",
1309
+ "x": 504,
1310
+ "y": 478.6666666666667,
1311
+ "width": 32,
1312
+ "height": 40,
1313
+ "textRole": "body",
1314
+ "fontSize": 18,
1315
+ "textCapacity": 1
1316
+ },
1317
+ {
1318
+ "kind": "text",
1319
+ "x": 100,
1320
+ "y": 606.6666666666666,
1321
+ "width": 668,
1322
+ "height": 36,
1323
+ "textRole": "body",
1324
+ "fontSize": 14,
1325
+ "textCapacity": 35
1326
+ },
1327
+ {
1328
+ "kind": "text",
1329
+ "x": 100,
1330
+ "y": 196,
1331
+ "width": 668,
1332
+ "height": 29.333333333333332,
1333
+ "textRole": "body",
1334
+ "fontSize": 12,
1335
+ "textCapacity": 41
1336
+ },
1337
+ {
1338
+ "kind": "text",
1339
+ "x": 832,
1340
+ "y": 241.33333333333334,
1341
+ "width": 58.666666666666664,
1342
+ "height": 40,
1343
+ "textRole": "body",
1344
+ "fontSize": 20,
1345
+ "textCapacity": 2
1346
+ },
1347
+ {
1348
+ "kind": "text",
1349
+ "x": 908,
1350
+ "y": 241.33333333333334,
1351
+ "width": 308,
1352
+ "height": 68,
1353
+ "textRole": "body",
1354
+ "fontSize": 20,
1355
+ "textCapacity": 22
1356
+ },
1357
+ {
1358
+ "kind": "text",
1359
+ "x": 832,
1360
+ "y": 332,
1361
+ "width": 58.666666666666664,
1362
+ "height": 40,
1363
+ "textRole": "body",
1364
+ "fontSize": 20,
1365
+ "textCapacity": 2
1366
+ },
1367
+ {
1368
+ "kind": "text",
1369
+ "x": 908,
1370
+ "y": 332,
1371
+ "width": 308,
1372
+ "height": 68,
1373
+ "textRole": "body",
1374
+ "fontSize": 20,
1375
+ "textCapacity": 22
1376
+ },
1377
+ {
1378
+ "kind": "text",
1379
+ "x": 832,
1380
+ "y": 422.6666666666667,
1381
+ "width": 58.666666666666664,
1382
+ "height": 40,
1383
+ "textRole": "body",
1384
+ "fontSize": 20,
1385
+ "textCapacity": 2
1386
+ },
1387
+ {
1388
+ "kind": "text",
1389
+ "x": 908,
1390
+ "y": 422.6666666666667,
1391
+ "width": 308,
1392
+ "height": 68,
1393
+ "textRole": "body",
1394
+ "fontSize": 20,
1395
+ "textCapacity": 22
1396
+ },
1397
+ {
1398
+ "kind": "text",
1399
+ "x": 832,
1400
+ "y": 513.3333333333334,
1401
+ "width": 58.666666666666664,
1402
+ "height": 40,
1403
+ "textRole": "body",
1404
+ "fontSize": 20,
1405
+ "textCapacity": 2
1406
+ },
1407
+ {
1408
+ "kind": "text",
1409
+ "x": 908,
1410
+ "y": 513.3333333333334,
1411
+ "width": 308,
1412
+ "height": 68,
1413
+ "textRole": "body",
1414
+ "fontSize": 20,
1415
+ "textCapacity": 22
1416
+ },
1417
+ {
1418
+ "kind": "text",
1419
+ "x": 64,
1420
+ "y": 676,
1421
+ "width": 1013.3333333333334,
1422
+ "height": 21.333333333333332,
1423
+ "textRole": "body",
1424
+ "fontSize": 9,
1425
+ "textCapacity": 84
1426
+ },
1427
+ {
1428
+ "kind": "text",
1429
+ "x": 1160,
1430
+ "y": 672,
1431
+ "width": 56,
1432
+ "height": 29.333333333333332,
1433
+ "textRole": "body",
1434
+ "fontSize": 11,
1435
+ "textCapacity": 3
1436
+ }
1437
+ ],
1438
+ "jsxReference": ""
1439
+ },
1440
+ {
1441
+ "slideNumber": 8,
1442
+ "sourceTitle": "Campaign storyboard",
1443
+ "family": "agenda",
1444
+ "titlePosition": "left",
1445
+ "bodyColumns": 3,
1446
+ "density": "high",
1447
+ "features": [
1448
+ "agenda"
1449
+ ],
1450
+ "recommendedRoles": [
1451
+ "agenda"
1452
+ ],
1453
+ "structureSummary": "Three narrative beats with oversized sequence numbers and a specific audience action",
1454
+ "zones": [
1455
+ {
1456
+ "kind": "text",
1457
+ "x": 64,
1458
+ "y": 34.666666666666664,
1459
+ "width": 1093.3333333333333,
1460
+ "height": 26.666666666666668,
1461
+ "textRole": "body",
1462
+ "fontSize": 11,
1463
+ "textCapacity": 74
1464
+ },
1465
+ {
1466
+ "kind": "title",
1467
+ "x": 64,
1468
+ "y": 104,
1469
+ "width": 1152,
1470
+ "height": 90.66666666666667,
1471
+ "textRole": "title",
1472
+ "fontSize": 37,
1473
+ "textCapacity": 23
1474
+ },
1475
+ {
1476
+ "kind": "title",
1477
+ "x": 64,
1478
+ "y": 212,
1479
+ "width": 348,
1480
+ "height": 126.66666666666667,
1481
+ "textRole": "title",
1482
+ "fontSize": 72,
1483
+ "textCapacity": 3
1484
+ },
1485
+ {
1486
+ "kind": "text",
1487
+ "x": 64,
1488
+ "y": 388,
1489
+ "width": 348,
1490
+ "height": 56,
1491
+ "textRole": "body",
1492
+ "fontSize": 20,
1493
+ "textCapacity": 13
1494
+ },
1495
+ {
1496
+ "kind": "text",
1497
+ "x": 64,
1498
+ "y": 468,
1499
+ "width": 348,
1500
+ "height": 112,
1501
+ "textRole": "body",
1502
+ "fontSize": 21,
1503
+ "textCapacity": 36
1504
+ },
1505
+ {
1506
+ "kind": "text",
1507
+ "x": 64,
1508
+ "y": 606.6666666666666,
1509
+ "width": 348,
1510
+ "height": 34.666666666666664,
1511
+ "textRole": "body",
1512
+ "fontSize": 13,
1513
+ "textCapacity": 20
1514
+ },
1515
+ {
1516
+ "kind": "title",
1517
+ "x": 458.6666666666667,
1518
+ "y": 212,
1519
+ "width": 348,
1520
+ "height": 126.66666666666667,
1521
+ "textRole": "title",
1522
+ "fontSize": 72,
1523
+ "textCapacity": 3
1524
+ },
1525
+ {
1526
+ "kind": "text",
1527
+ "x": 458.6666666666667,
1528
+ "y": 388,
1529
+ "width": 348,
1530
+ "height": 56,
1531
+ "textRole": "body",
1532
+ "fontSize": 20,
1533
+ "textCapacity": 13
1534
+ },
1535
+ {
1536
+ "kind": "text",
1537
+ "x": 458.6666666666667,
1538
+ "y": 468,
1539
+ "width": 348,
1540
+ "height": 112,
1541
+ "textRole": "body",
1542
+ "fontSize": 21,
1543
+ "textCapacity": 36
1544
+ },
1545
+ {
1546
+ "kind": "text",
1547
+ "x": 458.6666666666667,
1548
+ "y": 606.6666666666666,
1549
+ "width": 348,
1550
+ "height": 34.666666666666664,
1551
+ "textRole": "body",
1552
+ "fontSize": 13,
1553
+ "textCapacity": 20
1554
+ },
1555
+ {
1556
+ "kind": "title",
1557
+ "x": 853.3333333333334,
1558
+ "y": 212,
1559
+ "width": 348,
1560
+ "height": 126.66666666666667,
1561
+ "textRole": "title",
1562
+ "fontSize": 72,
1563
+ "textCapacity": 3
1564
+ },
1565
+ {
1566
+ "kind": "text",
1567
+ "x": 853.3333333333334,
1568
+ "y": 388,
1569
+ "width": 348,
1570
+ "height": 56,
1571
+ "textRole": "body",
1572
+ "fontSize": 20,
1573
+ "textCapacity": 13
1574
+ },
1575
+ {
1576
+ "kind": "text",
1577
+ "x": 853.3333333333334,
1578
+ "y": 468,
1579
+ "width": 348,
1580
+ "height": 112,
1581
+ "textRole": "body",
1582
+ "fontSize": 21,
1583
+ "textCapacity": 36
1584
+ },
1585
+ {
1586
+ "kind": "text",
1587
+ "x": 853.3333333333334,
1588
+ "y": 606.6666666666666,
1589
+ "width": 348,
1590
+ "height": 34.666666666666664,
1591
+ "textRole": "body",
1592
+ "fontSize": 13,
1593
+ "textCapacity": 20
1594
+ },
1595
+ {
1596
+ "kind": "text",
1597
+ "x": 64,
1598
+ "y": 676,
1599
+ "width": 1013.3333333333334,
1600
+ "height": 21.333333333333332,
1601
+ "textRole": "body",
1602
+ "fontSize": 9,
1603
+ "textCapacity": 84
1604
+ },
1605
+ {
1606
+ "kind": "text",
1607
+ "x": 1160,
1608
+ "y": 672,
1609
+ "width": 56,
1610
+ "height": 29.333333333333332,
1611
+ "textRole": "body",
1612
+ "fontSize": 11,
1613
+ "textCapacity": 3
1614
+ }
1615
+ ],
1616
+ "jsxReference": ""
1617
+ },
1618
+ {
1619
+ "slideNumber": 9,
1620
+ "sourceTitle": "Case results poster",
1621
+ "family": "comparison",
1622
+ "titlePosition": "left",
1623
+ "bodyColumns": 3,
1624
+ "density": "high",
1625
+ "features": [
1626
+ "comparison"
1627
+ ],
1628
+ "recommendedRoles": [
1629
+ "comparison"
1630
+ ],
1631
+ "structureSummary": "Single dominant before/after result with trial scope and duration",
1632
+ "zones": [
1633
+ {
1634
+ "kind": "text",
1635
+ "x": 64,
1636
+ "y": 34.666666666666664,
1637
+ "width": 1093.3333333333333,
1638
+ "height": 26.666666666666668,
1639
+ "textRole": "body",
1640
+ "fontSize": 11,
1641
+ "textCapacity": 74
1642
+ },
1643
+ {
1644
+ "kind": "title",
1645
+ "x": 64,
1646
+ "y": 104,
1647
+ "width": 1152,
1648
+ "height": 90.66666666666667,
1649
+ "textRole": "title",
1650
+ "fontSize": 37,
1651
+ "textCapacity": 23
1652
+ },
1653
+ {
1654
+ "kind": "title",
1655
+ "x": 64,
1656
+ "y": 234.66666666666666,
1657
+ "width": 1152,
1658
+ "height": 189.33333333333334,
1659
+ "textRole": "title",
1660
+ "fontSize": 96,
1661
+ "textCapacity": 9
1662
+ },
1663
+ {
1664
+ "kind": "text",
1665
+ "x": 69.33333333333333,
1666
+ "y": 434.6666666666667,
1667
+ "width": 1118.6666666666667,
1668
+ "height": 56,
1669
+ "textRole": "body",
1670
+ "fontSize": 26,
1671
+ "textCapacity": 32
1672
+ },
1673
+ {
1674
+ "kind": "text",
1675
+ "x": 64,
1676
+ "y": 557.3333333333334,
1677
+ "width": 357.3333333333333,
1678
+ "height": 50.666666666666664,
1679
+ "textRole": "body",
1680
+ "fontSize": 25,
1681
+ "textCapacity": 10
1682
+ },
1683
+ {
1684
+ "kind": "text",
1685
+ "x": 64,
1686
+ "y": 618.6666666666666,
1687
+ "width": 357.3333333333333,
1688
+ "height": 30.666666666666668,
1689
+ "textRole": "body",
1690
+ "fontSize": 14,
1691
+ "textCapacity": 19
1692
+ },
1693
+ {
1694
+ "kind": "text",
1695
+ "x": 458.6666666666667,
1696
+ "y": 557.3333333333334,
1697
+ "width": 357.3333333333333,
1698
+ "height": 50.666666666666664,
1699
+ "textRole": "body",
1700
+ "fontSize": 25,
1701
+ "textCapacity": 10
1702
+ },
1703
+ {
1704
+ "kind": "text",
1705
+ "x": 458.6666666666667,
1706
+ "y": 618.6666666666666,
1707
+ "width": 357.3333333333333,
1708
+ "height": 30.666666666666668,
1709
+ "textRole": "body",
1710
+ "fontSize": 14,
1711
+ "textCapacity": 19
1712
+ },
1713
+ {
1714
+ "kind": "text",
1715
+ "x": 853.3333333333334,
1716
+ "y": 557.3333333333334,
1717
+ "width": 357.3333333333333,
1718
+ "height": 50.666666666666664,
1719
+ "textRole": "body",
1720
+ "fontSize": 25,
1721
+ "textCapacity": 10
1722
+ },
1723
+ {
1724
+ "kind": "text",
1725
+ "x": 853.3333333333334,
1726
+ "y": 618.6666666666666,
1727
+ "width": 357.3333333333333,
1728
+ "height": 30.666666666666668,
1729
+ "textRole": "body",
1730
+ "fontSize": 14,
1731
+ "textCapacity": 19
1732
+ },
1733
+ {
1734
+ "kind": "text",
1735
+ "x": 64,
1736
+ "y": 676,
1737
+ "width": 1013.3333333333334,
1738
+ "height": 21.333333333333332,
1739
+ "textRole": "body",
1740
+ "fontSize": 9,
1741
+ "textCapacity": 84
1742
+ },
1743
+ {
1744
+ "kind": "text",
1745
+ "x": 1160,
1746
+ "y": 672,
1747
+ "width": 56,
1748
+ "height": 29.333333333333332,
1749
+ "textRole": "body",
1750
+ "fontSize": 11,
1751
+ "textCapacity": 3
1752
+ }
1753
+ ],
1754
+ "jsxReference": ""
1755
+ },
1756
+ {
1757
+ "slideNumber": 10,
1758
+ "sourceTitle": "Launch schedule",
1759
+ "family": "process",
1760
+ "titlePosition": "left",
1761
+ "bodyColumns": 4,
1762
+ "density": "high",
1763
+ "features": [
1764
+ "process"
1765
+ ],
1766
+ "recommendedRoles": [
1767
+ "process"
1768
+ ],
1769
+ "structureSummary": "Staggered six-week timeline with a conditional expansion gate",
1770
+ "zones": [
1771
+ {
1772
+ "kind": "text",
1773
+ "x": 64,
1774
+ "y": 34.666666666666664,
1775
+ "width": 1093.3333333333333,
1776
+ "height": 26.666666666666668,
1777
+ "textRole": "body",
1778
+ "fontSize": 11,
1779
+ "textCapacity": 74
1780
+ },
1781
+ {
1782
+ "kind": "title",
1783
+ "x": 64,
1784
+ "y": 104,
1785
+ "width": 1152,
1786
+ "height": 90.66666666666667,
1787
+ "textRole": "title",
1788
+ "fontSize": 37,
1789
+ "textCapacity": 23
1790
+ },
1791
+ {
1792
+ "kind": "text",
1793
+ "x": 350.6666666666667,
1794
+ "y": 222.66666666666666,
1795
+ "width": 128,
1796
+ "height": 34.666666666666664,
1797
+ "textRole": "body",
1798
+ "fontSize": 13,
1799
+ "textCapacity": 7
1800
+ },
1801
+ {
1802
+ "kind": "text",
1803
+ "x": 492,
1804
+ "y": 222.66666666666666,
1805
+ "width": 128,
1806
+ "height": 34.666666666666664,
1807
+ "textRole": "body",
1808
+ "fontSize": 13,
1809
+ "textCapacity": 7
1810
+ },
1811
+ {
1812
+ "kind": "text",
1813
+ "x": 633.3333333333334,
1814
+ "y": 222.66666666666666,
1815
+ "width": 128,
1816
+ "height": 34.666666666666664,
1817
+ "textRole": "body",
1818
+ "fontSize": 13,
1819
+ "textCapacity": 7
1820
+ },
1821
+ {
1822
+ "kind": "text",
1823
+ "x": 774.6666666666666,
1824
+ "y": 222.66666666666666,
1825
+ "width": 128,
1826
+ "height": 34.666666666666664,
1827
+ "textRole": "body",
1828
+ "fontSize": 13,
1829
+ "textCapacity": 7
1830
+ },
1831
+ {
1832
+ "kind": "text",
1833
+ "x": 916,
1834
+ "y": 222.66666666666666,
1835
+ "width": 128,
1836
+ "height": 34.666666666666664,
1837
+ "textRole": "body",
1838
+ "fontSize": 13,
1839
+ "textCapacity": 7
1840
+ },
1841
+ {
1842
+ "kind": "text",
1843
+ "x": 1057.3333333333333,
1844
+ "y": 222.66666666666666,
1845
+ "width": 128,
1846
+ "height": 34.666666666666664,
1847
+ "textRole": "body",
1848
+ "fontSize": 13,
1849
+ "textCapacity": 7
1850
+ },
1851
+ {
1852
+ "kind": "text",
1853
+ "x": 64,
1854
+ "y": 280,
1855
+ "width": 249.33333333333334,
1856
+ "height": 37.333333333333336,
1857
+ "textRole": "body",
1858
+ "fontSize": 18,
1859
+ "textCapacity": 10
1860
+ },
1861
+ {
1862
+ "kind": "shape",
1863
+ "x": 352,
1864
+ "y": 280,
1865
+ "width": 269.3333333333333,
1866
+ "height": 40,
1867
+ "shape": "rect",
1868
+ "fill": "707068"
1869
+ },
1870
+ {
1871
+ "kind": "text",
1872
+ "x": 64,
1873
+ "y": 360,
1874
+ "width": 249.33333333333334,
1875
+ "height": 37.333333333333336,
1876
+ "textRole": "body",
1877
+ "fontSize": 18,
1878
+ "textCapacity": 10
1879
+ },
1880
+ {
1881
+ "kind": "shape",
1882
+ "x": 493.3333333333333,
1883
+ "y": 360,
1884
+ "width": 410.6666666666667,
1885
+ "height": 40,
1886
+ "shape": "rect",
1887
+ "fill": "707068"
1888
+ },
1889
+ {
1890
+ "kind": "text",
1891
+ "x": 64,
1892
+ "y": 440,
1893
+ "width": 249.33333333333334,
1894
+ "height": 37.333333333333336,
1895
+ "textRole": "body",
1896
+ "fontSize": 18,
1897
+ "textCapacity": 10
1898
+ },
1899
+ {
1900
+ "kind": "shape",
1901
+ "x": 776,
1902
+ "y": 440,
1903
+ "width": 269.3333333333333,
1904
+ "height": 40,
1905
+ "shape": "rect",
1906
+ "fill": "707068"
1907
+ },
1908
+ {
1909
+ "kind": "text",
1910
+ "x": 64,
1911
+ "y": 520,
1912
+ "width": 249.33333333333334,
1913
+ "height": 37.333333333333336,
1914
+ "textRole": "body",
1915
+ "fontSize": 18,
1916
+ "textCapacity": 10
1917
+ },
1918
+ {
1919
+ "kind": "shape",
1920
+ "x": 1058.6666666666667,
1921
+ "y": 520,
1922
+ "width": 128,
1923
+ "height": 40,
1924
+ "shape": "rect",
1925
+ "fill": "E85D26"
1926
+ },
1927
+ {
1928
+ "kind": "text",
1929
+ "x": 64,
1930
+ "y": 610.6666666666666,
1931
+ "width": 270.6666666666667,
1932
+ "height": 36,
1933
+ "textRole": "body",
1934
+ "fontSize": 16,
1935
+ "textCapacity": 12
1936
+ },
1937
+ {
1938
+ "kind": "text",
1939
+ "x": 350.6666666666667,
1940
+ "y": 608,
1941
+ "width": 865.3333333333334,
1942
+ "height": 48,
1943
+ "textRole": "body",
1944
+ "fontSize": 18,
1945
+ "textCapacity": 36
1946
+ },
1947
+ {
1948
+ "kind": "text",
1949
+ "x": 64,
1950
+ "y": 676,
1951
+ "width": 1013.3333333333334,
1952
+ "height": 21.333333333333332,
1953
+ "textRole": "body",
1954
+ "fontSize": 9,
1955
+ "textCapacity": 84
1956
+ },
1957
+ {
1958
+ "kind": "text",
1959
+ "x": 1160,
1960
+ "y": 672,
1961
+ "width": 56,
1962
+ "height": 29.333333333333332,
1963
+ "textRole": "body",
1964
+ "fontSize": 11,
1965
+ "textCapacity": 3
1966
+ }
1967
+ ],
1968
+ "jsxReference": ""
1969
+ },
1970
+ {
1971
+ "slideNumber": 11,
1972
+ "sourceTitle": "Performance scorecard",
1973
+ "family": "data",
1974
+ "titlePosition": "left",
1975
+ "bodyColumns": 4,
1976
+ "density": "high",
1977
+ "features": [
1978
+ "data"
1979
+ ],
1980
+ "recommendedRoles": [
1981
+ "data"
1982
+ ],
1983
+ "structureSummary": "Aligned metric table with actual/target values and native bullet bars",
1984
+ "zones": [
1985
+ {
1986
+ "kind": "text",
1987
+ "x": 64,
1988
+ "y": 34.666666666666664,
1989
+ "width": 1093.3333333333333,
1990
+ "height": 26.666666666666668,
1991
+ "textRole": "body",
1992
+ "fontSize": 11,
1993
+ "textCapacity": 74
1994
+ },
1995
+ {
1996
+ "kind": "title",
1997
+ "x": 64,
1998
+ "y": 104,
1999
+ "width": 1152,
2000
+ "height": 90.66666666666667,
2001
+ "textRole": "title",
2002
+ "fontSize": 37,
2003
+ "textCapacity": 23
2004
+ },
2005
+ {
2006
+ "kind": "text",
2007
+ "x": 64,
2008
+ "y": 226.66666666666666,
2009
+ "width": 382.6666666666667,
2010
+ "height": 34.666666666666664,
2011
+ "textRole": "body",
2012
+ "fontSize": 12,
2013
+ "textCapacity": 23
2014
+ },
2015
+ {
2016
+ "kind": "text",
2017
+ "x": 452,
2018
+ "y": 226.66666666666666,
2019
+ "width": 205.33333333333334,
2020
+ "height": 34.666666666666664,
2021
+ "textRole": "body",
2022
+ "fontSize": 12,
2023
+ "textCapacity": 12
2024
+ },
2025
+ {
2026
+ "kind": "text",
2027
+ "x": 686.6666666666666,
2028
+ "y": 226.66666666666666,
2029
+ "width": 209.33333333333334,
2030
+ "height": 34.666666666666664,
2031
+ "textRole": "body",
2032
+ "fontSize": 12,
2033
+ "textCapacity": 13
2034
+ },
2035
+ {
2036
+ "kind": "text",
2037
+ "x": 924,
2038
+ "y": 226.66666666666666,
2039
+ "width": 292,
2040
+ "height": 34.666666666666664,
2041
+ "textRole": "body",
2042
+ "fontSize": 11,
2043
+ "textCapacity": 38
2044
+ },
2045
+ {
2046
+ "kind": "text",
2047
+ "x": 64,
2048
+ "y": 294.6666666666667,
2049
+ "width": 350.6666666666667,
2050
+ "height": 45.333333333333336,
2051
+ "textRole": "body",
2052
+ "fontSize": 20,
2053
+ "textCapacity": 13
2054
+ },
2055
+ {
2056
+ "kind": "text",
2057
+ "x": 452,
2058
+ "y": 294.6666666666667,
2059
+ "width": 205.33333333333334,
2060
+ "height": 45.333333333333336,
2061
+ "textRole": "body",
2062
+ "fontSize": 23,
2063
+ "textCapacity": 6
2064
+ },
2065
+ {
2066
+ "kind": "text",
2067
+ "x": 686.6666666666666,
2068
+ "y": 294.6666666666667,
2069
+ "width": 201.33333333333334,
2070
+ "height": 45.333333333333336,
2071
+ "textRole": "body",
2072
+ "fontSize": 20,
2073
+ "textCapacity": 7
2074
+ },
2075
+ {
2076
+ "kind": "shape",
2077
+ "x": 925.3333333333334,
2078
+ "y": 305.3333333333333,
2079
+ "width": 268,
2080
+ "height": 20,
2081
+ "shape": "rect",
2082
+ "fill": "34342E"
2083
+ },
2084
+ {
2085
+ "kind": "shape",
2086
+ "x": 925.3333333333334,
2087
+ "y": 305.3333333333333,
2088
+ "width": 219.76,
2089
+ "height": 20,
2090
+ "shape": "rect",
2091
+ "fill": "E85D26"
2092
+ },
2093
+ {
2094
+ "kind": "text",
2095
+ "x": 64,
2096
+ "y": 376,
2097
+ "width": 350.6666666666667,
2098
+ "height": 45.333333333333336,
2099
+ "textRole": "body",
2100
+ "fontSize": 20,
2101
+ "textCapacity": 13
2102
+ },
2103
+ {
2104
+ "kind": "text",
2105
+ "x": 452,
2106
+ "y": 376,
2107
+ "width": 205.33333333333334,
2108
+ "height": 45.333333333333336,
2109
+ "textRole": "body",
2110
+ "fontSize": 23,
2111
+ "textCapacity": 6
2112
+ },
2113
+ {
2114
+ "kind": "text",
2115
+ "x": 686.6666666666666,
2116
+ "y": 376,
2117
+ "width": 201.33333333333334,
2118
+ "height": 45.333333333333336,
2119
+ "textRole": "body",
2120
+ "fontSize": 20,
2121
+ "textCapacity": 7
2122
+ },
2123
+ {
2124
+ "kind": "shape",
2125
+ "x": 925.3333333333334,
2126
+ "y": 386.6666666666667,
2127
+ "width": 268,
2128
+ "height": 20,
2129
+ "shape": "rect",
2130
+ "fill": "34342E"
2131
+ },
2132
+ {
2133
+ "kind": "shape",
2134
+ "x": 925.3333333333334,
2135
+ "y": 386.6666666666667,
2136
+ "width": 163.48,
2137
+ "height": 20,
2138
+ "shape": "rect",
2139
+ "fill": "E85D26"
2140
+ },
2141
+ {
2142
+ "kind": "text",
2143
+ "x": 64,
2144
+ "y": 457.3333333333333,
2145
+ "width": 350.6666666666667,
2146
+ "height": 45.333333333333336,
2147
+ "textRole": "body",
2148
+ "fontSize": 20,
2149
+ "textCapacity": 13
2150
+ },
2151
+ {
2152
+ "kind": "text",
2153
+ "x": 452,
2154
+ "y": 457.3333333333333,
2155
+ "width": 205.33333333333334,
2156
+ "height": 45.333333333333336,
2157
+ "textRole": "body",
2158
+ "fontSize": 23,
2159
+ "textCapacity": 6
2160
+ },
2161
+ {
2162
+ "kind": "text",
2163
+ "x": 686.6666666666666,
2164
+ "y": 457.3333333333333,
2165
+ "width": 201.33333333333334,
2166
+ "height": 45.333333333333336,
2167
+ "textRole": "body",
2168
+ "fontSize": 20,
2169
+ "textCapacity": 7
2170
+ },
2171
+ {
2172
+ "kind": "shape",
2173
+ "x": 925.3333333333334,
2174
+ "y": 468,
2175
+ "width": 268,
2176
+ "height": 20,
2177
+ "shape": "rect",
2178
+ "fill": "34342E"
2179
+ },
2180
+ {
2181
+ "kind": "shape",
2182
+ "x": 925.3333333333334,
2183
+ "y": 468,
2184
+ "width": 241.20000000000002,
2185
+ "height": 20,
2186
+ "shape": "rect",
2187
+ "fill": "E85D26"
2188
+ },
2189
+ {
2190
+ "kind": "text",
2191
+ "x": 64,
2192
+ "y": 538.6666666666666,
2193
+ "width": 350.6666666666667,
2194
+ "height": 45.333333333333336,
2195
+ "textRole": "body",
2196
+ "fontSize": 20,
2197
+ "textCapacity": 13
2198
+ },
2199
+ {
2200
+ "kind": "text",
2201
+ "x": 452,
2202
+ "y": 538.6666666666666,
2203
+ "width": 205.33333333333334,
2204
+ "height": 45.333333333333336,
2205
+ "textRole": "body",
2206
+ "fontSize": 23,
2207
+ "textCapacity": 6
2208
+ },
2209
+ {
2210
+ "kind": "text",
2211
+ "x": 686.6666666666666,
2212
+ "y": 538.6666666666666,
2213
+ "width": 201.33333333333334,
2214
+ "height": 45.333333333333336,
2215
+ "textRole": "body",
2216
+ "fontSize": 20,
2217
+ "textCapacity": 7
2218
+ },
2219
+ {
2220
+ "kind": "shape",
2221
+ "x": 925.3333333333334,
2222
+ "y": 549.3333333333334,
2223
+ "width": 268,
2224
+ "height": 20,
2225
+ "shape": "rect",
2226
+ "fill": "34342E"
2227
+ },
2228
+ {
2229
+ "kind": "shape",
2230
+ "x": 925.3333333333334,
2231
+ "y": 549.3333333333334,
2232
+ "width": 257.28000000000003,
2233
+ "height": 20,
2234
+ "shape": "rect",
2235
+ "fill": "E85D26"
2236
+ },
2237
+ {
2238
+ "kind": "text",
2239
+ "x": 64,
2240
+ "y": 633.3333333333334,
2241
+ "width": 1152,
2242
+ "height": 33.333333333333336,
2243
+ "textRole": "body",
2244
+ "fontSize": 13,
2245
+ "textCapacity": 66
2246
+ },
2247
+ {
2248
+ "kind": "text",
2249
+ "x": 64,
2250
+ "y": 676,
2251
+ "width": 1013.3333333333334,
2252
+ "height": 21.333333333333332,
2253
+ "textRole": "body",
2254
+ "fontSize": 9,
2255
+ "textCapacity": 84
2256
+ },
2257
+ {
2258
+ "kind": "text",
2259
+ "x": 1160,
2260
+ "y": 672,
2261
+ "width": 56,
2262
+ "height": 29.333333333333332,
2263
+ "textRole": "body",
2264
+ "fontSize": 11,
2265
+ "textCapacity": 3
2266
+ }
2267
+ ],
2268
+ "jsxReference": ""
2269
+ },
2270
+ {
2271
+ "slideNumber": 12,
2272
+ "sourceTitle": "Closing",
2273
+ "family": "closing",
2274
+ "titlePosition": "left",
2275
+ "bodyColumns": 1,
2276
+ "density": "medium",
2277
+ "features": [
2278
+ "closing"
2279
+ ],
2280
+ "recommendedRoles": [
2281
+ "closing"
2282
+ ],
2283
+ "structureSummary": "Closing",
2284
+ "zones": [
2285
+ {
2286
+ "kind": "title",
2287
+ "x": 64,
2288
+ "y": 237.33333333333334,
2289
+ "width": 1146.6666666666667,
2290
+ "height": 300,
2291
+ "textRole": "title",
2292
+ "fontSize": 88,
2293
+ "textCapacity": 18
2294
+ },
2295
+ {
2296
+ "kind": "text",
2297
+ "x": 64,
2298
+ "y": 674.6666666666666,
2299
+ "width": 1013.3333333333334,
2300
+ "height": 21.333333333333332,
2301
+ "textRole": "body",
2302
+ "fontSize": 9,
2303
+ "textCapacity": 84
2304
+ },
2305
+ {
2306
+ "kind": "text",
2307
+ "x": 1160,
2308
+ "y": 670.6666666666666,
2309
+ "width": 53.333333333333336,
2310
+ "height": 26.666666666666668,
2311
+ "textRole": "body",
2312
+ "fontSize": 11,
2313
+ "textCapacity": 3
2314
+ }
2315
+ ],
2316
+ "jsxReference": ""
2317
+ }
2318
+ ]
2319
+ }
2320
+ },
2321
+ "provenance": {
2322
+ "kind": "mit-adaptation",
2323
+ "license": "MIT",
2324
+ "upstream": "https://github.com/zarazhangrui/beautiful-html-templates/tree/e5e204fb1f3b06290846e7dcd7aceddabeceec8c/templates/broadside",
2325
+ "author": "Zara Zhang",
2326
+ "adaptedBy": "DSH Desktop contributors",
2327
+ "modified": "2026-09-06"
2328
+ }
2329
+ }