@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
package/lib/catalog.js ADDED
@@ -0,0 +1,3 @@
1
+ // Generated by scripts/build.mjs from bundled template metadata.
2
+ export const definitions = [{"id":"dsh-blue-professional","category":"business","sourceCollection":"curated","slug":"dsh-blue-professional","name":"Blue Professional","localizedNames":{"en":"Blue Professional","zh":"蓝色商务"},"variantLabel":"DSH","description":"蓝色商务 · Blue Professional","previewTitle":"Blue Professional","previewSubtitle":"12 editable layouts","titleFontFace":"Arial","bodyFontFace":"Arial","fonts":{"en":{"title":"Arial","body":"Arial"},"zh":{"title":"PingFang SC","body":"PingFang SC"},"fallbacks":{"en":{"title":"Arial","body":"Arial"},"zh":{"macOS":{"serif":"Songti SC","sans":"PingFang SC"},"Windows":{"serif":"SimSun","sans":"Microsoft YaHei"},"Linux":{"serif":"Noto Serif CJK SC","sans":"Noto Sans CJK SC"}}},"upstreamTitle":"Space Grotesk"},"previewLanguage":"en","palette":{"background":"FDFAE7","text":"111111","accent":"1E2BFA","surface":"E9E8E0","secondary":"6B6B6B","muted":"6B6B6B"},"referenceDirectory":"business/dsh-blue-professional","referenceWidth":1280,"referenceHeight":720,"referencePageCount":12,"representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"previewSlides":[4,1,2,3,5,6,7,8,9,10,11,12],"designSha256":"6a3cd54d80ab1993aacd53d43299ee68ec744fd70ecfe63e22833ffbe2802476"},{"id":"dsh-broadside","category":"promotion","sourceCollection":"curated","slug":"dsh-broadside","name":"Broadside","localizedNames":{"en":"Broadside","zh":"橙黑宣言"},"variantLabel":"DSH","description":"橙黑宣言 · Broadside","previewTitle":"Broadside","previewSubtitle":"12 editable layouts","titleFontFace":"Arial Black","bodyFontFace":"Arial","fonts":{"en":{"title":"Arial Black","body":"Arial"},"zh":{"title":"PingFang SC","body":"PingFang SC"},"fallbacks":{"en":{"title":"Arial","body":"Arial"},"zh":{"macOS":{"serif":"Songti SC","sans":"PingFang SC"},"Windows":{"serif":"SimSun","sans":"Microsoft YaHei"},"Linux":{"serif":"Noto Serif CJK SC","sans":"Noto Sans CJK SC"}}},"upstreamTitle":"Barlow"},"previewLanguage":"en","palette":{"background":"111111","text":"F0ECE5","accent":"E85D26","surface":"282826","secondary":"888880","muted":"888880"},"referenceDirectory":"promotion/dsh-broadside","referenceWidth":1280,"referenceHeight":720,"referencePageCount":12,"representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"previewSlides":[5,1,2,3,4,6,7,8,9,10,11,12],"designSha256":"0a8317e155cbe61f7ecf74106e9f813fc1d364e83f2124b91190ba466476f4e1"},{"id":"dsh-cartesian","category":"consulting","sourceCollection":"curated","slug":"dsh-cartesian","name":"Cartesian","localizedNames":{"en":"Cartesian","zh":"理性简报"},"variantLabel":"DSH","description":"理性简报 · Cartesian","previewTitle":"Cartesian","previewSubtitle":"12 editable layouts","titleFontFace":"Georgia","bodyFontFace":"Arial","fonts":{"en":{"title":"Georgia","body":"Arial"},"zh":{"title":"Songti SC","body":"PingFang SC"},"fallbacks":{"en":{"title":"Georgia","body":"Arial"},"zh":{"macOS":{"serif":"Songti SC","sans":"PingFang SC"},"Windows":{"serif":"SimSun","sans":"Microsoft YaHei"},"Linux":{"serif":"Noto Serif CJK SC","sans":"Noto Sans CJK SC"}}},"upstreamTitle":"Playfair Display"},"previewLanguage":"en","palette":{"background":"EDE8E0","text":"1A1A1A","accent":"8A8178","surface":"E2DBD1","secondary":"5A5A5A","muted":"5A5A5A"},"referenceDirectory":"consulting/dsh-cartesian","referenceWidth":1280,"referenceHeight":720,"referencePageCount":12,"representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"previewSlides":[4,1,2,3,5,6,7,8,9,10,11,12],"designSha256":"92d3e9126ea77f522857b431b287de482a81f7137a6e7b6a9f1758389fe0b5af"},{"id":"dsh-consulting-curated-swiss-signal-grid","category":"consulting","sourceCollection":"curated","slug":"swiss-signal-grid","name":"Swiss Signal Grid","variantLabel":"DSH","description":"原创瑞士信号网格模板,适合管理层数据汇报、市场洞察、风险集中度、经营模式比较与进入决策。","previewTitle":"Swiss Signal Grid","previewSubtitle":"12 editable layouts","titleFontFace":"HarmonyOS Sans SC","bodyFontFace":"HarmonyOS Sans SC","palette":{"background":"F5F3EE","surface":"FFFFFF","text":"111111","muted":"6E6D68","accent":"E52333","secondary":"CBC8C0"},"referenceDirectory":"consulting/curated-swiss-signal-grid","representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"referenceWidth":1280,"referenceHeight":7272,"referencePageCount":12,"previewSlides":[10,1,2,3,4,5,6,7,8,9,11,12],"designSha256":"241a3324d54d49da607d4185f7aa810beaaaf2d0185ce52eeca29195bf0c94c5","referenceSha256":"5bd220a711317582b293942b2881c9d4a1dbc0da18c5a21ccb2cbb9f93ffb7c8","localizedNames":{"en":"Swiss Signal Grid","zh":"Swiss Signal Grid"},"previewLanguage":"en","fonts":{"en":{"title":"Arial","body":"Arial"},"zh":{"title":"PingFang SC","body":"PingFang SC"},"fallbacks":{"zh":{"macOS":{"title":"PingFang SC","body":"PingFang SC"},"Windows":{"title":"Microsoft YaHei","body":"Microsoft YaHei"},"Linux":{"title":"Noto Sans CJK SC","body":"Noto Sans CJK SC"}}}}},{"id":"dsh-course-workshop","category":"academic","sourceCollection":"curated","slug":"dsh-course-workshop","name":"Course Workshop","variantLabel":"DSH","description":"固定学习目标边栏、概念图、实例与自测;用于培训、课程和工作坊。","previewTitle":"Course Workshop","previewSubtitle":"12 editable layouts","titleFontFace":"Arial","bodyFontFace":"Arial","palette":{"background":"F7F4EB","surface":"E5EBDD","text":"243F35","muted":"70766B","accent":"447A62","secondary":"E5EBDD"},"referenceDirectory":"academic/dsh-course-workshop","referenceWidth":1280,"referenceHeight":720,"referencePageCount":12,"representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"previewSlides":[4,1,2,3,5,6,7,8,9,10,11,12],"designSha256":"ba78a07b9a899bab3db404755f9a1dcd3bdd0c8010f41387d4bffbb9841b2f96","localizedNames":{"en":"Course Workshop","zh":"Course Workshop"},"previewLanguage":"en","fonts":{"en":{"title":"Arial","body":"Arial"},"zh":{"title":"PingFang SC","body":"PingFang SC"},"fallbacks":{"zh":{"macOS":{"title":"PingFang SC","body":"PingFang SC"},"Windows":{"title":"Microsoft YaHei","body":"Microsoft YaHei"},"Linux":{"title":"Noto Sans CJK SC","body":"Noto Sans CJK SC"}}}}},{"id":"dsh-editorial-forest","category":"work","sourceCollection":"curated","slug":"dsh-editorial-forest","name":"Editorial Forest","localizedNames":{"en":"Editorial Forest","zh":"森林季刊"},"variantLabel":"DSH","description":"森林季刊 · Editorial Forest","previewTitle":"Editorial Forest","previewSubtitle":"12 editable layouts","titleFontFace":"Georgia","bodyFontFace":"Arial","fonts":{"en":{"title":"Georgia","body":"Arial"},"zh":{"title":"Songti SC","body":"PingFang SC"},"fallbacks":{"en":{"title":"Georgia","body":"Arial"},"zh":{"macOS":{"serif":"Songti SC","sans":"PingFang SC"},"Windows":{"serif":"SimSun","sans":"Microsoft YaHei"},"Linux":{"serif":"Noto Serif CJK SC","sans":"Noto Sans CJK SC"}}},"upstreamTitle":"Source Serif 4"},"previewLanguage":"en","palette":{"background":"2E4A2A","text":"EFE7D4","accent":"E89CB1","surface":"3A5A36","secondary":"E6DCC4","muted":"E6DCC4"},"referenceDirectory":"work/dsh-editorial-forest","referenceWidth":1280,"referenceHeight":720,"referencePageCount":12,"representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"previewSlides":[4,1,2,3,5,6,7,8,9,10,11,12],"designSha256":"a1702b5ab8337a3836f889d0b277adb81374c0ef9b619146752d9e36ac38e6e6"},{"id":"dsh-editorial-notebook","category":"editorial","sourceCollection":"curated","slug":"dsh-editorial-notebook","name":"Editorial Notebook","variantLabel":"DSH","description":"原创的双栏论述、边注、证据条和决策矩阵;用于研究、观点与业务叙事。","previewTitle":"Editorial Notebook","previewSubtitle":"12 editable layouts","titleFontFace":"Georgia","bodyFontFace":"Arial","palette":{"background":"F8F8F6","surface":"EDEBE5","text":"252320","muted":"76716A","accent":"A86043","secondary":"EDEBE5"},"referenceDirectory":"editorial/dsh-editorial-notebook","referenceWidth":1280,"referenceHeight":720,"referencePageCount":12,"representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"previewSlides":[4,1,2,3,5,6,7,8,9,10,11,12],"designSha256":"31799db0d7de058746a678867f90f3958515744748ddeaab3645615827342ecc","localizedNames":{"en":"Editorial Notebook","zh":"Editorial Notebook"},"previewLanguage":"en","fonts":{"en":{"title":"Georgia","body":"Arial"},"zh":{"title":"Songti SC","body":"PingFang SC"},"fallbacks":{"zh":{"macOS":{"title":"Songti SC","body":"PingFang SC"},"Windows":{"title":"SimSun","body":"Microsoft YaHei"},"Linux":{"title":"Noto Serif CJK SC","body":"Noto Sans CJK SC"}}}}},{"id":"dsh-engineering-blueprint","category":"work","sourceCollection":"curated","slug":"dsh-engineering-blueprint","name":"Engineering Blueprint","variantLabel":"DSH","description":"纸张底色、工程网格、流程盒和反馈路径;用于架构评审、技术方案及执行计划。","previewTitle":"Engineering Blueprint","previewSubtitle":"12 editable layouts","titleFontFace":"Arial","bodyFontFace":"Arial","palette":{"background":"F0EAE0","surface":"E7E0D4","text":"252824","muted":"68665F","accent":"B5392A","secondary":"E7E0D4"},"referenceDirectory":"work/dsh-engineering-blueprint","referenceWidth":1280,"referenceHeight":720,"referencePageCount":12,"representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"previewSlides":[4,1,2,3,5,6,7,8,9,10,11,12],"designSha256":"b99b878887e76cd7e347d433b6795f551394e708043f44aa4d1a89a74d3f2ae5","localizedNames":{"en":"Engineering Blueprint","zh":"Engineering Blueprint"},"previewLanguage":"en","fonts":{"en":{"title":"Arial","body":"Arial"},"zh":{"title":"PingFang SC","body":"PingFang SC"},"fallbacks":{"zh":{"macOS":{"title":"PingFang SC","body":"PingFang SC"},"Windows":{"title":"Microsoft YaHei","body":"Microsoft YaHei"},"Linux":{"title":"Noto Sans CJK SC","body":"Noto Sans CJK SC"}}}}},{"id":"dsh-monochrome","category":"academic","sourceCollection":"curated","slug":"dsh-monochrome","name":"Monochrome","localizedNames":{"en":"Monochrome","zh":"极简研究"},"variantLabel":"DSH","description":"极简研究 · Monochrome","previewTitle":"Monochrome","previewSubtitle":"12 editable layouts","titleFontFace":"Helvetica Neue","bodyFontFace":"Arial","fonts":{"en":{"title":"Helvetica Neue","body":"Arial"},"zh":{"title":"PingFang SC","body":"PingFang SC"},"fallbacks":{"en":{"title":"Arial","body":"Arial"},"zh":{"macOS":{"serif":"Songti SC","sans":"PingFang SC"},"Windows":{"serif":"SimSun","sans":"Microsoft YaHei"},"Linux":{"serif":"Noto Serif CJK SC","sans":"Noto Sans CJK SC"}}},"upstreamTitle":"Jost"},"previewLanguage":"en","palette":{"background":"FAFADF","text":"1A1A16","accent":"1A1A16","surface":"F2F2D2","secondary":"5E5E54","muted":"5E5E54"},"referenceDirectory":"academic/dsh-monochrome","referenceWidth":1280,"referenceHeight":720,"referencePageCount":12,"representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"previewSlides":[4,1,2,3,5,6,7,8,9,10,11,12],"designSha256":"5e666eb67968f37520cb9c8848691c53b185c90ab5d7be4134c382678bea7ac6"},{"id":"dsh-neo-grid-bold","category":"business","sourceCollection":"curated","slug":"dsh-neo-grid-bold","name":"Neo-Grid Bold","localizedNames":{"en":"Neo-Grid Bold","zh":"荧光网格"},"variantLabel":"DSH","description":"荧光网格 · Neo-Grid Bold","previewTitle":"Neo-Grid Bold","previewSubtitle":"12 editable layouts","titleFontFace":"Arial Black","bodyFontFace":"Arial","fonts":{"en":{"title":"Arial Black","body":"Arial"},"zh":{"title":"PingFang SC","body":"PingFang SC"},"fallbacks":{"en":{"title":"Arial","body":"Arial"},"zh":{"macOS":{"serif":"Songti SC","sans":"PingFang SC"},"Windows":{"serif":"SimSun","sans":"Microsoft YaHei"},"Linux":{"serif":"Noto Serif CJK SC","sans":"Noto Sans CJK SC"}}},"upstreamTitle":"Space Grotesk"},"previewLanguage":"en","palette":{"background":"F5F4EF","text":"0A0A0A","accent":"E6FF3D","surface":"ECECE8","secondary":"8A8A85","muted":"8A8A85"},"referenceDirectory":"business/dsh-neo-grid-bold","referenceWidth":1280,"referenceHeight":720,"referencePageCount":12,"representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"previewSlides":[4,1,2,3,5,6,7,8,9,10,11,12],"designSha256":"04fcc2150e6c55dd86264468e3cf8f513bda0caa56e32de34bfafbbf3d74c9c8"},{"id":"dsh-playful","category":"promotion","sourceCollection":"curated","slug":"dsh-playful","name":"Playful","localizedNames":{"en":"Playful","zh":"杏色创意"},"variantLabel":"DSH","description":"杏色创意 · Playful","previewTitle":"Playful","previewSubtitle":"12 editable layouts","titleFontFace":"Arial Black","bodyFontFace":"Arial","fonts":{"en":{"title":"Arial Black","body":"Arial"},"zh":{"title":"PingFang SC","body":"PingFang SC"},"fallbacks":{"en":{"title":"Arial","body":"Arial"},"zh":{"macOS":{"serif":"Songti SC","sans":"PingFang SC"},"Windows":{"serif":"SimSun","sans":"Microsoft YaHei"},"Linux":{"serif":"Noto Serif CJK SC","sans":"Noto Sans CJK SC"}}},"upstreamTitle":"Syne"},"previewLanguage":"en","palette":{"background":"F0C8A0","text":"1A1A1A","accent":"1A1A1A","surface":"E8B88E","secondary":"F7DEC6","muted":"F7DEC6"},"referenceDirectory":"promotion/dsh-playful","referenceWidth":1280,"referenceHeight":720,"referencePageCount":12,"representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"previewSlides":[4,1,2,3,5,6,7,8,9,10,11,12],"designSha256":"68e9bd4ba421fd0e357fde6dac52ffb419a94ed2df5ffe559ad427a188c2d78d"},{"id":"dsh-sakura-chroma","category":"promotion","sourceCollection":"curated","slug":"dsh-sakura-chroma","name":"Sakura Chroma","localizedNames":{"en":"Sakura Chroma","zh":"复古彩带"},"variantLabel":"DSH","description":"复古彩带 · Sakura Chroma","previewTitle":"Sakura Chroma","previewSubtitle":"12 editable layouts","titleFontFace":"Arial Narrow","bodyFontFace":"Arial","fonts":{"en":{"title":"Arial Narrow","body":"Arial"},"zh":{"title":"PingFang SC","body":"PingFang SC"},"fallbacks":{"en":{"title":"Arial","body":"Arial"},"zh":{"macOS":{"serif":"Songti SC","sans":"PingFang SC"},"Windows":{"serif":"SimSun","sans":"Microsoft YaHei"},"Linux":{"serif":"Noto Serif CJK SC","sans":"Noto Sans CJK SC"}}},"upstreamTitle":"Big Shoulders Display"},"previewLanguage":"en","palette":{"background":"F1E6CB","text":"3A2516","accent":"E54489","surface":"E5D6B0","secondary":"F09131","muted":"F09131"},"referenceDirectory":"promotion/dsh-sakura-chroma","referenceWidth":1280,"referenceHeight":720,"referencePageCount":12,"representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"previewSlides":[4,1,2,3,5,6,7,8,9,10,11,12],"designSha256":"d7c016705408503dc01fb0ed3f3f573c4eeb8561f49b10982d01f9cbe864a916"},{"id":"dsh-signal","category":"consulting","sourceCollection":"curated","slug":"dsh-signal","name":"Signal","localizedNames":{"en":"Signal","zh":"深蓝决策"},"variantLabel":"DSH","description":"深蓝决策 · Signal","previewTitle":"Signal","previewSubtitle":"12 editable layouts","titleFontFace":"Georgia","bodyFontFace":"Arial","fonts":{"en":{"title":"Georgia","body":"Arial"},"zh":{"title":"Songti SC","body":"PingFang SC"},"fallbacks":{"en":{"title":"Georgia","body":"Arial"},"zh":{"macOS":{"serif":"Songti SC","sans":"PingFang SC"},"Windows":{"serif":"SimSun","sans":"Microsoft YaHei"},"Linux":{"serif":"Noto Serif CJK SC","sans":"Noto Sans CJK SC"}}},"upstreamTitle":"Source Serif 4"},"previewLanguage":"en","palette":{"background":"1C2644","text":"E2DCD0","accent":"C8A870","surface":"232F55","secondary":"8A96A8","muted":"8A96A8"},"referenceDirectory":"consulting/dsh-signal","referenceWidth":1280,"referenceHeight":720,"referencePageCount":12,"representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"previewSlides":[4,1,2,3,5,6,7,8,9,10,11,12],"designSha256":"5dcc0f63b888403fded3f333223cfd66bb6ad15437eaaee529757aabddceb5c7"},{"id":"dsh-soft-editorial","category":"editorial","sourceCollection":"curated","slug":"dsh-soft-editorial","name":"Soft Editorial","localizedNames":{"en":"Soft Editorial","zh":"柔和编辑部"},"variantLabel":"DSH","description":"柔和编辑部 · Soft Editorial","previewTitle":"Soft Editorial","previewSubtitle":"12 editable layouts","titleFontFace":"Georgia","bodyFontFace":"Arial","fonts":{"en":{"title":"Georgia","body":"Arial"},"zh":{"title":"Songti SC","body":"PingFang SC"},"fallbacks":{"en":{"title":"Georgia","body":"Arial"},"zh":{"macOS":{"serif":"Songti SC","sans":"PingFang SC"},"Windows":{"serif":"SimSun","sans":"Microsoft YaHei"},"Linux":{"serif":"Noto Serif CJK SC","sans":"Noto Sans CJK SC"}}},"upstreamTitle":"Cormorant Garamond"},"previewLanguage":"en","palette":{"background":"F2EEDF","text":"2A241B","accent":"E1A4C2","surface":"D6DD63","secondary":"E8C9B6","muted":"E8C9B6"},"referenceDirectory":"editorial/dsh-soft-editorial","referenceWidth":1280,"referenceHeight":720,"referencePageCount":12,"representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"previewSlides":[4,1,2,3,5,6,7,8,9,10,11,12],"designSha256":"3fbfacdbe3ce6ab7e1a1820ab4fc9ac43cb0e5f47961f05a6e91439bae6accf1"},{"id":"dsh-work-curated-modular-logistics-system","category":"work","sourceCollection":"curated","slug":"modular-logistics-system","name":"Modular Logistics System","variantLabel":"DSH","description":"原创模块化物流经营模板,适合跨境履约、供应链、市场进入、能力建设与管理层行动汇报。","previewTitle":"Modular Logistics System","previewSubtitle":"12 editable layouts","titleFontFace":"Hiragino Sans GB","bodyFontFace":"Hiragino Sans GB","palette":{"background":"F2F2EE","surface":"FFFFFF","text":"202224","muted":"60666A","accent":"FFD400","secondary":"AEB4B5"},"referenceDirectory":"work/curated-modular-logistics-system","representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"referenceWidth":1280,"referenceHeight":7272,"referencePageCount":12,"previewSlides":[10,1,2,3,4,5,6,7,8,9,11,12],"designSha256":"e1d6adb1641f6635493e5ec7d05642e875a4503e3910b50a0e28cf1cc372065b","referenceSha256":"fe28b9d6bd7bf1bb5eba0745866109e0f90bbbcf85836f7b68978a5f69e84d6a","localizedNames":{"en":"Modular Logistics System","zh":"Modular Logistics System"},"previewLanguage":"en","fonts":{"en":{"title":"Arial","body":"Arial"},"zh":{"title":"PingFang SC","body":"PingFang SC"},"fallbacks":{"zh":{"macOS":{"title":"PingFang SC","body":"PingFang SC"},"Windows":{"title":"Microsoft YaHei","body":"Microsoft YaHei"},"Linux":{"title":"Noto Sans CJK SC","body":"Noto Sans CJK SC"}}}}},{"id":"dsh-work-curated-nordic-operating-report","category":"work","sourceCollection":"curated","slug":"nordic-operating-report","name":"Nordic Operating Report","variantLabel":"DSH","description":"原创北欧年度经营报告模板,适合管理层经营复盘、国际扩张、跨境履约、市场进入、能力建设与行动计划。","previewTitle":"Nordic Operating Report","previewSubtitle":"12 editable layouts","titleFontFace":"HarmonyOS Sans SC","bodyFontFace":"HarmonyOS Sans SC","palette":{"background":"F3F0EA","surface":"FFFFFF","text":"0B2A3A","muted":"657882","accent":"42C7E7","secondary":"E8B8A8"},"referenceDirectory":"work/curated-nordic-operating-report","representativeSlides":[1,2,3,4,5,6,7,8,9,10,11,12],"referenceWidth":1280,"referenceHeight":7272,"referencePageCount":12,"previewSlides":[10,1,2,3,4,5,6,7,8,9,11,12],"designSha256":"6d9f24f36bc6bcba30bff7596c7150843175ca725222a940805cf64de81b29cd","referenceSha256":"346e50c15beb8fe78f50e2ec5eae228e04599d2b85bf5dc5c3bb44bb696f9b55","localizedNames":{"en":"Nordic Operating Report","zh":"Nordic Operating Report"},"previewLanguage":"en","fonts":{"en":{"title":"Arial","body":"Arial"},"zh":{"title":"PingFang SC","body":"PingFang SC"},"fallbacks":{"zh":{"macOS":{"title":"PingFang SC","body":"PingFang SC"},"Windows":{"title":"Microsoft YaHei","body":"Microsoft YaHei"},"Linux":{"title":"Noto Sans CJK SC","body":"Noto Sans CJK SC"}}}}}];
3
+ export const semantics = {"dsh-course-workshop":{"palette":{"background":"F7F4EB","surface":"E5EBDD","text":"243F35","muted":"70766B","accent":"447A62","secondary":"E5EBDD"},"source":{"fileName":"dsh-course-workshop-reference.jpg","sha256":"ba78a07b9a899bab3db404755f9a1dcd3bdd0c8010f41387d4bffbb9841b2f96","slideCount":12,"averageTextBlocks":17,"averageCharacters":299,"visualGrammar":"editorial","recommendedDensity":"medium","designSummary":"# 课程培训 · Course Workshop\n\n固定学习目标边栏、概念图、实例与自测;用于培训、课程和工作坊。\n\n## 使用规则\n\n16:9,960×540 点。正文使用 Arial 并由系统回退中文字体;编辑部大标题可用 Georgia,缺失时回退衬线字体。只引用字体名称,不分发字体文件。背景 #F7F4EB,正文 #243F35,强调 #447A62。单页突出一个判断;超出文本容量时拆页,不缩小字号。保持边距 48 点、清晰层次及页脚。图表、表格、关系图均使用可编辑元素。\n\n## 版式\n\n1. 课程封面\n2. 学习目标\n3. 概念结构\n4. 实例讲解\n5. 限时练习\n6. 选择自测\n7. 学习复盘\n8. 课程总结\n\n## 来源\n\n视觉方向参考 html-anything 的 deck-course-module(Apache-2.0,固定提交 c31204544230578ac814026fecc153c6e36587ae)。本文件、PPTD 页面、示例内容和预览为 DSH 的适配和新增;保留上游许可和署名。 示例句和示例数字均为自编,不代表事实结论。\n\n## Bilingual typography\n\nEnglish previews: source/. Chinese examples: source-zh/. English title/body: Arial / Arial. Chinese macOS: PingFang SC / PingFang SC; Windows: Microsoft YaHei / Microsoft YaHei; Linux: Noto Sans CJK SC / Noto Sans CJK SC. Font names only, no binaries. Use the user's requested output language, independently of the preview language. Reflow long translations; do not reduce text below readable size.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. 课程封面 — 课程封面;以可编辑文本和矢量形状组织信息。\n2. From guided practice to independent work — Asymmetric argument with three supporting evidence rows\n3. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n4. Give each moment a distinct purpose — Three schematic frames with distinct content and intent\n5. Define what independent work looks like — Three criteria across three levels of observable competence\n6. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n7. Locate the friction along the journey — Four stages aligned across actions and independent outcome measures\n8. Design the test before reading the result — One hypothesis with comparison, measure and a predeclared decision rule\n9. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n10. Show how the judgment develops — Alternating milestone notes around a continuous argument timeline\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. 课程总结 — 课程总结;以可编辑文本和矢量形状组织信息。\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":7,"averageMediaFrames":0},{"family":"insights","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":20,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":17,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"table","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":22,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":21,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":16,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":18,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":19,"averageMediaFrames":0},{"family":"closing","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":6,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"课程封面","family":"cover","titlePosition":"left","bodyColumns":1,"density":"medium","features":["statement"],"recommendedRoles":["cover"],"structureSummary":"课程封面;以可编辑文本和矢量形状组织信息。","zones":[{"kind":"text","x":64,"y":32,"width":933.3333333333334,"height":24,"textRole":"body","fontSize":10,"textCapacity":70},{"kind":"title","x":64,"y":90.66666666666667,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":31,"textCapacity":27},{"kind":"text","x":64,"y":673.3333333333334,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1146.6666666666667,"y":672,"width":64,"height":24,"textRole":"body","fontSize":11,"textCapacity":4},{"kind":"title","x":64,"y":229.33333333333334,"width":840,"height":229.33333333333334,"textRole":"title","fontSize":64,"textCapacity":18},{"kind":"shape","x":954.6666666666666,"y":229.33333333333334,"width":261.3333333333333,"height":306.6666666666667,"shape":"rect","fill":"E5EBDD"},{"kind":"text","x":986.6666666666666,"y":274.6666666666667,"width":202.66666666666666,"height":209.33333333333334,"textRole":"body","fontSize":25,"textCapacity":30},{"kind":"text","x":69.33333333333333,"y":518.6666666666666,"width":826.6666666666666,"height":56,"textRole":"body","fontSize":19,"textCapacity":32}],"jsxReference":""},{"slideNumber":2,"sourceTitle":"From guided practice to independent work","family":"insights","titlePosition":"left","bodyColumns":2,"density":"medium","features":["thesis"],"recommendedRoles":["insights"],"structureSummary":"Asymmetric argument with three supporting evidence rows","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":218.66666666666666,"width":464,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":26},{"kind":"title","x":64,"y":276,"width":442.6666666666667,"height":236,"textRole":"title","fontSize":30,"textCapacity":55},{"kind":"text","x":64,"y":560,"width":440,"height":57.333333333333336,"textRole":"body","fontSize":17,"textCapacity":38},{"kind":"text","x":588,"y":222.66666666666666,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":226.66666666666666,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":234.66666666666666,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":281.3333333333333,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":348,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":352,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":360,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":406.6666666666667,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":473.3333333333333,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":477.3333333333333,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":485.3333333333333,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":532,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Trace the question to testable branches","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["tree"],"recommendedRoles":["process"],"structureSummary":"Three-branch hypothesis tree with six testable leaves","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":64,"y":362.6666666666667,"width":292,"height":140,"shape":"rect","fill":"447A62"},{"kind":"text","x":80,"y":380,"width":260,"height":114.66666666666667,"textRole":"body","fontSize":18,"textCapacity":40},{"kind":"shape","x":466.6666666666667,"y":245.33333333333334,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"E5EBDD"},{"kind":"text","x":482.6666666666667,"y":262.6666666666667,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":236,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":292,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":376,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"E5EBDD"},{"kind":"text","x":482.6666666666667,"y":393.3333333333333,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":366.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":422.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":506.6666666666667,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"E5EBDD"},{"kind":"text","x":482.6666666666667,"y":524,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":497.3333333333333,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":553.3333333333334,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Give each moment a distinct purpose","family":"grid","titlePosition":"left","bodyColumns":3,"density":"high","features":["storyboard"],"recommendedRoles":["grid"],"structureSummary":"Three schematic frames with distinct content and intent","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":64,"y":228,"width":360,"height":200,"shape":"rect","fill":"E5EBDD"},{"kind":"shape","x":112,"y":337.3333333333333,"width":117.33333333333333,"height":41.333333333333336,"shape":"rect","fill":"181915"},{"kind":"text","x":64,"y":449.3333333333333,"width":346.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"text","x":64,"y":501.3333333333333,"width":350.6666666666667,"height":105.33333333333333,"textRole":"body","fontSize":26,"textCapacity":20},{"kind":"shape","x":456,"y":228,"width":360,"height":200,"shape":"rect","fill":"447A62"},{"kind":"shape","x":582.6666666666666,"y":266.6666666666667,"width":104,"height":104,"shape":"ellipse","fill":"F8F6EE"},{"kind":"title","x":604,"y":285.3333333333333,"width":69.33333333333333,"height":77.33333333333333,"textRole":"title","fontSize":33,"textCapacity":1},{"kind":"text","x":456,"y":449.3333333333333,"width":346.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"text","x":456,"y":501.3333333333333,"width":350.6666666666667,"height":105.33333333333333,"textRole":"body","fontSize":26,"textCapacity":20},{"kind":"shape","x":848,"y":228,"width":360,"height":200,"shape":"rect","fill":"E5EBDD"},{"kind":"shape","x":896,"y":262.6666666666667,"width":16,"height":16,"shape":"ellipse","fill":"181915"},{"kind":"shape","x":896,"y":312,"width":16,"height":16,"shape":"ellipse","fill":"181915"},{"kind":"shape","x":896,"y":361.3333333333333,"width":16,"height":16,"shape":"ellipse","fill":"181915"},{"kind":"text","x":848,"y":449.3333333333333,"width":346.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"text","x":848,"y":501.3333333333333,"width":350.6666666666667,"height":105.33333333333333,"textRole":"body","fontSize":26,"textCapacity":20},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":5,"sourceTitle":"Define what independent work looks like","family":"table","titlePosition":"left","bodyColumns":2,"density":"high","features":["rubric"],"recommendedRoles":["table"],"structureSummary":"Three criteria across three levels of observable competence","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":914.6666666666666,"y":220,"width":301.3333333333333,"height":376,"shape":"rect","fill":"E5EBDD"},{"kind":"text","x":64,"y":233.33333333333334,"width":269.3333333333333,"height":48,"textRole":"body","fontSize":13,"textCapacity":30},{"kind":"text","x":360,"y":233.33333333333334,"width":256,"height":48,"textRole":"body","fontSize":13,"textCapacity":28},{"kind":"text","x":644,"y":233.33333333333334,"width":257.3333333333333,"height":48,"textRole":"body","fontSize":13,"textCapacity":28},{"kind":"text","x":930.6666666666666,"y":233.33333333333334,"width":285.3333333333333,"height":48,"textRole":"body","fontSize":13,"textCapacity":32},{"kind":"text","x":64,"y":322.6666666666667,"width":258.6666666666667,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":360,"y":322.6666666666667,"width":245.33333333333334,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":644,"y":322.6666666666667,"width":246.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":930.6666666666666,"y":322.6666666666667,"width":274.6666666666667,"height":76,"textRole":"body","fontSize":18,"textCapacity":22},{"kind":"text","x":64,"y":414.6666666666667,"width":258.6666666666667,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":360,"y":414.6666666666667,"width":245.33333333333334,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":644,"y":414.6666666666667,"width":246.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":930.6666666666666,"y":414.6666666666667,"width":274.6666666666667,"height":76,"textRole":"body","fontSize":18,"textCapacity":22},{"kind":"text","x":64,"y":506.6666666666667,"width":258.6666666666667,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":360,"y":506.6666666666667,"width":245.33333333333334,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":644,"y":506.6666666666667,"width":246.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":930.6666666666666,"y":506.6666666666667,"width":274.6666666666667,"height":76,"textRole":"body","fontSize":18,"textCapacity":22},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":6,"sourceTitle":"Read the trend and investigate the pause","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["trend"],"recommendedRoles":["data"],"structureSummary":"Labeled six-point trend with common scale and a separate interpretation","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":437.3333333333333,"y":253.33333333333334,"width":121.33333333333333,"height":314.6666666666667,"shape":"rect","fill":"e5e8dd"},{"kind":"text","x":64,"y":554.6666666666666,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":480,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":405.3333333333333,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":330.6666666666667,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":256,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"shape","x":134.4,"y":462.18666666666667,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"243F35"},{"kind":"text","x":108,"y":426.4533333333333,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":117.33333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":265.06666666666666,"y":438.29333333333335,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"243F35"},{"kind":"text","x":238.66666666666666,"y":402.56,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":248,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":395.73333333333335,"y":381.5466666666667,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"243F35"},{"kind":"text","x":369.3333333333333,"y":345.81333333333333,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":378.6666666666667,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":524,"y":385.12000000000006,"width":13.333333333333334,"height":13.333333333333334,"shape":"ellipse","fill":"447A62"},{"kind":"text","x":500,"y":351.7866666666667,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":509.3333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":657.0666666666667,"y":336.74666666666667,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"243F35"},{"kind":"text","x":630.6666666666666,"y":301.0133333333333,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":640,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":787.7333333333332,"y":300.9066666666667,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"243F35"},{"kind":"text","x":761.3333333333334,"y":265.17333333333335,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":770.6666666666666,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"text","x":365.3333333333333,"y":248,"width":206.66666666666666,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":11},{"kind":"text","x":905.3333333333334,"y":217.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":269.3333333333333,"width":310.6666666666667,"height":104,"textRole":"title","fontSize":56,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":381.3333333333333,"width":305.3333333333333,"height":73.33333333333333,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":492,"width":305.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":10,"textCapacity":44},{"kind":"text","x":905.3333333333334,"y":538.6666666666666,"width":305.3333333333333,"height":66.66666666666667,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":7,"sourceTitle":"Locate the friction along the journey","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["journey"],"recommendedRoles":["process"],"structureSummary":"Four stages aligned across actions and independent outcome measures","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":250.66666666666666,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"text","x":64,"y":376,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"text","x":64,"y":501.3333333333333,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"shape","x":244,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"E5EBDD"},{"kind":"text","x":260,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":244,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":244,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":488,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"447A62"},{"kind":"text","x":504,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":488,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":488,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":732,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"E5EBDD"},{"kind":"text","x":748,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":732,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":732,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":976,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"E5EBDD"},{"kind":"text","x":992,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":976,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":976,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":8,"sourceTitle":"Design the test before reading the result","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["experiment"],"recommendedRoles":["comparison"],"structureSummary":"One hypothesis with comparison, measure and a predeclared decision rule","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"title","x":64,"y":232,"width":366.6666666666667,"height":138.66666666666666,"textRole":"title","fontSize":32,"textCapacity":16},{"kind":"text","x":64,"y":441.3333333333333,"width":370.6666666666667,"height":156,"textRole":"body","fontSize":21,"textCapacity":65},{"kind":"text","x":536,"y":236,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":236,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":330.6666666666667,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":330.6666666666667,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":425.3333333333333,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":425.3333333333333,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":520,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":520,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"A small intervention, a measurable change","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["case"],"recommendedRoles":["comparison"],"structureSummary":"Intervention narrative beside paired before and after comparisons","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":224,"width":386.6666666666667,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":24},{"kind":"title","x":64,"y":289.3333333333333,"width":384,"height":161.33333333333334,"textRole":"title","fontSize":34,"textCapacity":24},{"kind":"text","x":64,"y":492,"width":374.6666666666667,"height":104,"textRole":"body","fontSize":20,"textCapacity":42},{"kind":"text","x":552,"y":232,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":300,"width":181.44000000000003,"height":26.666666666666668,"shape":"rect","fill":"b8beb4"},{"kind":"shape","x":553.3333333333334,"y":340,"width":328.32,"height":26.666666666666668,"shape":"rect","fill":"447A62"},{"kind":"text","x":1005.3333333333334,"y":305.3333333333333,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":552,"y":421.3333333333333,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":489.3333333333333,"width":345.59999999999997,"height":26.666666666666668,"shape":"rect","fill":"b8beb4"},{"kind":"shape","x":553.3333333333334,"y":529.3333333333334,"width":129.6,"height":26.666666666666668,"shape":"rect","fill":"447A62"},{"kind":"text","x":1005.3333333333334,"y":494.6666666666667,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":10,"sourceTitle":"Show how the judgment develops","family":"process","titlePosition":"left","bodyColumns":2,"density":"medium","features":["timeline"],"recommendedRoles":["process"],"structureSummary":"Alternating milestone notes around a continuous argument timeline","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":117.33333333333333,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"447A62"},{"kind":"text","x":142.66666666666666,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":104,"y":236,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":104,"y":298.6666666666667,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"shape","x":402.6666666666667,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"447A62"},{"kind":"text","x":428,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":389.3333333333333,"y":440,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":389.3333333333333,"y":520,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"shape","x":688,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"447A62"},{"kind":"text","x":713.3333333333334,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":674.6666666666666,"y":236,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":674.6666666666666,"y":298.6666666666667,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"shape","x":973.3333333333334,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"447A62"},{"kind":"text","x":998.6666666666666,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":960,"y":440,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":960,"y":520,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Sequence the work around a decision gate","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["roadmap"],"recommendedRoles":["process"],"structureSummary":"Four timed workstreams and a decision gate","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":324,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":22},{"kind":"text","x":421.3333333333333,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":617.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":813.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":1009.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":64,"y":273.3333333333333,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":313.3333333333333,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":406.6666666666667,"y":289.3333333333333,"width":176.4,"height":29.333333333333332,"shape":"rect","fill":"bec3ba"},{"kind":"shape","x":579.0666666666667,"y":300,"width":8,"height":8,"shape":"ellipse","fill":"839087"},{"kind":"text","x":64,"y":354.6666666666667,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":394.6666666666667,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":543.8666666666667,"y":370.6666666666667,"width":254.79999999999998,"height":29.333333333333332,"shape":"rect","fill":"bec3ba"},{"kind":"shape","x":794.6666666666666,"y":381.3333333333333,"width":8,"height":8,"shape":"ellipse","fill":"839087"},{"kind":"text","x":64,"y":436,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":476,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":759.4666666666667,"y":452,"width":215.60000000000002,"height":29.333333333333332,"shape":"rect","fill":"243F35"},{"kind":"shape","x":971.0666666666667,"y":462.6666666666667,"width":8,"height":8,"shape":"ellipse","fill":"243F35"},{"kind":"text","x":64,"y":517.3333333333334,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":557.3333333333334,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":955.4666666666666,"y":533.3333333333334,"width":235.20000000000002,"height":29.333333333333332,"shape":"rect","fill":"bec3ba"},{"kind":"shape","x":1186.6666666666665,"y":544,"width":8,"height":8,"shape":"ellipse","fill":"839087"},{"kind":"shape","x":949.3333333333334,"y":592,"width":10.666666666666666,"height":10.666666666666666,"shape":"ellipse","fill":"447A62"},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"课程总结","family":"closing","titlePosition":"left","bodyColumns":1,"density":"medium","features":["statement"],"recommendedRoles":["closing"],"structureSummary":"课程总结;以可编辑文本和矢量形状组织信息。","zones":[{"kind":"text","x":64,"y":32,"width":933.3333333333334,"height":24,"textRole":"body","fontSize":10,"textCapacity":70},{"kind":"title","x":64,"y":90.66666666666667,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":31,"textCapacity":27},{"kind":"text","x":64,"y":673.3333333333334,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1146.6666666666667,"y":672,"width":64,"height":24,"textRole":"body","fontSize":11,"textCapacity":4},{"kind":"title","x":64,"y":213.33333333333334,"width":866.6666666666666,"height":314.6666666666667,"textRole":"title","fontSize":42,"textCapacity":60},{"kind":"shape","x":952,"y":224,"width":264,"height":338.6666666666667,"shape":"rect","fill":"E5EBDD"},{"kind":"text","x":981.3333333333334,"y":281.3333333333333,"width":202.66666666666666,"height":213.33333333333334,"textRole":"body","fontSize":27,"textCapacity":20}],"jsxReference":""}]}},"dsh-monochrome":{"palette":{"background":"FAFADF","text":"1A1A16","accent":"1A1A16","surface":"F2F2D2","secondary":"5E5E54","muted":"5E5E54"},"source":{"fileName":"monochrome-reference.jpg","sha256":"5e666eb67968f37520cb9c8848691c53b185c90ab5d7be4134c382678bea7ac6","slideCount":12,"averageTextBlocks":18,"averageCharacters":315,"visualGrammar":"monochrome","recommendedDensity":"medium","designSummary":"# Monochrome / 极简研究\n\nAdapted from Zara Zhang's Monochrome, commit e5e204fb1f3b06290846e7dcd7aceddabeceec8c. MIT. This native edition rebuilds twelve editable layouts; it is not an HTML import or an exact copy of every upstream slide.\n\n## Typography\n\nEnglish display: Helvetica Neue; English body: Arial. These portable Office substitutions replace the upstream display face Jost. Chinese display: PingFang SC; body: PingFang SC. On Windows use Microsoft YaHei / Microsoft YaHei; on Linux use Noto Sans CJK SC / Noto Sans CJK SC. No font binary is distributed. Keep the serif/sans distinction.\n\nEnglish previews use source/. Chinese examples use source-zh/. Preview language does not select the language of the user's output. Choose the matching fonts for the actual content; reflow longer translations instead of shrinking titles.\n\n## Layout grammar\n\n A literary editorial system rendered in black ink on cream paper. Ultra-light geometric sans (Jost at weight 200–300) carries every headline; Lora italic serif handles quote text and insight-card titles; JetBrains Mono provides the structural chrome. There are no chromatic accents — every color in the palette is a graphite or cream tone, and \"accent\" simply means \"darker ink.\" The aesthetic borrows from independent research reports, scholarly monographs, and the quietest end of contemporary editorial design — closer to a printed journal than a tech presentation.\n\n1. Cover (cover)\n2. Agenda (agenda)\n3. Insights (insights)\n4. Metrics (data)\n5. Comparison chart (data)\n6. Process (process)\n7. Before and after (comparison)\n8. Closing (closing)\n\nAll charts and diagrams are native editable vectors. Example figures are illustrative, not reported facts. Retain a 48 pt outer margin and use 16:9, 960 × 540 pt.\n\nCopyright (c) 2026 Zara Zhang. DSH adaptation 2026-09-06. See licenses/zara/LICENSE and the pinned source design specification.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. Cover — Cover\n2. Understand the moments that matter — Asymmetric argument with three supporting evidence rows\n3. Separate the record from the explanation — Interview excerpt, observation, competing explanation and next check\n4. Locate the friction along the journey — Four stages aligned across actions and independent outcome measures\n5. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n6. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n7. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n8. Design the test before reading the result — One hypothesis with comparison, measure and a predeclared decision rule\n9. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n10. Define what independent work looks like — Three criteria across three levels of observable competence\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. Closing — Closing\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":4,"averageMediaFrames":0},{"family":"insights","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":20,"averageMediaFrames":0},{"family":"quote","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":18,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":21,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":17,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":26,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":16,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"table","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":22,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":19,"averageMediaFrames":0},{"family":"closing","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":4,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"Cover","family":"cover","titlePosition":"left","bodyColumns":1,"density":"medium","features":["cover"],"recommendedRoles":["cover"],"structureSummary":"Cover","zones":[{"kind":"text","x":64,"y":46.666666666666664,"width":1133.3333333333333,"height":32,"textRole":"body","fontSize":11,"textCapacity":77},{"kind":"title","x":64,"y":324,"width":1133.3333333333333,"height":237.33333333333334,"textRole":"title","fontSize":65,"textCapacity":26},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":2,"sourceTitle":"Understand the moments that matter","family":"insights","titlePosition":"left","bodyColumns":2,"density":"medium","features":["thesis"],"recommendedRoles":["insights"],"structureSummary":"Asymmetric argument with three supporting evidence rows","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":218.66666666666666,"width":464,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":26},{"kind":"title","x":64,"y":276,"width":442.6666666666667,"height":236,"textRole":"title","fontSize":30,"textCapacity":55},{"kind":"text","x":64,"y":560,"width":440,"height":57.333333333333336,"textRole":"body","fontSize":17,"textCapacity":38},{"kind":"text","x":588,"y":222.66666666666666,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":226.66666666666666,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":234.66666666666666,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":281.3333333333333,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":348,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":352,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":360,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":406.6666666666667,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":473.3333333333333,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":477.3333333333333,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":485.3333333333333,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":532,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Separate the record from the explanation","family":"quote","titlePosition":"left","bodyColumns":2,"density":"high","features":["evidence"],"recommendedRoles":["quote"],"structureSummary":"Interview excerpt, observation, competing explanation and next check","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":64,"y":234.66666666666666,"width":369.3333333333333,"height":365.3333333333333,"shape":"rect","fill":"F2F2D2"},{"kind":"text","x":92,"y":253.33333333333334,"width":313.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":46},{"kind":"text","x":92,"y":317.3333333333333,"width":309.3333333333333,"height":173.33333333333334,"textRole":"body","fontSize":28,"textCapacity":32},{"kind":"text","x":92,"y":546.6666666666666,"width":312,"height":36,"textRole":"body","fontSize":12,"textCapacity":38},{"kind":"title","x":482.6666666666667,"y":221.33333333333334,"width":253.33333333333334,"height":90.66666666666667,"textRole":"title","fontSize":48,"textCapacity":3},{"kind":"text","x":740,"y":234.66666666666666,"width":462.6666666666667,"height":64,"textRole":"body","fontSize":22,"textCapacity":15},{"kind":"shape","x":485.3333333333333,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"1A1A16"},{"kind":"shape","x":514.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"1A1A16"},{"kind":"shape","x":544,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"1A1A16"},{"kind":"shape","x":573.3333333333334,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d2d2bb"},{"kind":"shape","x":602.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d2d2bb"},{"kind":"shape","x":632,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d2d2bb"},{"kind":"shape","x":661.3333333333334,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d2d2bb"},{"kind":"shape","x":690.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d2d2bb"},{"kind":"text","x":748,"y":317.3333333333333,"width":468,"height":33.333333333333336,"textRole":"body","fontSize":10,"textCapacity":70},{"kind":"text","x":482.6666666666667,"y":390.6666666666667,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":389.3333333333333,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":482.6666666666667,"y":466.6666666666667,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":465.3333333333333,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":482.6666666666667,"y":542.6666666666666,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":541.3333333333334,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Locate the friction along the journey","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["journey"],"recommendedRoles":["process"],"structureSummary":"Four stages aligned across actions and independent outcome measures","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":250.66666666666666,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"text","x":64,"y":376,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"text","x":64,"y":501.3333333333333,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"shape","x":244,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"F2F2D2"},{"kind":"text","x":260,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":244,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":244,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":488,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"1A1A16"},{"kind":"text","x":504,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":488,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":488,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":732,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"F2F2D2"},{"kind":"text","x":748,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":732,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":732,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":976,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"F2F2D2"},{"kind":"text","x":992,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":976,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":976,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":5,"sourceTitle":"Trace the question to testable branches","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["tree"],"recommendedRoles":["process"],"structureSummary":"Three-branch hypothesis tree with six testable leaves","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":64,"y":362.6666666666667,"width":292,"height":140,"shape":"rect","fill":"1A1A16"},{"kind":"text","x":80,"y":380,"width":260,"height":114.66666666666667,"textRole":"body","fontSize":18,"textCapacity":40},{"kind":"shape","x":466.6666666666667,"y":245.33333333333334,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"F2F2D2"},{"kind":"text","x":482.6666666666667,"y":262.6666666666667,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":236,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":292,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":376,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"F2F2D2"},{"kind":"text","x":482.6666666666667,"y":393.3333333333333,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":366.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":422.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":506.6666666666667,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"F2F2D2"},{"kind":"text","x":482.6666666666667,"y":524,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":497.3333333333333,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":553.3333333333334,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":6,"sourceTitle":"Read the trend and investigate the pause","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["trend"],"recommendedRoles":["data"],"structureSummary":"Labeled six-point trend with common scale and a separate interpretation","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":437.3333333333333,"y":253.33333333333334,"width":121.33333333333333,"height":314.6666666666667,"shape":"rect","fill":"e4e4cb"},{"kind":"text","x":64,"y":554.6666666666666,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":480,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":405.3333333333333,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":330.6666666666667,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":256,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"shape","x":134.4,"y":377.06666666666666,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"1A1A16"},{"kind":"text","x":108,"y":341.3333333333333,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":117.33333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":265.06666666666666,"y":362.13333333333327,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"1A1A16"},{"kind":"text","x":238.66666666666666,"y":326.3999999999999,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":248,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":395.73333333333335,"y":350.93333333333334,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"1A1A16"},{"kind":"text","x":369.3333333333333,"y":315.2,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":378.6666666666667,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":524,"y":352.2666666666667,"width":13.333333333333334,"height":13.333333333333334,"shape":"ellipse","fill":"1A1A16"},{"kind":"text","x":500,"y":318.9333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":509.3333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":657.0666666666667,"y":324.8,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"1A1A16"},{"kind":"text","x":630.6666666666666,"y":289.06666666666666,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":640,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":787.7333333333332,"y":298.6666666666667,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"1A1A16"},{"kind":"text","x":761.3333333333334,"y":262.93333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":770.6666666666666,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"text","x":365.3333333333333,"y":248,"width":206.66666666666666,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":11},{"kind":"text","x":905.3333333333334,"y":217.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":269.3333333333333,"width":310.6666666666667,"height":104,"textRole":"title","fontSize":56,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":381.3333333333333,"width":305.3333333333333,"height":73.33333333333333,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":492,"width":305.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":10,"textCapacity":44},{"kind":"text","x":905.3333333333334,"y":538.6666666666666,"width":305.3333333333333,"height":66.66666666666667,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":7,"sourceTitle":"Choose the next move with evidence","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["matrix"],"recommendedRoles":["comparison"],"structureSummary":"Two-axis decision map with direct labels and a recommended next step","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":118.66666666666667,"y":245.33333333333334,"width":662.6666666666666,"height":336,"shape":"rect","fill":"f2f2d8"},{"kind":"shape","x":450.6666666666667,"y":245.33333333333334,"width":330.6666666666667,"height":168,"shape":"rect","fill":"cdcdb7"},{"kind":"text","x":137.33333333333334,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":137.33333333333334,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"shape","x":236,"y":345.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"8e8e7f"},{"kind":"text","x":269.3333333333333,"y":338.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":557.3333333333334,"y":322.6666666666667,"width":34.666666666666664,"height":34.666666666666664,"shape":"ellipse","fill":"1A1A16"},{"kind":"text","x":598.6666666666666,"y":324,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":500,"y":376,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"8e8e7f"},{"kind":"text","x":533.3333333333334,"y":369.3333333333333,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":293.3333333333333,"y":462.6666666666667,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"8e8e7f"},{"kind":"text","x":326.6666666666667,"y":456,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":634.6666666666666,"y":473.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"8e8e7f"},{"kind":"text","x":668,"y":466.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"text","x":118.66666666666667,"y":589.3333333333334,"width":317.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":469.3333333333333,"y":589.3333333333334,"width":312,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":842.6666666666666,"y":230.66666666666666,"width":373.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":21},{"kind":"title","x":842.6666666666666,"y":286.6666666666667,"width":373.3333333333333,"height":82.66666666666667,"textRole":"title","fontSize":32,"textCapacity":8},{"kind":"text","x":842.6666666666666,"y":414.6666666666667,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":414.6666666666667,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":476,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":476,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":537.3333333333334,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":537.3333333333334,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":8,"sourceTitle":"Design the test before reading the result","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["experiment"],"recommendedRoles":["comparison"],"structureSummary":"One hypothesis with comparison, measure and a predeclared decision rule","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"title","x":64,"y":232,"width":366.6666666666667,"height":138.66666666666666,"textRole":"title","fontSize":32,"textCapacity":16},{"kind":"text","x":64,"y":441.3333333333333,"width":370.6666666666667,"height":156,"textRole":"body","fontSize":21,"textCapacity":65},{"kind":"text","x":536,"y":236,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":236,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":330.6666666666667,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":330.6666666666667,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":425.3333333333333,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":425.3333333333333,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":520,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":520,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"A small intervention, a measurable change","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["case"],"recommendedRoles":["comparison"],"structureSummary":"Intervention narrative beside paired before and after comparisons","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":224,"width":386.6666666666667,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":24},{"kind":"title","x":64,"y":289.3333333333333,"width":384,"height":161.33333333333334,"textRole":"title","fontSize":34,"textCapacity":24},{"kind":"text","x":64,"y":492,"width":374.6666666666667,"height":104,"textRole":"body","fontSize":20,"textCapacity":42},{"kind":"text","x":552,"y":232,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":300,"width":388.8,"height":26.666666666666668,"shape":"rect","fill":"b7b7a3"},{"kind":"shape","x":553.3333333333334,"y":340,"width":151.20000000000002,"height":26.666666666666668,"shape":"rect","fill":"1A1A16"},{"kind":"text","x":1005.3333333333334,"y":305.3333333333333,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":552,"y":421.3333333333333,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":489.3333333333333,"width":198.72,"height":26.666666666666668,"shape":"rect","fill":"b7b7a3"},{"kind":"shape","x":553.3333333333334,"y":529.3333333333334,"width":315.36,"height":26.666666666666668,"shape":"rect","fill":"1A1A16"},{"kind":"text","x":1005.3333333333334,"y":494.6666666666667,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":10,"sourceTitle":"Define what independent work looks like","family":"table","titlePosition":"left","bodyColumns":2,"density":"high","features":["rubric"],"recommendedRoles":["table"],"structureSummary":"Three criteria across three levels of observable competence","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":914.6666666666666,"y":220,"width":301.3333333333333,"height":376,"shape":"rect","fill":"F2F2D2"},{"kind":"text","x":64,"y":233.33333333333334,"width":269.3333333333333,"height":48,"textRole":"body","fontSize":13,"textCapacity":30},{"kind":"text","x":360,"y":233.33333333333334,"width":256,"height":48,"textRole":"body","fontSize":13,"textCapacity":28},{"kind":"text","x":644,"y":233.33333333333334,"width":257.3333333333333,"height":48,"textRole":"body","fontSize":13,"textCapacity":28},{"kind":"text","x":930.6666666666666,"y":233.33333333333334,"width":285.3333333333333,"height":48,"textRole":"body","fontSize":13,"textCapacity":32},{"kind":"text","x":64,"y":322.6666666666667,"width":258.6666666666667,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":360,"y":322.6666666666667,"width":245.33333333333334,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":644,"y":322.6666666666667,"width":246.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":930.6666666666666,"y":322.6666666666667,"width":274.6666666666667,"height":76,"textRole":"body","fontSize":18,"textCapacity":22},{"kind":"text","x":64,"y":414.6666666666667,"width":258.6666666666667,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":360,"y":414.6666666666667,"width":245.33333333333334,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":644,"y":414.6666666666667,"width":246.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":930.6666666666666,"y":414.6666666666667,"width":274.6666666666667,"height":76,"textRole":"body","fontSize":18,"textCapacity":22},{"kind":"text","x":64,"y":506.6666666666667,"width":258.6666666666667,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":360,"y":506.6666666666667,"width":245.33333333333334,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":644,"y":506.6666666666667,"width":246.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":930.6666666666666,"y":506.6666666666667,"width":274.6666666666667,"height":76,"textRole":"body","fontSize":18,"textCapacity":22},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Sequence the work around a decision gate","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["roadmap"],"recommendedRoles":["process"],"structureSummary":"Four timed workstreams and a decision gate","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":324,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":22},{"kind":"text","x":421.3333333333333,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":617.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":813.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":1009.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":64,"y":273.3333333333333,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":313.3333333333333,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":406.6666666666667,"y":289.3333333333333,"width":176.4,"height":29.333333333333332,"shape":"rect","fill":"bebea9"},{"kind":"shape","x":579.0666666666667,"y":300,"width":8,"height":8,"shape":"ellipse","fill":"7f7f70"},{"kind":"text","x":64,"y":354.6666666666667,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":394.6666666666667,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":543.8666666666667,"y":370.6666666666667,"width":254.79999999999998,"height":29.333333333333332,"shape":"rect","fill":"bebea9"},{"kind":"shape","x":794.6666666666666,"y":381.3333333333333,"width":8,"height":8,"shape":"ellipse","fill":"7f7f70"},{"kind":"text","x":64,"y":436,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":476,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":759.4666666666667,"y":452,"width":215.60000000000002,"height":29.333333333333332,"shape":"rect","fill":"1A1A16"},{"kind":"shape","x":971.0666666666667,"y":462.6666666666667,"width":8,"height":8,"shape":"ellipse","fill":"1A1A16"},{"kind":"text","x":64,"y":517.3333333333334,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":557.3333333333334,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":955.4666666666666,"y":533.3333333333334,"width":235.20000000000002,"height":29.333333333333332,"shape":"rect","fill":"bebea9"},{"kind":"shape","x":1186.6666666666665,"y":544,"width":8,"height":8,"shape":"ellipse","fill":"7f7f70"},{"kind":"shape","x":949.3333333333334,"y":592,"width":10.666666666666666,"height":10.666666666666666,"shape":"ellipse","fill":"1A1A16"},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"Closing","family":"closing","titlePosition":"left","bodyColumns":1,"density":"medium","features":["closing"],"recommendedRoles":["closing"],"structureSummary":"Closing","zones":[{"kind":"text","x":64,"y":105.33333333333333,"width":1133.3333333333333,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"title","x":64,"y":245.33333333333334,"width":1146.6666666666667,"height":262.6666666666667,"textRole":"title","fontSize":55,"textCapacity":45},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""}]}},"dsh-blue-professional":{"palette":{"background":"FDFAE7","text":"111111","accent":"1E2BFA","surface":"E9E8E0","secondary":"6B6B6B","muted":"6B6B6B"},"source":{"fileName":"blue-professional-reference.jpg","sha256":"6a3cd54d80ab1993aacd53d43299ee68ec744fd70ecfe63e22833ffbe2802476","slideCount":12,"averageTextBlocks":18,"averageCharacters":275,"visualGrammar":"blue-professional","recommendedDensity":"medium","designSummary":"# Blue Professional / 蓝色商务\n\nAdapted from Zara Zhang's Blue Professional, 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; English body: Arial. These portable Office substitutions replace the upstream display face Space Grotesk. 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 restrained, consulting-grade presentation system on a warm cream canvas (#fdfae7) with a single saturated cobalt blue (#1e2bfa) as the only accent color. Display type runs Space Grotesk for headlines and numerical callouts; Inter handles body and chrome. Cards are soft-tinted cobalt at 4% opacity with 1.5px translucent borders and 10-14px rounded corners — quiet, never bordered in solid color. The aesthetic borrows from investment-research reports, McKinsey-grade quarterly briefings, and contemporary financial dashboards — measured, data-dense without feeling crowded, and unmistakably professional. The system is built for executive readability at distance, with strong typographic hierarchy and a single accent color carrying every emphasis moment.\n\n1. Cover (cover)\n2. Executive synthesis (insights)\n3. Market segmentation (data)\n4. Stacked trend and interpretation (data)\n5. Opportunity matrix (comparison)\n6. Profit bridge (data)\n7. Customer journey (process)\n8. Service architecture (process)\n9. Annotated case comparison (comparison)\n10. Dependency roadmap (process)\n11. Decision table (comparison)\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 evidence-led report compositions: an executive thesis beside supporting evidence, stacked trends with annotations, a contribution bridge, a portfolio matrix, a customer journey, a capability architecture, a case comparison, a dependency roadmap, and a decision table. Keep cream as the field and use cobalt to identify the decision or most important series.\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 executive synthesis; 3 market segmentation; 4 stacked trend; 5 opportunity matrix; 6 profit bridge; 7 customer journey; 8 service architecture; 9 case study; 10 delivery roadmap; 11 decision table.\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","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":4,"averageMediaFrames":0},{"family":"insights","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":16,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":17,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":35,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":20,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":4,"density":"high","averageTextFrames":25,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":18,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":12,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":14,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":4,"density":"high","averageTextFrames":25,"averageMediaFrames":0},{"family":"closing","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":4,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"Cover","family":"cover","titlePosition":"left","bodyColumns":1,"density":"medium","features":["cover"],"recommendedRoles":["cover"],"structureSummary":"Cover","zones":[{"kind":"shape","x":920,"y":0,"width":360,"height":666.6666666666666,"shape":"rect","fill":"E9E8E0"},{"kind":"title","x":64,"y":266.6666666666667,"width":813.3333333333334,"height":240,"textRole":"title","fontSize":50,"textCapacity":36},{"kind":"text","x":64,"y":552,"width":800,"height":66.66666666666667,"textRole":"body","fontSize":20,"textCapacity":60},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":2,"sourceTitle":"Executive synthesis","family":"insights","titlePosition":"left","bodyColumns":2,"density":"high","features":["insights"],"recommendedRoles":["insights"],"structureSummary":"Asymmetric thesis, one dominant metric and three evidence rows","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":34,"textCapacity":25},{"kind":"title","x":64,"y":228,"width":437.3333333333333,"height":178.66666666666666,"textRole":"title","fontSize":38,"textCapacity":24},{"kind":"title","x":64,"y":440,"width":400,"height":116,"textRole":"title","fontSize":68,"textCapacity":4},{"kind":"text","x":66.66666666666667,"y":560,"width":426.6666666666667,"height":46.666666666666664,"textRole":"body","fontSize":17,"textCapacity":18},{"kind":"text","x":584,"y":230.66666666666666,"width":60,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":666.6666666666666,"y":226.66666666666666,"width":522.6666666666666,"height":46.666666666666664,"textRole":"body","fontSize":23,"textCapacity":17},{"kind":"text","x":666.6666666666666,"y":284,"width":522.6666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":42},{"kind":"text","x":584,"y":358.6666666666667,"width":60,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":666.6666666666666,"y":354.6666666666667,"width":522.6666666666666,"height":46.666666666666664,"textRole":"body","fontSize":23,"textCapacity":17},{"kind":"text","x":666.6666666666666,"y":412,"width":522.6666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":42},{"kind":"text","x":584,"y":486.6666666666667,"width":60,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":666.6666666666666,"y":482.6666666666667,"width":522.6666666666666,"height":46.666666666666664,"textRole":"body","fontSize":23,"textCapacity":17},{"kind":"text","x":666.6666666666666,"y":540,"width":522.6666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":42},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Market segmentation","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["data"],"recommendedRoles":["data"],"structureSummary":"Proportional market bar, direct legend and opportunity sizing","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":34,"textCapacity":25},{"kind":"shape","x":64,"y":254.66666666666666,"width":357.11999999999995,"height":150.66666666666666,"shape":"rect","fill":"1E2BFA"},{"kind":"title","x":85.33333333333333,"y":278.6666666666667,"width":323.78666666666663,"height":64,"textRole":"title","fontSize":34,"textCapacity":7},{"kind":"shape","x":421.11999999999995,"y":254.66666666666666,"width":238.08,"height":150.66666666666666,"shape":"rect","fill":"737BF5"},{"kind":"title","x":442.4533333333333,"y":278.6666666666667,"width":204.74666666666667,"height":64,"textRole":"title","fontSize":34,"textCapacity":4},{"kind":"shape","x":659.1999999999999,"y":254.66666666666666,"width":148.79999999999998,"height":150.66666666666666,"shape":"rect","fill":"C8CBFA"},{"kind":"title","x":680.5333333333333,"y":278.6666666666667,"width":115.46666666666665,"height":64,"textRole":"title","fontSize":34,"textCapacity":2},{"kind":"shape","x":65.33333333333333,"y":438.6666666666667,"width":13.333333333333334,"height":13.333333333333334,"shape":"ellipse","fill":"1E2BFA"},{"kind":"text","x":97.33333333333333,"y":429.3333333333333,"width":301.3333333333333,"height":42.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"text","x":653.3333333333334,"y":429.3333333333333,"width":154.66666666666666,"height":42.666666666666664,"textRole":"body","fontSize":18,"textCapacity":6},{"kind":"shape","x":65.33333333333333,"y":496,"width":13.333333333333334,"height":13.333333333333334,"shape":"ellipse","fill":"737BF5"},{"kind":"text","x":97.33333333333333,"y":486.6666666666667,"width":301.3333333333333,"height":42.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"text","x":653.3333333333334,"y":486.6666666666667,"width":154.66666666666666,"height":42.666666666666664,"textRole":"body","fontSize":18,"textCapacity":6},{"kind":"shape","x":65.33333333333333,"y":553.3333333333334,"width":13.333333333333334,"height":13.333333333333334,"shape":"ellipse","fill":"C8CBFA"},{"kind":"text","x":97.33333333333333,"y":544,"width":301.3333333333333,"height":42.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"text","x":653.3333333333334,"y":544,"width":154.66666666666666,"height":42.666666666666664,"textRole":"body","fontSize":18,"textCapacity":6},{"kind":"title","x":898.6666666666666,"y":246.66666666666666,"width":317.3333333333333,"height":104,"textRole":"title","fontSize":49,"textCapacity":4},{"kind":"text","x":898.6666666666666,"y":369.3333333333333,"width":317.3333333333333,"height":60,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":898.6666666666666,"y":466.6666666666667,"width":317.3333333333333,"height":137.33333333333334,"textRole":"body","fontSize":20,"textCapacity":44},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Stacked trend and interpretation","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["data"],"recommendedRoles":["data"],"structureSummary":"Stacked columns on a common scale with a derived contribution callout","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":34,"textCapacity":25},{"kind":"text","x":64,"y":204,"width":688,"height":32,"textRole":"body","fontSize":11,"textCapacity":46},{"kind":"shape","x":144,"y":236,"width":12,"height":12,"shape":"rect","fill":"1E2BFA"},{"kind":"text","x":165.33333333333334,"y":229.33333333333334,"width":209.33333333333334,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":14},{"kind":"shape","x":400,"y":236,"width":12,"height":12,"shape":"rect","fill":"A1A7FA"},{"kind":"text","x":421.3333333333333,"y":229.33333333333334,"width":280,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":19},{"kind":"text","x":64,"y":529.3333333333334,"width":46.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3},{"kind":"text","x":64,"y":448.26666666666665,"width":46.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3},{"kind":"text","x":64,"y":367.2,"width":46.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3},{"kind":"text","x":64,"y":286.1333333333333,"width":46.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3},{"kind":"shape","x":148,"y":457.5466666666666,"width":57.333333333333336,"height":85.12,"shape":"rect","fill":"1E2BFA"},{"kind":"shape","x":148,"y":421.06666666666666,"width":57.333333333333336,"height":36.48,"shape":"rect","fill":"A1A7FA"},{"kind":"text","x":141.33333333333334,"y":383.73333333333335,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":14,"textCapacity":4},{"kind":"text","x":145.33333333333334,"y":556,"width":74.66666666666667,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":4},{"kind":"shape","x":257.3333333333333,"y":445.3866666666666,"width":57.333333333333336,"height":97.28000000000002,"shape":"rect","fill":"1E2BFA"},{"kind":"shape","x":257.3333333333333,"y":404.8533333333333,"width":57.333333333333336,"height":40.53333333333333,"shape":"rect","fill":"A1A7FA"},{"kind":"text","x":250.66666666666666,"y":367.52,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":14,"textCapacity":4},{"kind":"text","x":254.66666666666666,"y":556,"width":74.66666666666667,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":4},{"kind":"shape","x":366.6666666666667,"y":435.25333333333333,"width":57.333333333333336,"height":107.41333333333334,"shape":"rect","fill":"1E2BFA"},{"kind":"shape","x":366.6666666666667,"y":388.64000000000004,"width":57.333333333333336,"height":46.61333333333334,"shape":"rect","fill":"A1A7FA"},{"kind":"text","x":360,"y":351.3066666666667,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":14,"textCapacity":4},{"kind":"text","x":364,"y":556,"width":74.66666666666667,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":4},{"kind":"shape","x":476,"y":419.03999999999996,"width":57.333333333333336,"height":123.62666666666667,"shape":"rect","fill":"1E2BFA"},{"kind":"shape","x":476,"y":368.3733333333333,"width":57.333333333333336,"height":50.666666666666664,"shape":"rect","fill":"A1A7FA"},{"kind":"text","x":469.3333333333333,"y":331.04,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":14,"textCapacity":4},{"kind":"text","x":473.3333333333333,"y":556,"width":74.66666666666667,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":4},{"kind":"shape","x":585.3333333333334,"y":410.93333333333334,"width":57.333333333333336,"height":131.73333333333332,"shape":"rect","fill":"1E2BFA"},{"kind":"shape","x":585.3333333333334,"y":352.16,"width":57.333333333333336,"height":58.77333333333333,"shape":"rect","fill":"A1A7FA"},{"kind":"text","x":578.6666666666666,"y":314.82666666666665,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":14,"textCapacity":4},{"kind":"text","x":582.6666666666666,"y":556,"width":74.66666666666667,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":4},{"kind":"shape","x":694.6666666666666,"y":396.74666666666667,"width":57.333333333333336,"height":145.92,"shape":"rect","fill":"1E2BFA"},{"kind":"shape","x":694.6666666666666,"y":329.8666666666667,"width":57.333333333333336,"height":66.88000000000001,"shape":"rect","fill":"A1A7FA"},{"kind":"text","x":688,"y":292.53333333333336,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":14,"textCapacity":4},{"kind":"text","x":692,"y":556,"width":74.66666666666667,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":4},{"kind":"text","x":124,"y":597.3333333333334,"width":201.33333333333334,"height":36,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":328,"y":597.3333333333334,"width":486.6666666666667,"height":36,"textRole":"body","fontSize":14,"textCapacity":26},{"kind":"text","x":898.6666666666666,"y":206.66666666666666,"width":317.3333333333333,"height":37.333333333333336,"textRole":"body","fontSize":11,"textCapacity":42},{"kind":"title","x":898.6666666666666,"y":272,"width":317.3333333333333,"height":98.66666666666667,"textRole":"title","fontSize":57,"textCapacity":4},{"kind":"text","x":898.6666666666666,"y":380,"width":317.3333333333333,"height":68,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":898.6666666666666,"y":458.6666666666667,"width":220,"height":37.333333333333336,"textRole":"body","fontSize":14,"textCapacity":11},{"kind":"text","x":1118.6666666666667,"y":457.3333333333333,"width":97.33333333333333,"height":38.666666666666664,"textRole":"body","fontSize":19,"textCapacity":3},{"kind":"text","x":898.6666666666666,"y":506.6666666666667,"width":220,"height":37.333333333333336,"textRole":"body","fontSize":14,"textCapacity":11},{"kind":"text","x":1118.6666666666667,"y":505.3333333333333,"width":97.33333333333333,"height":38.666666666666664,"textRole":"body","fontSize":19,"textCapacity":3},{"kind":"text","x":898.6666666666666,"y":554.6666666666666,"width":220,"height":37.333333333333336,"textRole":"body","fontSize":14,"textCapacity":11},{"kind":"text","x":1118.6666666666667,"y":553.3333333333334,"width":97.33333333333333,"height":38.666666666666664,"textRole":"body","fontSize":19,"textCapacity":3},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":5,"sourceTitle":"Opportunity matrix","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["comparison"],"recommendedRoles":["comparison"],"structureSummary":"Two-axis market map, sized markers and a separate decision rationale","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":34,"textCapacity":25},{"kind":"shape","x":120,"y":233.33333333333334,"width":669.3333333333334,"height":360,"shape":"rect","fill":"F1EEDB"},{"kind":"shape","x":454.6666666666667,"y":233.33333333333334,"width":334.6666666666667,"height":180,"shape":"rect","fill":"E2E3F8"},{"kind":"text","x":142.66666666666666,"y":245.33333333333334,"width":289.3333333333333,"height":32,"textRole":"body","fontSize":11,"textCapacity":19},{"kind":"text","x":477.3333333333333,"y":245.33333333333334,"width":280,"height":32,"textRole":"body","fontSize":11,"textCapacity":19},{"kind":"text","x":142.66666666666666,"y":549.3333333333334,"width":288,"height":32,"textRole":"body","fontSize":11,"textCapacity":19},{"kind":"text","x":477.3333333333333,"y":549.3333333333334,"width":297.3333333333333,"height":32,"textRole":"body","fontSize":11,"textCapacity":20},{"kind":"shape","x":252,"y":345.3333333333333,"width":34.666666666666664,"height":34.666666666666664,"shape":"ellipse","fill":"1E2BFA"},{"kind":"text","x":300,"y":346.6666666666667,"width":124,"height":36,"textRole":"body","fontSize":14,"textCapacity":6},{"kind":"shape","x":588,"y":301.3333333333333,"width":53.333333333333336,"height":53.333333333333336,"shape":"ellipse","fill":"1E2BFA"},{"kind":"text","x":645.3333333333334,"y":312,"width":124,"height":36,"textRole":"body","fontSize":14,"textCapacity":6},{"kind":"shape","x":494.6666666666667,"y":358.6666666666667,"width":32,"height":32,"shape":"ellipse","fill":"1E2BFA"},{"kind":"text","x":541.3333333333334,"y":358.6666666666667,"width":124,"height":36,"textRole":"body","fontSize":14,"textCapacity":6},{"kind":"shape","x":344,"y":478.6666666666667,"width":24,"height":24,"shape":"ellipse","fill":"1E2BFA"},{"kind":"text","x":386.6666666666667,"y":474.6666666666667,"width":124,"height":36,"textRole":"body","fontSize":14,"textCapacity":6},{"kind":"shape","x":630.6666666666666,"y":477.3333333333333,"width":37.333333333333336,"height":37.333333333333336,"shape":"ellipse","fill":"1E2BFA"},{"kind":"text","x":680,"y":480,"width":124,"height":36,"textRole":"body","fontSize":14,"textCapacity":6},{"kind":"text","x":120,"y":606.6666666666666,"width":80,"height":37.333333333333336,"textRole":"body","fontSize":12,"textCapacity":10},{"kind":"text","x":240,"y":606.6666666666666,"width":424,"height":37.333333333333336,"textRole":"body","fontSize":12,"textCapacity":52},{"kind":"text","x":708,"y":606.6666666666666,"width":81.33333333333333,"height":37.333333333333336,"textRole":"body","fontSize":12,"textCapacity":10},{"kind":"text","x":120,"y":194.66666666666666,"width":700,"height":29.333333333333332,"textRole":"body","fontSize":12,"textCapacity":43},{"kind":"text","x":866.6666666666666,"y":252,"width":344,"height":92,"textRole":"body","fontSize":28,"textCapacity":18},{"kind":"text","x":866.6666666666666,"y":376,"width":344,"height":126.66666666666667,"textRole":"body","fontSize":21,"textCapacity":48},{"kind":"text","x":866.6666666666666,"y":546.6666666666666,"width":344,"height":53.333333333333336,"textRole":"body","fontSize":14,"textCapacity":36},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":6,"sourceTitle":"Profit bridge","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["data"],"recommendedRoles":["data"],"structureSummary":"Editable waterfall with sequential baselines and a reconciled net change","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":34,"textCapacity":25},{"kind":"text","x":64,"y":204,"width":772,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":52},{"kind":"text","x":64,"y":557.3333333333334,"width":41.333333333333336,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":490.6666666666667,"width":41.333333333333336,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":424,"width":41.333333333333336,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":357.3333333333333,"width":41.333333333333336,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":290.6666666666667,"width":41.333333333333336,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"shape","x":133.33333333333334,"y":409.3333333333333,"width":81.33333333333333,"height":160,"shape":"rect","fill":"1E2BFA"},{"kind":"text","x":126.66666666666667,"y":368,"width":94.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":3},{"kind":"text","x":110.66666666666667,"y":585.3333333333334,"width":126.66666666666667,"height":36,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":274.6666666666667,"y":329.3333333333333,"width":81.33333333333333,"height":80,"shape":"rect","fill":"929AFF"},{"kind":"text","x":268,"y":288,"width":94.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":3},{"kind":"text","x":252,"y":585.3333333333334,"width":126.66666666666667,"height":36,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":416,"y":329.3333333333333,"width":81.33333333333333,"height":40,"shape":"rect","fill":"BCBEB9"},{"kind":"text","x":409.3333333333333,"y":288,"width":94.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":3},{"kind":"text","x":393.3333333333333,"y":585.3333333333334,"width":126.66666666666667,"height":36,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":557.3333333333334,"y":369.3333333333333,"width":81.33333333333333,"height":26.666666666666668,"shape":"rect","fill":"BCBEB9"},{"kind":"text","x":550.6666666666666,"y":328,"width":94.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":3},{"kind":"text","x":534.6666666666666,"y":585.3333333333334,"width":126.66666666666667,"height":36,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":698.6666666666666,"y":396,"width":81.33333333333333,"height":173.33333333333334,"shape":"rect","fill":"1E2BFA"},{"kind":"text","x":692,"y":354.6666666666667,"width":94.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":3},{"kind":"text","x":676,"y":585.3333333333334,"width":126.66666666666667,"height":36,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"text","x":905.3333333333334,"y":213.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":11,"textCapacity":42},{"kind":"title","x":905.3333333333334,"y":273.3333333333333,"width":310.6666666666667,"height":113.33333333333333,"textRole":"title","fontSize":54,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":392,"width":310.6666666666667,"height":65.33333333333333,"textRole":"body","fontSize":19,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":468,"width":228,"height":36,"textRole":"body","fontSize":14,"textCapacity":12},{"kind":"text","x":1133.3333333333333,"y":465.3333333333333,"width":82.66666666666667,"height":40,"textRole":"body","fontSize":19,"textCapacity":3},{"kind":"text","x":905.3333333333334,"y":514.6666666666666,"width":228,"height":36,"textRole":"body","fontSize":14,"textCapacity":12},{"kind":"text","x":1133.3333333333333,"y":512,"width":82.66666666666667,"height":40,"textRole":"body","fontSize":19,"textCapacity":3},{"kind":"text","x":905.3333333333334,"y":561.3333333333334,"width":228,"height":36,"textRole":"body","fontSize":14,"textCapacity":12},{"kind":"text","x":1133.3333333333333,"y":558.6666666666666,"width":82.66666666666667,"height":40,"textRole":"body","fontSize":19,"textCapacity":3},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":7,"sourceTitle":"Customer journey","family":"process","titlePosition":"left","bodyColumns":4,"density":"high","features":["process"],"recommendedRoles":["process"],"structureSummary":"Sequential journey with action, touchpoint and per-stage success measure","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":34,"textCapacity":25},{"kind":"text","x":64,"y":218.66666666666666,"width":261.3333333333333,"height":32,"textRole":"body","fontSize":13,"textCapacity":15},{"kind":"text","x":64,"y":266.6666666666667,"width":261.3333333333333,"height":61.333333333333336,"textRole":"body","fontSize":27,"textCapacity":7},{"kind":"text","x":64,"y":385.3333333333333,"width":261.3333333333333,"height":77.33333333333333,"textRole":"body","fontSize":19,"textCapacity":20},{"kind":"text","x":64,"y":492,"width":261.3333333333333,"height":68,"textRole":"body","fontSize":16,"textCapacity":24},{"kind":"title","x":64,"y":572,"width":261.3333333333333,"height":57.333333333333336,"textRole":"title","fontSize":30,"textCapacity":6},{"kind":"text","x":357.3333333333333,"y":218.66666666666666,"width":261.3333333333333,"height":32,"textRole":"body","fontSize":13,"textCapacity":15},{"kind":"text","x":357.3333333333333,"y":266.6666666666667,"width":261.3333333333333,"height":61.333333333333336,"textRole":"body","fontSize":27,"textCapacity":7},{"kind":"text","x":357.3333333333333,"y":385.3333333333333,"width":261.3333333333333,"height":77.33333333333333,"textRole":"body","fontSize":19,"textCapacity":20},{"kind":"text","x":357.3333333333333,"y":492,"width":261.3333333333333,"height":68,"textRole":"body","fontSize":16,"textCapacity":24},{"kind":"title","x":357.3333333333333,"y":572,"width":261.3333333333333,"height":57.333333333333336,"textRole":"title","fontSize":30,"textCapacity":6},{"kind":"text","x":650.6666666666666,"y":218.66666666666666,"width":261.3333333333333,"height":32,"textRole":"body","fontSize":13,"textCapacity":15},{"kind":"text","x":650.6666666666666,"y":266.6666666666667,"width":261.3333333333333,"height":61.333333333333336,"textRole":"body","fontSize":27,"textCapacity":7},{"kind":"text","x":650.6666666666666,"y":385.3333333333333,"width":261.3333333333333,"height":77.33333333333333,"textRole":"body","fontSize":19,"textCapacity":20},{"kind":"text","x":650.6666666666666,"y":492,"width":261.3333333333333,"height":68,"textRole":"body","fontSize":16,"textCapacity":24},{"kind":"title","x":650.6666666666666,"y":572,"width":261.3333333333333,"height":57.333333333333336,"textRole":"title","fontSize":30,"textCapacity":6},{"kind":"text","x":944,"y":218.66666666666666,"width":261.3333333333333,"height":32,"textRole":"body","fontSize":13,"textCapacity":15},{"kind":"text","x":944,"y":266.6666666666667,"width":261.3333333333333,"height":61.333333333333336,"textRole":"body","fontSize":27,"textCapacity":7},{"kind":"text","x":944,"y":385.3333333333333,"width":261.3333333333333,"height":77.33333333333333,"textRole":"body","fontSize":19,"textCapacity":20},{"kind":"text","x":944,"y":492,"width":261.3333333333333,"height":68,"textRole":"body","fontSize":16,"textCapacity":24},{"kind":"title","x":944,"y":572,"width":261.3333333333333,"height":57.333333333333336,"textRole":"title","fontSize":30,"textCapacity":6},{"kind":"shape","x":357.3333333333333,"y":357.3333333333333,"width":261.3333333333333,"height":6.666666666666667,"shape":"rect","fill":"1E2BFA"},{"kind":"text","x":64,"y":632,"width":1152,"height":32,"textRole":"body","fontSize":15,"textCapacity":57},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":8,"sourceTitle":"Service architecture","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["process"],"recommendedRoles":["process"],"structureSummary":"Three operating layers with horizontal handoffs and vertical feedback","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":34,"textCapacity":25},{"kind":"text","x":64,"y":260,"width":138.66666666666666,"height":42.666666666666664,"textRole":"body","fontSize":15,"textCapacity":6},{"kind":"shape","x":226.66666666666666,"y":230.66666666666666,"width":200,"height":92,"shape":"rect","fill":"E9E8E0"},{"kind":"text","x":242.66666666666666,"y":253.33333333333334,"width":168,"height":65.33333333333333,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"shape","x":456,"y":230.66666666666666,"width":200,"height":92,"shape":"rect","fill":"E9E8E0"},{"kind":"text","x":472,"y":253.33333333333334,"width":168,"height":65.33333333333333,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"shape","x":685.3333333333334,"y":230.66666666666666,"width":200,"height":92,"shape":"rect","fill":"E9E8E0"},{"kind":"text","x":701.3333333333334,"y":253.33333333333334,"width":168,"height":65.33333333333333,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":64,"y":398.6666666666667,"width":138.66666666666666,"height":42.666666666666664,"textRole":"body","fontSize":15,"textCapacity":6},{"kind":"shape","x":226.66666666666666,"y":369.3333333333333,"width":200,"height":92,"shape":"rect","fill":"1E2BFA"},{"kind":"text","x":242.66666666666666,"y":392,"width":168,"height":65.33333333333333,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"shape","x":456,"y":369.3333333333333,"width":200,"height":92,"shape":"rect","fill":"1E2BFA"},{"kind":"text","x":472,"y":392,"width":168,"height":65.33333333333333,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"shape","x":685.3333333333334,"y":369.3333333333333,"width":200,"height":92,"shape":"rect","fill":"1E2BFA"},{"kind":"text","x":701.3333333333334,"y":392,"width":168,"height":65.33333333333333,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":64,"y":537.3333333333334,"width":138.66666666666666,"height":42.666666666666664,"textRole":"body","fontSize":15,"textCapacity":6},{"kind":"shape","x":226.66666666666666,"y":508,"width":200,"height":92,"shape":"rect","fill":"E9E8E0"},{"kind":"text","x":242.66666666666666,"y":530.6666666666666,"width":168,"height":65.33333333333333,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"shape","x":456,"y":508,"width":200,"height":92,"shape":"rect","fill":"E9E8E0"},{"kind":"text","x":472,"y":530.6666666666666,"width":168,"height":65.33333333333333,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"shape","x":685.3333333333334,"y":508,"width":200,"height":92,"shape":"rect","fill":"E9E8E0"},{"kind":"text","x":701.3333333333334,"y":530.6666666666666,"width":168,"height":65.33333333333333,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":988,"y":253.33333333333334,"width":224,"height":130.66666666666666,"textRole":"body","fontSize":28,"textCapacity":18},{"kind":"text","x":988,"y":438.6666666666667,"width":224,"height":156,"textRole":"body","fontSize":19,"textCapacity":40},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"Annotated case comparison","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["comparison"],"recommendedRoles":["comparison"],"structureSummary":"Asymmetric intervention narrative with paired before/after evidence","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":34,"textCapacity":25},{"kind":"text","x":64,"y":225.33333333333334,"width":373.3333333333333,"height":37.333333333333336,"textRole":"body","fontSize":12,"textCapacity":46},{"kind":"title","x":64,"y":293.3333333333333,"width":380,"height":162.66666666666666,"textRole":"title","fontSize":32,"textCapacity":24},{"kind":"text","x":64,"y":494.6666666666667,"width":376,"height":104,"textRole":"body","fontSize":20,"textCapacity":42},{"kind":"text","x":550.6666666666666,"y":230.66666666666666,"width":657.3333333333334,"height":37.333333333333336,"textRole":"body","fontSize":18,"textCapacity":27},{"kind":"shape","x":550.6666666666666,"y":296,"width":398.40000000000003,"height":30.666666666666668,"shape":"rect","fill":"C1C2B7"},{"kind":"shape","x":550.6666666666666,"y":338.6666666666667,"width":154.93333333333334,"height":30.666666666666668,"shape":"rect","fill":"1E2BFA"},{"kind":"text","x":1017.3333333333334,"y":297.3333333333333,"width":198.66666666666666,"height":60,"textRole":"body","fontSize":25,"textCapacity":5},{"kind":"text","x":550.6666666666666,"y":428,"width":657.3333333333334,"height":37.333333333333336,"textRole":"body","fontSize":18,"textCapacity":27},{"kind":"shape","x":550.6666666666666,"y":493.3333333333333,"width":265.59999999999997,"height":30.666666666666668,"shape":"rect","fill":"C1C2B7"},{"kind":"shape","x":550.6666666666666,"y":536,"width":385.7523809523809,"height":30.666666666666668,"shape":"rect","fill":"1E2BFA"},{"kind":"text","x":1017.3333333333334,"y":494.6666666666667,"width":198.66666666666666,"height":60,"textRole":"body","fontSize":25,"textCapacity":5},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":10,"sourceTitle":"Dependency roadmap","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["process"],"recommendedRoles":["process"],"structureSummary":"Timed workstreams, named owners and a decision gate","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":34,"textCapacity":25},{"kind":"text","x":397.3333333333333,"y":218.66666666666666,"width":233.33333333333334,"height":32,"textRole":"body","fontSize":13,"textCapacity":13},{"kind":"text","x":649.3333333333334,"y":218.66666666666666,"width":233.33333333333334,"height":32,"textRole":"body","fontSize":13,"textCapacity":13},{"kind":"text","x":901.3333333333334,"y":218.66666666666666,"width":233.33333333333334,"height":32,"textRole":"body","fontSize":13,"textCapacity":13},{"kind":"text","x":64,"y":272,"width":290.6666666666667,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":10},{"kind":"text","x":64,"y":317.3333333333333,"width":290.6666666666667,"height":29.333333333333332,"textRole":"body","fontSize":13,"textCapacity":16},{"kind":"shape","x":382.6666666666667,"y":284,"width":264.6,"height":38.666666666666664,"shape":"rect","fill":"9EA5F4"},{"kind":"text","x":64,"y":372,"width":290.6666666666667,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":10},{"kind":"text","x":64,"y":417.3333333333333,"width":290.6666666666667,"height":29.333333333333332,"textRole":"body","fontSize":13,"textCapacity":16},{"kind":"shape","x":533.8666666666667,"y":384,"width":302.4,"height":38.666666666666664,"shape":"rect","fill":"1E2BFA"},{"kind":"text","x":64,"y":472,"width":290.6666666666667,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":10},{"kind":"text","x":64,"y":517.3333333333334,"width":290.6666666666667,"height":29.333333333333332,"textRole":"body","fontSize":13,"textCapacity":16},{"kind":"shape","x":836.2666666666668,"y":484,"width":302.4,"height":38.666666666666664,"shape":"rect","fill":"9EA5F4"},{"kind":"shape","x":826.6666666666666,"y":580,"width":16,"height":16,"shape":"ellipse","fill":"1E2BFA"},{"kind":"text","x":64,"y":616,"width":1152,"height":41.333333333333336,"textRole":"body","fontSize":18,"textCapacity":48},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Decision table","family":"comparison","titlePosition":"left","bodyColumns":4,"density":"high","features":["comparison"],"recommendedRoles":["comparison"],"structureSummary":"Four criteria across three options, highlighted recommendation and next gate","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":34,"textCapacity":25},{"kind":"shape","x":466.6666666666667,"y":233.33333333333334,"width":237.33333333333334,"height":376,"shape":"rect","fill":"E1E3FA"},{"kind":"text","x":64,"y":244,"width":365.3333333333333,"height":72,"textRole":"body","fontSize":12,"textCapacity":88},{"kind":"text","x":488,"y":244,"width":222.66666666666666,"height":72,"textRole":"body","fontSize":20,"textCapacity":16},{"kind":"text","x":733.3333333333334,"y":244,"width":222.66666666666666,"height":72,"textRole":"body","fontSize":20,"textCapacity":16},{"kind":"text","x":978.6666666666666,"y":244,"width":222.66666666666666,"height":72,"textRole":"body","fontSize":20,"textCapacity":16},{"kind":"text","x":64,"y":338.6666666666667,"width":373.3333333333333,"height":44,"textRole":"body","fontSize":17,"textCapacity":16},{"kind":"text","x":488,"y":338.6666666666667,"width":220,"height":46.666666666666664,"textRole":"body","fontSize":17,"textCapacity":9},{"kind":"text","x":733.3333333333334,"y":338.6666666666667,"width":220,"height":46.666666666666664,"textRole":"body","fontSize":17,"textCapacity":9},{"kind":"text","x":978.6666666666666,"y":338.6666666666667,"width":220,"height":46.666666666666664,"textRole":"body","fontSize":17,"textCapacity":9},{"kind":"text","x":64,"y":404,"width":373.3333333333333,"height":44,"textRole":"body","fontSize":17,"textCapacity":16},{"kind":"text","x":488,"y":404,"width":220,"height":46.666666666666664,"textRole":"body","fontSize":17,"textCapacity":9},{"kind":"text","x":733.3333333333334,"y":404,"width":220,"height":46.666666666666664,"textRole":"body","fontSize":17,"textCapacity":9},{"kind":"text","x":978.6666666666666,"y":404,"width":220,"height":46.666666666666664,"textRole":"body","fontSize":17,"textCapacity":9},{"kind":"text","x":64,"y":469.3333333333333,"width":373.3333333333333,"height":44,"textRole":"body","fontSize":17,"textCapacity":16},{"kind":"text","x":488,"y":469.3333333333333,"width":220,"height":46.666666666666664,"textRole":"body","fontSize":17,"textCapacity":9},{"kind":"text","x":733.3333333333334,"y":469.3333333333333,"width":220,"height":46.666666666666664,"textRole":"body","fontSize":17,"textCapacity":9},{"kind":"text","x":978.6666666666666,"y":469.3333333333333,"width":220,"height":46.666666666666664,"textRole":"body","fontSize":17,"textCapacity":9},{"kind":"text","x":64,"y":534.6666666666666,"width":373.3333333333333,"height":44,"textRole":"body","fontSize":17,"textCapacity":16},{"kind":"text","x":488,"y":534.6666666666666,"width":220,"height":46.666666666666664,"textRole":"body","fontSize":17,"textCapacity":9},{"kind":"text","x":733.3333333333334,"y":534.6666666666666,"width":220,"height":46.666666666666664,"textRole":"body","fontSize":17,"textCapacity":9},{"kind":"text","x":978.6666666666666,"y":534.6666666666666,"width":220,"height":46.666666666666664,"textRole":"body","fontSize":17,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"Closing","family":"closing","titlePosition":"left","bodyColumns":1,"density":"medium","features":["closing"],"recommendedRoles":["closing"],"structureSummary":"Closing","zones":[{"kind":"text","x":64,"y":105.33333333333333,"width":1133.3333333333333,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"title","x":64,"y":245.33333333333334,"width":1146.6666666666667,"height":262.6666666666667,"textRole":"title","fontSize":55,"textCapacity":45},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""}]}},"dsh-neo-grid-bold":{"palette":{"background":"F5F4EF","text":"0A0A0A","accent":"E6FF3D","surface":"ECECE8","secondary":"8A8A85","muted":"8A8A85"},"source":{"fileName":"neo-grid-bold-reference.jpg","sha256":"04fcc2150e6c55dd86264468e3cf8f513bda0caa56e32de34bfafbbf3d74c9c8","slideCount":12,"averageTextBlocks":19,"averageCharacters":290,"visualGrammar":"neo-grid-bold","recommendedDensity":"medium","designSummary":"# Neo-Grid Bold / 荧光网格\n\nAdapted from Zara Zhang's Neo-Grid Bold, commit e5e204fb1f3b06290846e7dcd7aceddabeceec8c. MIT. This native edition rebuilds twelve editable layouts; it is not an HTML import or an exact copy of every upstream slide.\n\n## Typography\n\nEnglish display: Arial Black; English body: Arial. These portable Office substitutions replace the upstream display face Space Grotesk. 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 heavy editorial poster system built on a strict 12-column × 8-row block grid with neon-yellow accents on putty-ecru. Space Grotesk at weight 700 in strict uppercase carries every display moment; JetBrains Mono carries every label and metadata tag. Each slide reads as a magazine spread divided into colored panels — paper-ecru, ink-black, and electric lemon-yellow trading roles across cells. The aesthetic borrows from contemporary editorial print, brutalist annual reports, and the populist-poster end of design week showcases.\n\n1. Cover (cover)\n2. Agenda (agenda)\n3. Insights (insights)\n4. Metrics (data)\n5. Comparison chart (data)\n6. Process (process)\n7. Before and after (comparison)\n8. Closing (closing)\n\nAll charts and diagrams are native editable vectors. Example figures are illustrative, not reported facts. Retain a 48 pt outer margin and use 16:9, 960 × 540 pt.\n\nCopyright (c) 2026 Zara Zhang. DSH adaptation 2026-09-06. See licenses/zara/LICENSE and the pinned source design specification.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. Cover — Cover\n2. Find the next repeatable growth loop — Asymmetric argument with three supporting evidence rows\n3. Follow one cohort through the funnel — A single cohort with explicit conversion counts and an overall rate\n4. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n5. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n6. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n7. Design around explicit boundaries — Three layers, nine native nodes, horizontal handoffs and vertical dependencies\n8. Reconcile the benefit with the cost — Sequential contribution waterfall with an explicitly reconciled net change\n9. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n10. Connect each measure to a response — Actual, target and response aligned across four measures\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. Closing — Closing\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":4,"averageMediaFrames":0},{"family":"insights","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":20,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":18,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":17,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":26,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":20,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"table","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":19,"averageMediaFrames":0},{"family":"closing","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":4,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"Cover","family":"cover","titlePosition":"left","bodyColumns":1,"density":"medium","features":["cover"],"recommendedRoles":["cover"],"structureSummary":"Cover","zones":[{"kind":"shape","x":32,"y":32,"width":273.3333333333333,"height":602.6666666666666,"shape":"rect","fill":"0A0A0A"},{"kind":"shape","x":317.3333333333333,"y":32,"width":605.3333333333334,"height":340,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":934.6666666666666,"y":32,"width":313.3333333333333,"height":340,"shape":"rect","fill":"0A0A0A"},{"kind":"shape","x":317.3333333333333,"y":384,"width":605.3333333333334,"height":250.66666666666666,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":337.3333333333333,"y":53.333333333333336,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"0A0A0A"},{"kind":"shape","x":360,"y":53.333333333333336,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":382.6666666666667,"y":53.333333333333336,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"0A0A0A"},{"kind":"shape","x":405.3333333333333,"y":53.333333333333336,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":337.3333333333333,"y":76,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":360,"y":76,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"0A0A0A"},{"kind":"shape","x":382.6666666666667,"y":76,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":405.3333333333333,"y":76,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"0A0A0A"},{"kind":"shape","x":337.3333333333333,"y":98.66666666666667,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"0A0A0A"},{"kind":"shape","x":360,"y":98.66666666666667,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":382.6666666666667,"y":98.66666666666667,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"0A0A0A"},{"kind":"shape","x":405.3333333333333,"y":98.66666666666667,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":337.3333333333333,"y":121.33333333333333,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":360,"y":121.33333333333333,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"0A0A0A"},{"kind":"shape","x":382.6666666666667,"y":121.33333333333333,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":405.3333333333333,"y":121.33333333333333,"width":22.666666666666668,"height":22.666666666666668,"shape":"rect","fill":"0A0A0A"},{"kind":"title","x":338.6666666666667,"y":401.3333333333333,"width":562.6666666666666,"height":221.33333333333334,"textRole":"title","fontSize":42,"textCapacity":30},{"kind":"text","x":953.3333333333334,"y":526.6666666666666,"width":264,"height":85.33333333333333,"textRole":"body","fontSize":13,"textCapacity":60},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":2,"sourceTitle":"Find the next repeatable growth loop","family":"insights","titlePosition":"left","bodyColumns":2,"density":"medium","features":["thesis"],"recommendedRoles":["insights"],"structureSummary":"Asymmetric argument with three supporting evidence rows","zones":[{"kind":"shape","x":1157.3333333333333,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1170.6666666666667,"y":45.333333333333336,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1157.3333333333333,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":218.66666666666666,"width":464,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":26},{"kind":"title","x":64,"y":276,"width":442.6666666666667,"height":236,"textRole":"title","fontSize":30,"textCapacity":55},{"kind":"text","x":64,"y":560,"width":440,"height":57.333333333333336,"textRole":"body","fontSize":17,"textCapacity":38},{"kind":"text","x":588,"y":222.66666666666666,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":226.66666666666666,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":234.66666666666666,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":281.3333333333333,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":348,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":352,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":360,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":406.6666666666667,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":473.3333333333333,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":477.3333333333333,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":485.3333333333333,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":532,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Follow one cohort through the funnel","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["funnel"],"recommendedRoles":["data"],"structureSummary":"A single cohort with explicit conversion counts and an overall rate","zones":[{"kind":"shape","x":1157.3333333333333,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1170.6666666666667,"y":45.333333333333336,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1157.3333333333333,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":64,"y":241.33333333333334,"width":201.33333333333334,"height":380,"shape":"rect","fill":"ECECE8"},{"kind":"title","x":80,"y":262.6666666666667,"width":170.66666666666666,"height":74.66666666666667,"textRole":"title","fontSize":36,"textCapacity":3},{"kind":"text","x":74.66666666666667,"y":534.6666666666666,"width":180,"height":72,"textRole":"body","fontSize":15,"textCapacity":27},{"kind":"shape","x":288,"y":305.3333333333333,"width":201.33333333333334,"height":316,"shape":"rect","fill":"ECECE8"},{"kind":"title","x":304,"y":326.6666666666667,"width":170.66666666666666,"height":74.66666666666667,"textRole":"title","fontSize":36,"textCapacity":3},{"kind":"text","x":298.6666666666667,"y":534.6666666666666,"width":180,"height":72,"textRole":"body","fontSize":15,"textCapacity":27},{"kind":"shape","x":512,"y":369.3333333333333,"width":201.33333333333334,"height":252,"shape":"rect","fill":"E6FF3D"},{"kind":"title","x":528,"y":390.6666666666667,"width":170.66666666666666,"height":74.66666666666667,"textRole":"title","fontSize":36,"textCapacity":3},{"kind":"text","x":522.6666666666666,"y":534.6666666666666,"width":180,"height":72,"textRole":"body","fontSize":15,"textCapacity":27},{"kind":"shape","x":736,"y":433.3333333333333,"width":201.33333333333334,"height":188,"shape":"rect","fill":"ECECE8"},{"kind":"title","x":752,"y":454.6666666666667,"width":170.66666666666666,"height":74.66666666666667,"textRole":"title","fontSize":36,"textCapacity":3},{"kind":"text","x":746.6666666666666,"y":534.6666666666666,"width":180,"height":72,"textRole":"body","fontSize":15,"textCapacity":27},{"kind":"title","x":1026.6666666666667,"y":261.3333333333333,"width":192,"height":92,"textRole":"title","fontSize":33,"textCapacity":4},{"kind":"text","x":1026.6666666666667,"y":389.3333333333333,"width":189.33333333333334,"height":102.66666666666667,"textRole":"body","fontSize":20,"textCapacity":21},{"kind":"text","x":1026.6666666666667,"y":540,"width":189.33333333333334,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":10},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Read the trend and investigate the pause","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["trend"],"recommendedRoles":["data"],"structureSummary":"Labeled six-point trend with common scale and a separate interpretation","zones":[{"kind":"shape","x":1157.3333333333333,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1170.6666666666667,"y":45.333333333333336,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1157.3333333333333,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":437.3333333333333,"y":253.33333333333334,"width":121.33333333333333,"height":314.6666666666667,"shape":"rect","fill":"2a2d15"},{"kind":"text","x":64,"y":554.6666666666666,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":480,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":405.3333333333333,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":330.6666666666667,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":256,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"shape","x":134.4,"y":377.06666666666666,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"F5F4EF"},{"kind":"text","x":108,"y":341.3333333333333,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":117.33333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":265.06666666666666,"y":362.13333333333327,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"F5F4EF"},{"kind":"text","x":238.66666666666666,"y":326.3999999999999,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":248,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":395.73333333333335,"y":350.93333333333334,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"F5F4EF"},{"kind":"text","x":369.3333333333333,"y":315.2,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":378.6666666666667,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":524,"y":352.2666666666667,"width":13.333333333333334,"height":13.333333333333334,"shape":"ellipse","fill":"E6FF3D"},{"kind":"text","x":500,"y":318.9333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":509.3333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":657.0666666666667,"y":324.8,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"F5F4EF"},{"kind":"text","x":630.6666666666666,"y":289.06666666666666,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":640,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":787.7333333333332,"y":298.6666666666667,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"F5F4EF"},{"kind":"text","x":761.3333333333334,"y":262.93333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":770.6666666666666,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"text","x":365.3333333333333,"y":248,"width":206.66666666666666,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":11},{"kind":"text","x":905.3333333333334,"y":217.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":269.3333333333333,"width":310.6666666666667,"height":104,"textRole":"title","fontSize":56,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":381.3333333333333,"width":305.3333333333333,"height":73.33333333333333,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":492,"width":305.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":10,"textCapacity":44},{"kind":"text","x":905.3333333333334,"y":538.6666666666666,"width":305.3333333333333,"height":66.66666666666667,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":5,"sourceTitle":"Trace the question to testable branches","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["tree"],"recommendedRoles":["process"],"structureSummary":"Three-branch hypothesis tree with six testable leaves","zones":[{"kind":"shape","x":1157.3333333333333,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1170.6666666666667,"y":45.333333333333336,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1157.3333333333333,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":64,"y":362.6666666666667,"width":292,"height":140,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":80,"y":380,"width":260,"height":114.66666666666667,"textRole":"body","fontSize":18,"textCapacity":40},{"kind":"shape","x":466.6666666666667,"y":245.33333333333334,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"ECECE8"},{"kind":"text","x":482.6666666666667,"y":262.6666666666667,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":236,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":292,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":376,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"ECECE8"},{"kind":"text","x":482.6666666666667,"y":393.3333333333333,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":366.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":422.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":506.6666666666667,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"ECECE8"},{"kind":"text","x":482.6666666666667,"y":524,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":497.3333333333333,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":553.3333333333334,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":6,"sourceTitle":"Choose the next move with evidence","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["matrix"],"recommendedRoles":["comparison"],"structureSummary":"Two-axis decision map with direct labels and a recommended next step","zones":[{"kind":"shape","x":1157.3333333333333,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1170.6666666666667,"y":45.333333333333336,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1157.3333333333333,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":118.66666666666667,"y":245.33333333333334,"width":662.6666666666666,"height":336,"shape":"rect","fill":"edece7"},{"kind":"shape","x":450.6666666666667,"y":245.33333333333334,"width":330.6666666666667,"height":168,"shape":"rect","fill":"f2f6cb"},{"kind":"text","x":137.33333333333334,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":137.33333333333334,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"shape","x":236,"y":345.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"848481"},{"kind":"text","x":269.3333333333333,"y":338.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":557.3333333333334,"y":322.6666666666667,"width":34.666666666666664,"height":34.666666666666664,"shape":"ellipse","fill":"0A0A0A"},{"kind":"text","x":598.6666666666666,"y":324,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":500,"y":376,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"848481"},{"kind":"text","x":533.3333333333334,"y":369.3333333333333,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":293.3333333333333,"y":462.6666666666667,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"848481"},{"kind":"text","x":326.6666666666667,"y":456,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":634.6666666666666,"y":473.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"848481"},{"kind":"text","x":668,"y":466.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"text","x":118.66666666666667,"y":589.3333333333334,"width":317.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":469.3333333333333,"y":589.3333333333334,"width":312,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":842.6666666666666,"y":230.66666666666666,"width":373.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":21},{"kind":"title","x":842.6666666666666,"y":286.6666666666667,"width":373.3333333333333,"height":82.66666666666667,"textRole":"title","fontSize":32,"textCapacity":8},{"kind":"text","x":842.6666666666666,"y":414.6666666666667,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":414.6666666666667,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":476,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":476,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":537.3333333333334,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":537.3333333333334,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":7,"sourceTitle":"Design around explicit boundaries","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["architecture"],"recommendedRoles":["process"],"structureSummary":"Three layers, nine native nodes, horizontal handoffs and vertical dependencies","zones":[{"kind":"shape","x":1157.3333333333333,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1170.6666666666667,"y":45.333333333333336,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1157.3333333333333,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":261.3333333333333,"width":168,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":9},{"kind":"shape","x":254.66666666666666,"y":234.66666666666666,"width":190.66666666666666,"height":84,"shape":"rect","fill":"ECECE8"},{"kind":"text","x":270.6666666666667,"y":252,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":468,"y":234.66666666666666,"width":190.66666666666666,"height":84,"shape":"rect","fill":"ECECE8"},{"kind":"text","x":484,"y":252,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":681.3333333333334,"y":234.66666666666666,"width":190.66666666666666,"height":84,"shape":"rect","fill":"ECECE8"},{"kind":"text","x":697.3333333333334,"y":252,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"text","x":64,"y":392,"width":168,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":9},{"kind":"shape","x":254.66666666666666,"y":365.3333333333333,"width":190.66666666666666,"height":84,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":270.6666666666667,"y":382.6666666666667,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":468,"y":365.3333333333333,"width":190.66666666666666,"height":84,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":484,"y":382.6666666666667,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":681.3333333333334,"y":365.3333333333333,"width":190.66666666666666,"height":84,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":697.3333333333334,"y":382.6666666666667,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"text","x":64,"y":522.6666666666666,"width":168,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":9},{"kind":"shape","x":254.66666666666666,"y":496,"width":190.66666666666666,"height":84,"shape":"rect","fill":"ECECE8"},{"kind":"text","x":270.6666666666667,"y":513.3333333333334,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":468,"y":496,"width":190.66666666666666,"height":84,"shape":"rect","fill":"ECECE8"},{"kind":"text","x":484,"y":513.3333333333334,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":681.3333333333334,"y":496,"width":190.66666666666666,"height":84,"shape":"rect","fill":"ECECE8"},{"kind":"text","x":697.3333333333334,"y":513.3333333333334,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"text","x":982.6666666666666,"y":245.33333333333334,"width":229.33333333333334,"height":148,"textRole":"body","fontSize":28,"textCapacity":18},{"kind":"text","x":982.6666666666666,"y":420,"width":233.33333333333334,"height":164,"textRole":"body","fontSize":20,"textCapacity":40},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":8,"sourceTitle":"Reconcile the benefit with the cost","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["bridge"],"recommendedRoles":["data"],"structureSummary":"Sequential contribution waterfall with an explicitly reconciled net change","zones":[{"kind":"shape","x":1157.3333333333333,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1170.6666666666667,"y":45.333333333333336,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1157.3333333333333,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"text","x":64,"y":552,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":458.6666666666667,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":365.3333333333333,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":272,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"shape","x":128,"y":377.3333333333333,"width":80,"height":186.66666666666666,"shape":"rect","fill":"F5F4EF"},{"kind":"text","x":114.66666666666667,"y":333.3333333333333,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":104,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":268,"y":317.6,"width":80,"height":59.73333333333333,"shape":"rect","fill":"898984"},{"kind":"text","x":254.66666666666666,"y":273.6,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":244,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":408,"y":317.6,"width":80,"height":24.266666666666666,"shape":"rect","fill":"4d4e49"},{"kind":"text","x":394.6666666666667,"y":273.6,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":384,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":548,"y":341.8666666666666,"width":80,"height":13.066666666666665,"shape":"rect","fill":"4d4e49"},{"kind":"text","x":534.6666666666666,"y":297.8666666666666,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":524,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":688,"y":354.9333333333334,"width":80,"height":209.06666666666663,"shape":"rect","fill":"F5F4EF"},{"kind":"text","x":674.6666666666666,"y":310.9333333333334,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":664,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"text","x":905.3333333333334,"y":221.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":273.3333333333333,"width":310.6666666666667,"height":102.66666666666667,"textRole":"title","fontSize":57,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":385.3333333333333,"width":310.6666666666667,"height":53.333333333333336,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":458.6666666666667,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":456,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":506.6666666666667,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":504,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":554.6666666666666,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":552,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"A small intervention, a measurable change","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["case"],"recommendedRoles":["comparison"],"structureSummary":"Intervention narrative beside paired before and after comparisons","zones":[{"kind":"shape","x":1157.3333333333333,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1170.6666666666667,"y":45.333333333333336,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1157.3333333333333,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":224,"width":386.6666666666667,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":24},{"kind":"title","x":64,"y":289.3333333333333,"width":384,"height":161.33333333333334,"textRole":"title","fontSize":34,"textCapacity":24},{"kind":"text","x":64,"y":492,"width":374.6666666666667,"height":104,"textRole":"body","fontSize":20,"textCapacity":42},{"kind":"text","x":552,"y":232,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":300,"width":388.8,"height":26.666666666666668,"shape":"rect","fill":"afaeaa"},{"kind":"shape","x":553.3333333333334,"y":340,"width":151.20000000000002,"height":26.666666666666668,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":1005.3333333333334,"y":305.3333333333333,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":552,"y":421.3333333333333,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":489.3333333333333,"width":198.72,"height":26.666666666666668,"shape":"rect","fill":"afaeaa"},{"kind":"shape","x":553.3333333333334,"y":529.3333333333334,"width":315.36,"height":26.666666666666668,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":1005.3333333333334,"y":494.6666666666667,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":10,"sourceTitle":"Connect each measure to a response","family":"table","titlePosition":"left","bodyColumns":2,"density":"high","features":["scorecard"],"recommendedRoles":["table"],"structureSummary":"Actual, target and response aligned across four measures","zones":[{"kind":"shape","x":1157.3333333333333,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1170.6666666666667,"y":45.333333333333336,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1157.3333333333333,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":373.3333333333333,"height":32,"textRole":"body","fontSize":11,"textCapacity":25},{"kind":"text","x":497.3333333333333,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":697.3333333333334,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":922.6666666666666,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":81.33333333333333,"y":294.6666666666667,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":285.3333333333333,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":298.6666666666667,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":297.3333333333333,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":298.6666666666667,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":376,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":366.6666666666667,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":380,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":378.6666666666667,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":380,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"shape","x":64,"y":434.6666666666667,"width":1152,"height":81.33333333333333,"shape":"rect","fill":"f3f5db"},{"kind":"shape","x":64,"y":434.6666666666667,"width":4,"height":81.33333333333333,"shape":"rect","fill":"0A0A0A"},{"kind":"text","x":81.33333333333333,"y":457.3333333333333,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":448,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":461.3333333333333,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":460,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":461.3333333333333,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":538.6666666666666,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":529.3333333333334,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":542.6666666666666,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":541.3333333333334,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":542.6666666666666,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Sequence the work around a decision gate","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["roadmap"],"recommendedRoles":["process"],"structureSummary":"Four timed workstreams and a decision gate","zones":[{"kind":"shape","x":1157.3333333333333,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":32,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1170.6666666666667,"y":45.333333333333336,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1157.3333333333333,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"shape","x":1184,"y":58.666666666666664,"width":13.333333333333334,"height":13.333333333333334,"shape":"rect","fill":"E6FF3D"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":324,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":22},{"kind":"text","x":421.3333333333333,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":617.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":813.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":1009.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":64,"y":273.3333333333333,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":313.3333333333333,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":406.6666666666667,"y":289.3333333333333,"width":176.4,"height":29.333333333333332,"shape":"rect","fill":"b6b5b1"},{"kind":"shape","x":579.0666666666667,"y":300,"width":8,"height":8,"shape":"ellipse","fill":"747371"},{"kind":"text","x":64,"y":354.6666666666667,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":394.6666666666667,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":543.8666666666667,"y":370.6666666666667,"width":254.79999999999998,"height":29.333333333333332,"shape":"rect","fill":"b6b5b1"},{"kind":"shape","x":794.6666666666666,"y":381.3333333333333,"width":8,"height":8,"shape":"ellipse","fill":"747371"},{"kind":"text","x":64,"y":436,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":476,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":759.4666666666667,"y":452,"width":215.60000000000002,"height":29.333333333333332,"shape":"rect","fill":"0A0A0A"},{"kind":"shape","x":971.0666666666667,"y":462.6666666666667,"width":8,"height":8,"shape":"ellipse","fill":"0A0A0A"},{"kind":"text","x":64,"y":517.3333333333334,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":557.3333333333334,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":955.4666666666666,"y":533.3333333333334,"width":235.20000000000002,"height":29.333333333333332,"shape":"rect","fill":"b6b5b1"},{"kind":"shape","x":1186.6666666666665,"y":544,"width":8,"height":8,"shape":"ellipse","fill":"747371"},{"kind":"shape","x":949.3333333333334,"y":592,"width":10.666666666666666,"height":10.666666666666666,"shape":"ellipse","fill":"E6FF3D"},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"Closing","family":"closing","titlePosition":"left","bodyColumns":1,"density":"medium","features":["closing"],"recommendedRoles":["closing"],"structureSummary":"Closing","zones":[{"kind":"text","x":64,"y":105.33333333333333,"width":1133.3333333333333,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"title","x":64,"y":245.33333333333334,"width":1146.6666666666667,"height":262.6666666666667,"textRole":"title","fontSize":55,"textCapacity":45},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""}]}},"dsh-consulting-curated-swiss-signal-grid":{"palette":{"background":"F5F3EE","surface":"FFFFFF","text":"111111","muted":"6E6D68","accent":"E52333","secondary":"CBC8C0"},"source":{"fileName":"swiss-signal-grid-reference.jpg","sha256":"241a3324d54d49da607d4185f7aa810beaaaf2d0185ce52eeca29195bf0c94c5","slideCount":12,"averageTextBlocks":20,"averageCharacters":435,"visualGrammar":"editorial-forest","recommendedDensity":"medium","designSummary":"# Swiss Signal Grid · WorkBuddy Original DESIGN SYSTEM\n\nThis original 16:9 system turns management evidence into a precise Swiss information field. Paper white, pure black, signal red, a strict modular grid, oversized numerals, vertical indexing, and chart-led compositions create a disciplined analytical voice. Every visible item in the reference deck remains an editable PPTD object.\n\n## Communication model\n\nUse this system for executive reviews, market intelligence, operating-model comparisons, risk concentration, and market-entry decisions. Each page starts with one management conclusion, lets the evidence occupy the main grid, and ends with a concrete implication, threshold, or action.\n\n1. State the decision or finding in the title before presenting supporting evidence.\n2. Give one dataset or comparison primary visual control of each page.\n3. Use signal red only for the selected metric, risk, threshold, or action.\n4. Keep source dates, units, statistical updates, and derived calculations next to the relevant evidence.\n5. Preserve a consistent vertical index and page coordinate so the sequence reads as one system.\n\n## Visual signature\n\nThe deck behaves like a printed information system rather than a dashboard. A black index rail fixes the left boundary. Thin rules expose the column logic. Oversized numbers become compositional anchors. Signal red cuts across the grid only when the audience must notice a material change. Square geometry, hard edges, asymmetric scale, and generous negative space keep the pages exact without becoming empty.\n\n### Color palette\n\n- Paper background `#F5F3EE`\n- White surface `#FFFFFF`\n- Pure black text and structure `#111111`\n- Warm gray secondary text `#6E6D68`\n- Hairline grid `#CBC8C0`\n- Pale structural wash `#E8E5DE`\n- Signal red `#E52333`\n\nPaper occupies 65–85% of normal analytical pages. Black establishes typography, axes, table headers, and the index rail. Red stays below 15% on most pages and identifies one focal message. Full black pages are reserved for capability shifts and final decisions.\n\n### Typography\n\n- Chinese titles, body, and numerals: `HarmonyOS Sans SC`, falling back to the host CJK sans serif.\n- Latin section labels use the same family in uppercase with increased tracking.\n- Page titles: bold, left aligned, 27–34 px on the 960 × 540 PPTD canvas.\n- Hero metrics: bold, 38–68 px, paired with a compact basis line.\n- Body and annotations: 11–15 px with short lines and explicit alignment to the grid.\n- Sources and calculation notes: 7–9 px, muted, and kept outside the primary visual field.\n\n### Grid and furniture\n\n- Canvas: PPTD v2, `960 × 540`, 16:9.\n- Use a strict 12-column mental grid with a narrow left index column and an 18–24 px baseline rhythm.\n- Main content begins on the same vertical axis after the index rail.\n- Titles, chart edges, table columns, and conclusion bands share grid lines.\n- Use thin black or gray rules to expose relationships. Rounded cards, floating shadows, and decorative icon rows do not belong to this system.\n- Crop English section labels or vertical numerals deliberately at page edges to create continuity without reducing Chinese readability.\n\n## Reusable components\n\n1. **Vertical index rail**: a black or red strip carrying the section code, page number, and sequence marker.\n2. **Signal metric**: one oversized numeral with a short denominator, period, and calculation basis.\n3. **Evidence spine**: a chart or table aligned across several columns and used as the page's structural backbone.\n4. **Decision band**: a black or red horizontal block containing the management implication.\n5. **Split field**: two unequal evidence regions separated by a rule for comparison, concentration, or mode choice.\n6. **Quadrant gate**: four hard-edged zones that compare potential with operational control.\n7. **Dark transition page**: a black field with numbered capability lines and one red shift statement.\n\n## Charts and tables\n\n- Charts participate in the page grid; they are never dropped into a decorative card.\n- Use black for the base structure, signal red for the current or selected series, and warm gray for context.\n- Prefer direct labels, compact axes, hairline guides, and square bars.\n- Preserve decimals with editable text labels when native Office chart formatting changes the disclosed value.\n- Comparison tables use a black header, paper body, thin gray borders, and one red implication line.\n- Every table, chart, or matrix closes with a management reading rather than a neutral caption.\n\n## Page rhythm\n\nThe reference sequence covers a thesis cover, three-signal summary, scale trajectory, export structure, concentration evidence, warehouse operating chain, mode comparison, capability shift, market-entry gate, and two audience-specific action paths. Reuse these page roles as a vocabulary while adapting their order to the next presentation.\n\nAlternate paper analytical pages with one or two black transition or decision pages. Vary the dominant structure across large numerals, charts, split comparisons, matrices, process strips, and action lists. Avoid repeating an equal-card composition.\n\n## Prohibited treatments\n\n- Empty minimalism with large unused areas and weak evidence density.\n- Repeated same-size rounded cards, generic dashboards, icon walls, and stock-photo hero pages.\n- Red applied to several unrelated elements on one page.\n- Decorative grid lines that do not align titles, evidence, or annotations.\n- Rasterized text, charts, tables, or decision structures that PPTD can represent natively.\n- External template pages, font files, images, logos, or brand assets copied into the pack.\n\n## Reference provenance\n\nThe design specification, PPTD source, page objects, charts, and rendered previews are original WorkBuddy artifacts. A public Swiss-style presentation case informed only the abstract grid discipline, typographic scale, controlled color ratio, and chart-led composition. The pack contains no downloaded template file, photograph, logo, font file, or proprietary brand asset.\n\n## Bilingual typography\n\nEnglish previews: source/. Chinese examples: source-zh/. English title/body: Arial / Arial. Chinese macOS: PingFang SC / PingFang SC; Windows: Microsoft YaHei / Microsoft YaHei; Linux: Noto Sans CJK SC / Noto Sans CJK SC. Font names only, no binaries. Use the user's requested output language, independently of the preview language. Reflow long translations; do not reduce text below readable size.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The ten established industry pages are preserved; two new analytical layouts are inserted before the closing.\n\n1. Reference page 1 — Raster-indexed page 1: 7 measured visual regions across 11 occupied landmark cells; dense density; cover composition.\n2. Reference page 2 — Raster-indexed page 2: 7 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n3. Reference page 3 — Raster-indexed page 3: 8 measured visual regions across 15 occupied landmark cells; dense density; grid composition.\n4. Reference page 4 — Raster-indexed page 4: 9 measured visual regions across 15 occupied landmark cells; dense density; grid composition.\n5. Reference page 5 — Raster-indexed page 5: 10 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n6. Reference page 6 — Raster-indexed page 6: 9 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n7. Reference page 7 — Raster-indexed page 7: 7 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n8. Reference page 8 — Raster-indexed page 8: 7 measured visual regions across 14 occupied landmark cells; dense density; grid composition.\n9. Reference page 9 — Raster-indexed page 9: 8 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n10. Reconcile the benefit with the cost — Sequential contribution waterfall with an explicitly reconciled net change\n11. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n12. Reference page 10 — Raster-indexed page 10: 9 measured visual regions across 15 occupied landmark cells; dense density; grid composition.\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":2,"density":"dense","averageTextFrames":9,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":17,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":24,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":19,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":18,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":21,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":7,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":23,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":22,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":26,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":19,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"Reference page 1","family":"cover","titlePosition":"left","bodyColumns":2,"density":"dense","features":["image","statement","kpi"],"recommendedRoles":["cover"],"structureSummary":"Raster-indexed page 1: 7 measured visual regions across 11 occupied landmark cells; dense density; cover composition.","zones":[{"kind":"text","x":0,"y":0,"width":320,"height":180,"textRole":"text"},{"kind":"title","x":320,"y":0,"width":960,"height":180,"textRole":"title"},{"kind":"image","x":0,"y":180,"width":640,"height":180,"backgroundFill":"FFFFFF"},{"kind":"text","x":0,"y":360,"width":320,"height":360,"textRole":"text"},{"kind":"text","x":320,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"shape","x":960,"y":360,"width":320,"height":180,"shape":"rect","fill":"E62333"},{"kind":"image","x":960,"y":540,"width":320,"height":180,"backgroundFill":"FFFFFF"}],"primaryVisual":{"kind":"image","x":0,"y":180,"width":640,"height":180,"areaRatio":0.125},"jsxReference":""},{"slideNumber":2,"sourceTitle":"Reference page 2","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 2: 7 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":320,"height":360,"backgroundFill":"FFFFFF"},{"kind":"image","x":320,"y":0,"width":320,"height":180,"backgroundFill":"FFFFFF"},{"kind":"title","x":320,"y":0,"width":960,"height":540,"textRole":"title"},{"kind":"text","x":960,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":0,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":0,"y":540,"width":320,"height":180,"backgroundFill":"FFFFFF"},{"kind":"shape","x":320,"y":540,"width":960,"height":180,"shape":"rect","fill":"121212"}],"primaryVisual":{"kind":"shape","x":320,"y":540,"width":960,"height":180,"areaRatio":0.188},"jsxReference":""},{"slideNumber":3,"sourceTitle":"Reference page 3","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 3: 8 measured visual regions across 15 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":640,"height":360,"backgroundFill":"FFFFFF"},{"kind":"title","x":320,"y":0,"width":960,"height":540,"textRole":"title"},{"kind":"image","x":640,"y":180,"width":320,"height":180,"backgroundFill":"FFFFFF"},{"kind":"shape","x":0,"y":360,"width":640,"height":180,"shape":"rect","fill":"121212"},{"kind":"shape","x":640,"y":360,"width":320,"height":180,"shape":"rect","fill":"E62434"},{"kind":"text","x":0,"y":540,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":320,"y":540,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":640,"y":540,"width":320,"height":180,"textRole":"text"}],"primaryVisual":{"kind":"image","x":0,"y":0,"width":640,"height":360,"areaRatio":0.25},"jsxReference":""},{"slideNumber":4,"sourceTitle":"Reference page 4","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 4: 9 measured visual regions across 15 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":320,"height":540,"backgroundFill":"FFFFFF"},{"kind":"image","x":320,"y":0,"width":320,"height":180,"backgroundFill":"FFFFFF"},{"kind":"title","x":640,"y":0,"width":640,"height":180,"textRole":"title"},{"kind":"shape","x":320,"y":180,"width":640,"height":180,"shape":"rect","fill":"E62333"},{"kind":"text","x":960,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":320,"y":360,"width":640,"height":180,"textRole":"text"},{"kind":"text","x":960,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":0,"y":540,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":320,"y":540,"width":640,"height":180,"textRole":"text"}],"primaryVisual":{"kind":"image","x":0,"y":0,"width":320,"height":540,"areaRatio":0.188},"jsxReference":""},{"slideNumber":5,"sourceTitle":"Reference page 5","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 5: 10 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":320,"height":720,"backgroundFill":"FFFFFF"},{"kind":"image","x":320,"y":0,"width":320,"height":180,"backgroundFill":"FFFFFF"},{"kind":"title","x":640,"y":0,"width":640,"height":180,"textRole":"title"},{"kind":"text","x":320,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":640,"y":180,"width":640,"height":360,"textRole":"text"},{"kind":"text","x":320,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":960,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":320,"y":540,"width":320,"height":180,"backgroundFill":"FFFFFF"},{"kind":"shape","x":640,"y":540,"width":320,"height":180,"shape":"rect","fill":"E62434"},{"kind":"text","x":960,"y":540,"width":320,"height":180,"textRole":"text"}],"primaryVisual":{"kind":"image","x":0,"y":0,"width":320,"height":720,"areaRatio":0.25},"jsxReference":""},{"slideNumber":6,"sourceTitle":"Reference page 6","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 6: 9 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":320,"height":360,"backgroundFill":"FFFFFF"},{"kind":"image","x":320,"y":0,"width":320,"height":180,"backgroundFill":"FFFFFF"},{"kind":"title","x":640,"y":0,"width":640,"height":180,"textRole":"title"},{"kind":"text","x":320,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":640,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"shape","x":960,"y":180,"width":320,"height":180,"shape":"rect","fill":"E62535"},{"kind":"shape","x":0,"y":360,"width":1280,"height":180,"shape":"rect","fill":"121212"},{"kind":"text","x":0,"y":540,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":320,"y":540,"width":960,"height":180,"textRole":"text"}],"primaryVisual":{"kind":"shape","x":0,"y":360,"width":1280,"height":180,"areaRatio":0.25},"jsxReference":""},{"slideNumber":7,"sourceTitle":"Reference page 7","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 7: 7 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":640,"height":360,"backgroundFill":"FFFFFF"},{"kind":"image","x":320,"y":0,"width":320,"height":180,"backgroundFill":"FFFFFF"},{"kind":"title","x":640,"y":0,"width":640,"height":180,"textRole":"title"},{"kind":"text","x":640,"y":180,"width":640,"height":180,"textRole":"text"},{"kind":"text","x":0,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":320,"y":360,"width":960,"height":360,"textRole":"text"},{"kind":"image","x":0,"y":540,"width":320,"height":180,"backgroundFill":"FFFFFF"}],"primaryVisual":{"kind":"image","x":0,"y":0,"width":640,"height":360,"areaRatio":0.25},"jsxReference":""},{"slideNumber":8,"sourceTitle":"Reference page 8","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 8: 7 measured visual regions across 14 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"title","x":0,"y":0,"width":320,"height":540,"textRole":"title"},{"kind":"text","x":320,"y":0,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":960,"y":0,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":320,"y":180,"width":640,"height":540,"textRole":"text"},{"kind":"image","x":960,"y":180,"width":320,"height":360,"backgroundFill":"FFFFFF"},{"kind":"image","x":0,"y":540,"width":320,"height":180,"backgroundFill":"FFFFFF"},{"kind":"text","x":960,"y":540,"width":320,"height":180,"textRole":"text"}],"primaryVisual":{"kind":"image","x":960,"y":180,"width":320,"height":360,"areaRatio":0.125},"jsxReference":""},{"slideNumber":9,"sourceTitle":"Reference page 9","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 9: 8 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":320,"height":540,"backgroundFill":"FFFFFF"},{"kind":"image","x":320,"y":0,"width":320,"height":180,"backgroundFill":"FFFFFF"},{"kind":"title","x":640,"y":0,"width":640,"height":180,"textRole":"title"},{"kind":"image","x":320,"y":180,"width":640,"height":180,"backgroundFill":"FFFFFF"},{"kind":"text","x":960,"y":180,"width":320,"height":360,"textRole":"text"},{"kind":"shape","x":320,"y":360,"width":640,"height":180,"shape":"rect","fill":"111111"},{"kind":"text","x":0,"y":540,"width":960,"height":180,"textRole":"text"},{"kind":"text","x":960,"y":540,"width":320,"height":180,"textRole":"text"}],"primaryVisual":{"kind":"image","x":0,"y":0,"width":320,"height":540,"areaRatio":0.188},"jsxReference":""},{"slideNumber":10,"sourceTitle":"Reconcile the benefit with the cost","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["bridge"],"recommendedRoles":["data"],"structureSummary":"Sequential contribution waterfall with an explicitly reconciled net change","zones":[{"kind":"shape","x":0,"y":0,"width":24,"height":720,"shape":"rect","fill":"111111"},{"kind":"shape","x":64,"y":76,"width":72,"height":4,"shape":"rect","fill":"E52333"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"text","x":64,"y":552,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":458.6666666666667,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":365.3333333333333,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":272,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"shape","x":128,"y":377.3333333333333,"width":80,"height":186.66666666666666,"shape":"rect","fill":"111111"},{"kind":"text","x":114.66666666666667,"y":333.3333333333333,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":104,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":268,"y":317.6,"width":80,"height":59.73333333333333,"shape":"rect","fill":"7e7d7b"},{"kind":"text","x":254.66666666666666,"y":273.6,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":244,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":408,"y":317.6,"width":80,"height":24.266666666666666,"shape":"rect","fill":"bcbbb7"},{"kind":"text","x":394.6666666666667,"y":273.6,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":384,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":548,"y":341.8666666666666,"width":80,"height":13.066666666666665,"shape":"rect","fill":"bcbbb7"},{"kind":"text","x":534.6666666666666,"y":297.8666666666666,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":524,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":688,"y":354.9333333333334,"width":80,"height":209.06666666666663,"shape":"rect","fill":"111111"},{"kind":"text","x":674.6666666666666,"y":310.9333333333334,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":664,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"text","x":905.3333333333334,"y":221.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":273.3333333333333,"width":310.6666666666667,"height":102.66666666666667,"textRole":"title","fontSize":57,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":385.3333333333333,"width":310.6666666666667,"height":53.333333333333336,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":458.6666666666667,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":456,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":506.6666666666667,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":504,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":554.6666666666666,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":552,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Choose the next move with evidence","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["matrix"],"recommendedRoles":["comparison"],"structureSummary":"Two-axis decision map with direct labels and a recommended next step","zones":[{"kind":"shape","x":0,"y":0,"width":24,"height":720,"shape":"rect","fill":"111111"},{"kind":"shape","x":64,"y":76,"width":72,"height":4,"shape":"rect","fill":"E52333"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":118.66666666666667,"y":245.33333333333334,"width":662.6666666666666,"height":336,"shape":"rect","fill":"edebe6"},{"kind":"shape","x":450.6666666666667,"y":245.33333333333334,"width":330.6666666666667,"height":168,"shape":"rect","fill":"f2c9c9"},{"kind":"text","x":137.33333333333334,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":137.33333333333334,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"shape","x":236,"y":345.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"888784"},{"kind":"text","x":269.3333333333333,"y":338.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":557.3333333333334,"y":322.6666666666667,"width":34.666666666666664,"height":34.666666666666664,"shape":"ellipse","fill":"111111"},{"kind":"text","x":598.6666666666666,"y":324,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":500,"y":376,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"888784"},{"kind":"text","x":533.3333333333334,"y":369.3333333333333,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":293.3333333333333,"y":462.6666666666667,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"888784"},{"kind":"text","x":326.6666666666667,"y":456,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":634.6666666666666,"y":473.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"888784"},{"kind":"text","x":668,"y":466.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"text","x":118.66666666666667,"y":589.3333333333334,"width":317.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":469.3333333333333,"y":589.3333333333334,"width":312,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":842.6666666666666,"y":230.66666666666666,"width":373.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":21},{"kind":"title","x":842.6666666666666,"y":286.6666666666667,"width":373.3333333333333,"height":82.66666666666667,"textRole":"title","fontSize":32,"textCapacity":8},{"kind":"text","x":842.6666666666666,"y":414.6666666666667,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":414.6666666666667,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":476,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":476,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":537.3333333333334,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":537.3333333333334,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"Reference page 10","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 10: 9 measured visual regions across 15 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"shape","x":0,"y":0,"width":320,"height":360,"shape":"rect","fill":"E62333"},{"kind":"title","x":320,"y":0,"width":320,"height":180,"textRole":"title"},{"kind":"text","x":960,"y":0,"width":320,"height":540,"textRole":"text"},{"kind":"text","x":320,"y":180,"width":320,"height":360,"textRole":"text"},{"kind":"text","x":640,"y":180,"width":320,"height":360,"textRole":"text"},{"kind":"text","x":0,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":0,"y":540,"width":320,"height":180,"backgroundFill":"FFFFFF"},{"kind":"image","x":320,"y":540,"width":320,"height":180,"backgroundFill":"FFFFFF"},{"kind":"text","x":640,"y":540,"width":640,"height":180,"textRole":"text"}],"primaryVisual":{"kind":"shape","x":0,"y":0,"width":320,"height":360,"areaRatio":0.125},"jsxReference":""}],"extractedAt":"2026-08-27T00:00:00.000Z"}},"dsh-cartesian":{"palette":{"background":"EDE8E0","text":"1A1A1A","accent":"8A8178","surface":"E2DBD1","secondary":"5A5A5A","muted":"5A5A5A"},"source":{"fileName":"cartesian-reference.jpg","sha256":"92d3e9126ea77f522857b431b287de482a81f7137a6e7b6a9f1758389fe0b5af","slideCount":12,"averageTextBlocks":19,"averageCharacters":312,"visualGrammar":"cartesian","recommendedDensity":"medium","designSummary":"# Cartesian / 理性简报\n\nAdapted from Zara Zhang's Cartesian, commit e5e204fb1f3b06290846e7dcd7aceddabeceec8c. MIT. This native edition rebuilds twelve editable layouts; it is not an HTML import or an exact copy of every upstream slide.\n\n## Typography\n\nEnglish display: Georgia; English body: Arial. These portable Office substitutions replace the upstream display face Playfair Display. Chinese display: Songti SC; body: PingFang SC. On Windows use SimSun / Microsoft YaHei; on Linux use Noto Serif CJK SC / Noto Sans CJK SC. No font binary is distributed. Keep the serif/sans distinction.\n\nEnglish previews use source/. Chinese examples use source-zh/. Preview language does not select the language of the user's output. Choose the matching fonts for the actual content; reflow longer translations instead of shrinking titles.\n\n## Layout grammar\n\n A quiet, museum-catalog editorial system built on Playfair Display serif headlines, Inter sans body, and a five-tone warm-stone palette. The aesthetic is \"consulting deck meets architectural monograph\" — minimal geometric line decorations (thin circles, dashed arcs, vertical and horizontal hairlines) drift behind content, suggesting drafting paper and compass work. Every divider is a single 1px line in a muted taupe; nothing is bold, nothing is loud. The cultural reference is Massimo Vignelli's editorial work, the Cooper Hewitt catalog, and pencil-and-tracing-paper urban planning documents.\n\n1. Cover (cover)\n2. Agenda (agenda)\n3. Insights (insights)\n4. Metrics (data)\n5. Comparison chart (data)\n6. Process (process)\n7. Before and after (comparison)\n8. Closing (closing)\n\nAll charts and diagrams are native editable vectors. Example figures are illustrative, not reported facts. Retain a 48 pt outer margin and use 16:9, 960 × 540 pt.\n\nCopyright (c) 2026 Zara Zhang. DSH adaptation 2026-09-06. See licenses/zara/LICENSE and the pinned source design specification.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. Cover — Cover\n2. Turn uncertainty into a decision — Asymmetric argument with three supporting evidence rows\n3. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n4. Separate the record from the explanation — Interview excerpt, observation, competing explanation and next check\n5. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n6. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n7. Design the test before reading the result — One hypothesis with comparison, measure and a predeclared decision rule\n8. Reconcile the benefit with the cost — Sequential contribution waterfall with an explicitly reconciled net change\n9. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n10. Connect each measure to a response — Actual, target and response aligned across four measures\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. Closing — Closing\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":5,"averageMediaFrames":0},{"family":"insights","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":20,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":17,"averageMediaFrames":0},{"family":"quote","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":18,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":26,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":16,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"table","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":19,"averageMediaFrames":0},{"family":"closing","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":4,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"Cover","family":"cover","titlePosition":"left","bodyColumns":1,"density":"medium","features":["cover"],"recommendedRoles":["cover"],"structureSummary":"Cover","zones":[{"kind":"shape","x":942.6666666666666,"y":253.33333333333334,"width":242.66666666666666,"height":242.66666666666666,"shape":"ellipse","fill":"EDE8E0"},{"kind":"text","x":64,"y":206.66666666666666,"width":1066.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":72},{"kind":"title","x":64,"y":300,"width":906.6666666666666,"height":140,"textRole":"title","fontSize":66,"textCapacity":10},{"kind":"text","x":64,"y":472,"width":860,"height":73.33333333333333,"textRole":"body","fontSize":21,"textCapacity":60},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":2,"sourceTitle":"Turn uncertainty into a decision","family":"insights","titlePosition":"left","bodyColumns":2,"density":"medium","features":["thesis"],"recommendedRoles":["insights"],"structureSummary":"Asymmetric argument with three supporting evidence rows","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":218.66666666666666,"width":464,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":26},{"kind":"title","x":64,"y":276,"width":442.6666666666667,"height":236,"textRole":"title","fontSize":30,"textCapacity":55},{"kind":"text","x":64,"y":560,"width":440,"height":57.333333333333336,"textRole":"body","fontSize":17,"textCapacity":38},{"kind":"text","x":588,"y":222.66666666666666,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":226.66666666666666,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":234.66666666666666,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":281.3333333333333,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":348,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":352,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":360,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":406.6666666666667,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":473.3333333333333,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":477.3333333333333,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":485.3333333333333,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":532,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Trace the question to testable branches","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["tree"],"recommendedRoles":["process"],"structureSummary":"Three-branch hypothesis tree with six testable leaves","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":64,"y":362.6666666666667,"width":292,"height":140,"shape":"rect","fill":"8A8178"},{"kind":"text","x":80,"y":380,"width":260,"height":114.66666666666667,"textRole":"body","fontSize":18,"textCapacity":40},{"kind":"shape","x":466.6666666666667,"y":245.33333333333334,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"E2DBD1"},{"kind":"text","x":482.6666666666667,"y":262.6666666666667,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":236,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":292,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":376,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"E2DBD1"},{"kind":"text","x":482.6666666666667,"y":393.3333333333333,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":366.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":422.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":506.6666666666667,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"E2DBD1"},{"kind":"text","x":482.6666666666667,"y":524,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":497.3333333333333,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":553.3333333333334,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Separate the record from the explanation","family":"quote","titlePosition":"left","bodyColumns":2,"density":"high","features":["evidence"],"recommendedRoles":["quote"],"structureSummary":"Interview excerpt, observation, competing explanation and next check","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":64,"y":234.66666666666666,"width":369.3333333333333,"height":365.3333333333333,"shape":"rect","fill":"E2DBD1"},{"kind":"text","x":92,"y":253.33333333333334,"width":313.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":46},{"kind":"text","x":92,"y":317.3333333333333,"width":309.3333333333333,"height":173.33333333333334,"textRole":"body","fontSize":28,"textCapacity":32},{"kind":"text","x":92,"y":546.6666666666666,"width":312,"height":36,"textRole":"body","fontSize":12,"textCapacity":38},{"kind":"title","x":482.6666666666667,"y":221.33333333333334,"width":253.33333333333334,"height":90.66666666666667,"textRole":"title","fontSize":48,"textCapacity":3},{"kind":"text","x":740,"y":234.66666666666666,"width":462.6666666666667,"height":64,"textRole":"body","fontSize":22,"textCapacity":15},{"kind":"shape","x":485.3333333333333,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"1A1A1A"},{"kind":"shape","x":514.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"1A1A1A"},{"kind":"shape","x":544,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"1A1A1A"},{"kind":"shape","x":573.3333333333334,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"c7c3bc"},{"kind":"shape","x":602.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"c7c3bc"},{"kind":"shape","x":632,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"c7c3bc"},{"kind":"shape","x":661.3333333333334,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"c7c3bc"},{"kind":"shape","x":690.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"c7c3bc"},{"kind":"text","x":748,"y":317.3333333333333,"width":468,"height":33.333333333333336,"textRole":"body","fontSize":10,"textCapacity":70},{"kind":"text","x":482.6666666666667,"y":390.6666666666667,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":389.3333333333333,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":482.6666666666667,"y":466.6666666666667,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":465.3333333333333,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":482.6666666666667,"y":542.6666666666666,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":541.3333333333334,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":5,"sourceTitle":"Choose the next move with evidence","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["matrix"],"recommendedRoles":["comparison"],"structureSummary":"Two-axis decision map with direct labels and a recommended next step","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":118.66666666666667,"y":245.33333333333334,"width":662.6666666666666,"height":336,"shape":"rect","fill":"e6e1d9"},{"kind":"shape","x":450.6666666666667,"y":245.33333333333334,"width":330.6666666666667,"height":168,"shape":"rect","fill":"d9d3cb"},{"kind":"text","x":137.33333333333334,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":137.33333333333334,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"shape","x":236,"y":345.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"888581"},{"kind":"text","x":269.3333333333333,"y":338.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":557.3333333333334,"y":322.6666666666667,"width":34.666666666666664,"height":34.666666666666664,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":598.6666666666666,"y":324,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":500,"y":376,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"888581"},{"kind":"text","x":533.3333333333334,"y":369.3333333333333,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":293.3333333333333,"y":462.6666666666667,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"888581"},{"kind":"text","x":326.6666666666667,"y":456,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":634.6666666666666,"y":473.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"888581"},{"kind":"text","x":668,"y":466.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"text","x":118.66666666666667,"y":589.3333333333334,"width":317.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":469.3333333333333,"y":589.3333333333334,"width":312,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":842.6666666666666,"y":230.66666666666666,"width":373.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":21},{"kind":"title","x":842.6666666666666,"y":286.6666666666667,"width":373.3333333333333,"height":82.66666666666667,"textRole":"title","fontSize":32,"textCapacity":8},{"kind":"text","x":842.6666666666666,"y":414.6666666666667,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":414.6666666666667,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":476,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":476,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":537.3333333333334,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":537.3333333333334,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":6,"sourceTitle":"Read the trend and investigate the pause","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["trend"],"recommendedRoles":["data"],"structureSummary":"Labeled six-point trend with common scale and a separate interpretation","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":437.3333333333333,"y":253.33333333333334,"width":121.33333333333333,"height":314.6666666666667,"shape":"rect","fill":"e3ded6"},{"kind":"text","x":64,"y":554.6666666666666,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":480,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":405.3333333333333,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":330.6666666666667,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":256,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"shape","x":134.4,"y":377.06666666666666,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":108,"y":341.3333333333333,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":117.33333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":265.06666666666666,"y":362.13333333333327,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":238.66666666666666,"y":326.3999999999999,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":248,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":395.73333333333335,"y":350.93333333333334,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":369.3333333333333,"y":315.2,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":378.6666666666667,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":524,"y":352.2666666666667,"width":13.333333333333334,"height":13.333333333333334,"shape":"ellipse","fill":"8A8178"},{"kind":"text","x":500,"y":318.9333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":509.3333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":657.0666666666667,"y":324.8,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":630.6666666666666,"y":289.06666666666666,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":640,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":787.7333333333332,"y":298.6666666666667,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":761.3333333333334,"y":262.93333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":770.6666666666666,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"text","x":365.3333333333333,"y":248,"width":206.66666666666666,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":11},{"kind":"text","x":905.3333333333334,"y":217.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":269.3333333333333,"width":310.6666666666667,"height":104,"textRole":"title","fontSize":56,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":381.3333333333333,"width":305.3333333333333,"height":73.33333333333333,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":492,"width":305.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":10,"textCapacity":44},{"kind":"text","x":905.3333333333334,"y":538.6666666666666,"width":305.3333333333333,"height":66.66666666666667,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":7,"sourceTitle":"Design the test before reading the result","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["experiment"],"recommendedRoles":["comparison"],"structureSummary":"One hypothesis with comparison, measure and a predeclared decision rule","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"title","x":64,"y":232,"width":366.6666666666667,"height":138.66666666666666,"textRole":"title","fontSize":32,"textCapacity":16},{"kind":"text","x":64,"y":441.3333333333333,"width":370.6666666666667,"height":156,"textRole":"body","fontSize":21,"textCapacity":65},{"kind":"text","x":536,"y":236,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":236,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":330.6666666666667,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":330.6666666666667,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":425.3333333333333,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":425.3333333333333,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":520,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":520,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":8,"sourceTitle":"Reconcile the benefit with the cost","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["bridge"],"recommendedRoles":["data"],"structureSummary":"Sequential contribution waterfall with an explicitly reconciled net change","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"text","x":64,"y":552,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":458.6666666666667,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":365.3333333333333,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":272,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"shape","x":128,"y":377.3333333333333,"width":80,"height":186.66666666666666,"shape":"rect","fill":"1A1A1A"},{"kind":"text","x":114.66666666666667,"y":333.3333333333333,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":104,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":268,"y":317.6,"width":80,"height":59.73333333333333,"shape":"rect","fill":"7f7d79"},{"kind":"text","x":254.66666666666666,"y":273.6,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":244,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":408,"y":317.6,"width":80,"height":24.266666666666666,"shape":"rect","fill":"b8b5af"},{"kind":"text","x":394.6666666666667,"y":273.6,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":384,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":548,"y":341.8666666666666,"width":80,"height":13.066666666666665,"shape":"rect","fill":"b8b5af"},{"kind":"text","x":534.6666666666666,"y":297.8666666666666,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":524,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":688,"y":354.9333333333334,"width":80,"height":209.06666666666663,"shape":"rect","fill":"1A1A1A"},{"kind":"text","x":674.6666666666666,"y":310.9333333333334,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":664,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"text","x":905.3333333333334,"y":221.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":273.3333333333333,"width":310.6666666666667,"height":102.66666666666667,"textRole":"title","fontSize":57,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":385.3333333333333,"width":310.6666666666667,"height":53.333333333333336,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":458.6666666666667,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":456,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":506.6666666666667,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":504,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":554.6666666666666,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":552,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"A small intervention, a measurable change","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["case"],"recommendedRoles":["comparison"],"structureSummary":"Intervention narrative beside paired before and after comparisons","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":224,"width":386.6666666666667,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":24},{"kind":"title","x":64,"y":289.3333333333333,"width":384,"height":161.33333333333334,"textRole":"title","fontSize":34,"textCapacity":24},{"kind":"text","x":64,"y":492,"width":374.6666666666667,"height":104,"textRole":"body","fontSize":20,"textCapacity":42},{"kind":"text","x":552,"y":232,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":300,"width":388.8,"height":26.666666666666668,"shape":"rect","fill":"aeaaa5"},{"kind":"shape","x":553.3333333333334,"y":340,"width":151.20000000000002,"height":26.666666666666668,"shape":"rect","fill":"8A8178"},{"kind":"text","x":1005.3333333333334,"y":305.3333333333333,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":552,"y":421.3333333333333,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":489.3333333333333,"width":198.72,"height":26.666666666666668,"shape":"rect","fill":"aeaaa5"},{"kind":"shape","x":553.3333333333334,"y":529.3333333333334,"width":315.36,"height":26.666666666666668,"shape":"rect","fill":"8A8178"},{"kind":"text","x":1005.3333333333334,"y":494.6666666666667,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":10,"sourceTitle":"Connect each measure to a response","family":"table","titlePosition":"left","bodyColumns":2,"density":"high","features":["scorecard"],"recommendedRoles":["table"],"structureSummary":"Actual, target and response aligned across four measures","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":373.3333333333333,"height":32,"textRole":"body","fontSize":11,"textCapacity":25},{"kind":"text","x":497.3333333333333,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":697.3333333333334,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":922.6666666666666,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":81.33333333333333,"y":294.6666666666667,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":285.3333333333333,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":298.6666666666667,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":297.3333333333333,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":298.6666666666667,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":376,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":366.6666666666667,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":380,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":378.6666666666667,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":380,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"shape","x":64,"y":434.6666666666667,"width":1152,"height":81.33333333333333,"shape":"rect","fill":"e2ddd5"},{"kind":"shape","x":64,"y":434.6666666666667,"width":4,"height":81.33333333333333,"shape":"rect","fill":"1A1A1A"},{"kind":"text","x":81.33333333333333,"y":457.3333333333333,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":448,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":461.3333333333333,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":460,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":461.3333333333333,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":538.6666666666666,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":529.3333333333334,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":542.6666666666666,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":541.3333333333334,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":542.6666666666666,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Sequence the work around a decision gate","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["roadmap"],"recommendedRoles":["process"],"structureSummary":"Four timed workstreams and a decision gate","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":324,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":22},{"kind":"text","x":421.3333333333333,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":617.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":813.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":1009.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":64,"y":273.3333333333333,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":313.3333333333333,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":406.6666666666667,"y":289.3333333333333,"width":176.4,"height":29.333333333333332,"shape":"rect","fill":"b4b0ab"},{"kind":"shape","x":579.0666666666667,"y":300,"width":8,"height":8,"shape":"ellipse","fill":"797773"},{"kind":"text","x":64,"y":354.6666666666667,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":394.6666666666667,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":543.8666666666667,"y":370.6666666666667,"width":254.79999999999998,"height":29.333333333333332,"shape":"rect","fill":"b4b0ab"},{"kind":"shape","x":794.6666666666666,"y":381.3333333333333,"width":8,"height":8,"shape":"ellipse","fill":"797773"},{"kind":"text","x":64,"y":436,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":476,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":759.4666666666667,"y":452,"width":215.60000000000002,"height":29.333333333333332,"shape":"rect","fill":"1A1A1A"},{"kind":"shape","x":971.0666666666667,"y":462.6666666666667,"width":8,"height":8,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":64,"y":517.3333333333334,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":557.3333333333334,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":955.4666666666666,"y":533.3333333333334,"width":235.20000000000002,"height":29.333333333333332,"shape":"rect","fill":"b4b0ab"},{"kind":"shape","x":1186.6666666666665,"y":544,"width":8,"height":8,"shape":"ellipse","fill":"797773"},{"kind":"shape","x":949.3333333333334,"y":592,"width":10.666666666666666,"height":10.666666666666666,"shape":"ellipse","fill":"8A8178"},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"Closing","family":"closing","titlePosition":"left","bodyColumns":1,"density":"medium","features":["closing"],"recommendedRoles":["closing"],"structureSummary":"Closing","zones":[{"kind":"text","x":64,"y":105.33333333333333,"width":1133.3333333333333,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"title","x":64,"y":245.33333333333334,"width":1146.6666666666667,"height":262.6666666666667,"textRole":"title","fontSize":55,"textCapacity":45},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""}]}},"dsh-signal":{"palette":{"background":"1C2644","text":"E2DCD0","accent":"C8A870","surface":"232F55","secondary":"8A96A8","muted":"8A96A8"},"source":{"fileName":"signal-reference.jpg","sha256":"5dcc0f63b888403fded3f333223cfd66bb6ad15437eaaee529757aabddceb5c7","slideCount":12,"averageTextBlocks":19,"averageCharacters":298,"visualGrammar":"signal","recommendedDensity":"medium","designSummary":"# Signal / 深蓝决策\n\nAdapted from Zara Zhang's Signal, commit e5e204fb1f3b06290846e7dcd7aceddabeceec8c. MIT. This native edition rebuilds twelve editable layouts; it is not an HTML import or an exact copy of every upstream slide.\n\n## Typography\n\nEnglish display: Georgia; English body: Arial. These portable Office substitutions replace the upstream display face Source Serif 4. Chinese display: Songti SC; body: PingFang SC. On Windows use SimSun / Microsoft YaHei; on Linux use Noto Serif CJK SC / Noto Sans CJK SC. No font binary is distributed. Keep the serif/sans distinction.\n\nEnglish previews use source/. Chinese examples use source-zh/. Preview language does not select the language of the user's output. Choose the matching fonts for the actual content; reflow longer translations instead of shrinking titles.\n\n## Layout grammar\n\n A literary editorial presentation system in the spirit of a long-form magazine — The Economist's restraint crossed with a private intelligence briefing. Source Serif 4 carries every headline with roman/italic mixing mid-sentence in antique gold, DM Sans steps back for body, and IBM Plex Mono runs all the timestamps, kickers, and chrome. The dual surface system is warm cream paper (#F0ECE3) and deep editorial navy (#1C2644), connected by a single hot accent — antique gold (#C8A870) — used only on rules, italic emphasis, and numerical figures. A near-invisible 80px grid texture overlays every dark slide as a fingerprint. The effect is sober, considered, and a little bit aristocratic.\n\n1. Cover (cover)\n2. Agenda (agenda)\n3. Insights (insights)\n4. Metrics (data)\n5. Comparison chart (data)\n6. Process (process)\n7. Before and after (comparison)\n8. Closing (closing)\n\nAll charts and diagrams are native editable vectors. Example figures are illustrative, not reported facts. Retain a 48 pt outer margin and use 16:9, 960 × 540 pt.\n\nCopyright (c) 2026 Zara Zhang. DSH adaptation 2026-09-06. See licenses/zara/LICENSE and the pinned source design specification.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. Cover — Cover\n2. Turn uncertainty into a decision — Asymmetric argument with three supporting evidence rows\n3. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n4. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n5. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n6. Reconcile the benefit with the cost — Sequential contribution waterfall with an explicitly reconciled net change\n7. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n8. Locate the friction along the journey — Four stages aligned across actions and independent outcome measures\n9. Design the test before reading the result — One hypothesis with comparison, measure and a predeclared decision rule\n10. Connect each measure to a response — Actual, target and response aligned across four measures\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. Closing — Closing\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":5,"averageMediaFrames":0},{"family":"insights","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":20,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":17,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":26,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":21,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":16,"averageMediaFrames":0},{"family":"table","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":19,"averageMediaFrames":0},{"family":"closing","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":4,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"Cover","family":"cover","titlePosition":"left","bodyColumns":1,"density":"medium","features":["cover"],"recommendedRoles":["cover"],"structureSummary":"Cover","zones":[{"kind":"text","x":85.33333333333333,"y":98.66666666666667,"width":1040,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":70},{"kind":"title","x":85.33333333333333,"y":253.33333333333334,"width":1066.6666666666667,"height":226.66666666666666,"textRole":"title","fontSize":70,"textCapacity":22},{"kind":"text","x":85.33333333333333,"y":537.3333333333334,"width":1040,"height":58.666666666666664,"textRole":"body","fontSize":22,"textCapacity":35},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":2,"sourceTitle":"Turn uncertainty into a decision","family":"insights","titlePosition":"left","bodyColumns":2,"density":"medium","features":["thesis"],"recommendedRoles":["insights"],"structureSummary":"Asymmetric argument with three supporting evidence rows","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":218.66666666666666,"width":464,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":26},{"kind":"title","x":64,"y":276,"width":442.6666666666667,"height":236,"textRole":"title","fontSize":30,"textCapacity":55},{"kind":"text","x":64,"y":560,"width":440,"height":57.333333333333336,"textRole":"body","fontSize":17,"textCapacity":38},{"kind":"text","x":588,"y":222.66666666666666,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":226.66666666666666,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":234.66666666666666,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":281.3333333333333,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":348,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":352,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":360,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":406.6666666666667,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":473.3333333333333,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":477.3333333333333,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":485.3333333333333,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":532,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Trace the question to testable branches","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["tree"],"recommendedRoles":["process"],"structureSummary":"Three-branch hypothesis tree with six testable leaves","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":64,"y":362.6666666666667,"width":292,"height":140,"shape":"rect","fill":"C8A870"},{"kind":"text","x":80,"y":380,"width":260,"height":114.66666666666667,"textRole":"body","fontSize":18,"textCapacity":40},{"kind":"shape","x":466.6666666666667,"y":245.33333333333334,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"232F55"},{"kind":"text","x":482.6666666666667,"y":262.6666666666667,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":236,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":292,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":376,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"232F55"},{"kind":"text","x":482.6666666666667,"y":393.3333333333333,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":366.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":422.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":506.6666666666667,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"232F55"},{"kind":"text","x":482.6666666666667,"y":524,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":497.3333333333333,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":553.3333333333334,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Read the trend and investigate the pause","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["trend"],"recommendedRoles":["data"],"structureSummary":"Labeled six-point trend with common scale and a separate interpretation","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":437.3333333333333,"y":253.33333333333334,"width":121.33333333333333,"height":314.6666666666667,"shape":"rect","fill":"2d3348"},{"kind":"text","x":64,"y":554.6666666666666,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":480,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":405.3333333333333,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":330.6666666666667,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":256,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"shape","x":134.4,"y":377.06666666666666,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"E2DCD0"},{"kind":"text","x":108,"y":341.3333333333333,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":117.33333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":265.06666666666666,"y":362.13333333333327,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"E2DCD0"},{"kind":"text","x":238.66666666666666,"y":326.3999999999999,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":248,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":395.73333333333335,"y":350.93333333333334,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"E2DCD0"},{"kind":"text","x":369.3333333333333,"y":315.2,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":378.6666666666667,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":524,"y":352.2666666666667,"width":13.333333333333334,"height":13.333333333333334,"shape":"ellipse","fill":"C8A870"},{"kind":"text","x":500,"y":318.9333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":509.3333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":657.0666666666667,"y":324.8,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"E2DCD0"},{"kind":"text","x":630.6666666666666,"y":289.06666666666666,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":640,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":787.7333333333332,"y":298.6666666666667,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"E2DCD0"},{"kind":"text","x":761.3333333333334,"y":262.93333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":770.6666666666666,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"text","x":365.3333333333333,"y":248,"width":206.66666666666666,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":11},{"kind":"text","x":905.3333333333334,"y":217.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":269.3333333333333,"width":310.6666666666667,"height":104,"textRole":"title","fontSize":56,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":381.3333333333333,"width":305.3333333333333,"height":73.33333333333333,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":492,"width":305.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":10,"textCapacity":44},{"kind":"text","x":905.3333333333334,"y":538.6666666666666,"width":305.3333333333333,"height":66.66666666666667,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":5,"sourceTitle":"Choose the next move with evidence","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["matrix"],"recommendedRoles":["comparison"],"structureSummary":"Two-axis decision map with direct labels and a recommended next step","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":118.66666666666667,"y":245.33333333333334,"width":662.6666666666666,"height":336,"shape":"rect","fill":"232c49"},{"kind":"shape","x":450.6666666666667,"y":245.33333333333334,"width":330.6666666666667,"height":168,"shape":"rect","fill":"3e404d"},{"kind":"text","x":137.33333333333334,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":137.33333333333334,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"shape","x":236,"y":345.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"7b7d87"},{"kind":"text","x":269.3333333333333,"y":338.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":557.3333333333334,"y":322.6666666666667,"width":34.666666666666664,"height":34.666666666666664,"shape":"ellipse","fill":"E2DCD0"},{"kind":"text","x":598.6666666666666,"y":324,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":500,"y":376,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"7b7d87"},{"kind":"text","x":533.3333333333334,"y":369.3333333333333,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":293.3333333333333,"y":462.6666666666667,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"7b7d87"},{"kind":"text","x":326.6666666666667,"y":456,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":634.6666666666666,"y":473.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"7b7d87"},{"kind":"text","x":668,"y":466.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"text","x":118.66666666666667,"y":589.3333333333334,"width":317.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":469.3333333333333,"y":589.3333333333334,"width":312,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":842.6666666666666,"y":230.66666666666666,"width":373.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":21},{"kind":"title","x":842.6666666666666,"y":286.6666666666667,"width":373.3333333333333,"height":82.66666666666667,"textRole":"title","fontSize":32,"textCapacity":8},{"kind":"text","x":842.6666666666666,"y":414.6666666666667,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":414.6666666666667,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":476,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":476,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":537.3333333333334,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":537.3333333333334,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":6,"sourceTitle":"Reconcile the benefit with the cost","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["bridge"],"recommendedRoles":["data"],"structureSummary":"Sequential contribution waterfall with an explicitly reconciled net change","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"text","x":64,"y":552,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":458.6666666666667,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":365.3333333333333,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":272,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"shape","x":128,"y":377.3333333333333,"width":80,"height":186.66666666666666,"shape":"rect","fill":"E2DCD0"},{"kind":"text","x":114.66666666666667,"y":333.3333333333333,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":104,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":268,"y":317.6,"width":80,"height":59.73333333333333,"shape":"rect","fill":"83858d"},{"kind":"text","x":254.66666666666666,"y":273.6,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":244,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":408,"y":317.6,"width":80,"height":24.266666666666666,"shape":"rect","fill":"4e5467"},{"kind":"text","x":394.6666666666667,"y":273.6,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":384,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":548,"y":341.8666666666666,"width":80,"height":13.066666666666665,"shape":"rect","fill":"4e5467"},{"kind":"text","x":534.6666666666666,"y":297.8666666666666,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":524,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":688,"y":354.9333333333334,"width":80,"height":209.06666666666663,"shape":"rect","fill":"E2DCD0"},{"kind":"text","x":674.6666666666666,"y":310.9333333333334,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":664,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"text","x":905.3333333333334,"y":221.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":273.3333333333333,"width":310.6666666666667,"height":102.66666666666667,"textRole":"title","fontSize":57,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":385.3333333333333,"width":310.6666666666667,"height":53.333333333333336,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":458.6666666666667,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":456,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":506.6666666666667,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":504,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":554.6666666666666,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":552,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":7,"sourceTitle":"A small intervention, a measurable change","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["case"],"recommendedRoles":["comparison"],"structureSummary":"Intervention narrative beside paired before and after comparisons","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":224,"width":386.6666666666667,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":24},{"kind":"title","x":64,"y":289.3333333333333,"width":384,"height":161.33333333333334,"textRole":"title","fontSize":34,"textCapacity":24},{"kind":"text","x":64,"y":492,"width":374.6666666666667,"height":104,"textRole":"body","fontSize":20,"textCapacity":42},{"kind":"text","x":552,"y":232,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":300,"width":388.8,"height":26.666666666666668,"shape":"rect","fill":"575d6e"},{"kind":"shape","x":553.3333333333334,"y":340,"width":151.20000000000002,"height":26.666666666666668,"shape":"rect","fill":"C8A870"},{"kind":"text","x":1005.3333333333334,"y":305.3333333333333,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":552,"y":421.3333333333333,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":489.3333333333333,"width":198.72,"height":26.666666666666668,"shape":"rect","fill":"575d6e"},{"kind":"shape","x":553.3333333333334,"y":529.3333333333334,"width":315.36,"height":26.666666666666668,"shape":"rect","fill":"C8A870"},{"kind":"text","x":1005.3333333333334,"y":494.6666666666667,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":8,"sourceTitle":"Locate the friction along the journey","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["journey"],"recommendedRoles":["process"],"structureSummary":"Four stages aligned across actions and independent outcome measures","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":250.66666666666666,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"text","x":64,"y":376,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"text","x":64,"y":501.3333333333333,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"shape","x":244,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"232F55"},{"kind":"text","x":260,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":244,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":244,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":488,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"C8A870"},{"kind":"text","x":504,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":488,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":488,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":732,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"232F55"},{"kind":"text","x":748,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":732,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":732,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":976,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"232F55"},{"kind":"text","x":992,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":976,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":976,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"Design the test before reading the result","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["experiment"],"recommendedRoles":["comparison"],"structureSummary":"One hypothesis with comparison, measure and a predeclared decision rule","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"title","x":64,"y":232,"width":366.6666666666667,"height":138.66666666666666,"textRole":"title","fontSize":32,"textCapacity":16},{"kind":"text","x":64,"y":441.3333333333333,"width":370.6666666666667,"height":156,"textRole":"body","fontSize":21,"textCapacity":65},{"kind":"text","x":536,"y":236,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":236,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":330.6666666666667,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":330.6666666666667,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":425.3333333333333,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":425.3333333333333,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":520,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":520,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":10,"sourceTitle":"Connect each measure to a response","family":"table","titlePosition":"left","bodyColumns":2,"density":"high","features":["scorecard"],"recommendedRoles":["table"],"structureSummary":"Actual, target and response aligned across four measures","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":373.3333333333333,"height":32,"textRole":"body","fontSize":11,"textCapacity":25},{"kind":"text","x":497.3333333333333,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":697.3333333333334,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":922.6666666666666,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":81.33333333333333,"y":294.6666666666667,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":285.3333333333333,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":298.6666666666667,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":297.3333333333333,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":298.6666666666667,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":376,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":366.6666666666667,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":380,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":378.6666666666667,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":380,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"shape","x":64,"y":434.6666666666667,"width":1152,"height":81.33333333333333,"shape":"rect","fill":"2f3449"},{"kind":"shape","x":64,"y":434.6666666666667,"width":4,"height":81.33333333333333,"shape":"rect","fill":"E2DCD0"},{"kind":"text","x":81.33333333333333,"y":457.3333333333333,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":448,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":461.3333333333333,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":460,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":461.3333333333333,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":538.6666666666666,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":529.3333333333334,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":542.6666666666666,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":541.3333333333334,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":542.6666666666666,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Sequence the work around a decision gate","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["roadmap"],"recommendedRoles":["process"],"structureSummary":"Four timed workstreams and a decision gate","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":324,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":22},{"kind":"text","x":421.3333333333333,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":617.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":813.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":1009.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":64,"y":273.3333333333333,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":313.3333333333333,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":406.6666666666667,"y":289.3333333333333,"width":176.4,"height":29.333333333333332,"shape":"rect","fill":"51576a"},{"kind":"shape","x":579.0666666666667,"y":300,"width":8,"height":8,"shape":"ellipse","fill":"898a91"},{"kind":"text","x":64,"y":354.6666666666667,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":394.6666666666667,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":543.8666666666667,"y":370.6666666666667,"width":254.79999999999998,"height":29.333333333333332,"shape":"rect","fill":"51576a"},{"kind":"shape","x":794.6666666666666,"y":381.3333333333333,"width":8,"height":8,"shape":"ellipse","fill":"898a91"},{"kind":"text","x":64,"y":436,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":476,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":759.4666666666667,"y":452,"width":215.60000000000002,"height":29.333333333333332,"shape":"rect","fill":"E2DCD0"},{"kind":"shape","x":971.0666666666667,"y":462.6666666666667,"width":8,"height":8,"shape":"ellipse","fill":"E2DCD0"},{"kind":"text","x":64,"y":517.3333333333334,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":557.3333333333334,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":955.4666666666666,"y":533.3333333333334,"width":235.20000000000002,"height":29.333333333333332,"shape":"rect","fill":"51576a"},{"kind":"shape","x":1186.6666666666665,"y":544,"width":8,"height":8,"shape":"ellipse","fill":"898a91"},{"kind":"shape","x":949.3333333333334,"y":592,"width":10.666666666666666,"height":10.666666666666666,"shape":"ellipse","fill":"C8A870"},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"Closing","family":"closing","titlePosition":"left","bodyColumns":1,"density":"medium","features":["closing"],"recommendedRoles":["closing"],"structureSummary":"Closing","zones":[{"kind":"text","x":64,"y":105.33333333333333,"width":1133.3333333333333,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"title","x":64,"y":245.33333333333334,"width":1146.6666666666667,"height":262.6666666666667,"textRole":"title","fontSize":55,"textCapacity":45},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""}]}},"dsh-editorial-notebook":{"palette":{"background":"F8F8F6","surface":"EDEBE5","text":"252320","muted":"76716A","accent":"A86043","secondary":"EDEBE5"},"source":{"fileName":"dsh-editorial-notebook-reference.jpg","sha256":"31799db0d7de058746a678867f90f3958515744748ddeaab3645615827342ecc","slideCount":12,"averageTextBlocks":18,"averageCharacters":324,"visualGrammar":"editorial","recommendedDensity":"medium","designSummary":"# 编辑手记 · Editorial Notebook\n\n原创的双栏论述、边注、证据条和决策矩阵;用于研究、观点与业务叙事。\n\n## 使用规则\n\n16:9,960×540 点。正文使用 Arial 并由系统回退中文字体;编辑部大标题可用 Georgia,缺失时回退衬线字体。只引用字体名称,不分发字体文件。背景 #F8F8F6,正文 #252320,强调 #A86043。单页突出一个判断;超出文本容量时拆页,不缩小字号。保持边距 48 点、清晰层次及页脚。图表、表格、关系图均使用可编辑元素。\n\n## 版式\n\n1. 手记封面\n2. 观点展开\n3. 引文页\n4. 证据条图\n5. 假设对照\n6. 因果分析\n7. 决策矩阵\n8. 行动收尾\n\n## 来源\n\nDSH 独立编写;未使用 guizang-ppt-skill、社区 Kimi 模板、木友圈文件或它们的派生图片。 示例句和示例数字均为自编,不代表事实结论。\n\n## Bilingual typography\n\nEnglish previews: source/. Chinese examples: source-zh/. English title/body: Georgia / Arial. Chinese macOS: Songti SC / PingFang SC; Windows: SimSun / Microsoft YaHei; Linux: Noto Serif CJK SC / Noto Sans CJK SC. Font names only, no binaries. Use the user's requested output language, independently of the preview language. Reflow long translations; do not reduce text below readable size.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. 手记封面 — 手记封面;以可编辑文本和矢量形状组织信息。\n2. A judgment worth revisiting — Asymmetric argument with three supporting evidence rows\n3. Separate the record from the explanation — Interview excerpt, observation, competing explanation and next check\n4. Show how the judgment develops — Alternating milestone notes around a continuous argument timeline\n5. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n6. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n7. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n8. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n9. Design the test before reading the result — One hypothesis with comparison, measure and a predeclared decision rule\n10. Connect each measure to a response — Actual, target and response aligned across four measures\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. 行动收尾 — 行动收尾;以可编辑文本和矢量形状组织信息。\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":6,"averageMediaFrames":0},{"family":"insights","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":20,"averageMediaFrames":0},{"family":"quote","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":18,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":18,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":17,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":26,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":16,"averageMediaFrames":0},{"family":"table","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":19,"averageMediaFrames":0},{"family":"closing","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":7,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"手记封面","family":"cover","titlePosition":"left","bodyColumns":1,"density":"medium","features":["statement"],"recommendedRoles":["cover"],"structureSummary":"手记封面;以可编辑文本和矢量形状组织信息。","zones":[{"kind":"text","x":64,"y":32,"width":933.3333333333334,"height":24,"textRole":"body","fontSize":10,"textCapacity":70},{"kind":"title","x":64,"y":90.66666666666667,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":31,"textCapacity":27},{"kind":"text","x":64,"y":673.3333333333334,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1146.6666666666667,"y":672,"width":64,"height":24,"textRole":"body","fontSize":11,"textCapacity":4},{"kind":"title","x":64,"y":221.33333333333334,"width":1064,"height":229.33333333333334,"textRole":"title","fontSize":64,"textCapacity":24},{"kind":"text","x":64,"y":496,"width":1061.3333333333333,"height":86.66666666666667,"textRole":"body","fontSize":24,"textCapacity":66}],"jsxReference":""},{"slideNumber":2,"sourceTitle":"A judgment worth revisiting","family":"insights","titlePosition":"left","bodyColumns":2,"density":"medium","features":["thesis"],"recommendedRoles":["insights"],"structureSummary":"Asymmetric argument with three supporting evidence rows","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":218.66666666666666,"width":464,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":26},{"kind":"title","x":64,"y":276,"width":442.6666666666667,"height":236,"textRole":"title","fontSize":30,"textCapacity":55},{"kind":"text","x":64,"y":560,"width":440,"height":57.333333333333336,"textRole":"body","fontSize":17,"textCapacity":38},{"kind":"text","x":588,"y":222.66666666666666,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":226.66666666666666,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":234.66666666666666,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":281.3333333333333,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":348,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":352,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":360,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":406.6666666666667,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":473.3333333333333,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":477.3333333333333,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":485.3333333333333,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":532,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Separate the record from the explanation","family":"quote","titlePosition":"left","bodyColumns":2,"density":"high","features":["evidence"],"recommendedRoles":["quote"],"structureSummary":"Interview excerpt, observation, competing explanation and next check","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":64,"y":234.66666666666666,"width":369.3333333333333,"height":365.3333333333333,"shape":"rect","fill":"EDEBE5"},{"kind":"text","x":92,"y":253.33333333333334,"width":313.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":46},{"kind":"text","x":92,"y":317.3333333333333,"width":309.3333333333333,"height":173.33333333333334,"textRole":"body","fontSize":28,"textCapacity":32},{"kind":"text","x":92,"y":546.6666666666666,"width":312,"height":36,"textRole":"body","fontSize":12,"textCapacity":38},{"kind":"title","x":482.6666666666667,"y":221.33333333333334,"width":253.33333333333334,"height":90.66666666666667,"textRole":"title","fontSize":48,"textCapacity":3},{"kind":"text","x":740,"y":234.66666666666666,"width":462.6666666666667,"height":64,"textRole":"body","fontSize":22,"textCapacity":15},{"kind":"shape","x":485.3333333333333,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"252320"},{"kind":"shape","x":514.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"252320"},{"kind":"shape","x":544,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"252320"},{"kind":"shape","x":573.3333333333334,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d2d2cf"},{"kind":"shape","x":602.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d2d2cf"},{"kind":"shape","x":632,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d2d2cf"},{"kind":"shape","x":661.3333333333334,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d2d2cf"},{"kind":"shape","x":690.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d2d2cf"},{"kind":"text","x":748,"y":317.3333333333333,"width":468,"height":33.333333333333336,"textRole":"body","fontSize":10,"textCapacity":70},{"kind":"text","x":482.6666666666667,"y":390.6666666666667,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":389.3333333333333,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":482.6666666666667,"y":466.6666666666667,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":465.3333333333333,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":482.6666666666667,"y":542.6666666666666,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":541.3333333333334,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Show how the judgment develops","family":"process","titlePosition":"left","bodyColumns":2,"density":"medium","features":["timeline"],"recommendedRoles":["process"],"structureSummary":"Alternating milestone notes around a continuous argument timeline","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":117.33333333333333,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"A86043"},{"kind":"text","x":142.66666666666666,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":104,"y":236,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":104,"y":298.6666666666667,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"shape","x":402.6666666666667,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"A86043"},{"kind":"text","x":428,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":389.3333333333333,"y":440,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":389.3333333333333,"y":520,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"shape","x":688,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"A86043"},{"kind":"text","x":713.3333333333334,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":674.6666666666666,"y":236,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":674.6666666666666,"y":298.6666666666667,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"shape","x":973.3333333333334,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"A86043"},{"kind":"text","x":998.6666666666666,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":960,"y":440,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":960,"y":520,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":5,"sourceTitle":"Trace the question to testable branches","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["tree"],"recommendedRoles":["process"],"structureSummary":"Three-branch hypothesis tree with six testable leaves","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":64,"y":362.6666666666667,"width":292,"height":140,"shape":"rect","fill":"A86043"},{"kind":"text","x":80,"y":380,"width":260,"height":114.66666666666667,"textRole":"body","fontSize":18,"textCapacity":40},{"kind":"shape","x":466.6666666666667,"y":245.33333333333334,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"EDEBE5"},{"kind":"text","x":482.6666666666667,"y":262.6666666666667,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":236,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":292,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":376,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"EDEBE5"},{"kind":"text","x":482.6666666666667,"y":393.3333333333333,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":366.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":422.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":506.6666666666667,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"EDEBE5"},{"kind":"text","x":482.6666666666667,"y":524,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":497.3333333333333,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":553.3333333333334,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":6,"sourceTitle":"Read the trend and investigate the pause","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["trend"],"recommendedRoles":["data"],"structureSummary":"Labeled six-point trend with common scale and a separate interpretation","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":437.3333333333333,"y":253.33333333333334,"width":121.33333333333333,"height":314.6666666666667,"shape":"rect","fill":"f0e9e4"},{"kind":"text","x":64,"y":554.6666666666666,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":480,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":405.3333333333333,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":330.6666666666667,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":256,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"shape","x":134.4,"y":377.06666666666666,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"252320"},{"kind":"text","x":108,"y":341.3333333333333,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":117.33333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":265.06666666666666,"y":362.13333333333327,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"252320"},{"kind":"text","x":238.66666666666666,"y":326.3999999999999,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":248,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":395.73333333333335,"y":350.93333333333334,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"252320"},{"kind":"text","x":369.3333333333333,"y":315.2,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":378.6666666666667,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":524,"y":352.2666666666667,"width":13.333333333333334,"height":13.333333333333334,"shape":"ellipse","fill":"A86043"},{"kind":"text","x":500,"y":318.9333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":509.3333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":657.0666666666667,"y":324.8,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"252320"},{"kind":"text","x":630.6666666666666,"y":289.06666666666666,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":640,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":787.7333333333332,"y":298.6666666666667,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"252320"},{"kind":"text","x":761.3333333333334,"y":262.93333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":770.6666666666666,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"text","x":365.3333333333333,"y":248,"width":206.66666666666666,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":11},{"kind":"text","x":905.3333333333334,"y":217.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":269.3333333333333,"width":310.6666666666667,"height":104,"textRole":"title","fontSize":56,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":381.3333333333333,"width":305.3333333333333,"height":73.33333333333333,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":492,"width":305.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":10,"textCapacity":44},{"kind":"text","x":905.3333333333334,"y":538.6666666666666,"width":305.3333333333333,"height":66.66666666666667,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":7,"sourceTitle":"Choose the next move with evidence","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["matrix"],"recommendedRoles":["comparison"],"structureSummary":"Two-axis decision map with direct labels and a recommended next step","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":118.66666666666667,"y":245.33333333333334,"width":662.6666666666666,"height":336,"shape":"rect","fill":"f1f1ef"},{"kind":"shape","x":450.6666666666667,"y":245.33333333333334,"width":330.6666666666667,"height":168,"shape":"rect","fill":"e8dad2"},{"kind":"text","x":137.33333333333334,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":137.33333333333334,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"shape","x":236,"y":345.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"93928f"},{"kind":"text","x":269.3333333333333,"y":338.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":557.3333333333334,"y":322.6666666666667,"width":34.666666666666664,"height":34.666666666666664,"shape":"ellipse","fill":"252320"},{"kind":"text","x":598.6666666666666,"y":324,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":500,"y":376,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"93928f"},{"kind":"text","x":533.3333333333334,"y":369.3333333333333,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":293.3333333333333,"y":462.6666666666667,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"93928f"},{"kind":"text","x":326.6666666666667,"y":456,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":634.6666666666666,"y":473.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"93928f"},{"kind":"text","x":668,"y":466.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"text","x":118.66666666666667,"y":589.3333333333334,"width":317.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":469.3333333333333,"y":589.3333333333334,"width":312,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":842.6666666666666,"y":230.66666666666666,"width":373.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":21},{"kind":"title","x":842.6666666666666,"y":286.6666666666667,"width":373.3333333333333,"height":82.66666666666667,"textRole":"title","fontSize":32,"textCapacity":8},{"kind":"text","x":842.6666666666666,"y":414.6666666666667,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":414.6666666666667,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":476,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":476,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":537.3333333333334,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":537.3333333333334,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":8,"sourceTitle":"A small intervention, a measurable change","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["case"],"recommendedRoles":["comparison"],"structureSummary":"Intervention narrative beside paired before and after comparisons","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":224,"width":386.6666666666667,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":24},{"kind":"title","x":64,"y":289.3333333333333,"width":384,"height":161.33333333333334,"textRole":"title","fontSize":34,"textCapacity":24},{"kind":"text","x":64,"y":492,"width":374.6666666666667,"height":104,"textRole":"body","fontSize":20,"textCapacity":42},{"kind":"text","x":552,"y":232,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":300,"width":388.8,"height":26.666666666666668,"shape":"rect","fill":"b9b8b6"},{"kind":"shape","x":553.3333333333334,"y":340,"width":151.20000000000002,"height":26.666666666666668,"shape":"rect","fill":"A86043"},{"kind":"text","x":1005.3333333333334,"y":305.3333333333333,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":552,"y":421.3333333333333,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":489.3333333333333,"width":198.72,"height":26.666666666666668,"shape":"rect","fill":"b9b8b6"},{"kind":"shape","x":553.3333333333334,"y":529.3333333333334,"width":315.36,"height":26.666666666666668,"shape":"rect","fill":"A86043"},{"kind":"text","x":1005.3333333333334,"y":494.6666666666667,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"Design the test before reading the result","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["experiment"],"recommendedRoles":["comparison"],"structureSummary":"One hypothesis with comparison, measure and a predeclared decision rule","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"title","x":64,"y":232,"width":366.6666666666667,"height":138.66666666666666,"textRole":"title","fontSize":32,"textCapacity":16},{"kind":"text","x":64,"y":441.3333333333333,"width":370.6666666666667,"height":156,"textRole":"body","fontSize":21,"textCapacity":65},{"kind":"text","x":536,"y":236,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":236,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":330.6666666666667,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":330.6666666666667,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":425.3333333333333,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":425.3333333333333,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":520,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":520,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":10,"sourceTitle":"Connect each measure to a response","family":"table","titlePosition":"left","bodyColumns":2,"density":"high","features":["scorecard"],"recommendedRoles":["table"],"structureSummary":"Actual, target and response aligned across four measures","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":373.3333333333333,"height":32,"textRole":"body","fontSize":11,"textCapacity":25},{"kind":"text","x":497.3333333333333,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":697.3333333333334,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":922.6666666666666,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":81.33333333333333,"y":294.6666666666667,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":285.3333333333333,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":298.6666666666667,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":297.3333333333333,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":298.6666666666667,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":376,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":366.6666666666667,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":380,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":378.6666666666667,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":380,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"shape","x":64,"y":434.6666666666667,"width":1152,"height":81.33333333333333,"shape":"rect","fill":"efe7e2"},{"kind":"shape","x":64,"y":434.6666666666667,"width":4,"height":81.33333333333333,"shape":"rect","fill":"252320"},{"kind":"text","x":81.33333333333333,"y":457.3333333333333,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":448,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":461.3333333333333,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":460,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":461.3333333333333,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":538.6666666666666,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":529.3333333333334,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":542.6666666666666,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":541.3333333333334,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":542.6666666666666,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Sequence the work around a decision gate","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["roadmap"],"recommendedRoles":["process"],"structureSummary":"Four timed workstreams and a decision gate","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":324,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":22},{"kind":"text","x":421.3333333333333,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":617.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":813.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":1009.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":64,"y":273.3333333333333,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":313.3333333333333,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":406.6666666666667,"y":289.3333333333333,"width":176.4,"height":29.333333333333332,"shape":"rect","fill":"bfbebc"},{"kind":"shape","x":579.0666666666667,"y":300,"width":8,"height":8,"shape":"ellipse","fill":"848380"},{"kind":"text","x":64,"y":354.6666666666667,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":394.6666666666667,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":543.8666666666667,"y":370.6666666666667,"width":254.79999999999998,"height":29.333333333333332,"shape":"rect","fill":"bfbebc"},{"kind":"shape","x":794.6666666666666,"y":381.3333333333333,"width":8,"height":8,"shape":"ellipse","fill":"848380"},{"kind":"text","x":64,"y":436,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":476,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":759.4666666666667,"y":452,"width":215.60000000000002,"height":29.333333333333332,"shape":"rect","fill":"252320"},{"kind":"shape","x":971.0666666666667,"y":462.6666666666667,"width":8,"height":8,"shape":"ellipse","fill":"252320"},{"kind":"text","x":64,"y":517.3333333333334,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":557.3333333333334,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":955.4666666666666,"y":533.3333333333334,"width":235.20000000000002,"height":29.333333333333332,"shape":"rect","fill":"bfbebc"},{"kind":"shape","x":1186.6666666666665,"y":544,"width":8,"height":8,"shape":"ellipse","fill":"848380"},{"kind":"shape","x":949.3333333333334,"y":592,"width":10.666666666666666,"height":10.666666666666666,"shape":"ellipse","fill":"A86043"},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"行动收尾","family":"closing","titlePosition":"left","bodyColumns":1,"density":"medium","features":["statement"],"recommendedRoles":["closing"],"structureSummary":"行动收尾;以可编辑文本和矢量形状组织信息。","zones":[{"kind":"text","x":64,"y":32,"width":933.3333333333334,"height":24,"textRole":"body","fontSize":10,"textCapacity":70},{"kind":"title","x":64,"y":90.66666666666667,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":31,"textCapacity":27},{"kind":"text","x":64,"y":673.3333333333334,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1146.6666666666667,"y":672,"width":64,"height":24,"textRole":"body","fontSize":11,"textCapacity":4},{"kind":"title","x":64,"y":225.33333333333334,"width":1146.6666666666667,"height":93.33333333333333,"textRole":"title","fontSize":39,"textCapacity":22},{"kind":"text","x":64,"y":361.3333333333333,"width":1146.6666666666667,"height":80,"textRole":"body","fontSize":23,"textCapacity":74},{"kind":"title","x":64,"y":541.3333333333334,"width":1146.6666666666667,"height":85.33333333333333,"textRole":"title","fontSize":29,"textCapacity":29}],"jsxReference":""}]}},"dsh-soft-editorial":{"palette":{"background":"F2EEDF","text":"2A241B","accent":"E1A4C2","surface":"D6DD63","secondary":"E8C9B6","muted":"E8C9B6"},"source":{"fileName":"soft-editorial-reference.jpg","sha256":"3fbfacdbe3ce6ab7e1a1820ab4fc9ac43cb0e5f47961f05a6e91439bae6accf1","slideCount":12,"averageTextBlocks":18,"averageCharacters":296,"visualGrammar":"soft-editorial","recommendedDensity":"medium","designSummary":"# Soft Editorial / 柔和编辑部\n\nAdapted from Zara Zhang's Soft Editorial, commit e5e204fb1f3b06290846e7dcd7aceddabeceec8c. MIT. This native edition rebuilds twelve editable layouts; it is not an HTML import or an exact copy of every upstream slide.\n\n## Typography\n\nEnglish display: Georgia; English body: Arial. These portable Office substitutions replace the upstream display face Cormorant Garamond. Chinese display: Songti SC; body: PingFang SC. On Windows use SimSun / Microsoft YaHei; on Linux use Noto Serif CJK SC / Noto Sans CJK SC. No font binary is distributed. Keep the serif/sans distinction.\n\nEnglish previews use source/. Chinese examples use source-zh/. Preview language does not select the language of the user's output. Choose the matching fonts for the actual content; reflow longer translations instead of shrinking titles.\n\n## Layout grammar\n\n A warm magazine spread aesthetic — the kind of layout a small print quarterly with field-notes pretensions would commission. Cormorant Garamond carries every headline and ornamental moment with mixed roman and italic; Work Sans recedes into supporting body. The palette is cream paper with a quartet of pastel candy accents (dusty pink, chartreuse lemon, soft peach blush, sage green, lilac) used as colored card backgrounds. Generous rounded cards (24–36px radius) float on translucent white over the cream field. The mood is editorial calm with a sprinkling of riso-print color — closer to a literary research notebook than a corporate deck.\n\n1. Cover (cover)\n2. Agenda (agenda)\n3. Insights (insights)\n4. Metrics (data)\n5. Comparison chart (data)\n6. Process (process)\n7. Before and after (comparison)\n8. Closing (closing)\n\nAll charts and diagrams are native editable vectors. Example figures are illustrative, not reported facts. Retain a 48 pt outer margin and use 16:9, 960 × 540 pt.\n\nCopyright (c) 2026 Zara Zhang. DSH adaptation 2026-09-06. See licenses/zara/LICENSE and the pinned source design specification.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. Cover — Cover\n2. A judgment worth revisiting — Asymmetric argument with three supporting evidence rows\n3. Separate the record from the explanation — Interview excerpt, observation, competing explanation and next check\n4. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n5. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n6. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n7. Show how the judgment develops — Alternating milestone notes around a continuous argument timeline\n8. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n9. Give each moment a distinct purpose — Three schematic frames with distinct content and intent\n10. Connect each measure to a response — Actual, target and response aligned across four measures\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. Closing — Closing\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":6,"averageMediaFrames":0},{"family":"insights","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":20,"averageMediaFrames":0},{"family":"quote","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":18,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":17,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":18,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":26,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"table","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":19,"averageMediaFrames":0},{"family":"closing","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":4,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"Cover","family":"cover","titlePosition":"left","bodyColumns":1,"density":"medium","features":["cover"],"recommendedRoles":["cover"],"structureSummary":"Cover","zones":[{"kind":"text","x":64,"y":45.333333333333336,"width":1066.6666666666667,"height":32,"textRole":"body","fontSize":12,"textCapacity":66},{"kind":"title","x":64,"y":197.33333333333334,"width":640,"height":280,"textRole":"title","fontSize":64,"textCapacity":14},{"kind":"shape","x":785.3333333333334,"y":165.33333333333334,"width":430.6666666666667,"height":440,"shape":"roundRect","fill":"E1A4C2"},{"kind":"title","x":826.6666666666666,"y":236,"width":353.3333333333333,"height":266.6666666666667,"textRole":"title","fontSize":38,"textCapacity":24},{"kind":"text","x":66.66666666666667,"y":553.3333333333334,"width":653.3333333333334,"height":66.66666666666667,"textRole":"body","fontSize":18,"textCapacity":54},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":2,"sourceTitle":"A judgment worth revisiting","family":"insights","titlePosition":"left","bodyColumns":2,"density":"medium","features":["thesis"],"recommendedRoles":["insights"],"structureSummary":"Asymmetric argument with three supporting evidence rows","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":218.66666666666666,"width":464,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":26},{"kind":"title","x":64,"y":276,"width":442.6666666666667,"height":236,"textRole":"title","fontSize":30,"textCapacity":55},{"kind":"text","x":64,"y":560,"width":440,"height":57.333333333333336,"textRole":"body","fontSize":17,"textCapacity":38},{"kind":"text","x":588,"y":222.66666666666666,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":226.66666666666666,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":234.66666666666666,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":281.3333333333333,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":348,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":352,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":360,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":406.6666666666667,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":473.3333333333333,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":477.3333333333333,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":485.3333333333333,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":532,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Separate the record from the explanation","family":"quote","titlePosition":"left","bodyColumns":2,"density":"high","features":["evidence"],"recommendedRoles":["quote"],"structureSummary":"Interview excerpt, observation, competing explanation and next check","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":64,"y":234.66666666666666,"width":369.3333333333333,"height":365.3333333333333,"shape":"rect","fill":"D6DD63"},{"kind":"text","x":92,"y":253.33333333333334,"width":313.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":46},{"kind":"text","x":92,"y":317.3333333333333,"width":309.3333333333333,"height":173.33333333333334,"textRole":"body","fontSize":28,"textCapacity":32},{"kind":"text","x":92,"y":546.6666666666666,"width":312,"height":36,"textRole":"body","fontSize":12,"textCapacity":38},{"kind":"title","x":482.6666666666667,"y":221.33333333333334,"width":253.33333333333334,"height":90.66666666666667,"textRole":"title","fontSize":48,"textCapacity":3},{"kind":"text","x":740,"y":234.66666666666666,"width":462.6666666666667,"height":64,"textRole":"body","fontSize":22,"textCapacity":15},{"kind":"shape","x":485.3333333333333,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"2A241B"},{"kind":"shape","x":514.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"2A241B"},{"kind":"shape","x":544,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"2A241B"},{"kind":"shape","x":573.3333333333334,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"cecabc"},{"kind":"shape","x":602.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"cecabc"},{"kind":"shape","x":632,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"cecabc"},{"kind":"shape","x":661.3333333333334,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"cecabc"},{"kind":"shape","x":690.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"cecabc"},{"kind":"text","x":748,"y":317.3333333333333,"width":468,"height":33.333333333333336,"textRole":"body","fontSize":10,"textCapacity":70},{"kind":"text","x":482.6666666666667,"y":390.6666666666667,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":389.3333333333333,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":482.6666666666667,"y":466.6666666666667,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":465.3333333333333,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":482.6666666666667,"y":542.6666666666666,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":541.3333333333334,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Trace the question to testable branches","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["tree"],"recommendedRoles":["process"],"structureSummary":"Three-branch hypothesis tree with six testable leaves","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":64,"y":362.6666666666667,"width":292,"height":140,"shape":"rect","fill":"E1A4C2"},{"kind":"text","x":80,"y":380,"width":260,"height":114.66666666666667,"textRole":"body","fontSize":18,"textCapacity":40},{"kind":"shape","x":466.6666666666667,"y":245.33333333333334,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"D6DD63"},{"kind":"text","x":482.6666666666667,"y":262.6666666666667,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":236,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":292,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":376,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"D6DD63"},{"kind":"text","x":482.6666666666667,"y":393.3333333333333,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":366.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":422.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":506.6666666666667,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"D6DD63"},{"kind":"text","x":482.6666666666667,"y":524,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":497.3333333333333,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":553.3333333333334,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":5,"sourceTitle":"Read the trend and investigate the pause","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["trend"],"recommendedRoles":["data"],"structureSummary":"Labeled six-point trend with common scale and a separate interpretation","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":437.3333333333333,"y":253.33333333333334,"width":121.33333333333333,"height":314.6666666666667,"shape":"rect","fill":"f0e7dc"},{"kind":"text","x":64,"y":554.6666666666666,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":480,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":405.3333333333333,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":330.6666666666667,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":256,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"shape","x":134.4,"y":377.06666666666666,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"2A241B"},{"kind":"text","x":108,"y":341.3333333333333,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":117.33333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":265.06666666666666,"y":362.13333333333327,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"2A241B"},{"kind":"text","x":238.66666666666666,"y":326.3999999999999,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":248,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":395.73333333333335,"y":350.93333333333334,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"2A241B"},{"kind":"text","x":369.3333333333333,"y":315.2,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":378.6666666666667,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":524,"y":352.2666666666667,"width":13.333333333333334,"height":13.333333333333334,"shape":"ellipse","fill":"E1A4C2"},{"kind":"text","x":500,"y":318.9333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":509.3333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":657.0666666666667,"y":324.8,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"2A241B"},{"kind":"text","x":630.6666666666666,"y":289.06666666666666,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":640,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":787.7333333333332,"y":298.6666666666667,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"2A241B"},{"kind":"text","x":761.3333333333334,"y":262.93333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":770.6666666666666,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"text","x":365.3333333333333,"y":248,"width":206.66666666666666,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":11},{"kind":"text","x":905.3333333333334,"y":217.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":269.3333333333333,"width":310.6666666666667,"height":104,"textRole":"title","fontSize":56,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":381.3333333333333,"width":305.3333333333333,"height":73.33333333333333,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":492,"width":305.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":10,"textCapacity":44},{"kind":"text","x":905.3333333333334,"y":538.6666666666666,"width":305.3333333333333,"height":66.66666666666667,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":6,"sourceTitle":"A small intervention, a measurable change","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["case"],"recommendedRoles":["comparison"],"structureSummary":"Intervention narrative beside paired before and after comparisons","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":224,"width":386.6666666666667,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":24},{"kind":"title","x":64,"y":289.3333333333333,"width":384,"height":161.33333333333334,"textRole":"title","fontSize":34,"textCapacity":24},{"kind":"text","x":64,"y":492,"width":374.6666666666667,"height":104,"textRole":"body","fontSize":20,"textCapacity":42},{"kind":"text","x":552,"y":232,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":300,"width":388.8,"height":26.666666666666668,"shape":"rect","fill":"b6b1a4"},{"kind":"shape","x":553.3333333333334,"y":340,"width":151.20000000000002,"height":26.666666666666668,"shape":"rect","fill":"E1A4C2"},{"kind":"text","x":1005.3333333333334,"y":305.3333333333333,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":552,"y":421.3333333333333,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":489.3333333333333,"width":198.72,"height":26.666666666666668,"shape":"rect","fill":"b6b1a4"},{"kind":"shape","x":553.3333333333334,"y":529.3333333333334,"width":315.36,"height":26.666666666666668,"shape":"rect","fill":"E1A4C2"},{"kind":"text","x":1005.3333333333334,"y":494.6666666666667,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":7,"sourceTitle":"Show how the judgment develops","family":"process","titlePosition":"left","bodyColumns":2,"density":"medium","features":["timeline"],"recommendedRoles":["process"],"structureSummary":"Alternating milestone notes around a continuous argument timeline","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":117.33333333333333,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"E1A4C2"},{"kind":"text","x":142.66666666666666,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":104,"y":236,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":104,"y":298.6666666666667,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"shape","x":402.6666666666667,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"E1A4C2"},{"kind":"text","x":428,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":389.3333333333333,"y":440,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":389.3333333333333,"y":520,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"shape","x":688,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"E1A4C2"},{"kind":"text","x":713.3333333333334,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":674.6666666666666,"y":236,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":674.6666666666666,"y":298.6666666666667,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"shape","x":973.3333333333334,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"E1A4C2"},{"kind":"text","x":998.6666666666666,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":960,"y":440,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":960,"y":520,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":8,"sourceTitle":"Choose the next move with evidence","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["matrix"],"recommendedRoles":["comparison"],"structureSummary":"Two-axis decision map with direct labels and a recommended next step","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":118.66666666666667,"y":245.33333333333334,"width":662.6666666666666,"height":336,"shape":"rect","fill":"ebe7d8"},{"kind":"shape","x":450.6666666666667,"y":245.33333333333334,"width":330.6666666666667,"height":168,"shape":"rect","fill":"efdfd9"},{"kind":"text","x":137.33333333333334,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":137.33333333333334,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"shape","x":236,"y":345.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"928d81"},{"kind":"text","x":269.3333333333333,"y":338.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":557.3333333333334,"y":322.6666666666667,"width":34.666666666666664,"height":34.666666666666664,"shape":"ellipse","fill":"2A241B"},{"kind":"text","x":598.6666666666666,"y":324,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":500,"y":376,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"928d81"},{"kind":"text","x":533.3333333333334,"y":369.3333333333333,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":293.3333333333333,"y":462.6666666666667,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"928d81"},{"kind":"text","x":326.6666666666667,"y":456,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":634.6666666666666,"y":473.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"928d81"},{"kind":"text","x":668,"y":466.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"text","x":118.66666666666667,"y":589.3333333333334,"width":317.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":469.3333333333333,"y":589.3333333333334,"width":312,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":842.6666666666666,"y":230.66666666666666,"width":373.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":21},{"kind":"title","x":842.6666666666666,"y":286.6666666666667,"width":373.3333333333333,"height":82.66666666666667,"textRole":"title","fontSize":32,"textCapacity":8},{"kind":"text","x":842.6666666666666,"y":414.6666666666667,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":414.6666666666667,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":476,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":476,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":537.3333333333334,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":537.3333333333334,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"Give each moment a distinct purpose","family":"grid","titlePosition":"left","bodyColumns":3,"density":"high","features":["storyboard"],"recommendedRoles":["grid"],"structureSummary":"Three schematic frames with distinct content and intent","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":64,"y":228,"width":360,"height":200,"shape":"rect","fill":"D6DD63"},{"kind":"shape","x":112,"y":337.3333333333333,"width":117.33333333333333,"height":41.333333333333336,"shape":"rect","fill":"181915"},{"kind":"text","x":64,"y":449.3333333333333,"width":346.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"text","x":64,"y":501.3333333333333,"width":350.6666666666667,"height":105.33333333333333,"textRole":"body","fontSize":26,"textCapacity":20},{"kind":"shape","x":456,"y":228,"width":360,"height":200,"shape":"rect","fill":"E1A4C2"},{"kind":"shape","x":582.6666666666666,"y":266.6666666666667,"width":104,"height":104,"shape":"ellipse","fill":"181915"},{"kind":"title","x":604,"y":285.3333333333333,"width":69.33333333333333,"height":77.33333333333333,"textRole":"title","fontSize":33,"textCapacity":1},{"kind":"text","x":456,"y":449.3333333333333,"width":346.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"text","x":456,"y":501.3333333333333,"width":350.6666666666667,"height":105.33333333333333,"textRole":"body","fontSize":26,"textCapacity":20},{"kind":"shape","x":848,"y":228,"width":360,"height":200,"shape":"rect","fill":"D6DD63"},{"kind":"shape","x":896,"y":262.6666666666667,"width":16,"height":16,"shape":"ellipse","fill":"181915"},{"kind":"shape","x":896,"y":312,"width":16,"height":16,"shape":"ellipse","fill":"181915"},{"kind":"shape","x":896,"y":361.3333333333333,"width":16,"height":16,"shape":"ellipse","fill":"181915"},{"kind":"text","x":848,"y":449.3333333333333,"width":346.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"text","x":848,"y":501.3333333333333,"width":350.6666666666667,"height":105.33333333333333,"textRole":"body","fontSize":26,"textCapacity":20},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":10,"sourceTitle":"Connect each measure to a response","family":"table","titlePosition":"left","bodyColumns":2,"density":"high","features":["scorecard"],"recommendedRoles":["table"],"structureSummary":"Actual, target and response aligned across four measures","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":373.3333333333333,"height":32,"textRole":"body","fontSize":11,"textCapacity":25},{"kind":"text","x":497.3333333333333,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":697.3333333333334,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":922.6666666666666,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":81.33333333333333,"y":294.6666666666667,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":285.3333333333333,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":298.6666666666667,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":297.3333333333333,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":298.6666666666667,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":376,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":366.6666666666667,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":380,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":378.6666666666667,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":380,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"shape","x":64,"y":434.6666666666667,"width":1152,"height":81.33333333333333,"shape":"rect","fill":"f0e6dc"},{"kind":"shape","x":64,"y":434.6666666666667,"width":4,"height":81.33333333333333,"shape":"rect","fill":"2A241B"},{"kind":"text","x":81.33333333333333,"y":457.3333333333333,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":448,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":461.3333333333333,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":460,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":461.3333333333333,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":538.6666666666666,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":529.3333333333334,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":542.6666666666666,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":541.3333333333334,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":542.6666666666666,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Sequence the work around a decision gate","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["roadmap"],"recommendedRoles":["process"],"structureSummary":"Four timed workstreams and a decision gate","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":324,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":22},{"kind":"text","x":421.3333333333333,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":617.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":813.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":1009.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":64,"y":273.3333333333333,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":313.3333333333333,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":406.6666666666667,"y":289.3333333333333,"width":176.4,"height":29.333333333333332,"shape":"rect","fill":"bcb7aa"},{"kind":"shape","x":579.0666666666667,"y":300,"width":8,"height":8,"shape":"ellipse","fill":"847f73"},{"kind":"text","x":64,"y":354.6666666666667,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":394.6666666666667,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":543.8666666666667,"y":370.6666666666667,"width":254.79999999999998,"height":29.333333333333332,"shape":"rect","fill":"bcb7aa"},{"kind":"shape","x":794.6666666666666,"y":381.3333333333333,"width":8,"height":8,"shape":"ellipse","fill":"847f73"},{"kind":"text","x":64,"y":436,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":476,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":759.4666666666667,"y":452,"width":215.60000000000002,"height":29.333333333333332,"shape":"rect","fill":"2A241B"},{"kind":"shape","x":971.0666666666667,"y":462.6666666666667,"width":8,"height":8,"shape":"ellipse","fill":"2A241B"},{"kind":"text","x":64,"y":517.3333333333334,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":557.3333333333334,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":955.4666666666666,"y":533.3333333333334,"width":235.20000000000002,"height":29.333333333333332,"shape":"rect","fill":"bcb7aa"},{"kind":"shape","x":1186.6666666666665,"y":544,"width":8,"height":8,"shape":"ellipse","fill":"847f73"},{"kind":"shape","x":949.3333333333334,"y":592,"width":10.666666666666666,"height":10.666666666666666,"shape":"ellipse","fill":"E1A4C2"},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"Closing","family":"closing","titlePosition":"left","bodyColumns":1,"density":"medium","features":["closing"],"recommendedRoles":["closing"],"structureSummary":"Closing","zones":[{"kind":"text","x":64,"y":105.33333333333333,"width":1133.3333333333333,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"title","x":64,"y":245.33333333333334,"width":1146.6666666666667,"height":262.6666666666667,"textRole":"title","fontSize":55,"textCapacity":45},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""}]}},"dsh-broadside":{"palette":{"background":"111111","text":"F0ECE5","accent":"E85D26","surface":"282826","secondary":"888880","muted":"888880"},"source":{"fileName":"broadside-reference.jpg","sha256":"0a8317e155cbe61f7ecf74106e9f813fc1d364e83f2124b91190ba466476f4e1","slideCount":12,"averageTextBlocks":14,"averageCharacters":204,"visualGrammar":"broadside","recommendedDensity":"medium","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","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":4,"averageMediaFrames":0},{"family":"insights","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":8,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":17,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":12,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":12,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":21,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":20,"averageMediaFrames":0},{"family":"agenda","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":16,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":12,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":4,"density":"high","averageTextFrames":16,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":4,"density":"high","averageTextFrames":21,"averageMediaFrames":0},{"family":"closing","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":3,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"Cover","family":"cover","titlePosition":"left","bodyColumns":1,"density":"medium","features":["cover"],"recommendedRoles":["cover"],"structureSummary":"Cover","zones":[{"kind":"text","x":64,"y":45.333333333333336,"width":1066.6666666666667,"height":32,"textRole":"body","fontSize":12,"textCapacity":66},{"kind":"title","x":64,"y":278.6666666666667,"width":1152,"height":298.6666666666667,"textRole":"title","fontSize":78,"textCapacity":22},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":2,"sourceTitle":"Editorial thesis","family":"insights","titlePosition":"left","bodyColumns":2,"density":"high","features":["insights"],"recommendedRoles":["insights"],"structureSummary":"Oversized chapter numeral against a compact operating thesis","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":37,"textCapacity":23},{"kind":"title","x":64,"y":206.66666666666666,"width":400,"height":236,"textRole":"title","fontSize":142,"textCapacity":2},{"kind":"title","x":522.6666666666666,"y":238.66666666666666,"width":693.3333333333334,"height":150.66666666666666,"textRole":"title","fontSize":39,"textCapacity":26},{"kind":"text","x":522.6666666666666,"y":468,"width":666.6666666666666,"height":149.33333333333334,"textRole":"body","fontSize":25,"textCapacity":60},{"kind":"text","x":64,"y":509.3333333333333,"width":384,"height":70.66666666666667,"textRole":"body","fontSize":16,"textCapacity":36},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Evidence spread","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["data"],"recommendedRoles":["data"],"structureSummary":"One editorial statistic and a ranked breakdown on a cream field","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":37,"textCapacity":23},{"kind":"title","x":64,"y":220,"width":596,"height":218.66666666666666,"textRole":"title","fontSize":125,"textCapacity":3},{"kind":"text","x":72,"y":446.6666666666667,"width":568,"height":62.666666666666664,"textRole":"body","fontSize":25,"textCapacity":17},{"kind":"text","x":72,"y":546.6666666666666,"width":569.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":10,"textCapacity":84},{"kind":"text","x":740,"y":204,"width":476,"height":34.666666666666664,"textRole":"body","fontSize":10,"textCapacity":70},{"kind":"text","x":740,"y":257.3333333333333,"width":380,"height":36,"textRole":"body","fontSize":17,"textCapacity":16},{"kind":"shape","x":740,"y":300,"width":365.3333333333333,"height":17.333333333333332,"shape":"rect","fill":"E85D26"},{"kind":"text","x":1133.3333333333333,"y":281.3333333333333,"width":82.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":3},{"kind":"text","x":740,"y":346.6666666666667,"width":380,"height":36,"textRole":"body","fontSize":17,"textCapacity":16},{"kind":"shape","x":740,"y":389.3333333333333,"width":287.04761904761904,"height":17.333333333333332,"shape":"rect","fill":"ABADA3"},{"kind":"text","x":1133.3333333333333,"y":370.6666666666667,"width":82.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":3},{"kind":"text","x":740,"y":436,"width":380,"height":36,"textRole":"body","fontSize":17,"textCapacity":16},{"kind":"shape","x":740,"y":478.6666666666667,"width":217.46031746031747,"height":17.333333333333332,"shape":"rect","fill":"ABADA3"},{"kind":"text","x":1133.3333333333333,"y":460,"width":82.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":3},{"kind":"text","x":740,"y":554.6666666666666,"width":130.66666666666666,"height":33.333333333333336,"textRole":"body","fontSize":10,"textCapacity":18},{"kind":"text","x":885.3333333333334,"y":548,"width":330.6666666666667,"height":64,"textRole":"body","fontSize":18,"textCapacity":26},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Operating model contrast","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["comparison"],"recommendedRoles":["comparison"],"structureSummary":"Big numerical contrast with aligned ownership and workflow differences","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":37,"textCapacity":23},{"kind":"text","x":64,"y":230.66666666666666,"width":520,"height":42.666666666666664,"textRole":"body","fontSize":15,"textCapacity":26},{"kind":"text","x":693.3333333333334,"y":230.66666666666666,"width":520,"height":42.666666666666664,"textRole":"body","fontSize":15,"textCapacity":26},{"kind":"title","x":64,"y":286.6666666666667,"width":493.3333333333333,"height":162.66666666666666,"textRole":"title","fontSize":93,"textCapacity":3},{"kind":"title","x":693.3333333333334,"y":286.6666666666667,"width":493.3333333333333,"height":162.66666666666666,"textRole":"title","fontSize":93,"textCapacity":3},{"kind":"text","x":64,"y":473.3333333333333,"width":520,"height":62.666666666666664,"textRole":"body","fontSize":25,"textCapacity":15},{"kind":"text","x":693.3333333333334,"y":473.3333333333333,"width":520,"height":62.666666666666664,"textRole":"body","fontSize":25,"textCapacity":15},{"kind":"text","x":64,"y":561.3333333333334,"width":520,"height":53.333333333333336,"textRole":"body","fontSize":18,"textCapacity":21},{"kind":"text","x":693.3333333333334,"y":561.3333333333334,"width":520,"height":53.333333333333336,"textRole":"body","fontSize":18,"textCapacity":21},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":5,"sourceTitle":"Learning feedback loop","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["process"],"recommendedRoles":["process"],"structureSummary":"Four-step closed loop with cycle time and an ownership annotation","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":37,"textCapacity":23},{"kind":"text","x":92,"y":265.3333333333333,"width":246.66666666666666,"height":60,"textRole":"body","fontSize":24,"textCapacity":7},{"kind":"text","x":477.3333333333333,"y":265.3333333333333,"width":246.66666666666666,"height":60,"textRole":"body","fontSize":24,"textCapacity":7},{"kind":"text","x":477.3333333333333,"y":520,"width":246.66666666666666,"height":60,"textRole":"body","fontSize":24,"textCapacity":7},{"kind":"text","x":92,"y":520,"width":246.66666666666666,"height":60,"textRole":"body","fontSize":24,"textCapacity":7},{"kind":"title","x":252,"y":374.6666666666667,"width":329.3333333333333,"height":73.33333333333333,"textRole":"title","fontSize":39,"textCapacity":6},{"kind":"text","x":253.33333333333334,"y":448,"width":326.6666666666667,"height":42.666666666666664,"textRole":"body","fontSize":17,"textCapacity":14},{"kind":"title","x":865.3333333333334,"y":264,"width":346.6666666666667,"height":152,"textRole":"title","fontSize":35,"textCapacity":14},{"kind":"text","x":865.3333333333334,"y":466.6666666666667,"width":346.6666666666667,"height":137.33333333333334,"textRole":"body","fontSize":22,"textCapacity":44},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":6,"sourceTitle":"Conversion staircase","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["data"],"recommendedRoles":["data"],"structureSummary":"Proportional descending bars, direct counts and a quantified bottleneck","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":37,"textCapacity":23},{"kind":"text","x":64,"y":204,"width":741.3333333333334,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":50},{"kind":"shape","x":64,"y":250.66666666666666,"width":626.6666666666666,"height":56,"shape":"rect","fill":"E85D26"},{"kind":"text","x":81.33333333333333,"y":262.6666666666667,"width":240,"height":37.333333333333336,"textRole":"body","fontSize":16,"textCapacity":11},{"kind":"text","x":738.6666666666666,"y":253.33333333333334,"width":105.33333333333333,"height":52,"textRole":"body","fontSize":27,"textCapacity":2},{"kind":"text","x":64,"y":312,"width":324,"height":33.333333333333336,"textRole":"body","fontSize":11,"textCapacity":44},{"kind":"shape","x":64,"y":345.3333333333333,"width":426.1333333333334,"height":56,"shape":"rect","fill":"C9653E"},{"kind":"text","x":81.33333333333333,"y":357.3333333333333,"width":240,"height":37.333333333333336,"textRole":"body","fontSize":16,"textCapacity":11},{"kind":"text","x":738.6666666666666,"y":348,"width":105.33333333333333,"height":52,"textRole":"body","fontSize":27,"textCapacity":2},{"kind":"text","x":64,"y":406.6666666666667,"width":324,"height":33.333333333333336,"textRole":"body","fontSize":11,"textCapacity":44},{"kind":"shape","x":64,"y":440,"width":256.93333333333334,"height":56,"shape":"rect","fill":"995E46"},{"kind":"text","x":81.33333333333333,"y":452,"width":240,"height":37.333333333333336,"textRole":"body","fontSize":16,"textCapacity":11},{"kind":"text","x":738.6666666666666,"y":442.6666666666667,"width":105.33333333333333,"height":52,"textRole":"body","fontSize":27,"textCapacity":2},{"kind":"text","x":64,"y":501.3333333333333,"width":324,"height":33.333333333333336,"textRole":"body","fontSize":11,"textCapacity":44},{"kind":"shape","x":64,"y":534.6666666666666,"width":181.73333333333335,"height":56,"shape":"rect","fill":"6F5144"},{"kind":"text","x":81.33333333333333,"y":546.6666666666666,"width":240,"height":37.333333333333336,"textRole":"body","fontSize":16,"textCapacity":11},{"kind":"text","x":738.6666666666666,"y":537.3333333333334,"width":105.33333333333333,"height":52,"textRole":"body","fontSize":27,"textCapacity":2},{"kind":"text","x":941.3333333333334,"y":221.33333333333334,"width":274.6666666666667,"height":36,"textRole":"body","fontSize":11,"textCapacity":36},{"kind":"title","x":941.3333333333334,"y":277.3333333333333,"width":274.6666666666667,"height":122.66666666666667,"textRole":"title","fontSize":70,"textCapacity":2},{"kind":"text","x":941.3333333333334,"y":412,"width":274.6666666666667,"height":117.33333333333333,"textRole":"body","fontSize":23,"textCapacity":24},{"kind":"text","x":941.3333333333334,"y":569.3333333333334,"width":274.6666666666667,"height":37.333333333333336,"textRole":"body","fontSize":16,"textCapacity":12},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":7,"sourceTitle":"Effort and impact map","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["comparison"],"recommendedRoles":["comparison"],"structureSummary":"Prioritization scatter linked by letters to an action register","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":37,"textCapacity":23},{"kind":"shape","x":100,"y":232,"width":670.6666666666666,"height":364,"shape":"rect","fill":"E4DFD5"},{"kind":"shape","x":100,"y":232,"width":334.6666666666667,"height":181.33333333333334,"shape":"rect","fill":"EFC3B1"},{"kind":"text","x":122.66666666666667,"y":248,"width":282.6666666666667,"height":34.666666666666664,"textRole":"body","fontSize":14,"textCapacity":15},{"kind":"text","x":460,"y":248,"width":280,"height":34.666666666666664,"textRole":"body","fontSize":14,"textCapacity":15},{"kind":"shape","x":196,"y":306.6666666666667,"width":45.333333333333336,"height":45.333333333333336,"shape":"ellipse","fill":"E85D26"},{"kind":"text","x":202.66666666666666,"y":312,"width":32,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"shape","x":294.6666666666667,"y":348,"width":45.333333333333336,"height":45.333333333333336,"shape":"ellipse","fill":"E85D26"},{"kind":"text","x":301.3333333333333,"y":353.3333333333333,"width":32,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"shape","x":570.6666666666666,"y":318.6666666666667,"width":45.333333333333336,"height":45.333333333333336,"shape":"ellipse","fill":"E85D26"},{"kind":"text","x":577.3333333333334,"y":324,"width":32,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"shape","x":497.3333333333333,"y":473.3333333333333,"width":45.333333333333336,"height":45.333333333333336,"shape":"ellipse","fill":"E85D26"},{"kind":"text","x":504,"y":478.6666666666667,"width":32,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":100,"y":606.6666666666666,"width":668,"height":36,"textRole":"body","fontSize":14,"textCapacity":35},{"kind":"text","x":100,"y":196,"width":668,"height":29.333333333333332,"textRole":"body","fontSize":12,"textCapacity":41},{"kind":"text","x":832,"y":241.33333333333334,"width":58.666666666666664,"height":40,"textRole":"body","fontSize":20,"textCapacity":2},{"kind":"text","x":908,"y":241.33333333333334,"width":308,"height":68,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":832,"y":332,"width":58.666666666666664,"height":40,"textRole":"body","fontSize":20,"textCapacity":2},{"kind":"text","x":908,"y":332,"width":308,"height":68,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":832,"y":422.6666666666667,"width":58.666666666666664,"height":40,"textRole":"body","fontSize":20,"textCapacity":2},{"kind":"text","x":908,"y":422.6666666666667,"width":308,"height":68,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":832,"y":513.3333333333334,"width":58.666666666666664,"height":40,"textRole":"body","fontSize":20,"textCapacity":2},{"kind":"text","x":908,"y":513.3333333333334,"width":308,"height":68,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":8,"sourceTitle":"Campaign storyboard","family":"agenda","titlePosition":"left","bodyColumns":3,"density":"high","features":["agenda"],"recommendedRoles":["agenda"],"structureSummary":"Three narrative beats with oversized sequence numbers and a specific audience action","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":37,"textCapacity":23},{"kind":"title","x":64,"y":212,"width":348,"height":126.66666666666667,"textRole":"title","fontSize":72,"textCapacity":3},{"kind":"text","x":64,"y":388,"width":348,"height":56,"textRole":"body","fontSize":20,"textCapacity":13},{"kind":"text","x":64,"y":468,"width":348,"height":112,"textRole":"body","fontSize":21,"textCapacity":36},{"kind":"text","x":64,"y":606.6666666666666,"width":348,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"title","x":458.6666666666667,"y":212,"width":348,"height":126.66666666666667,"textRole":"title","fontSize":72,"textCapacity":3},{"kind":"text","x":458.6666666666667,"y":388,"width":348,"height":56,"textRole":"body","fontSize":20,"textCapacity":13},{"kind":"text","x":458.6666666666667,"y":468,"width":348,"height":112,"textRole":"body","fontSize":21,"textCapacity":36},{"kind":"text","x":458.6666666666667,"y":606.6666666666666,"width":348,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"title","x":853.3333333333334,"y":212,"width":348,"height":126.66666666666667,"textRole":"title","fontSize":72,"textCapacity":3},{"kind":"text","x":853.3333333333334,"y":388,"width":348,"height":56,"textRole":"body","fontSize":20,"textCapacity":13},{"kind":"text","x":853.3333333333334,"y":468,"width":348,"height":112,"textRole":"body","fontSize":21,"textCapacity":36},{"kind":"text","x":853.3333333333334,"y":606.6666666666666,"width":348,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"Case results poster","family":"comparison","titlePosition":"left","bodyColumns":3,"density":"high","features":["comparison"],"recommendedRoles":["comparison"],"structureSummary":"Single dominant before/after result with trial scope and duration","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":37,"textCapacity":23},{"kind":"title","x":64,"y":234.66666666666666,"width":1152,"height":189.33333333333334,"textRole":"title","fontSize":96,"textCapacity":9},{"kind":"text","x":69.33333333333333,"y":434.6666666666667,"width":1118.6666666666667,"height":56,"textRole":"body","fontSize":26,"textCapacity":32},{"kind":"text","x":64,"y":557.3333333333334,"width":357.3333333333333,"height":50.666666666666664,"textRole":"body","fontSize":25,"textCapacity":10},{"kind":"text","x":64,"y":618.6666666666666,"width":357.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":14,"textCapacity":19},{"kind":"text","x":458.6666666666667,"y":557.3333333333334,"width":357.3333333333333,"height":50.666666666666664,"textRole":"body","fontSize":25,"textCapacity":10},{"kind":"text","x":458.6666666666667,"y":618.6666666666666,"width":357.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":14,"textCapacity":19},{"kind":"text","x":853.3333333333334,"y":557.3333333333334,"width":357.3333333333333,"height":50.666666666666664,"textRole":"body","fontSize":25,"textCapacity":10},{"kind":"text","x":853.3333333333334,"y":618.6666666666666,"width":357.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":14,"textCapacity":19},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":10,"sourceTitle":"Launch schedule","family":"process","titlePosition":"left","bodyColumns":4,"density":"high","features":["process"],"recommendedRoles":["process"],"structureSummary":"Staggered six-week timeline with a conditional expansion gate","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":37,"textCapacity":23},{"kind":"text","x":350.6666666666667,"y":222.66666666666666,"width":128,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"text","x":492,"y":222.66666666666666,"width":128,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"text","x":633.3333333333334,"y":222.66666666666666,"width":128,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"text","x":774.6666666666666,"y":222.66666666666666,"width":128,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"text","x":916,"y":222.66666666666666,"width":128,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"text","x":1057.3333333333333,"y":222.66666666666666,"width":128,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"text","x":64,"y":280,"width":249.33333333333334,"height":37.333333333333336,"textRole":"body","fontSize":18,"textCapacity":10},{"kind":"shape","x":352,"y":280,"width":269.3333333333333,"height":40,"shape":"rect","fill":"707068"},{"kind":"text","x":64,"y":360,"width":249.33333333333334,"height":37.333333333333336,"textRole":"body","fontSize":18,"textCapacity":10},{"kind":"shape","x":493.3333333333333,"y":360,"width":410.6666666666667,"height":40,"shape":"rect","fill":"707068"},{"kind":"text","x":64,"y":440,"width":249.33333333333334,"height":37.333333333333336,"textRole":"body","fontSize":18,"textCapacity":10},{"kind":"shape","x":776,"y":440,"width":269.3333333333333,"height":40,"shape":"rect","fill":"707068"},{"kind":"text","x":64,"y":520,"width":249.33333333333334,"height":37.333333333333336,"textRole":"body","fontSize":18,"textCapacity":10},{"kind":"shape","x":1058.6666666666667,"y":520,"width":128,"height":40,"shape":"rect","fill":"E85D26"},{"kind":"text","x":64,"y":610.6666666666666,"width":270.6666666666667,"height":36,"textRole":"body","fontSize":16,"textCapacity":12},{"kind":"text","x":350.6666666666667,"y":608,"width":865.3333333333334,"height":48,"textRole":"body","fontSize":18,"textCapacity":36},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Performance scorecard","family":"data","titlePosition":"left","bodyColumns":4,"density":"high","features":["data"],"recommendedRoles":["data"],"structureSummary":"Aligned metric table with actual/target values and native bullet bars","zones":[{"kind":"text","x":64,"y":34.666666666666664,"width":1093.3333333333333,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":74},{"kind":"title","x":64,"y":104,"width":1152,"height":90.66666666666667,"textRole":"title","fontSize":37,"textCapacity":23},{"kind":"text","x":64,"y":226.66666666666666,"width":382.6666666666667,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":23},{"kind":"text","x":452,"y":226.66666666666666,"width":205.33333333333334,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":12},{"kind":"text","x":686.6666666666666,"y":226.66666666666666,"width":209.33333333333334,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":13},{"kind":"text","x":924,"y":226.66666666666666,"width":292,"height":34.666666666666664,"textRole":"body","fontSize":11,"textCapacity":38},{"kind":"text","x":64,"y":294.6666666666667,"width":350.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":20,"textCapacity":13},{"kind":"text","x":452,"y":294.6666666666667,"width":205.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":686.6666666666666,"y":294.6666666666667,"width":201.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":20,"textCapacity":7},{"kind":"shape","x":925.3333333333334,"y":305.3333333333333,"width":268,"height":20,"shape":"rect","fill":"34342E"},{"kind":"shape","x":925.3333333333334,"y":305.3333333333333,"width":219.76,"height":20,"shape":"rect","fill":"E85D26"},{"kind":"text","x":64,"y":376,"width":350.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":20,"textCapacity":13},{"kind":"text","x":452,"y":376,"width":205.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":686.6666666666666,"y":376,"width":201.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":20,"textCapacity":7},{"kind":"shape","x":925.3333333333334,"y":386.6666666666667,"width":268,"height":20,"shape":"rect","fill":"34342E"},{"kind":"shape","x":925.3333333333334,"y":386.6666666666667,"width":163.48,"height":20,"shape":"rect","fill":"E85D26"},{"kind":"text","x":64,"y":457.3333333333333,"width":350.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":20,"textCapacity":13},{"kind":"text","x":452,"y":457.3333333333333,"width":205.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":686.6666666666666,"y":457.3333333333333,"width":201.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":20,"textCapacity":7},{"kind":"shape","x":925.3333333333334,"y":468,"width":268,"height":20,"shape":"rect","fill":"34342E"},{"kind":"shape","x":925.3333333333334,"y":468,"width":241.20000000000002,"height":20,"shape":"rect","fill":"E85D26"},{"kind":"text","x":64,"y":538.6666666666666,"width":350.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":20,"textCapacity":13},{"kind":"text","x":452,"y":538.6666666666666,"width":205.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":686.6666666666666,"y":538.6666666666666,"width":201.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":20,"textCapacity":7},{"kind":"shape","x":925.3333333333334,"y":549.3333333333334,"width":268,"height":20,"shape":"rect","fill":"34342E"},{"kind":"shape","x":925.3333333333334,"y":549.3333333333334,"width":257.28000000000003,"height":20,"shape":"rect","fill":"E85D26"},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":672,"width":56,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"Closing","family":"closing","titlePosition":"left","bodyColumns":1,"density":"medium","features":["closing"],"recommendedRoles":["closing"],"structureSummary":"Closing","zones":[{"kind":"title","x":64,"y":237.33333333333334,"width":1146.6666666666667,"height":300,"textRole":"title","fontSize":88,"textCapacity":18},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""}]}},"dsh-playful":{"palette":{"background":"F0C8A0","text":"1A1A1A","accent":"1A1A1A","surface":"E8B88E","secondary":"F7DEC6","muted":"F7DEC6"},"source":{"fileName":"playful-reference.jpg","sha256":"68e9bd4ba421fd0e357fde6dac52ffb419a94ed2df5ffe559ad427a188c2d78d","slideCount":12,"averageTextBlocks":17,"averageCharacters":279,"visualGrammar":"playful","recommendedDensity":"medium","designSummary":"# Playful / 杏色创意\n\nAdapted from Zara Zhang's Playful, commit e5e204fb1f3b06290846e7dcd7aceddabeceec8c. MIT. This native edition rebuilds twelve editable layouts; it is not an HTML import or an exact copy of every upstream slide.\n\n## Typography\n\nEnglish display: Arial Black; English body: Arial. These portable Office substitutions replace the upstream display face Syne. 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 warm, hand-crafted editorial system built on a peach-clay canvas with charcoal ink as the only \\\"color.\\\" Display type runs in Syne (weight 700–800, tight negative tracking); body type runs in Space Grotesk at weight 400–500. The aesthetic borrows from independent studio decks, risograph zines, and sketchbook spreads: organic blob frames, scribbled SVG doodles, slightly rotated cards, and double-stroke offset borders give every slide a hand-touched, unpolished warmth. The effect is creative-studio editorial, not corporate pitch — confident but human, structured but loose.\"\n\n1. Cover (cover)\n2. Agenda (agenda)\n3. Insights (insights)\n4. Metrics (data)\n5. Comparison chart (data)\n6. Process (process)\n7. Before and after (comparison)\n8. Closing (closing)\n\nAll charts and diagrams are native editable vectors. Example figures are illustrative, not reported facts. Retain a 48 pt outer margin and use 16:9, 960 × 540 pt.\n\nCopyright (c) 2026 Zara Zhang. DSH adaptation 2026-09-06. See licenses/zara/LICENSE and the pinned source design specification.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. Cover — Cover\n2. Make the idea easier to try — Asymmetric argument with three supporting evidence rows\n3. Give each moment a distinct purpose — Three schematic frames with distinct content and intent\n4. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n5. Locate the friction along the journey — Four stages aligned across actions and independent outcome measures\n6. Design the test before reading the result — One hypothesis with comparison, measure and a predeclared decision rule\n7. Follow one cohort through the funnel — A single cohort with explicit conversion counts and an overall rate\n8. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n9. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n10. Connect each measure to a response — Actual, target and response aligned across four measures\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. Closing — Closing\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":4,"averageMediaFrames":0},{"family":"insights","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":20,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":17,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":21,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":16,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":18,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":26,"averageMediaFrames":0},{"family":"table","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":19,"averageMediaFrames":0},{"family":"closing","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":4,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"Cover","family":"cover","titlePosition":"left","bodyColumns":1,"density":"medium","features":["cover"],"recommendedRoles":["cover"],"structureSummary":"Cover","zones":[{"kind":"shape","x":1010.6666666666666,"y":88,"width":153.33333333333334,"height":188,"shape":"ellipse","fill":"F0C8A0"},{"kind":"shape","x":1042.6666666666667,"y":124,"width":93.33333333333333,"height":124,"shape":"ellipse","fill":"1A1A1A"},{"kind":"title","x":64,"y":200,"width":954.6666666666666,"height":304,"textRole":"title","fontSize":61,"textCapacity":33},{"kind":"text","x":64,"y":560,"width":973.3333333333334,"height":60,"textRole":"body","fontSize":22,"textCapacity":33},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":2,"sourceTitle":"Make the idea easier to try","family":"insights","titlePosition":"left","bodyColumns":2,"density":"medium","features":["thesis"],"recommendedRoles":["insights"],"structureSummary":"Asymmetric argument with three supporting evidence rows","zones":[{"kind":"shape","x":1157.3333333333333,"y":30.666666666666668,"width":37.333333333333336,"height":37.333333333333336,"shape":"ellipse","fill":"1A1A1A"},{"kind":"shape","x":1210.6666666666667,"y":38.666666666666664,"width":21.333333333333332,"height":21.333333333333332,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":218.66666666666666,"width":464,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":26},{"kind":"title","x":64,"y":276,"width":442.6666666666667,"height":236,"textRole":"title","fontSize":30,"textCapacity":55},{"kind":"text","x":64,"y":560,"width":440,"height":57.333333333333336,"textRole":"body","fontSize":17,"textCapacity":38},{"kind":"text","x":588,"y":222.66666666666666,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":226.66666666666666,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":234.66666666666666,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":281.3333333333333,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":348,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":352,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":360,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":406.6666666666667,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":473.3333333333333,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":477.3333333333333,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":485.3333333333333,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":532,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Give each moment a distinct purpose","family":"grid","titlePosition":"left","bodyColumns":3,"density":"high","features":["storyboard"],"recommendedRoles":["grid"],"structureSummary":"Three schematic frames with distinct content and intent","zones":[{"kind":"shape","x":1157.3333333333333,"y":30.666666666666668,"width":37.333333333333336,"height":37.333333333333336,"shape":"ellipse","fill":"1A1A1A"},{"kind":"shape","x":1210.6666666666667,"y":38.666666666666664,"width":21.333333333333332,"height":21.333333333333332,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":64,"y":228,"width":360,"height":200,"shape":"rect","fill":"E8B88E"},{"kind":"shape","x":112,"y":337.3333333333333,"width":117.33333333333333,"height":41.333333333333336,"shape":"rect","fill":"181915"},{"kind":"text","x":64,"y":449.3333333333333,"width":346.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"text","x":64,"y":501.3333333333333,"width":350.6666666666667,"height":105.33333333333333,"textRole":"body","fontSize":26,"textCapacity":20},{"kind":"shape","x":456,"y":228,"width":360,"height":200,"shape":"rect","fill":"1A1A1A"},{"kind":"shape","x":582.6666666666666,"y":266.6666666666667,"width":104,"height":104,"shape":"ellipse","fill":"F8F6EE"},{"kind":"title","x":604,"y":285.3333333333333,"width":69.33333333333333,"height":77.33333333333333,"textRole":"title","fontSize":33,"textCapacity":1},{"kind":"text","x":456,"y":449.3333333333333,"width":346.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"text","x":456,"y":501.3333333333333,"width":350.6666666666667,"height":105.33333333333333,"textRole":"body","fontSize":26,"textCapacity":20},{"kind":"shape","x":848,"y":228,"width":360,"height":200,"shape":"rect","fill":"E8B88E"},{"kind":"shape","x":896,"y":262.6666666666667,"width":16,"height":16,"shape":"ellipse","fill":"181915"},{"kind":"shape","x":896,"y":312,"width":16,"height":16,"shape":"ellipse","fill":"181915"},{"kind":"shape","x":896,"y":361.3333333333333,"width":16,"height":16,"shape":"ellipse","fill":"181915"},{"kind":"text","x":848,"y":449.3333333333333,"width":346.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"text","x":848,"y":501.3333333333333,"width":350.6666666666667,"height":105.33333333333333,"textRole":"body","fontSize":26,"textCapacity":20},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Trace the question to testable branches","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["tree"],"recommendedRoles":["process"],"structureSummary":"Three-branch hypothesis tree with six testable leaves","zones":[{"kind":"shape","x":1157.3333333333333,"y":30.666666666666668,"width":37.333333333333336,"height":37.333333333333336,"shape":"ellipse","fill":"F0C8A0"},{"kind":"shape","x":1210.6666666666667,"y":38.666666666666664,"width":21.333333333333332,"height":21.333333333333332,"shape":"ellipse","fill":"F0C8A0"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":64,"y":362.6666666666667,"width":292,"height":140,"shape":"roundRect","fill":"F0C8A0"},{"kind":"text","x":80,"y":380,"width":260,"height":114.66666666666667,"textRole":"body","fontSize":18,"textCapacity":40},{"kind":"shape","x":466.6666666666667,"y":245.33333333333334,"width":226.66666666666666,"height":77.33333333333333,"shape":"roundRect","fill":"3D3129"},{"kind":"text","x":482.6666666666667,"y":262.6666666666667,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":236,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":292,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":376,"width":226.66666666666666,"height":77.33333333333333,"shape":"roundRect","fill":"3D3129"},{"kind":"text","x":482.6666666666667,"y":393.3333333333333,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":366.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":422.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":506.6666666666667,"width":226.66666666666666,"height":77.33333333333333,"shape":"roundRect","fill":"3D3129"},{"kind":"text","x":482.6666666666667,"y":524,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":497.3333333333333,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":553.3333333333334,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":5,"sourceTitle":"Locate the friction along the journey","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["journey"],"recommendedRoles":["process"],"structureSummary":"Four stages aligned across actions and independent outcome measures","zones":[{"kind":"shape","x":1157.3333333333333,"y":30.666666666666668,"width":37.333333333333336,"height":37.333333333333336,"shape":"ellipse","fill":"1A1A1A"},{"kind":"shape","x":1210.6666666666667,"y":38.666666666666664,"width":21.333333333333332,"height":21.333333333333332,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":250.66666666666666,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"text","x":64,"y":376,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"text","x":64,"y":501.3333333333333,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"shape","x":244,"y":232,"width":222.66666666666666,"height":84,"shape":"roundRect","fill":"E8B88E"},{"kind":"text","x":260,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":244,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":244,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":488,"y":232,"width":222.66666666666666,"height":84,"shape":"roundRect","fill":"1A1A1A"},{"kind":"text","x":504,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":488,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":488,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":732,"y":232,"width":222.66666666666666,"height":84,"shape":"roundRect","fill":"E8B88E"},{"kind":"text","x":748,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":732,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":732,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":976,"y":232,"width":222.66666666666666,"height":84,"shape":"roundRect","fill":"E8B88E"},{"kind":"text","x":992,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":976,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":976,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":6,"sourceTitle":"Design the test before reading the result","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["experiment"],"recommendedRoles":["comparison"],"structureSummary":"One hypothesis with comparison, measure and a predeclared decision rule","zones":[{"kind":"shape","x":1157.3333333333333,"y":30.666666666666668,"width":37.333333333333336,"height":37.333333333333336,"shape":"ellipse","fill":"1A1A1A"},{"kind":"shape","x":1210.6666666666667,"y":38.666666666666664,"width":21.333333333333332,"height":21.333333333333332,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"title","x":64,"y":232,"width":366.6666666666667,"height":138.66666666666666,"textRole":"title","fontSize":32,"textCapacity":16},{"kind":"text","x":64,"y":441.3333333333333,"width":370.6666666666667,"height":156,"textRole":"body","fontSize":21,"textCapacity":65},{"kind":"text","x":536,"y":236,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":236,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":330.6666666666667,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":330.6666666666667,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":425.3333333333333,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":425.3333333333333,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":520,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":520,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":7,"sourceTitle":"Follow one cohort through the funnel","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["funnel"],"recommendedRoles":["data"],"structureSummary":"A single cohort with explicit conversion counts and an overall rate","zones":[{"kind":"shape","x":1157.3333333333333,"y":30.666666666666668,"width":37.333333333333336,"height":37.333333333333336,"shape":"ellipse","fill":"1A1A1A"},{"kind":"shape","x":1210.6666666666667,"y":38.666666666666664,"width":21.333333333333332,"height":21.333333333333332,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":64,"y":241.33333333333334,"width":201.33333333333334,"height":380,"shape":"rect","fill":"E8B88E"},{"kind":"title","x":80,"y":262.6666666666667,"width":170.66666666666666,"height":74.66666666666667,"textRole":"title","fontSize":36,"textCapacity":3},{"kind":"text","x":74.66666666666667,"y":534.6666666666666,"width":180,"height":72,"textRole":"body","fontSize":15,"textCapacity":27},{"kind":"shape","x":288,"y":305.3333333333333,"width":201.33333333333334,"height":316,"shape":"rect","fill":"E8B88E"},{"kind":"title","x":304,"y":326.6666666666667,"width":170.66666666666666,"height":74.66666666666667,"textRole":"title","fontSize":36,"textCapacity":3},{"kind":"text","x":298.6666666666667,"y":534.6666666666666,"width":180,"height":72,"textRole":"body","fontSize":15,"textCapacity":27},{"kind":"shape","x":512,"y":369.3333333333333,"width":201.33333333333334,"height":252,"shape":"rect","fill":"1A1A1A"},{"kind":"title","x":528,"y":390.6666666666667,"width":170.66666666666666,"height":74.66666666666667,"textRole":"title","fontSize":36,"textCapacity":3},{"kind":"text","x":522.6666666666666,"y":534.6666666666666,"width":180,"height":72,"textRole":"body","fontSize":15,"textCapacity":27},{"kind":"shape","x":736,"y":433.3333333333333,"width":201.33333333333334,"height":188,"shape":"rect","fill":"E8B88E"},{"kind":"title","x":752,"y":454.6666666666667,"width":170.66666666666666,"height":74.66666666666667,"textRole":"title","fontSize":36,"textCapacity":3},{"kind":"text","x":746.6666666666666,"y":534.6666666666666,"width":180,"height":72,"textRole":"body","fontSize":15,"textCapacity":27},{"kind":"title","x":1026.6666666666667,"y":261.3333333333333,"width":192,"height":92,"textRole":"title","fontSize":33,"textCapacity":4},{"kind":"text","x":1026.6666666666667,"y":389.3333333333333,"width":189.33333333333334,"height":102.66666666666667,"textRole":"body","fontSize":20,"textCapacity":21},{"kind":"text","x":1026.6666666666667,"y":540,"width":189.33333333333334,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":10},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":8,"sourceTitle":"A small intervention, a measurable change","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["case"],"recommendedRoles":["comparison"],"structureSummary":"Intervention narrative beside paired before and after comparisons","zones":[{"kind":"shape","x":1157.3333333333333,"y":30.666666666666668,"width":37.333333333333336,"height":37.333333333333336,"shape":"ellipse","fill":"F0C8A0"},{"kind":"shape","x":1210.6666666666667,"y":38.666666666666664,"width":21.333333333333332,"height":21.333333333333332,"shape":"ellipse","fill":"F0C8A0"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":224,"width":386.6666666666667,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":24},{"kind":"title","x":64,"y":289.3333333333333,"width":384,"height":161.33333333333334,"textRole":"title","fontSize":34,"textCapacity":24},{"kind":"text","x":64,"y":492,"width":374.6666666666667,"height":104,"textRole":"body","fontSize":20,"textCapacity":42},{"kind":"text","x":552,"y":232,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":300,"width":388.8,"height":26.666666666666668,"shape":"rect","fill":"5a4e42"},{"kind":"shape","x":553.3333333333334,"y":340,"width":151.20000000000002,"height":26.666666666666668,"shape":"rect","fill":"F0C8A0"},{"kind":"text","x":1005.3333333333334,"y":305.3333333333333,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":552,"y":421.3333333333333,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":489.3333333333333,"width":198.72,"height":26.666666666666668,"shape":"rect","fill":"5a4e42"},{"kind":"shape","x":553.3333333333334,"y":529.3333333333334,"width":315.36,"height":26.666666666666668,"shape":"rect","fill":"F0C8A0"},{"kind":"text","x":1005.3333333333334,"y":494.6666666666667,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"Choose the next move with evidence","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["matrix"],"recommendedRoles":["comparison"],"structureSummary":"Two-axis decision map with direct labels and a recommended next step","zones":[{"kind":"shape","x":1157.3333333333333,"y":30.666666666666668,"width":37.333333333333336,"height":37.333333333333336,"shape":"ellipse","fill":"1A1A1A"},{"kind":"shape","x":1210.6666666666667,"y":38.666666666666664,"width":21.333333333333332,"height":21.333333333333332,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":118.66666666666667,"y":245.33333333333334,"width":662.6666666666666,"height":336,"shape":"rect","fill":"e9c29b"},{"kind":"shape","x":450.6666666666667,"y":245.33333333333334,"width":330.6666666666667,"height":168,"shape":"rect","fill":"c5a585"},{"kind":"text","x":137.33333333333334,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":137.33333333333334,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"shape","x":236,"y":345.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"897460"},{"kind":"text","x":269.3333333333333,"y":338.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":557.3333333333334,"y":322.6666666666667,"width":34.666666666666664,"height":34.666666666666664,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":598.6666666666666,"y":324,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":500,"y":376,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"897460"},{"kind":"text","x":533.3333333333334,"y":369.3333333333333,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":293.3333333333333,"y":462.6666666666667,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"897460"},{"kind":"text","x":326.6666666666667,"y":456,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":634.6666666666666,"y":473.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"897460"},{"kind":"text","x":668,"y":466.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"text","x":118.66666666666667,"y":589.3333333333334,"width":317.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":469.3333333333333,"y":589.3333333333334,"width":312,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":842.6666666666666,"y":230.66666666666666,"width":373.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":21},{"kind":"title","x":842.6666666666666,"y":286.6666666666667,"width":373.3333333333333,"height":82.66666666666667,"textRole":"title","fontSize":32,"textCapacity":8},{"kind":"text","x":842.6666666666666,"y":414.6666666666667,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":414.6666666666667,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":476,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":476,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":537.3333333333334,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":537.3333333333334,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":10,"sourceTitle":"Connect each measure to a response","family":"table","titlePosition":"left","bodyColumns":2,"density":"high","features":["scorecard"],"recommendedRoles":["table"],"structureSummary":"Actual, target and response aligned across four measures","zones":[{"kind":"shape","x":1157.3333333333333,"y":30.666666666666668,"width":37.333333333333336,"height":37.333333333333336,"shape":"ellipse","fill":"1A1A1A"},{"kind":"shape","x":1210.6666666666667,"y":38.666666666666664,"width":21.333333333333332,"height":21.333333333333332,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":373.3333333333333,"height":32,"textRole":"body","fontSize":11,"textCapacity":25},{"kind":"text","x":497.3333333333333,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":697.3333333333334,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":922.6666666666666,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":81.33333333333333,"y":294.6666666666667,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":285.3333333333333,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":298.6666666666667,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":297.3333333333333,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":298.6666666666667,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":376,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":366.6666666666667,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":380,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":378.6666666666667,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":380,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"shape","x":64,"y":434.6666666666667,"width":1152,"height":81.33333333333333,"shape":"rect","fill":"d8b591"},{"kind":"shape","x":64,"y":434.6666666666667,"width":4,"height":81.33333333333333,"shape":"rect","fill":"1A1A1A"},{"kind":"text","x":81.33333333333333,"y":457.3333333333333,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":448,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":461.3333333333333,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":460,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":461.3333333333333,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":538.6666666666666,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":529.3333333333334,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":542.6666666666666,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":541.3333333333334,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":542.6666666666666,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Sequence the work around a decision gate","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["roadmap"],"recommendedRoles":["process"],"structureSummary":"Four timed workstreams and a decision gate","zones":[{"kind":"shape","x":1157.3333333333333,"y":30.666666666666668,"width":37.333333333333336,"height":37.333333333333336,"shape":"ellipse","fill":"1A1A1A"},{"kind":"shape","x":1210.6666666666667,"y":38.666666666666664,"width":21.333333333333332,"height":21.333333333333332,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":324,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":22},{"kind":"text","x":421.3333333333333,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":617.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":813.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":1009.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":64,"y":273.3333333333333,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":313.3333333333333,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":406.6666666666667,"y":289.3333333333333,"width":176.4,"height":29.333333333333332,"shape":"rect","fill":"b6997c"},{"kind":"shape","x":579.0666666666667,"y":300,"width":8,"height":8,"shape":"ellipse","fill":"7a6856"},{"kind":"text","x":64,"y":354.6666666666667,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":394.6666666666667,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":543.8666666666667,"y":370.6666666666667,"width":254.79999999999998,"height":29.333333333333332,"shape":"rect","fill":"b6997c"},{"kind":"shape","x":794.6666666666666,"y":381.3333333333333,"width":8,"height":8,"shape":"ellipse","fill":"7a6856"},{"kind":"text","x":64,"y":436,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":476,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":759.4666666666667,"y":452,"width":215.60000000000002,"height":29.333333333333332,"shape":"rect","fill":"1A1A1A"},{"kind":"shape","x":971.0666666666667,"y":462.6666666666667,"width":8,"height":8,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":64,"y":517.3333333333334,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":557.3333333333334,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":955.4666666666666,"y":533.3333333333334,"width":235.20000000000002,"height":29.333333333333332,"shape":"rect","fill":"b6997c"},{"kind":"shape","x":1186.6666666666665,"y":544,"width":8,"height":8,"shape":"ellipse","fill":"7a6856"},{"kind":"shape","x":949.3333333333334,"y":592,"width":10.666666666666666,"height":10.666666666666666,"shape":"ellipse","fill":"1A1A1A"},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"Closing","family":"closing","titlePosition":"left","bodyColumns":1,"density":"medium","features":["closing"],"recommendedRoles":["closing"],"structureSummary":"Closing","zones":[{"kind":"text","x":64,"y":105.33333333333333,"width":1133.3333333333333,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"title","x":64,"y":245.33333333333334,"width":1146.6666666666667,"height":262.6666666666667,"textRole":"title","fontSize":55,"textCapacity":45},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""}]}},"dsh-sakura-chroma":{"palette":{"background":"F1E6CB","text":"3A2516","accent":"E54489","surface":"E5D6B0","secondary":"F09131","muted":"F09131"},"source":{"fileName":"sakura-chroma-reference.jpg","sha256":"d7c016705408503dc01fb0ed3f3f573c4eeb8561f49b10982d01f9cbe864a916","slideCount":12,"averageTextBlocks":16,"averageCharacters":290,"visualGrammar":"sakura-chroma","recommendedDensity":"medium","designSummary":"# Sakura Chroma / 复古彩带\n\nAdapted from Zara Zhang's Sakura Chroma, commit e5e204fb1f3b06290846e7dcd7aceddabeceec8c. MIT. This native edition rebuilds twelve editable layouts; it is not an HTML import or an exact copy of every upstream slide.\n\n## Typography\n\nEnglish display: Arial Narrow; English body: Arial. These portable Office substitutions replace the upstream display face Big Shoulders Display. 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 cassette-package editorial system on warm cream paper with a six-color primary palette and warm-brown ink. Display type runs in Big Shoulders Display (condensed industrial display sans at weight 900); body in Albert Sans; tabular and tag content in JetBrains Mono; occasional Japanese accents in Noto Sans JP. The aesthetic borrows from 1970s consumer cassette packaging, Japanese print catalogues, and lo-fi product zines: petal-cluster blob clusters, diagonal multi-color ribbon bands, 12-point starburst seals, red rectangular stamps, and tracked uppercase micro-labels. The effect is hand-curated industrial editorial — warm but disciplined, playful but tightly typeset, with the cassette as its visual metaphor.\"\n\n1. Cover (cover)\n2. Agenda (agenda)\n3. Insights (insights)\n4. Metrics (data)\n5. Comparison chart (data)\n6. Process (process)\n7. Before and after (comparison)\n8. Closing (closing)\n\nAll charts and diagrams are native editable vectors. Example figures are illustrative, not reported facts. Retain a 48 pt outer margin and use 16:9, 960 × 540 pt.\n\nCopyright (c) 2026 Zara Zhang. DSH adaptation 2026-09-06. See licenses/zara/LICENSE and the pinned source design specification.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. Cover — Cover\n2. Design a campaign people can follow — Asymmetric argument with three supporting evidence rows\n3. Give each moment a distinct purpose — Three schematic frames with distinct content and intent\n4. Locate the friction along the journey — Four stages aligned across actions and independent outcome measures\n5. Separate the record from the explanation — Interview excerpt, observation, competing explanation and next check\n6. Follow one cohort through the funnel — A single cohort with explicit conversion counts and an overall rate\n7. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n8. Design the test before reading the result — One hypothesis with comparison, measure and a predeclared decision rule\n9. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n10. Show how the judgment develops — Alternating milestone notes around a continuous argument timeline\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. Closing — Closing\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":5,"averageMediaFrames":0},{"family":"insights","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":20,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":21,"averageMediaFrames":0},{"family":"quote","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":18,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":18,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":26,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":16,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":18,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":19,"averageMediaFrames":0},{"family":"closing","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":3,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"Cover","family":"cover","titlePosition":"left","bodyColumns":1,"density":"medium","features":["cover"],"recommendedRoles":["cover"],"structureSummary":"Cover","zones":[{"kind":"text","x":64,"y":50.666666666666664,"width":666.6666666666666,"height":37.333333333333336,"textRole":"body","fontSize":12,"textCapacity":82},{"kind":"shape","x":693.3333333333334,"y":200,"width":506.6666666666667,"height":42.666666666666664,"shape":"rect","fill":"E54489"},{"kind":"shape","x":693.3333333333334,"y":248,"width":506.6666666666667,"height":42.666666666666664,"shape":"rect","fill":"F09131"},{"kind":"shape","x":693.3333333333334,"y":296,"width":506.6666666666667,"height":42.666666666666664,"shape":"rect","fill":"F0BC2A"},{"kind":"shape","x":693.3333333333334,"y":344,"width":506.6666666666667,"height":42.666666666666664,"shape":"rect","fill":"3D9F47"},{"kind":"shape","x":693.3333333333334,"y":392,"width":506.6666666666667,"height":42.666666666666664,"shape":"rect","fill":"3F8BC4"},{"kind":"title","x":64,"y":186.66666666666666,"width":593.3333333333334,"height":226.66666666666666,"textRole":"title","fontSize":99,"textCapacity":4},{"kind":"shape","x":64,"y":509.3333333333333,"width":549.3333333333334,"height":86.66666666666667,"shape":"rect","fill":"E54489"},{"kind":"title","x":82.66666666666667,"y":520,"width":509.3333333333333,"height":68,"textRole":"title","fontSize":36,"textCapacity":10},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":2,"sourceTitle":"Design a campaign people can follow","family":"insights","titlePosition":"left","bodyColumns":2,"density":"medium","features":["thesis"],"recommendedRoles":["insights"],"structureSummary":"Asymmetric argument with three supporting evidence rows","zones":[{"kind":"shape","x":1005.3333333333334,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"E54489"},{"kind":"shape","x":1076,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"F09131"},{"kind":"shape","x":1146.6666666666667,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"547A46"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":218.66666666666666,"width":464,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":26},{"kind":"title","x":64,"y":276,"width":442.6666666666667,"height":236,"textRole":"title","fontSize":30,"textCapacity":55},{"kind":"text","x":64,"y":560,"width":440,"height":57.333333333333336,"textRole":"body","fontSize":17,"textCapacity":38},{"kind":"text","x":588,"y":222.66666666666666,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":226.66666666666666,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":234.66666666666666,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":281.3333333333333,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":348,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":352,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":360,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":406.6666666666667,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":473.3333333333333,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":477.3333333333333,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":485.3333333333333,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":532,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Give each moment a distinct purpose","family":"grid","titlePosition":"left","bodyColumns":3,"density":"high","features":["storyboard"],"recommendedRoles":["grid"],"structureSummary":"Three schematic frames with distinct content and intent","zones":[{"kind":"shape","x":1005.3333333333334,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"E54489"},{"kind":"shape","x":1076,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"F09131"},{"kind":"shape","x":1146.6666666666667,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"547A46"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":64,"y":228,"width":360,"height":200,"shape":"rect","fill":"E5D6B0"},{"kind":"shape","x":112,"y":337.3333333333333,"width":117.33333333333333,"height":41.333333333333336,"shape":"rect","fill":"181915"},{"kind":"text","x":64,"y":449.3333333333333,"width":346.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"text","x":64,"y":501.3333333333333,"width":350.6666666666667,"height":105.33333333333333,"textRole":"body","fontSize":26,"textCapacity":20},{"kind":"shape","x":456,"y":228,"width":360,"height":200,"shape":"rect","fill":"E54489"},{"kind":"shape","x":582.6666666666666,"y":266.6666666666667,"width":104,"height":104,"shape":"ellipse","fill":"F8F6EE"},{"kind":"title","x":604,"y":285.3333333333333,"width":69.33333333333333,"height":77.33333333333333,"textRole":"title","fontSize":33,"textCapacity":1},{"kind":"text","x":456,"y":449.3333333333333,"width":346.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"text","x":456,"y":501.3333333333333,"width":350.6666666666667,"height":105.33333333333333,"textRole":"body","fontSize":26,"textCapacity":20},{"kind":"shape","x":848,"y":228,"width":360,"height":200,"shape":"rect","fill":"E5D6B0"},{"kind":"shape","x":896,"y":262.6666666666667,"width":16,"height":16,"shape":"ellipse","fill":"181915"},{"kind":"shape","x":896,"y":312,"width":16,"height":16,"shape":"ellipse","fill":"181915"},{"kind":"shape","x":896,"y":361.3333333333333,"width":16,"height":16,"shape":"ellipse","fill":"181915"},{"kind":"text","x":848,"y":449.3333333333333,"width":346.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":20},{"kind":"text","x":848,"y":501.3333333333333,"width":350.6666666666667,"height":105.33333333333333,"textRole":"body","fontSize":26,"textCapacity":20},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Locate the friction along the journey","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["journey"],"recommendedRoles":["process"],"structureSummary":"Four stages aligned across actions and independent outcome measures","zones":[{"kind":"shape","x":1005.3333333333334,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"E54489"},{"kind":"shape","x":1076,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"F09131"},{"kind":"shape","x":1146.6666666666667,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"547A46"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":250.66666666666666,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"text","x":64,"y":376,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"text","x":64,"y":501.3333333333333,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"shape","x":244,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"E5D6B0"},{"kind":"text","x":260,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":244,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":244,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":488,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"E54489"},{"kind":"text","x":504,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":488,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":488,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":732,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"E5D6B0"},{"kind":"text","x":748,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":732,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":732,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":976,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"E5D6B0"},{"kind":"text","x":992,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":976,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":976,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":5,"sourceTitle":"Separate the record from the explanation","family":"quote","titlePosition":"left","bodyColumns":2,"density":"high","features":["evidence"],"recommendedRoles":["quote"],"structureSummary":"Interview excerpt, observation, competing explanation and next check","zones":[{"kind":"shape","x":1005.3333333333334,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"E54489"},{"kind":"shape","x":1076,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"F09131"},{"kind":"shape","x":1146.6666666666667,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"547A46"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":64,"y":234.66666666666666,"width":369.3333333333333,"height":365.3333333333333,"shape":"rect","fill":"E5D6B0"},{"kind":"text","x":92,"y":253.33333333333334,"width":313.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":46},{"kind":"text","x":92,"y":317.3333333333333,"width":309.3333333333333,"height":173.33333333333334,"textRole":"body","fontSize":28,"textCapacity":32},{"kind":"text","x":92,"y":546.6666666666666,"width":312,"height":36,"textRole":"body","fontSize":12,"textCapacity":38},{"kind":"title","x":482.6666666666667,"y":221.33333333333334,"width":253.33333333333334,"height":90.66666666666667,"textRole":"title","fontSize":48,"textCapacity":3},{"kind":"text","x":740,"y":234.66666666666666,"width":462.6666666666667,"height":64,"textRole":"body","fontSize":22,"textCapacity":15},{"kind":"shape","x":485.3333333333333,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"3A2516"},{"kind":"shape","x":514.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"3A2516"},{"kind":"shape","x":544,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"3A2516"},{"kind":"shape","x":573.3333333333334,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d0c3aa"},{"kind":"shape","x":602.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d0c3aa"},{"kind":"shape","x":632,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d0c3aa"},{"kind":"shape","x":661.3333333333334,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d0c3aa"},{"kind":"shape","x":690.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"d0c3aa"},{"kind":"text","x":748,"y":317.3333333333333,"width":468,"height":33.333333333333336,"textRole":"body","fontSize":10,"textCapacity":70},{"kind":"text","x":482.6666666666667,"y":390.6666666666667,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":389.3333333333333,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":482.6666666666667,"y":466.6666666666667,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":465.3333333333333,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":482.6666666666667,"y":542.6666666666666,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":541.3333333333334,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":6,"sourceTitle":"Follow one cohort through the funnel","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["funnel"],"recommendedRoles":["data"],"structureSummary":"A single cohort with explicit conversion counts and an overall rate","zones":[{"kind":"shape","x":1005.3333333333334,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"E54489"},{"kind":"shape","x":1076,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"F09131"},{"kind":"shape","x":1146.6666666666667,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"547A46"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":64,"y":241.33333333333334,"width":201.33333333333334,"height":380,"shape":"rect","fill":"E5D6B0"},{"kind":"title","x":80,"y":262.6666666666667,"width":170.66666666666666,"height":74.66666666666667,"textRole":"title","fontSize":36,"textCapacity":3},{"kind":"text","x":74.66666666666667,"y":534.6666666666666,"width":180,"height":72,"textRole":"body","fontSize":15,"textCapacity":27},{"kind":"shape","x":288,"y":305.3333333333333,"width":201.33333333333334,"height":316,"shape":"rect","fill":"E5D6B0"},{"kind":"title","x":304,"y":326.6666666666667,"width":170.66666666666666,"height":74.66666666666667,"textRole":"title","fontSize":36,"textCapacity":3},{"kind":"text","x":298.6666666666667,"y":534.6666666666666,"width":180,"height":72,"textRole":"body","fontSize":15,"textCapacity":27},{"kind":"shape","x":512,"y":369.3333333333333,"width":201.33333333333334,"height":252,"shape":"rect","fill":"E54489"},{"kind":"title","x":528,"y":390.6666666666667,"width":170.66666666666666,"height":74.66666666666667,"textRole":"title","fontSize":36,"textCapacity":3},{"kind":"text","x":522.6666666666666,"y":534.6666666666666,"width":180,"height":72,"textRole":"body","fontSize":15,"textCapacity":27},{"kind":"shape","x":736,"y":433.3333333333333,"width":201.33333333333334,"height":188,"shape":"rect","fill":"E5D6B0"},{"kind":"title","x":752,"y":454.6666666666667,"width":170.66666666666666,"height":74.66666666666667,"textRole":"title","fontSize":36,"textCapacity":3},{"kind":"text","x":746.6666666666666,"y":534.6666666666666,"width":180,"height":72,"textRole":"body","fontSize":15,"textCapacity":27},{"kind":"title","x":1026.6666666666667,"y":261.3333333333333,"width":192,"height":92,"textRole":"title","fontSize":33,"textCapacity":4},{"kind":"text","x":1026.6666666666667,"y":389.3333333333333,"width":189.33333333333334,"height":102.66666666666667,"textRole":"body","fontSize":20,"textCapacity":21},{"kind":"text","x":1026.6666666666667,"y":540,"width":189.33333333333334,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":10},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":7,"sourceTitle":"Choose the next move with evidence","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["matrix"],"recommendedRoles":["comparison"],"structureSummary":"Two-axis decision map with direct labels and a recommended next step","zones":[{"kind":"shape","x":1005.3333333333334,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"E54489"},{"kind":"shape","x":1076,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"F09131"},{"kind":"shape","x":1146.6666666666667,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"547A46"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":118.66666666666667,"y":245.33333333333334,"width":662.6666666666666,"height":336,"shape":"rect","fill":"ebdfc5"},{"kind":"shape","x":450.6666666666667,"y":245.33333333333334,"width":330.6666666666667,"height":168,"shape":"rect","fill":"efc6be"},{"kind":"text","x":137.33333333333334,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":137.33333333333334,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"shape","x":236,"y":345.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"998974"},{"kind":"text","x":269.3333333333333,"y":338.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":557.3333333333334,"y":322.6666666666667,"width":34.666666666666664,"height":34.666666666666664,"shape":"ellipse","fill":"3A2516"},{"kind":"text","x":598.6666666666666,"y":324,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":500,"y":376,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"998974"},{"kind":"text","x":533.3333333333334,"y":369.3333333333333,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":293.3333333333333,"y":462.6666666666667,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"998974"},{"kind":"text","x":326.6666666666667,"y":456,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":634.6666666666666,"y":473.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"998974"},{"kind":"text","x":668,"y":466.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"text","x":118.66666666666667,"y":589.3333333333334,"width":317.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":469.3333333333333,"y":589.3333333333334,"width":312,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":842.6666666666666,"y":230.66666666666666,"width":373.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":21},{"kind":"title","x":842.6666666666666,"y":286.6666666666667,"width":373.3333333333333,"height":82.66666666666667,"textRole":"title","fontSize":32,"textCapacity":8},{"kind":"text","x":842.6666666666666,"y":414.6666666666667,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":414.6666666666667,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":476,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":476,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":537.3333333333334,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":537.3333333333334,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":8,"sourceTitle":"Design the test before reading the result","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["experiment"],"recommendedRoles":["comparison"],"structureSummary":"One hypothesis with comparison, measure and a predeclared decision rule","zones":[{"kind":"shape","x":1005.3333333333334,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"E54489"},{"kind":"shape","x":1076,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"F09131"},{"kind":"shape","x":1146.6666666666667,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"547A46"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"title","x":64,"y":232,"width":366.6666666666667,"height":138.66666666666666,"textRole":"title","fontSize":32,"textCapacity":16},{"kind":"text","x":64,"y":441.3333333333333,"width":370.6666666666667,"height":156,"textRole":"body","fontSize":21,"textCapacity":65},{"kind":"text","x":536,"y":236,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":236,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":330.6666666666667,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":330.6666666666667,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":425.3333333333333,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":425.3333333333333,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":520,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":520,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"A small intervention, a measurable change","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["case"],"recommendedRoles":["comparison"],"structureSummary":"Intervention narrative beside paired before and after comparisons","zones":[{"kind":"shape","x":1005.3333333333334,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"E54489"},{"kind":"shape","x":1076,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"F09131"},{"kind":"shape","x":1146.6666666666667,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"547A46"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":224,"width":386.6666666666667,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":24},{"kind":"title","x":64,"y":289.3333333333333,"width":384,"height":161.33333333333334,"textRole":"title","fontSize":34,"textCapacity":24},{"kind":"text","x":64,"y":492,"width":374.6666666666667,"height":104,"textRole":"body","fontSize":20,"textCapacity":42},{"kind":"text","x":552,"y":232,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":300,"width":388.8,"height":26.666666666666668,"shape":"rect","fill":"baac95"},{"kind":"shape","x":553.3333333333334,"y":340,"width":151.20000000000002,"height":26.666666666666668,"shape":"rect","fill":"E54489"},{"kind":"text","x":1005.3333333333334,"y":305.3333333333333,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":552,"y":421.3333333333333,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":489.3333333333333,"width":198.72,"height":26.666666666666668,"shape":"rect","fill":"baac95"},{"kind":"shape","x":553.3333333333334,"y":529.3333333333334,"width":315.36,"height":26.666666666666668,"shape":"rect","fill":"E54489"},{"kind":"text","x":1005.3333333333334,"y":494.6666666666667,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":10,"sourceTitle":"Show how the judgment develops","family":"process","titlePosition":"left","bodyColumns":2,"density":"medium","features":["timeline"],"recommendedRoles":["process"],"structureSummary":"Alternating milestone notes around a continuous argument timeline","zones":[{"kind":"shape","x":1005.3333333333334,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"E54489"},{"kind":"shape","x":1076,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"F09131"},{"kind":"shape","x":1146.6666666666667,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"547A46"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":117.33333333333333,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"E54489"},{"kind":"text","x":142.66666666666666,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":104,"y":236,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":104,"y":298.6666666666667,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"shape","x":402.6666666666667,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"E54489"},{"kind":"text","x":428,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":389.3333333333333,"y":440,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":389.3333333333333,"y":520,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"shape","x":688,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"E54489"},{"kind":"text","x":713.3333333333334,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":674.6666666666666,"y":236,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":674.6666666666666,"y":298.6666666666667,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"shape","x":973.3333333333334,"y":377.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"E54489"},{"kind":"text","x":998.6666666666666,"y":397.3333333333333,"width":80,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":4},{"kind":"text","x":960,"y":440,"width":245.33333333333334,"height":62.666666666666664,"textRole":"body","fontSize":27,"textCapacity":6},{"kind":"text","x":960,"y":520,"width":242.66666666666666,"height":76,"textRole":"body","fontSize":18,"textCapacity":20},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Sequence the work around a decision gate","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["roadmap"],"recommendedRoles":["process"],"structureSummary":"Four timed workstreams and a decision gate","zones":[{"kind":"shape","x":1005.3333333333334,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"E54489"},{"kind":"shape","x":1076,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"F09131"},{"kind":"shape","x":1146.6666666666667,"y":36,"width":64,"height":17.333333333333332,"shape":"rect","fill":"547A46"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":324,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":22},{"kind":"text","x":421.3333333333333,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":617.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":813.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":1009.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":64,"y":273.3333333333333,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":313.3333333333333,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":406.6666666666667,"y":289.3333333333333,"width":176.4,"height":29.333333333333332,"shape":"rect","fill":"c0b29a"},{"kind":"shape","x":579.0666666666667,"y":300,"width":8,"height":8,"shape":"ellipse","fill":"8c7c67"},{"kind":"text","x":64,"y":354.6666666666667,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":394.6666666666667,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":543.8666666666667,"y":370.6666666666667,"width":254.79999999999998,"height":29.333333333333332,"shape":"rect","fill":"c0b29a"},{"kind":"shape","x":794.6666666666666,"y":381.3333333333333,"width":8,"height":8,"shape":"ellipse","fill":"8c7c67"},{"kind":"text","x":64,"y":436,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":476,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":759.4666666666667,"y":452,"width":215.60000000000002,"height":29.333333333333332,"shape":"rect","fill":"3A2516"},{"kind":"shape","x":971.0666666666667,"y":462.6666666666667,"width":8,"height":8,"shape":"ellipse","fill":"3A2516"},{"kind":"text","x":64,"y":517.3333333333334,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":557.3333333333334,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":955.4666666666666,"y":533.3333333333334,"width":235.20000000000002,"height":29.333333333333332,"shape":"rect","fill":"c0b29a"},{"kind":"shape","x":1186.6666666666665,"y":544,"width":8,"height":8,"shape":"ellipse","fill":"8c7c67"},{"kind":"shape","x":949.3333333333334,"y":592,"width":10.666666666666666,"height":10.666666666666666,"shape":"ellipse","fill":"E54489"},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"Closing","family":"closing","titlePosition":"left","bodyColumns":1,"density":"medium","features":["closing"],"recommendedRoles":["closing"],"structureSummary":"Closing","zones":[{"kind":"shape","x":373.3333333333333,"y":132,"width":833.3333333333334,"height":74.66666666666667,"shape":"rect","fill":"E54489"},{"kind":"shape","x":373.3333333333333,"y":212,"width":833.3333333333334,"height":74.66666666666667,"shape":"rect","fill":"F09131"},{"kind":"shape","x":373.3333333333333,"y":292,"width":833.3333333333334,"height":74.66666666666667,"shape":"rect","fill":"F0BC2A"},{"kind":"shape","x":373.3333333333333,"y":372,"width":833.3333333333334,"height":74.66666666666667,"shape":"rect","fill":"3D9F47"},{"kind":"shape","x":373.3333333333333,"y":452,"width":833.3333333333334,"height":74.66666666666667,"shape":"rect","fill":"3F8BC4"},{"kind":"shape","x":64,"y":313.3333333333333,"width":1034.6666666666667,"height":158.66666666666666,"shape":"rect","fill":"F1E6CB"},{"kind":"title","x":88,"y":334.6666666666667,"width":986.6666666666666,"height":116,"textRole":"title","fontSize":51,"textCapacity":14},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""}]}},"dsh-work-curated-modular-logistics-system":{"palette":{"background":"F2F2EE","surface":"FFF3A6","text":"202224","muted":"60666A","accent":"FFD400","secondary":"FFF3A6"},"source":{"fileName":"modular-logistics-system-reference.jpg","sha256":"e1d6adb1641f6635493e5ec7d05642e875a4503e3910b50a0e28cf1cc372065b","slideCount":12,"averageTextBlocks":20,"averageCharacters":492,"visualGrammar":"orange-data","recommendedDensity":"medium","designSummary":"# Modular Logistics System · WorkBuddy Original DESIGN SYSTEM\n\nThis original 16:9 system presents strategy as an operating network. Industrial white space, graphite modules, safety-yellow signals, route labels, and connected process blocks turn market evidence into executable operating choices. Every visible item in the reference deck is an editable PPTD object.\n\n## Communication model\n\nUse this system for supply-chain reviews, international operations, market-entry decisions, capability maps, and execution plans. Each page states one management judgment, displays the operating evidence, and ends with the implication or next gate.\n\n1. Titles state the conclusion rather than the subject.\n2. Data pages keep units, years, public-data dates, and derived-calculation notes next to the evidence.\n3. One page carries one primary structure: a route, control node, module row, decision matrix, or comparison.\n4. Yellow identifies the active gate, focal metric, selected route, or management action. It is not a decorative background.\n5. The footer retains the source or method note and the page number.\n\n## Visual signature\n\nThe deck behaves like a modular logistics control system. Black structural blocks represent fixed operating infrastructure. White modules represent choices still being tested. Safety yellow marks the active path. Thin gray grid lines and square corners keep the system precise and industrial.\n\n### Color palette\n\n- Paper background `#F2F2EE`\n- White surface `#FFFFFF`\n- Graphite text and structure `#202224`\n- Slate secondary text `#60666A`\n- Grid and separators `#D9DCD8`\n- Safety-yellow signal `#FFD400`\n- Pale-yellow annotation `#FFF3A6`\n- Steel comparison `#AEB4B5`\n- Risk exception `#C84B31`\n\nPaper and white occupy 65–80% of a normal analytical page. Graphite occupies 15–30%. Yellow stays below 12% and marks one dominant decision path. Risk red appears only for a blocked or conflicting item.\n\n### Typography\n\n- Chinese titles and body: `Hiragino Sans GB`, falling back to the host CJK sans serif.\n- Latin labels and large metrics: `Arial`.\n- Page titles: bold, left aligned, 26–32 px on the 960 × 540 PPTD canvas.\n- Module labels: compact uppercase Latin text with increased letter spacing.\n- Metrics: bold tabular numerals with a short unit or basis line.\n- Sources and calculation notes: muted, compact, and readable at presentation scale.\n\n### Grid and furniture\n\n- Canvas: PPTD v2, `960 × 540`, 16:9.\n- Use a 12-column mental grid with 26–34 px outer margins.\n- A narrow yellow rail or top rule identifies the active section.\n- Titles align to a fixed left edge; page numbers align to the lower-right edge.\n- Use square modules and hairline connectors. Rounded cards, soft shadows, and glass effects do not belong to this system.\n\n## Reusable components\n\n1. **Route module**: a numbered square or rectangle connected by a right-angle path. Use it for stages, choices, and handoffs.\n2. **Control node**: one yellow central block connected to black and white operating modules. Use it for overseas warehouses, orchestration, and platform roles.\n3. **Metric chassis**: a large number in a graphite panel, followed by its period, unit, and evidence note.\n4. **Gate strip**: a full-width yellow band that states the management implication or threshold.\n5. **Operating rack**: a row of unequal modules with black, white, steel, and yellow headers. Use it to compare capabilities or modes.\n6. **Entry staircase**: choices progress from low fixed investment to high local commitment along a stepped route.\n\n## Charts and tables\n\n- Use yellow for the current or focal series, graphite for structural comparisons, steel gray for context, and risk red only for an unresolved data point.\n- Place exact decimal labels as editable text when native Office data-label formatting is unstable.\n- Use minimal axes, square bars, direct labels, and no 3D effects.\n- Comparison tables use a graphite header, white body cells, thin grid borders, and one yellow selected column or row.\n- Every chart or table ends with one explicit management conclusion.\n\n## Page rhythm\n\nThe reference sequence covers a thesis cover, executive modules, scale evidence, export structure, concentration risk, warehouse control node, operating-mode combination, capability rack, market-entry staircase, and audience-specific actions. Reuse the visual rules while adapting the exact page order to the new story.\n\nAlternate wide evidence structures with compact module pages. Avoid repeating the same three-column card grid. Keep one dominant module or path visibly larger than supporting evidence.\n\n## Prohibited treatments\n\n- Generic icon walls, emoji, stock-photo hero backgrounds, and dashboard decoration.\n- Blue-purple gradients, glow, glassmorphism, soft drop shadows, and 3D charts.\n- Yellow applied to several unrelated messages on the same page.\n- Rounded rectangles used as the default container.\n- Rasterized text, tables, charts, arrows, or process blocks that PPTD can represent natively.\n\n## Reference provenance\n\nThe design specification, PPTD source, page objects, and rendered previews are original WorkBuddy artifacts. Public design sites were used only to understand broad presentation categories. The pack contains no external template file, photograph, logo, font file, or proprietary brand asset.\n\n## Bilingual typography\n\nEnglish previews: source/. Chinese examples: source-zh/. English title/body: Arial / Arial. Chinese macOS: PingFang SC / PingFang SC; Windows: Microsoft YaHei / Microsoft YaHei; Linux: Noto Sans CJK SC / Noto Sans CJK SC. Font names only, no binaries. Use the user's requested output language, independently of the preview language. Reflow long translations; do not reduce text below readable size.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The ten established industry pages are preserved; two new analytical layouts are inserted before the closing.\n\n1. Reference page 1 — Raster-indexed page 1: 11 measured visual regions across 15 occupied landmark cells; dense density; cover composition.\n2. Reference page 2 — Raster-indexed page 2: 7 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n3. Reference page 3 — Raster-indexed page 3: 9 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n4. Reference page 4 — Raster-indexed page 4: 8 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n5. Reference page 5 — Raster-indexed page 5: 8 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n6. Reference page 6 — Raster-indexed page 6: 7 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n7. Reference page 7 — Raster-indexed page 7: 9 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n8. Reference page 8 — Raster-indexed page 8: 9 measured visual regions across 16 occupied landmark cells; dense density; image-led composition.\n9. Reference page 9 — Raster-indexed page 9: 6 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n10. Follow the flow across the network — Editable directed network with forward and return flow\n11. Make the handoff order visible — Four lifelines with ordered request and response arrows\n12. Reference page 10 — Raster-indexed page 10: 8 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":2,"density":"dense","averageTextFrames":11,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":21,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":24,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":17,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":24,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":22,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":15,"averageMediaFrames":0},{"family":"image-led","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":1,"density":"dense","averageTextFrames":27,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":17,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":16,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":14,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":31,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"Reference page 1","family":"cover","titlePosition":"left","bodyColumns":2,"density":"dense","features":["image","statement","kpi"],"recommendedRoles":["cover"],"structureSummary":"Raster-indexed page 1: 11 measured visual regions across 15 occupied landmark cells; dense density; cover composition.","zones":[{"kind":"title","x":0,"y":0,"width":320,"height":180,"textRole":"title"},{"kind":"text","x":320,"y":0,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":640,"y":0,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":0,"y":180,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"image","x":320,"y":180,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"text","x":640,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":960,"y":180,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"text","x":0,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":320,"y":360,"width":960,"height":180,"textRole":"text"},{"kind":"text","x":0,"y":540,"width":320,"height":180,"textRole":"text"},{"kind":"shape","x":320,"y":540,"width":960,"height":180,"shape":"rect","fill":"232426"}],"primaryVisual":{"kind":"shape","x":320,"y":540,"width":960,"height":180,"areaRatio":0.188},"jsxReference":""},{"slideNumber":2,"sourceTitle":"Reference page 2","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 2: 7 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"title","x":320,"y":0,"width":960,"height":180,"textRole":"title"},{"kind":"image","x":0,"y":180,"width":1280,"height":180,"backgroundFill":"FFF3A6"},{"kind":"text","x":0,"y":360,"width":640,"height":180,"textRole":"text"},{"kind":"text","x":640,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"shape","x":960,"y":360,"width":320,"height":180,"shape":"rect","fill":"222325"},{"kind":"shape","x":0,"y":540,"width":1280,"height":180,"shape":"rect","fill":"FED701"}],"primaryVisual":{"kind":"image","x":0,"y":180,"width":1280,"height":180,"areaRatio":0.25},"jsxReference":""},{"slideNumber":3,"sourceTitle":"Reference page 3","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 3: 9 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"title","x":0,"y":0,"width":1280,"height":360,"textRole":"title"},{"kind":"image","x":0,"y":180,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"text","x":320,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":640,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"shape","x":0,"y":360,"width":320,"height":180,"shape":"rect","fill":"222325"},{"kind":"shape","x":320,"y":360,"width":640,"height":180,"shape":"rect","fill":"AEB3B6"},{"kind":"shape","x":960,"y":360,"width":320,"height":180,"shape":"rect","fill":"FFD401"},{"kind":"text","x":0,"y":540,"width":640,"height":180,"textRole":"text"},{"kind":"text","x":640,"y":540,"width":640,"height":180,"textRole":"text"}],"primaryVisual":{"kind":"shape","x":320,"y":360,"width":640,"height":180,"areaRatio":0.125},"jsxReference":""},{"slideNumber":4,"sourceTitle":"Reference page 4","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 4: 8 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"title","x":0,"y":0,"width":1280,"height":540,"textRole":"title"},{"kind":"text","x":0,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":640,"y":180,"width":640,"height":180,"backgroundFill":"FFF3A6"},{"kind":"image","x":640,"y":360,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"text","x":960,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":0,"y":540,"width":640,"height":180,"textRole":"text"},{"kind":"shape","x":640,"y":540,"width":320,"height":180,"shape":"rect","fill":"242526"},{"kind":"image","x":960,"y":540,"width":320,"height":180,"backgroundFill":"FFF3A6"}],"primaryVisual":{"kind":"image","x":640,"y":180,"width":640,"height":180,"areaRatio":0.125},"jsxReference":""},{"slideNumber":5,"sourceTitle":"Reference page 5","family":"grid","titlePosition":"right","bodyColumns":3,"density":"dense","features":["image"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 5: 8 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":1280,"height":180,"backgroundFill":"FFF3A6"},{"kind":"image","x":0,"y":180,"width":320,"height":360,"backgroundFill":"FFF3A6"},{"kind":"image","x":320,"y":180,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"image","x":640,"y":180,"width":640,"height":360,"backgroundFill":"FFF3A6"},{"kind":"shape","x":320,"y":360,"width":320,"height":180,"shape":"rect","fill":"FFF4A6"},{"kind":"title","x":960,"y":360,"width":320,"height":180,"textRole":"title"},{"kind":"image","x":0,"y":540,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"shape","x":320,"y":540,"width":960,"height":180,"shape":"rect","fill":"242527"}],"primaryVisual":{"kind":"image","x":0,"y":0,"width":1280,"height":180,"areaRatio":0.25},"jsxReference":""},{"slideNumber":6,"sourceTitle":"Reference page 6","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 6: 7 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"title","x":0,"y":0,"width":1280,"height":180,"textRole":"title"},{"kind":"image","x":0,"y":180,"width":640,"height":360,"backgroundFill":"FFF3A6"},{"kind":"shape","x":320,"y":180,"width":320,"height":180,"shape":"rect","fill":"222325"},{"kind":"image","x":640,"y":180,"width":320,"height":360,"backgroundFill":"FFF3A6"},{"kind":"text","x":960,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":640,"y":360,"width":640,"height":360,"textRole":"text"},{"kind":"shape","x":0,"y":540,"width":640,"height":180,"shape":"rect","fill":"222325"}],"primaryVisual":{"kind":"image","x":0,"y":180,"width":640,"height":360,"areaRatio":0.25},"jsxReference":""},{"slideNumber":7,"sourceTitle":"Reference page 7","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 7: 9 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"title","x":0,"y":0,"width":1280,"height":180,"textRole":"title"},{"kind":"image","x":0,"y":180,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"image","x":320,"y":180,"width":640,"height":180,"backgroundFill":"FFF3A6"},{"kind":"image","x":960,"y":180,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"text","x":0,"y":360,"width":640,"height":180,"textRole":"text"},{"kind":"shape","x":640,"y":360,"width":640,"height":180,"shape":"rect","fill":"222324"},{"kind":"shape","x":0,"y":540,"width":640,"height":180,"shape":"rect","fill":"FED601"},{"kind":"image","x":640,"y":540,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"shape","x":960,"y":540,"width":320,"height":180,"shape":"rect","fill":"FED501"}],"primaryVisual":{"kind":"image","x":320,"y":180,"width":640,"height":180,"areaRatio":0.125},"jsxReference":""},{"slideNumber":8,"sourceTitle":"Reference page 8","family":"image-led","titlePosition":"left","bodyColumns":1,"density":"dense","features":["image","kpi"],"recommendedRoles":["image-led"],"structureSummary":"Raster-indexed page 8: 9 measured visual regions across 16 occupied landmark cells; dense density; image-led composition.","zones":[{"kind":"title","x":0,"y":0,"width":1280,"height":180,"textRole":"title"},{"kind":"image","x":0,"y":180,"width":960,"height":360,"backgroundFill":"FFF3A6"},{"kind":"image","x":960,"y":180,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"text","x":0,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":640,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":960,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":0,"y":540,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":320,"y":540,"width":640,"height":180,"backgroundFill":"FFF3A6"},{"kind":"text","x":960,"y":540,"width":320,"height":180,"textRole":"text"}],"primaryVisual":{"kind":"image","x":0,"y":180,"width":960,"height":360,"areaRatio":0.375},"jsxReference":""},{"slideNumber":9,"sourceTitle":"Reference page 9","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 9: 6 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"title","x":0,"y":0,"width":1280,"height":360,"textRole":"title"},{"kind":"text","x":0,"y":180,"width":960,"height":540,"textRole":"text"},{"kind":"image","x":640,"y":180,"width":640,"height":180,"backgroundFill":"FFF3A6"},{"kind":"image","x":960,"y":360,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"text","x":640,"y":540,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":960,"y":540,"width":320,"height":180,"backgroundFill":"FFF3A6"}],"primaryVisual":{"kind":"image","x":640,"y":180,"width":640,"height":180,"areaRatio":0.125},"jsxReference":""},{"slideNumber":10,"sourceTitle":"Follow the flow across the network","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["network"],"recommendedRoles":["process"],"structureSummary":"Editable directed network with forward and return flow","zones":[{"kind":"shape","x":0,"y":0,"width":1280,"height":10.666666666666666,"shape":"rect","fill":"FFD400"},{"kind":"shape","x":64,"y":33.333333333333336,"width":24,"height":24,"shape":"rect","fill":"FFD400"},{"kind":"text","x":101.33333333333333,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":64,"y":249.33333333333334,"width":253.33333333333334,"height":77.33333333333333,"shape":"rect","fill":"FFFFFF"},{"kind":"text","x":80,"y":266.6666666666667,"width":221.33333333333334,"height":52,"textRole":"body","fontSize":18,"textCapacity":9},{"kind":"shape","x":64,"y":460,"width":253.33333333333334,"height":77.33333333333333,"shape":"rect","fill":"FFFFFF"},{"kind":"text","x":80,"y":477.3333333333333,"width":221.33333333333334,"height":52,"textRole":"body","fontSize":18,"textCapacity":9},{"kind":"shape","x":476,"y":356,"width":240,"height":77.33333333333333,"shape":"rect","fill":"FFD400"},{"kind":"text","x":492,"y":373.3333333333333,"width":208,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"shape","x":912,"y":233.33333333333334,"width":301.3333333333333,"height":77.33333333333333,"shape":"rect","fill":"FFFFFF"},{"kind":"text","x":928,"y":250.66666666666666,"width":269.3333333333333,"height":52,"textRole":"body","fontSize":18,"textCapacity":11},{"kind":"shape","x":912,"y":377.3333333333333,"width":301.3333333333333,"height":77.33333333333333,"shape":"rect","fill":"FFFFFF"},{"kind":"text","x":928,"y":394.6666666666667,"width":269.3333333333333,"height":52,"textRole":"body","fontSize":18,"textCapacity":11},{"kind":"shape","x":912,"y":521.3333333333334,"width":301.3333333333333,"height":77.33333333333333,"shape":"rect","fill":"FFFFFF"},{"kind":"text","x":928,"y":538.6666666666666,"width":269.3333333333333,"height":52,"textRole":"body","fontSize":18,"textCapacity":11},{"kind":"text","x":330.6666666666667,"y":264,"width":296,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"text","x":330.6666666666667,"y":517.3333333333334,"width":297.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"text","x":736,"y":265.3333333333333,"width":156,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":9},{"kind":"text","x":736,"y":442.6666666666667,"width":161.33333333333334,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Make the handoff order visible","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["sequence"],"recommendedRoles":["process"],"structureSummary":"Four lifelines with ordered request and response arrows","zones":[{"kind":"shape","x":0,"y":0,"width":1280,"height":10.666666666666666,"shape":"rect","fill":"FFD400"},{"kind":"shape","x":64,"y":33.333333333333336,"width":24,"height":24,"shape":"rect","fill":"FFD400"},{"kind":"text","x":101.33333333333333,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":93.33333333333333,"y":218.66666666666666,"width":216,"height":65.33333333333333,"shape":"rect","fill":"FFFFFF"},{"kind":"text","x":109.33333333333333,"y":236,"width":184,"height":40,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"shape","x":385.3333333333333,"y":218.66666666666666,"width":216,"height":65.33333333333333,"shape":"rect","fill":"FFFFFF"},{"kind":"text","x":401.3333333333333,"y":236,"width":184,"height":40,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"shape","x":677.3333333333334,"y":218.66666666666666,"width":216,"height":65.33333333333333,"shape":"rect","fill":"FFFFFF"},{"kind":"text","x":693.3333333333334,"y":236,"width":184,"height":40,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"shape","x":969.3333333333334,"y":218.66666666666666,"width":216,"height":65.33333333333333,"shape":"rect","fill":"FFFFFF"},{"kind":"text","x":985.3333333333334,"y":236,"width":184,"height":40,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":221.33333333333334,"y":293.3333333333333,"width":252,"height":36,"textRole":"body","fontSize":14,"textCapacity":13},{"kind":"text","x":513.3333333333334,"y":354.6666666666667,"width":252,"height":36,"textRole":"body","fontSize":14,"textCapacity":13},{"kind":"text","x":805.3333333333334,"y":416,"width":252,"height":36,"textRole":"body","fontSize":14,"textCapacity":13},{"kind":"text","x":221.33333333333334,"y":493.3333333333333,"width":836,"height":36,"textRole":"body","fontSize":14,"textCapacity":44},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"Reference page 10","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 10: 8 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"title","x":0,"y":0,"width":1280,"height":180,"textRole":"title"},{"kind":"image","x":0,"y":180,"width":640,"height":180,"backgroundFill":"FFF3A6"},{"kind":"image","x":640,"y":180,"width":320,"height":180,"backgroundFill":"FFF3A6"},{"kind":"image","x":960,"y":180,"width":320,"height":360,"backgroundFill":"FFF3A6"},{"kind":"text","x":0,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":0,"y":360,"width":640,"height":360,"backgroundFill":"FFF3A6"},{"kind":"text","x":640,"y":360,"width":320,"height":360,"textRole":"text"},{"kind":"image","x":960,"y":540,"width":320,"height":180,"backgroundFill":"FFF3A6"}],"primaryVisual":{"kind":"image","x":0,"y":360,"width":640,"height":360,"areaRatio":0.25},"jsxReference":""}],"extractedAt":"2026-08-27T00:00:00.000Z"}},"dsh-work-curated-nordic-operating-report":{"palette":{"background":"F3F0EA","surface":"D9E8ED","text":"0B2A3A","muted":"657882","accent":"42C7E7","secondary":"002C43"},"source":{"fileName":"nordic-operating-report-reference.jpg","sha256":"6d9f24f36bc6bcba30bff7596c7150843175ca725222a940805cf64de81b29cd","slideCount":12,"averageTextBlocks":19,"averageCharacters":518,"visualGrammar":"orange-data","recommendedDensity":"medium","designSummary":"# Nordic Operating Report · WorkBuddy Original DESIGN SYSTEM\n\nThis original 16:9 system turns management evidence into a restrained annual operating report. Warm paper, deep steel blue, mist-blue rules, pale-clay risk cues, precise grids, and direct data placement create a formal reading experience without dashboard decoration. Every visible item in the reference deck is an editable PPTD object.\n\n## Communication model\n\nUse this system for annual operating reviews, international expansion, supply-chain decisions, market-entry portfolios, capability planning, and management action decks.\n\n1. Lead each page with a management judgment rather than a neutral topic label.\n2. Place years, units, updated-statistics labels, public-data dates, and derived-calculation notes beside the evidence.\n3. Give each page one primary reading structure: a ledger, split ratio, concentration comparison, operating loop, decision matrix, capability register, or investment staircase.\n4. Use cyan for the current signal, pale clay for risk or irreversible commitment, and deep steel blue for the operating system.\n5. Retain a quiet source line and page register on analytical pages.\n\n## Visual signature\n\n- Warm paper `#F3F0EA`\n- White `#FFFFFF`\n- Deep steel blue `#002C43`\n- Ink blue `#0B2A3A`\n- Signal cyan `#42C7E7`\n- Mist blue `#D9E8ED`\n- Pale clay `#E8B8A8`\n- Muted blue gray `#657882`\n- Rule blue gray `#AFC2C9`\n\nNormal analytical pages keep warm paper or mist blue as the dominant field. Navy pages act as structural pauses for export, fulfilment, entry, and action. Cyan marks a current signal or active path. Clay marks concentration risk, reverse logistics, or increased commitment.\n\n## Typography and grid\n\n- Chinese: `HarmonyOS Sans SC`, with a compatible system CJK sans-serif fallback.\n- Latin labels and large metrics: `Arial`.\n- Canvas: PPTD v2, `960 × 540`, 16:9.\n- Default outer margin: 46–52 px, with a 10–14 px left registration rail.\n- Page titles: 31–34 px, bold, left aligned.\n- Running labels: 8–9 px uppercase Latin with modest tracking.\n- Body and evidence notes: 8.5–11.5 px with short lines and visible grouping.\n- Use square geometry, hairline rules, direct chart placement, and clear column axes. Avoid rounded-card walls, gradients, glow, soft shadows, and decorative 3D objects.\n\n## Reusable components\n\n1. **Registration rail**: one narrow left strip that identifies the report family and stabilizes page alignment.\n2. **Operating ledger**: a native chart plus a metric register and one full-width evidence strip.\n3. **Ratio field**: one uninterrupted horizontal proportion with direct labels for export/import or comparable structures.\n4. **Concentration comparison**: mirrored market bars with country labels, totals, and one explicit risk interpretation.\n5. **Operating loop**: simple native nodes connected by a line, followed by one cross-cutting control band.\n6. **Decision register**: a native table or ruled rows comparing responsibility, investment, output, and review frequency.\n7. **Commitment staircase**: progressively taller fields representing increasing local control and irreversible cost.\n\n## Charts and tables\n\n- Charts sit directly on the page field without a floating card or shadow.\n- Use navy for structural series, cyan for the current signal, mist for secondary context, and clay for risk or commitment.\n- Keep axes minimal, grid lines fine, and units visible near the chart title.\n- Tables use a navy header, paper cells, hairline borders, and no alternating decorative fill.\n- When a derived value appears, label it as calculated from disclosed customs data.\n\n## Page rhythm\n\nThe ten-page reference deck covers a thesis cover, executive operating ledger, scale trajectory, export structure, market concentration, overseas-warehouse loop, channel portfolio, capability system, market-entry staircase, and audience-specific actions. Warm analytical pages alternate with navy structural pages. The same grid and furniture recur, while the dominant visual form changes with each management question.\n\n## Prohibited treatments\n\n- Generic icon walls, stock-photo heroes, and decorative dashboards.\n- Rounded rectangles as the default grouping device.\n- Blue-purple gradients, glass effects, glow, soft shadows, and 3D charts.\n- Large decorative circles or abstract AI-generated ornaments.\n- Rasterized text, charts, tables, arrows, or process diagrams that PPTD can represent natively.\n\n## Clean-room reference\n\nThe public annual report was used only to observe broad annual-report conventions: grid discipline, thin rules, information hierarchy, direct chart placement, and compact metadata. All pages, wording, charts, and vector forms were rebuilt as original WorkBuddy artifacts. No external template file, photograph, logo, font file, wording, or proprietary brand asset is included.\n\n## Bilingual typography\n\nEnglish previews: source/. Chinese examples: source-zh/. English title/body: Arial / Arial. Chinese macOS: PingFang SC / PingFang SC; Windows: Microsoft YaHei / Microsoft YaHei; Linux: Noto Sans CJK SC / Noto Sans CJK SC. Font names only, no binaries. Use the user's requested output language, independently of the preview language. Reflow long translations; do not reduce text below readable size.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The ten established industry pages are preserved; two new analytical layouts are inserted before the closing.\n\n1. Reference page 1 — Raster-indexed page 1: 4 measured visual regions across 16 occupied landmark cells; dense density; cover composition.\n2. Reference page 2 — Raster-indexed page 2: 6 measured visual regions across 15 occupied landmark cells; dense density; grid composition.\n3. Reference page 3 — Raster-indexed page 3: 5 measured visual regions across 14 occupied landmark cells; dense density; grid composition.\n4. Reference page 4 — Raster-indexed page 4: 7 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n5. Reference page 5 — Raster-indexed page 5: 6 measured visual regions across 12 occupied landmark cells; dense density; grid composition.\n6. Reference page 6 — Raster-indexed page 6: 7 measured visual regions across 15 occupied landmark cells; dense density; grid composition.\n7. Reference page 7 — Raster-indexed page 7: 7 measured visual regions across 15 occupied landmark cells; dense density; grid composition.\n8. Reference page 8 — Raster-indexed page 8: 7 measured visual regions across 12 occupied landmark cells; dense density; grid composition.\n9. Reference page 9 — Raster-indexed page 9: 10 measured visual regions across 16 occupied landmark cells; dense density; grid composition.\n10. Reconcile the benefit with the cost — Sequential contribution waterfall with an explicitly reconciled net change\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. Reference page 10 — Raster-indexed page 10: 7 measured visual regions across 16 occupied landmark cells; dense density; image-led composition.\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":2,"density":"dense","averageTextFrames":14,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":25,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":12,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":18,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":21,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":18,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":6,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":28,"averageMediaFrames":0},{"family":"grid","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":3,"density":"dense","averageTextFrames":16,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":19,"averageMediaFrames":0},{"family":"image-led","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":1,"density":"dense","averageTextFrames":18,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"Reference page 1","family":"cover","titlePosition":"left","bodyColumns":2,"density":"dense","features":["image","statement"],"recommendedRoles":["cover"],"structureSummary":"Raster-indexed page 1: 4 measured visual regions across 16 occupied landmark cells; dense density; cover composition.","zones":[{"kind":"image","x":0,"y":0,"width":640,"height":360,"backgroundFill":"D9E8ED"},{"kind":"shape","x":0,"y":0,"width":1280,"height":540,"shape":"rect","fill":"002C43"},{"kind":"image","x":960,"y":0,"width":320,"height":360,"backgroundFill":"D9E8ED"},{"kind":"title","x":0,"y":540,"width":1280,"height":180,"textRole":"title"}],"primaryVisual":{"kind":"shape","x":0,"y":0,"width":1280,"height":540,"areaRatio":0.75},"jsxReference":""},{"slideNumber":2,"sourceTitle":"Reference page 2","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 2: 6 measured visual regions across 15 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":320,"height":180,"backgroundFill":"D9E8ED"},{"kind":"title","x":320,"y":0,"width":640,"height":180,"textRole":"title"},{"kind":"text","x":0,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":0,"y":180,"width":640,"height":360,"textRole":"text"},{"kind":"text","x":640,"y":180,"width":320,"height":360,"textRole":"text"},{"kind":"text","x":0,"y":180,"width":1280,"height":540,"textRole":"text"}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Reference page 3","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 3: 5 measured visual regions across 14 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":320,"height":180,"backgroundFill":"D9E8ED"},{"kind":"title","x":0,"y":0,"width":1280,"height":720,"textRole":"title"},{"kind":"text","x":0,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":960,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":0,"y":540,"width":320,"height":180,"backgroundFill":"D9E8ED"}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Reference page 4","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 4: 7 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":320,"height":180,"backgroundFill":"D9E8ED"},{"kind":"title","x":320,"y":0,"width":960,"height":180,"textRole":"title"},{"kind":"image","x":0,"y":180,"width":640,"height":360,"backgroundFill":"D9E8ED"},{"kind":"text","x":640,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":960,"y":180,"width":320,"height":360,"textRole":"text"},{"kind":"shape","x":320,"y":360,"width":640,"height":180,"shape":"rect","fill":"42C7E6"},{"kind":"text","x":0,"y":540,"width":1280,"height":180,"textRole":"text"}],"primaryVisual":{"kind":"image","x":0,"y":180,"width":640,"height":360,"areaRatio":0.25},"jsxReference":""},{"slideNumber":5,"sourceTitle":"Reference page 5","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 5: 6 measured visual regions across 12 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"title","x":0,"y":0,"width":960,"height":540,"textRole":"title"},{"kind":"text","x":320,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":0,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":0,"y":540,"width":640,"height":180,"backgroundFill":"D9E8ED"},{"kind":"shape","x":640,"y":540,"width":320,"height":180,"shape":"rect","fill":"E8B9A9"},{"kind":"text","x":960,"y":540,"width":320,"height":180,"textRole":"text"}],"primaryVisual":{"kind":"image","x":0,"y":540,"width":640,"height":180,"areaRatio":0.125},"jsxReference":""},{"slideNumber":6,"sourceTitle":"Reference page 6","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 6: 7 measured visual regions across 15 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":640,"height":180,"backgroundFill":"D9E8ED"},{"kind":"title","x":320,"y":0,"width":960,"height":540,"textRole":"title"},{"kind":"text","x":0,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":320,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":0,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":0,"y":540,"width":320,"height":180,"backgroundFill":"D9E8ED"},{"kind":"shape","x":320,"y":540,"width":960,"height":180,"shape":"rect","fill":"F4F1EA"}],"primaryVisual":{"kind":"shape","x":320,"y":540,"width":960,"height":180,"areaRatio":0.188},"jsxReference":""},{"slideNumber":7,"sourceTitle":"Reference page 7","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 7: 7 measured visual regions across 15 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"title","x":0,"y":0,"width":960,"height":180,"textRole":"title"},{"kind":"image","x":0,"y":180,"width":640,"height":180,"backgroundFill":"D9E8ED"},{"kind":"text","x":640,"y":180,"width":640,"height":180,"textRole":"text"},{"kind":"text","x":0,"y":360,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":320,"y":360,"width":960,"height":180,"textRole":"text"},{"kind":"image","x":0,"y":540,"width":640,"height":180,"backgroundFill":"D9E8ED"},{"kind":"text","x":640,"y":540,"width":640,"height":180,"textRole":"text"}],"primaryVisual":{"kind":"image","x":0,"y":180,"width":640,"height":180,"areaRatio":0.125},"jsxReference":""},{"slideNumber":8,"sourceTitle":"Reference page 8","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 8: 7 measured visual regions across 12 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"title","x":0,"y":0,"width":960,"height":180,"textRole":"title"},{"kind":"image","x":0,"y":180,"width":320,"height":180,"backgroundFill":"D9E8ED"},{"kind":"text","x":320,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":640,"y":180,"width":320,"height":180,"backgroundFill":"D9E8ED"},{"kind":"text","x":960,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":0,"y":360,"width":320,"height":360,"textRole":"text"},{"kind":"text","x":320,"y":360,"width":640,"height":360,"textRole":"text"}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"Reference page 9","family":"grid","titlePosition":"left","bodyColumns":3,"density":"dense","features":["image","kpi"],"recommendedRoles":["grid"],"structureSummary":"Raster-indexed page 9: 10 measured visual regions across 16 occupied landmark cells; dense density; grid composition.","zones":[{"kind":"image","x":0,"y":0,"width":320,"height":180,"backgroundFill":"D9E8ED"},{"kind":"title","x":320,"y":0,"width":960,"height":180,"textRole":"title"},{"kind":"text","x":0,"y":180,"width":640,"height":180,"textRole":"text"},{"kind":"image","x":640,"y":180,"width":320,"height":180,"backgroundFill":"D9E8ED"},{"kind":"shape","x":960,"y":180,"width":320,"height":360,"shape":"rect","fill":"E8B9A9"},{"kind":"image","x":0,"y":360,"width":640,"height":360,"backgroundFill":"D9E8ED"},{"kind":"image","x":640,"y":360,"width":320,"height":180,"backgroundFill":"D9E8ED"},{"kind":"shape","x":320,"y":540,"width":320,"height":180,"shape":"rect","fill":"D8E7EC"},{"kind":"text","x":640,"y":540,"width":320,"height":180,"textRole":"text"},{"kind":"text","x":960,"y":540,"width":320,"height":180,"textRole":"text"}],"primaryVisual":{"kind":"image","x":0,"y":360,"width":640,"height":360,"areaRatio":0.25},"jsxReference":""},{"slideNumber":10,"sourceTitle":"Reconcile the benefit with the cost","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["bridge"],"recommendedRoles":["data"],"structureSummary":"Sequential contribution waterfall with an explicitly reconciled net change","zones":[{"kind":"shape","x":0,"y":0,"width":10.666666666666666,"height":720,"shape":"rect","fill":"42C7E7"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"text","x":64,"y":552,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":458.6666666666667,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":365.3333333333333,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":272,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"shape","x":128,"y":377.3333333333333,"width":80,"height":186.66666666666666,"shape":"rect","fill":"F3F0EA"},{"kind":"text","x":114.66666666666667,"y":333.3333333333333,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":104,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":268,"y":317.6,"width":80,"height":59.73333333333333,"shape":"rect","fill":"849196"},{"kind":"text","x":254.66666666666666,"y":273.6,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":244,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":408,"y":317.6,"width":80,"height":24.266666666666666,"shape":"rect","fill":"455c66"},{"kind":"text","x":394.6666666666667,"y":273.6,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":384,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":548,"y":341.8666666666666,"width":80,"height":13.066666666666665,"shape":"rect","fill":"455c66"},{"kind":"text","x":534.6666666666666,"y":297.8666666666666,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":524,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":688,"y":354.9333333333334,"width":80,"height":209.06666666666663,"shape":"rect","fill":"F3F0EA"},{"kind":"text","x":674.6666666666666,"y":310.9333333333334,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":664,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"text","x":905.3333333333334,"y":221.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":273.3333333333333,"width":310.6666666666667,"height":102.66666666666667,"textRole":"title","fontSize":57,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":385.3333333333333,"width":310.6666666666667,"height":53.333333333333336,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":458.6666666666667,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":456,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":506.6666666666667,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":504,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":554.6666666666666,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":552,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Sequence the work around a decision gate","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["roadmap"],"recommendedRoles":["process"],"structureSummary":"Four timed workstreams and a decision gate","zones":[{"kind":"shape","x":0,"y":0,"width":10.666666666666666,"height":720,"shape":"rect","fill":"42C7E7"},{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":324,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":22},{"kind":"text","x":421.3333333333333,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":617.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":813.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":1009.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":64,"y":273.3333333333333,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":313.3333333333333,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":406.6666666666667,"y":289.3333333333333,"width":176.4,"height":29.333333333333332,"shape":"rect","fill":"b4bbba"},{"kind":"shape","x":579.0666666666667,"y":300,"width":8,"height":8,"shape":"ellipse","fill":"738389"},{"kind":"text","x":64,"y":354.6666666666667,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":394.6666666666667,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":543.8666666666667,"y":370.6666666666667,"width":254.79999999999998,"height":29.333333333333332,"shape":"rect","fill":"b4bbba"},{"kind":"shape","x":794.6666666666666,"y":381.3333333333333,"width":8,"height":8,"shape":"ellipse","fill":"738389"},{"kind":"text","x":64,"y":436,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":476,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":759.4666666666667,"y":452,"width":215.60000000000002,"height":29.333333333333332,"shape":"rect","fill":"0B2A3A"},{"kind":"shape","x":971.0666666666667,"y":462.6666666666667,"width":8,"height":8,"shape":"ellipse","fill":"0B2A3A"},{"kind":"text","x":64,"y":517.3333333333334,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":557.3333333333334,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":955.4666666666666,"y":533.3333333333334,"width":235.20000000000002,"height":29.333333333333332,"shape":"rect","fill":"b4bbba"},{"kind":"shape","x":1186.6666666666665,"y":544,"width":8,"height":8,"shape":"ellipse","fill":"738389"},{"kind":"shape","x":949.3333333333334,"y":592,"width":10.666666666666666,"height":10.666666666666666,"shape":"ellipse","fill":"42C7E7"},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"Reference page 10","family":"image-led","titlePosition":"left","bodyColumns":1,"density":"dense","features":["image"],"recommendedRoles":["image-led"],"structureSummary":"Raster-indexed page 10: 7 measured visual regions across 16 occupied landmark cells; dense density; image-led composition.","zones":[{"kind":"image","x":0,"y":0,"width":640,"height":540,"backgroundFill":"D9E8ED"},{"kind":"title","x":320,"y":0,"width":960,"height":540,"textRole":"title"},{"kind":"text","x":320,"y":180,"width":320,"height":180,"textRole":"text"},{"kind":"image","x":0,"y":540,"width":320,"height":180,"backgroundFill":"D9E8ED"},{"kind":"shape","x":320,"y":540,"width":320,"height":180,"shape":"rect","fill":"F4F1EA"},{"kind":"image","x":640,"y":540,"width":320,"height":180,"backgroundFill":"D9E8ED"},{"kind":"shape","x":960,"y":540,"width":320,"height":180,"shape":"rect","fill":"E7B8A9"}],"primaryVisual":{"kind":"image","x":0,"y":0,"width":640,"height":540,"areaRatio":0.375},"jsxReference":""}],"extractedAt":"2026-08-27T00:00:00.000Z"}},"dsh-editorial-forest":{"palette":{"background":"2E4A2A","text":"EFE7D4","accent":"E89CB1","surface":"3A5A36","secondary":"E6DCC4","muted":"E6DCC4"},"source":{"fileName":"editorial-forest-reference.jpg","sha256":"a1702b5ab8337a3836f889d0b277adb81374c0ef9b619146752d9e36ac38e6e6","slideCount":12,"averageTextBlocks":20,"averageCharacters":298,"visualGrammar":"editorial-forest","recommendedDensity":"medium","designSummary":"# Editorial Forest / 森林季刊\n\nAdapted from Zara Zhang's Editorial Forest, commit e5e204fb1f3b06290846e7dcd7aceddabeceec8c. MIT. This native edition rebuilds twelve editable layouts; it is not an HTML import or an exact copy of every upstream slide.\n\n## Typography\n\nEnglish display: Georgia; English body: Arial. These portable Office substitutions replace the upstream display face Source Serif 4. Chinese display: Songti SC; body: PingFang SC. On Windows use SimSun / Microsoft YaHei; on Linux use Noto Serif CJK SC / Noto Sans CJK SC. No font binary is distributed. Keep the serif/sans distinction.\n\nEnglish previews use source/. Chinese examples use source-zh/. Preview language does not select the language of the user's output. Choose the matching fonts for the actual content; reflow longer translations instead of shrinking titles.\n\n## Layout grammar\n\n A serif-led editorial presentation system in the register of a literary quarterly or art-book monograph. Display type runs in Source Serif 4 at weight 500 with optical-size axis engaged, scaling up to 220px for cover and stat moments. The palette pairs a deep forest green (#2e4a2a) with a dusty rose pink (#e89cb1) over an oat-cream paper ground (#efe7d4), with JetBrains Mono as the editorial chrome (labels, captions, axis ticks). The aesthetic is closer to a Penguin classic, Apartamento spread, or quiet annual report than a tech keynote — confident, paper-feeling, and committed to a small color vocabulary.\n\n1. Cover (cover)\n2. Agenda (agenda)\n3. Insights (insights)\n4. Metrics (data)\n5. Comparison chart (data)\n6. Process (process)\n7. Before and after (comparison)\n8. Closing (closing)\n\nAll charts and diagrams are native editable vectors. Example figures are illustrative, not reported facts. Retain a 48 pt outer margin and use 16:9, 960 × 540 pt.\n\nCopyright (c) 2026 Zara Zhang. DSH adaptation 2026-09-06. See licenses/zara/LICENSE and the pinned source design specification.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. Cover — Cover\n2. A more resilient operating cycle — Asymmetric argument with three supporting evidence rows\n3. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n4. Reconcile the benefit with the cost — Sequential contribution waterfall with an explicitly reconciled net change\n5. Separate the record from the explanation — Interview excerpt, observation, competing explanation and next check\n6. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n7. Locate the friction along the journey — Four stages aligned across actions and independent outcome measures\n8. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n9. Design around explicit boundaries — Three layers, nine native nodes, horizontal handoffs and vertical dependencies\n10. Connect each measure to a response — Actual, target and response aligned across four measures\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. Closing — Closing\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":4,"averageMediaFrames":0},{"family":"insights","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":20,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"quote","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":18,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":26,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":21,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":20,"averageMediaFrames":0},{"family":"table","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":19,"averageMediaFrames":0},{"family":"closing","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":4,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"Cover","family":"cover","titlePosition":"left","bodyColumns":1,"density":"medium","features":["cover"],"recommendedRoles":["cover"],"structureSummary":"Cover","zones":[{"kind":"text","x":64,"y":45.333333333333336,"width":1066.6666666666667,"height":32,"textRole":"body","fontSize":12,"textCapacity":66},{"kind":"title","x":64,"y":162.66666666666666,"width":1053.3333333333333,"height":400,"textRole":"title","fontSize":78,"textCapacity":30},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":2,"sourceTitle":"A more resilient operating cycle","family":"insights","titlePosition":"left","bodyColumns":2,"density":"medium","features":["thesis"],"recommendedRoles":["insights"],"structureSummary":"Asymmetric argument with three supporting evidence rows","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":218.66666666666666,"width":464,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":26},{"kind":"title","x":64,"y":276,"width":442.6666666666667,"height":236,"textRole":"title","fontSize":30,"textCapacity":55},{"kind":"text","x":64,"y":560,"width":440,"height":57.333333333333336,"textRole":"body","fontSize":17,"textCapacity":38},{"kind":"text","x":588,"y":222.66666666666666,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":226.66666666666666,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":234.66666666666666,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":281.3333333333333,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":348,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":352,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":360,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":406.6666666666667,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":473.3333333333333,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":477.3333333333333,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":485.3333333333333,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":532,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Read the trend and investigate the pause","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["trend"],"recommendedRoles":["data"],"structureSummary":"Labeled six-point trend with common scale and a separate interpretation","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":437.3333333333333,"y":253.33333333333334,"width":121.33333333333333,"height":314.6666666666667,"shape":"rect","fill":"415238"},{"kind":"text","x":64,"y":554.6666666666666,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":480,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":405.3333333333333,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":330.6666666666667,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":256,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"shape","x":134.4,"y":377.06666666666666,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"EFE7D4"},{"kind":"text","x":108,"y":341.3333333333333,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":117.33333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":265.06666666666666,"y":362.13333333333327,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"EFE7D4"},{"kind":"text","x":238.66666666666666,"y":326.3999999999999,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":248,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":395.73333333333335,"y":350.93333333333334,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"EFE7D4"},{"kind":"text","x":369.3333333333333,"y":315.2,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":378.6666666666667,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":524,"y":352.2666666666667,"width":13.333333333333334,"height":13.333333333333334,"shape":"ellipse","fill":"E89CB1"},{"kind":"text","x":500,"y":318.9333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":509.3333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":657.0666666666667,"y":324.8,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"EFE7D4"},{"kind":"text","x":630.6666666666666,"y":289.06666666666666,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":640,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":787.7333333333332,"y":298.6666666666667,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"EFE7D4"},{"kind":"text","x":761.3333333333334,"y":262.93333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":770.6666666666666,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"text","x":365.3333333333333,"y":248,"width":206.66666666666666,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":11},{"kind":"text","x":905.3333333333334,"y":217.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":269.3333333333333,"width":310.6666666666667,"height":104,"textRole":"title","fontSize":56,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":381.3333333333333,"width":305.3333333333333,"height":73.33333333333333,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":492,"width":305.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":10,"textCapacity":44},{"kind":"text","x":905.3333333333334,"y":538.6666666666666,"width":305.3333333333333,"height":66.66666666666667,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Reconcile the benefit with the cost","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["bridge"],"recommendedRoles":["data"],"structureSummary":"Sequential contribution waterfall with an explicitly reconciled net change","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"text","x":64,"y":552,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":458.6666666666667,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":365.3333333333333,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"text","x":64,"y":272,"width":40,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":6},{"kind":"shape","x":128,"y":377.3333333333333,"width":80,"height":186.66666666666666,"shape":"rect","fill":"2E4A2A"},{"kind":"text","x":114.66666666666667,"y":333.3333333333333,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":104,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":268,"y":317.6,"width":80,"height":59.73333333333333,"shape":"rect","fill":"8b957c"},{"kind":"text","x":254.66666666666666,"y":273.6,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":244,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":408,"y":317.6,"width":80,"height":24.266666666666666,"shape":"rect","fill":"bfc0aa"},{"kind":"text","x":394.6666666666667,"y":273.6,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":384,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":548,"y":341.8666666666666,"width":80,"height":13.066666666666665,"shape":"rect","fill":"bfc0aa"},{"kind":"text","x":534.6666666666666,"y":297.8666666666666,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":524,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"shape","x":688,"y":354.9333333333334,"width":80,"height":209.06666666666663,"shape":"rect","fill":"2E4A2A"},{"kind":"text","x":674.6666666666666,"y":310.9333333333334,"width":106.66666666666667,"height":37.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":664,"y":581.3333333333334,"width":132,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":7},{"kind":"text","x":905.3333333333334,"y":221.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":273.3333333333333,"width":310.6666666666667,"height":102.66666666666667,"textRole":"title","fontSize":57,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":385.3333333333333,"width":310.6666666666667,"height":53.333333333333336,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":458.6666666666667,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":456,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":506.6666666666667,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":504,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":554.6666666666666,"width":196,"height":40,"textRole":"body","fontSize":15,"textCapacity":9},{"kind":"text","x":1101.3333333333333,"y":552,"width":114.66666666666667,"height":41.333333333333336,"textRole":"body","fontSize":20,"textCapacity":4},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":5,"sourceTitle":"Separate the record from the explanation","family":"quote","titlePosition":"left","bodyColumns":2,"density":"high","features":["evidence"],"recommendedRoles":["quote"],"structureSummary":"Interview excerpt, observation, competing explanation and next check","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":64,"y":234.66666666666666,"width":369.3333333333333,"height":365.3333333333333,"shape":"rect","fill":"3A5A36"},{"kind":"text","x":92,"y":253.33333333333334,"width":313.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":46},{"kind":"text","x":92,"y":317.3333333333333,"width":309.3333333333333,"height":173.33333333333334,"textRole":"body","fontSize":28,"textCapacity":32},{"kind":"text","x":92,"y":546.6666666666666,"width":312,"height":36,"textRole":"body","fontSize":12,"textCapacity":38},{"kind":"title","x":482.6666666666667,"y":221.33333333333334,"width":253.33333333333334,"height":90.66666666666667,"textRole":"title","fontSize":48,"textCapacity":3},{"kind":"text","x":740,"y":234.66666666666666,"width":462.6666666666667,"height":64,"textRole":"body","fontSize":22,"textCapacity":15},{"kind":"shape","x":485.3333333333333,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"EFE7D4"},{"kind":"shape","x":514.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"EFE7D4"},{"kind":"shape","x":544,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"EFE7D4"},{"kind":"shape","x":573.3333333333334,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"516649"},{"kind":"shape","x":602.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"516649"},{"kind":"shape","x":632,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"516649"},{"kind":"shape","x":661.3333333333334,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"516649"},{"kind":"shape","x":690.6666666666666,"y":321.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"rect","fill":"516649"},{"kind":"text","x":748,"y":317.3333333333333,"width":468,"height":33.333333333333336,"textRole":"body","fontSize":10,"textCapacity":70},{"kind":"text","x":482.6666666666667,"y":390.6666666666667,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":389.3333333333333,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":482.6666666666667,"y":466.6666666666667,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":465.3333333333333,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":482.6666666666667,"y":542.6666666666666,"width":233.33333333333334,"height":45.333333333333336,"textRole":"body","fontSize":15,"textCapacity":22},{"kind":"text","x":741.3333333333334,"y":541.3333333333334,"width":469.3333333333333,"height":62.666666666666664,"textRole":"body","fontSize":17,"textCapacity":40},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":6,"sourceTitle":"Choose the next move with evidence","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["matrix"],"recommendedRoles":["comparison"],"structureSummary":"Two-axis decision map with direct labels and a recommended next step","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":118.66666666666667,"y":245.33333333333334,"width":662.6666666666666,"height":336,"shape":"rect","fill":"354f30"},{"kind":"shape","x":450.6666666666667,"y":245.33333333333334,"width":330.6666666666667,"height":168,"shape":"rect","fill":"535a45"},{"kind":"text","x":137.33333333333334,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":137.33333333333334,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"shape","x":236,"y":345.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"8b957c"},{"kind":"text","x":269.3333333333333,"y":338.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":557.3333333333334,"y":322.6666666666667,"width":34.666666666666664,"height":34.666666666666664,"shape":"ellipse","fill":"EFE7D4"},{"kind":"text","x":598.6666666666666,"y":324,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":500,"y":376,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"8b957c"},{"kind":"text","x":533.3333333333334,"y":369.3333333333333,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":293.3333333333333,"y":462.6666666666667,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"8b957c"},{"kind":"text","x":326.6666666666667,"y":456,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":634.6666666666666,"y":473.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"8b957c"},{"kind":"text","x":668,"y":466.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"text","x":118.66666666666667,"y":589.3333333333334,"width":317.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":469.3333333333333,"y":589.3333333333334,"width":312,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":842.6666666666666,"y":230.66666666666666,"width":373.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":21},{"kind":"title","x":842.6666666666666,"y":286.6666666666667,"width":373.3333333333333,"height":82.66666666666667,"textRole":"title","fontSize":32,"textCapacity":8},{"kind":"text","x":842.6666666666666,"y":414.6666666666667,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":414.6666666666667,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":476,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":476,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":537.3333333333334,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":537.3333333333334,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":7,"sourceTitle":"Locate the friction along the journey","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["journey"],"recommendedRoles":["process"],"structureSummary":"Four stages aligned across actions and independent outcome measures","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":250.66666666666666,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"text","x":64,"y":376,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"text","x":64,"y":501.3333333333333,"width":153.33333333333334,"height":40,"textRole":"body","fontSize":12,"textCapacity":18},{"kind":"shape","x":244,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"3A5A36"},{"kind":"text","x":260,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":244,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":244,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":488,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"E89CB1"},{"kind":"text","x":504,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":488,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":488,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":732,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"3A5A36"},{"kind":"text","x":748,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":732,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":732,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"shape","x":976,"y":232,"width":222.66666666666666,"height":84,"shape":"rect","fill":"3A5A36"},{"kind":"text","x":992,"y":249.33333333333334,"width":190.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":14},{"kind":"text","x":976,"y":372,"width":212,"height":82.66666666666667,"textRole":"body","fontSize":20,"textCapacity":14},{"kind":"title","x":976,"y":490.6666666666667,"width":212,"height":73.33333333333333,"textRole":"title","fontSize":35,"textCapacity":4},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":8,"sourceTitle":"A small intervention, a measurable change","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["case"],"recommendedRoles":["comparison"],"structureSummary":"Intervention narrative beside paired before and after comparisons","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":224,"width":386.6666666666667,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":24},{"kind":"title","x":64,"y":289.3333333333333,"width":384,"height":161.33333333333334,"textRole":"title","fontSize":34,"textCapacity":24},{"kind":"text","x":64,"y":492,"width":374.6666666666667,"height":104,"textRole":"body","fontSize":20,"textCapacity":42},{"kind":"text","x":552,"y":232,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":300,"width":388.8,"height":26.666666666666668,"shape":"rect","fill":"b5b8a1"},{"kind":"shape","x":553.3333333333334,"y":340,"width":151.20000000000002,"height":26.666666666666668,"shape":"rect","fill":"785348"},{"kind":"text","x":1005.3333333333334,"y":305.3333333333333,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":552,"y":421.3333333333333,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":489.3333333333333,"width":198.72,"height":26.666666666666668,"shape":"rect","fill":"b5b8a1"},{"kind":"shape","x":553.3333333333334,"y":529.3333333333334,"width":315.36,"height":26.666666666666668,"shape":"rect","fill":"785348"},{"kind":"text","x":1005.3333333333334,"y":494.6666666666667,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"Design around explicit boundaries","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["architecture"],"recommendedRoles":["process"],"structureSummary":"Three layers, nine native nodes, horizontal handoffs and vertical dependencies","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":261.3333333333333,"width":168,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":9},{"kind":"shape","x":254.66666666666666,"y":234.66666666666666,"width":190.66666666666666,"height":84,"shape":"rect","fill":"3A5A36"},{"kind":"text","x":270.6666666666667,"y":252,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":468,"y":234.66666666666666,"width":190.66666666666666,"height":84,"shape":"rect","fill":"3A5A36"},{"kind":"text","x":484,"y":252,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":681.3333333333334,"y":234.66666666666666,"width":190.66666666666666,"height":84,"shape":"rect","fill":"3A5A36"},{"kind":"text","x":697.3333333333334,"y":252,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"text","x":64,"y":392,"width":168,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":9},{"kind":"shape","x":254.66666666666666,"y":365.3333333333333,"width":190.66666666666666,"height":84,"shape":"rect","fill":"E89CB1"},{"kind":"text","x":270.6666666666667,"y":382.6666666666667,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":468,"y":365.3333333333333,"width":190.66666666666666,"height":84,"shape":"rect","fill":"E89CB1"},{"kind":"text","x":484,"y":382.6666666666667,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":681.3333333333334,"y":365.3333333333333,"width":190.66666666666666,"height":84,"shape":"rect","fill":"E89CB1"},{"kind":"text","x":697.3333333333334,"y":382.6666666666667,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"text","x":64,"y":522.6666666666666,"width":168,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":9},{"kind":"shape","x":254.66666666666666,"y":496,"width":190.66666666666666,"height":84,"shape":"rect","fill":"3A5A36"},{"kind":"text","x":270.6666666666667,"y":513.3333333333334,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":468,"y":496,"width":190.66666666666666,"height":84,"shape":"rect","fill":"3A5A36"},{"kind":"text","x":484,"y":513.3333333333334,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":681.3333333333334,"y":496,"width":190.66666666666666,"height":84,"shape":"rect","fill":"3A5A36"},{"kind":"text","x":697.3333333333334,"y":513.3333333333334,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"text","x":982.6666666666666,"y":245.33333333333334,"width":229.33333333333334,"height":148,"textRole":"body","fontSize":28,"textCapacity":18},{"kind":"text","x":982.6666666666666,"y":420,"width":233.33333333333334,"height":164,"textRole":"body","fontSize":20,"textCapacity":40},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":10,"sourceTitle":"Connect each measure to a response","family":"table","titlePosition":"left","bodyColumns":2,"density":"high","features":["scorecard"],"recommendedRoles":["table"],"structureSummary":"Actual, target and response aligned across four measures","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":373.3333333333333,"height":32,"textRole":"body","fontSize":11,"textCapacity":25},{"kind":"text","x":497.3333333333333,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":697.3333333333334,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":922.6666666666666,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":81.33333333333333,"y":294.6666666666667,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":285.3333333333333,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":298.6666666666667,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":297.3333333333333,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":298.6666666666667,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":376,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":366.6666666666667,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":380,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":378.6666666666667,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":380,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"shape","x":64,"y":434.6666666666667,"width":1152,"height":81.33333333333333,"shape":"rect","fill":"425339"},{"kind":"shape","x":64,"y":434.6666666666667,"width":4,"height":81.33333333333333,"shape":"rect","fill":"EFE7D4"},{"kind":"text","x":81.33333333333333,"y":457.3333333333333,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":448,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":461.3333333333333,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":460,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":461.3333333333333,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":538.6666666666666,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":529.3333333333334,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":542.6666666666666,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":541.3333333333334,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":542.6666666666666,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Sequence the work around a decision gate","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["roadmap"],"recommendedRoles":["process"],"structureSummary":"Four timed workstreams and a decision gate","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":324,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":22},{"kind":"text","x":421.3333333333333,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":617.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":813.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":1009.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":64,"y":273.3333333333333,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":313.3333333333333,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":406.6666666666667,"y":289.3333333333333,"width":176.4,"height":29.333333333333332,"shape":"rect","fill":"627458"},{"kind":"shape","x":579.0666666666667,"y":300,"width":8,"height":8,"shape":"ellipse","fill":"98a088"},{"kind":"text","x":64,"y":354.6666666666667,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":394.6666666666667,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":543.8666666666667,"y":370.6666666666667,"width":254.79999999999998,"height":29.333333333333332,"shape":"rect","fill":"627458"},{"kind":"shape","x":794.6666666666666,"y":381.3333333333333,"width":8,"height":8,"shape":"ellipse","fill":"98a088"},{"kind":"text","x":64,"y":436,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":476,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":759.4666666666667,"y":452,"width":215.60000000000002,"height":29.333333333333332,"shape":"rect","fill":"EFE7D4"},{"kind":"shape","x":971.0666666666667,"y":462.6666666666667,"width":8,"height":8,"shape":"ellipse","fill":"EFE7D4"},{"kind":"text","x":64,"y":517.3333333333334,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":557.3333333333334,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":955.4666666666666,"y":533.3333333333334,"width":235.20000000000002,"height":29.333333333333332,"shape":"rect","fill":"627458"},{"kind":"shape","x":1186.6666666666665,"y":544,"width":8,"height":8,"shape":"ellipse","fill":"98a088"},{"kind":"shape","x":949.3333333333334,"y":592,"width":10.666666666666666,"height":10.666666666666666,"shape":"ellipse","fill":"E89CB1"},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"Closing","family":"closing","titlePosition":"left","bodyColumns":1,"density":"medium","features":["closing"],"recommendedRoles":["closing"],"structureSummary":"Closing","zones":[{"kind":"text","x":64,"y":105.33333333333333,"width":1133.3333333333333,"height":34.666666666666664,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"title","x":64,"y":245.33333333333334,"width":1146.6666666666667,"height":262.6666666666667,"textRole":"title","fontSize":55,"textCapacity":45},{"kind":"text","x":64,"y":674.6666666666666,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1160,"y":670.6666666666666,"width":53.333333333333336,"height":26.666666666666668,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""}]}},"dsh-engineering-blueprint":{"palette":{"background":"F0EAE0","surface":"E7E0D4","text":"252824","muted":"68665F","accent":"B5392A","secondary":"E7E0D4"},"source":{"fileName":"dsh-engineering-blueprint-reference.jpg","sha256":"b99b878887e76cd7e347d433b6795f551394e708043f44aa4d1a89a74d3f2ae5","slideCount":12,"averageTextBlocks":18,"averageCharacters":318,"visualGrammar":"editorial","recommendedDensity":"medium","designSummary":"# 工程蓝图 · Engineering Blueprint\n\n纸张底色、工程网格、流程盒和反馈路径;用于架构评审、技术方案及执行计划。\n\n## 使用规则\n\n16:9,960×540 点。正文使用 Arial 并由系统回退中文字体;编辑部大标题可用 Georgia,缺失时回退衬线字体。只引用字体名称,不分发字体文件。背景 #F0EAE0,正文 #252824,强调 #B5392A。单页突出一个判断;超出文本容量时拆页,不缩小字号。保持边距 48 点、清晰层次及页脚。图表、表格、关系图均使用可编辑元素。\n\n## 版式\n\n1. 架构封面\n2. 分层架构\n3. 处理流程\n4. 方案比较\n5. 责任清单\n6. 风险登记\n7. 验证路线\n8. 执行结论\n\n## 来源\n\n视觉方向参考 html-anything 的 deck-blueprint(Apache-2.0,固定提交 c31204544230578ac814026fecc153c6e36587ae)。本文件、PPTD 页面、示例内容和预览为 DSH 的适配和新增;保留上游许可和署名。 示例句和示例数字均为自编,不代表事实结论。\n\n## Bilingual typography\n\nEnglish previews: source/. Chinese examples: source-zh/. English title/body: Arial / Arial. Chinese macOS: PingFang SC / PingFang SC; Windows: Microsoft YaHei / Microsoft YaHei; Linux: Noto Sans CJK SC / Noto Sans CJK SC. Font names only, no binaries. Use the user's requested output language, independently of the preview language. Reflow long translations; do not reduce text below readable size.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. 架构封面 — 架构封面;以可编辑文本和矢量形状组织信息。\n2. Make the system easier to reason about — Asymmetric argument with three supporting evidence rows\n3. Design around explicit boundaries — Three layers, nine native nodes, horizontal handoffs and vertical dependencies\n4. Make the handoff order visible — Four lifelines with ordered request and response arrows\n5. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n6. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n7. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n8. Design the test before reading the result — One hypothesis with comparison, measure and a predeclared decision rule\n9. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n10. Connect each measure to a response — Actual, target and response aligned across four measures\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. 执行结论 — 执行结论;以可编辑文本和矢量形状组织信息。\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n","layoutPatterns":[{"family":"cover","slideCount":1,"sampleSlideNumbers":[1],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":9,"averageMediaFrames":0},{"family":"insights","slideCount":1,"sampleSlideNumbers":[2],"titlePosition":"left","bodyColumns":2,"density":"medium","averageTextFrames":20,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[3],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":20,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[4],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":14,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[5],"titlePosition":"left","bodyColumns":3,"density":"high","averageTextFrames":17,"averageMediaFrames":0},{"family":"data","slideCount":1,"sampleSlideNumbers":[6],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[7],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":26,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[8],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":16,"averageMediaFrames":0},{"family":"comparison","slideCount":1,"sampleSlideNumbers":[9],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":13,"averageMediaFrames":0},{"family":"table","slideCount":1,"sampleSlideNumbers":[10],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":30,"averageMediaFrames":0},{"family":"process","slideCount":1,"sampleSlideNumbers":[11],"titlePosition":"left","bodyColumns":2,"density":"high","averageTextFrames":19,"averageMediaFrames":0},{"family":"closing","slideCount":1,"sampleSlideNumbers":[12],"titlePosition":"left","bodyColumns":1,"density":"medium","averageTextFrames":6,"averageMediaFrames":0}],"pageReferences":[{"slideNumber":1,"sourceTitle":"架构封面","family":"cover","titlePosition":"left","bodyColumns":1,"density":"medium","features":["statement"],"recommendedRoles":["cover"],"structureSummary":"架构封面;以可编辑文本和矢量形状组织信息。","zones":[{"kind":"text","x":64,"y":32,"width":933.3333333333334,"height":24,"textRole":"body","fontSize":10,"textCapacity":70},{"kind":"title","x":64,"y":90.66666666666667,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":31,"textCapacity":27},{"kind":"text","x":64,"y":673.3333333333334,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1146.6666666666667,"y":672,"width":64,"height":24,"textRole":"body","fontSize":11,"textCapacity":4},{"kind":"title","x":64,"y":226.66666666666666,"width":640,"height":229.33333333333334,"textRole":"title","fontSize":64,"textCapacity":14},{"kind":"text","x":69.33333333333333,"y":474.6666666666667,"width":613.3333333333334,"height":106.66666666666667,"textRole":"body","fontSize":23,"textCapacity":40},{"kind":"shape","x":800,"y":234.66666666666666,"width":298.6666666666667,"height":74.66666666666667,"shape":"rect","fill":"F0EAE0"},{"kind":"text","x":824,"y":253.33333333333334,"width":246.66666666666666,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":9},{"kind":"shape","x":845.3333333333334,"y":344,"width":298.6666666666667,"height":74.66666666666667,"shape":"rect","fill":"F0EAE0"},{"kind":"text","x":869.3333333333334,"y":362.6666666666667,"width":246.66666666666666,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":9},{"kind":"shape","x":890.6666666666666,"y":453.3333333333333,"width":298.6666666666667,"height":74.66666666666667,"shape":"rect","fill":"F0EAE0"},{"kind":"text","x":914.6666666666666,"y":472,"width":246.66666666666666,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":9}],"jsxReference":""},{"slideNumber":2,"sourceTitle":"Make the system easier to reason about","family":"insights","titlePosition":"left","bodyColumns":2,"density":"medium","features":["thesis"],"recommendedRoles":["insights"],"structureSummary":"Asymmetric argument with three supporting evidence rows","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":218.66666666666666,"width":464,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":26},{"kind":"title","x":64,"y":276,"width":442.6666666666667,"height":236,"textRole":"title","fontSize":30,"textCapacity":55},{"kind":"text","x":64,"y":560,"width":440,"height":57.333333333333336,"textRole":"body","fontSize":17,"textCapacity":38},{"kind":"text","x":588,"y":222.66666666666666,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":226.66666666666666,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":234.66666666666666,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":281.3333333333333,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":348,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":352,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":360,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":406.6666666666667,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":588,"y":473.3333333333333,"width":66.66666666666667,"height":50.666666666666664,"textRole":"body","fontSize":26,"textCapacity":1},{"kind":"text","x":685.3333333333334,"y":477.3333333333333,"width":332,"height":42.666666666666664,"textRole":"body","fontSize":23,"textCapacity":10},{"kind":"text","x":1040,"y":485.3333333333333,"width":176,"height":32,"textRole":"body","fontSize":10,"textCapacity":26},{"kind":"text","x":685.3333333333334,"y":532,"width":530.6666666666666,"height":62.666666666666664,"textRole":"body","fontSize":18,"textCapacity":44},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":3,"sourceTitle":"Design around explicit boundaries","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["architecture"],"recommendedRoles":["process"],"structureSummary":"Three layers, nine native nodes, horizontal handoffs and vertical dependencies","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":261.3333333333333,"width":168,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":9},{"kind":"shape","x":254.66666666666666,"y":234.66666666666666,"width":190.66666666666666,"height":84,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":270.6666666666667,"y":252,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":468,"y":234.66666666666666,"width":190.66666666666666,"height":84,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":484,"y":252,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":681.3333333333334,"y":234.66666666666666,"width":190.66666666666666,"height":84,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":697.3333333333334,"y":252,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"text","x":64,"y":392,"width":168,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":9},{"kind":"shape","x":254.66666666666666,"y":365.3333333333333,"width":190.66666666666666,"height":84,"shape":"rect","fill":"B5392A"},{"kind":"text","x":270.6666666666667,"y":382.6666666666667,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":468,"y":365.3333333333333,"width":190.66666666666666,"height":84,"shape":"rect","fill":"B5392A"},{"kind":"text","x":484,"y":382.6666666666667,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":681.3333333333334,"y":365.3333333333333,"width":190.66666666666666,"height":84,"shape":"rect","fill":"B5392A"},{"kind":"text","x":697.3333333333334,"y":382.6666666666667,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"text","x":64,"y":522.6666666666666,"width":168,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":9},{"kind":"shape","x":254.66666666666666,"y":496,"width":190.66666666666666,"height":84,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":270.6666666666667,"y":513.3333333333334,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":468,"y":496,"width":190.66666666666666,"height":84,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":484,"y":513.3333333333334,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"shape","x":681.3333333333334,"y":496,"width":190.66666666666666,"height":84,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":697.3333333333334,"y":513.3333333333334,"width":158.66666666666666,"height":58.666666666666664,"textRole":"body","fontSize":18,"textCapacity":12},{"kind":"text","x":982.6666666666666,"y":245.33333333333334,"width":229.33333333333334,"height":148,"textRole":"body","fontSize":28,"textCapacity":18},{"kind":"text","x":982.6666666666666,"y":420,"width":233.33333333333334,"height":164,"textRole":"body","fontSize":20,"textCapacity":40},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":4,"sourceTitle":"Make the handoff order visible","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["sequence"],"recommendedRoles":["process"],"structureSummary":"Four lifelines with ordered request and response arrows","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"shape","x":93.33333333333333,"y":218.66666666666666,"width":216,"height":65.33333333333333,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":109.33333333333333,"y":236,"width":184,"height":40,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"shape","x":385.3333333333333,"y":218.66666666666666,"width":216,"height":65.33333333333333,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":401.3333333333333,"y":236,"width":184,"height":40,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"shape","x":677.3333333333334,"y":218.66666666666666,"width":216,"height":65.33333333333333,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":693.3333333333334,"y":236,"width":184,"height":40,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"shape","x":969.3333333333334,"y":218.66666666666666,"width":216,"height":65.33333333333333,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":985.3333333333334,"y":236,"width":184,"height":40,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":221.33333333333334,"y":293.3333333333333,"width":252,"height":36,"textRole":"body","fontSize":14,"textCapacity":13},{"kind":"text","x":513.3333333333334,"y":354.6666666666667,"width":252,"height":36,"textRole":"body","fontSize":14,"textCapacity":13},{"kind":"text","x":805.3333333333334,"y":416,"width":252,"height":36,"textRole":"body","fontSize":14,"textCapacity":13},{"kind":"text","x":221.33333333333334,"y":493.3333333333333,"width":836,"height":36,"textRole":"body","fontSize":14,"textCapacity":44},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":5,"sourceTitle":"Trace the question to testable branches","family":"process","titlePosition":"left","bodyColumns":3,"density":"high","features":["tree"],"recommendedRoles":["process"],"structureSummary":"Three-branch hypothesis tree with six testable leaves","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":64,"y":362.6666666666667,"width":292,"height":140,"shape":"rect","fill":"B5392A"},{"kind":"text","x":80,"y":380,"width":260,"height":114.66666666666667,"textRole":"body","fontSize":18,"textCapacity":40},{"kind":"shape","x":466.6666666666667,"y":245.33333333333334,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":482.6666666666667,"y":262.6666666666667,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":236,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":292,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":376,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":482.6666666666667,"y":393.3333333333333,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":366.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":422.6666666666667,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"shape","x":466.6666666666667,"y":506.6666666666667,"width":226.66666666666666,"height":77.33333333333333,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":482.6666666666667,"y":524,"width":194.66666666666666,"height":52,"textRole":"body","fontSize":18,"textCapacity":8},{"kind":"text","x":810.6666666666666,"y":497.3333333333333,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":810.6666666666666,"y":553.3333333333334,"width":398.6666666666667,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":16},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":6,"sourceTitle":"Read the trend and investigate the pause","family":"data","titlePosition":"left","bodyColumns":2,"density":"high","features":["trend"],"recommendedRoles":["data"],"structureSummary":"Labeled six-point trend with common scale and a separate interpretation","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":437.3333333333333,"y":253.33333333333334,"width":121.33333333333333,"height":314.6666666666667,"shape":"rect","fill":"ead8ce"},{"kind":"text","x":64,"y":554.6666666666666,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":480,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":405.3333333333333,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":330.6666666666667,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"text","x":64,"y":256,"width":40,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":2},{"kind":"shape","x":134.4,"y":377.06666666666666,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"252824"},{"kind":"text","x":108,"y":341.3333333333333,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":117.33333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":265.06666666666666,"y":362.13333333333327,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"252824"},{"kind":"text","x":238.66666666666666,"y":326.3999999999999,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":248,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":395.73333333333335,"y":350.93333333333334,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"252824"},{"kind":"text","x":369.3333333333333,"y":315.2,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":378.6666666666667,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":524,"y":352.2666666666667,"width":13.333333333333334,"height":13.333333333333334,"shape":"ellipse","fill":"B5392A"},{"kind":"text","x":500,"y":318.9333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":509.3333333333333,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":657.0666666666667,"y":324.8,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"252824"},{"kind":"text","x":630.6666666666666,"y":289.06666666666666,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":640,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"shape","x":787.7333333333332,"y":298.6666666666667,"width":8.533333333333333,"height":8.533333333333333,"shape":"ellipse","fill":"252824"},{"kind":"text","x":761.3333333333334,"y":262.93333333333334,"width":62.666666666666664,"height":33.333333333333336,"textRole":"body","fontSize":15,"textCapacity":3},{"kind":"text","x":770.6666666666666,"y":582.6666666666666,"width":49.333333333333336,"height":32,"textRole":"body","fontSize":12,"textCapacity":3},{"kind":"text","x":365.3333333333333,"y":248,"width":206.66666666666666,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":11},{"kind":"text","x":905.3333333333334,"y":217.33333333333334,"width":310.6666666666667,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":17},{"kind":"title","x":905.3333333333334,"y":269.3333333333333,"width":310.6666666666667,"height":104,"textRole":"title","fontSize":56,"textCapacity":4},{"kind":"text","x":905.3333333333334,"y":381.3333333333333,"width":305.3333333333333,"height":73.33333333333333,"textRole":"body","fontSize":18,"textCapacity":24},{"kind":"text","x":905.3333333333334,"y":492,"width":305.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":10,"textCapacity":44},{"kind":"text","x":905.3333333333334,"y":538.6666666666666,"width":305.3333333333333,"height":66.66666666666667,"textRole":"body","fontSize":20,"textCapacity":22},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":7,"sourceTitle":"Choose the next move with evidence","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["matrix"],"recommendedRoles":["comparison"],"structureSummary":"Two-axis decision map with direct labels and a recommended next step","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":202.66666666666666,"width":1133.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":65},{"kind":"shape","x":118.66666666666667,"y":245.33333333333334,"width":662.6666666666666,"height":336,"shape":"rect","fill":"e9e3d9"},{"kind":"shape","x":450.6666666666667,"y":245.33333333333334,"width":330.6666666666667,"height":168,"shape":"rect","fill":"e4c7bc"},{"kind":"text","x":137.33333333333334,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":258.6666666666667,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":137.33333333333334,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"text","x":472,"y":545.3333333333334,"width":285.3333333333333,"height":30.666666666666668,"textRole":"body","fontSize":10,"textCapacity":42},{"kind":"shape","x":236,"y":345.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"8f8d86"},{"kind":"text","x":269.3333333333333,"y":338.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":557.3333333333334,"y":322.6666666666667,"width":34.666666666666664,"height":34.666666666666664,"shape":"ellipse","fill":"252824"},{"kind":"text","x":598.6666666666666,"y":324,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":500,"y":376,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"8f8d86"},{"kind":"text","x":533.3333333333334,"y":369.3333333333333,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":293.3333333333333,"y":462.6666666666667,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"8f8d86"},{"kind":"text","x":326.6666666666667,"y":456,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"shape","x":634.6666666666666,"y":473.3333333333333,"width":18.666666666666668,"height":18.666666666666668,"shape":"ellipse","fill":"8f8d86"},{"kind":"text","x":668,"y":466.6666666666667,"width":50.666666666666664,"height":37.333333333333336,"textRole":"body","fontSize":15,"textCapacity":2},{"kind":"text","x":118.66666666666667,"y":589.3333333333334,"width":317.3333333333333,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":469.3333333333333,"y":589.3333333333334,"width":312,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"text","x":842.6666666666666,"y":230.66666666666666,"width":373.3333333333333,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":21},{"kind":"title","x":842.6666666666666,"y":286.6666666666667,"width":373.3333333333333,"height":82.66666666666667,"textRole":"title","fontSize":32,"textCapacity":8},{"kind":"text","x":842.6666666666666,"y":414.6666666666667,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":414.6666666666667,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":476,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":476,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":842.6666666666666,"y":537.3333333333334,"width":146.66666666666666,"height":41.333333333333336,"textRole":"body","fontSize":14,"textCapacity":14},{"kind":"text","x":1004,"y":537.3333333333334,"width":212,"height":45.333333333333336,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":8,"sourceTitle":"Design the test before reading the result","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["experiment"],"recommendedRoles":["comparison"],"structureSummary":"One hypothesis with comparison, measure and a predeclared decision rule","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"title","x":64,"y":232,"width":366.6666666666667,"height":138.66666666666666,"textRole":"title","fontSize":32,"textCapacity":16},{"kind":"text","x":64,"y":441.3333333333333,"width":370.6666666666667,"height":156,"textRole":"body","fontSize":21,"textCapacity":65},{"kind":"text","x":536,"y":236,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":236,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":330.6666666666667,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":330.6666666666667,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":425.3333333333333,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":425.3333333333333,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":536,"y":520,"width":188,"height":45.333333333333336,"textRole":"body","fontSize":18,"textCapacity":7},{"kind":"text","x":748,"y":520,"width":466.6666666666667,"height":77.33333333333333,"textRole":"body","fontSize":18,"textCapacity":38},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":9,"sourceTitle":"A small intervention, a measurable change","family":"comparison","titlePosition":"left","bodyColumns":2,"density":"high","features":["case"],"recommendedRoles":["comparison"],"structureSummary":"Intervention narrative beside paired before and after comparisons","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":224,"width":386.6666666666667,"height":34.666666666666664,"textRole":"body","fontSize":12,"textCapacity":24},{"kind":"title","x":64,"y":289.3333333333333,"width":384,"height":161.33333333333334,"textRole":"title","fontSize":34,"textCapacity":24},{"kind":"text","x":64,"y":492,"width":374.6666666666667,"height":104,"textRole":"body","fontSize":20,"textCapacity":42},{"kind":"text","x":552,"y":232,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":300,"width":388.8,"height":26.666666666666668,"shape":"rect","fill":"b3b0a8"},{"kind":"shape","x":553.3333333333334,"y":340,"width":155.52,"height":26.666666666666668,"shape":"rect","fill":"B5392A"},{"kind":"text","x":1005.3333333333334,"y":305.3333333333333,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":552,"y":421.3333333333333,"width":649.3333333333334,"height":42.666666666666664,"textRole":"body","fontSize":20,"textCapacity":24},{"kind":"shape","x":553.3333333333334,"y":489.3333333333333,"width":360,"height":26.666666666666668,"shape":"rect","fill":"b3b0a8"},{"kind":"shape","x":553.3333333333334,"y":529.3333333333334,"width":144,"height":26.666666666666668,"shape":"rect","fill":"B5392A"},{"kind":"text","x":1005.3333333333334,"y":494.6666666666667,"width":210.66666666666666,"height":60,"textRole":"body","fontSize":23,"textCapacity":6},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":10,"sourceTitle":"Connect each measure to a response","family":"table","titlePosition":"left","bodyColumns":2,"density":"high","features":["scorecard"],"recommendedRoles":["table"],"structureSummary":"Actual, target and response aligned across four measures","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":373.3333333333333,"height":32,"textRole":"body","fontSize":11,"textCapacity":25},{"kind":"text","x":497.3333333333333,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":697.3333333333334,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":922.6666666666666,"y":222.66666666666666,"width":226.66666666666666,"height":32,"textRole":"body","fontSize":11,"textCapacity":15},{"kind":"text","x":81.33333333333333,"y":294.6666666666667,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":285.3333333333333,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":298.6666666666667,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":297.3333333333333,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":298.6666666666667,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"shape","x":64,"y":353.3333333333333,"width":1152,"height":81.33333333333333,"shape":"rect","fill":"ead7cc"},{"kind":"shape","x":64,"y":353.3333333333333,"width":4,"height":81.33333333333333,"shape":"rect","fill":"252824"},{"kind":"text","x":81.33333333333333,"y":376,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":366.6666666666667,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":380,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":378.6666666666667,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":380,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":81.33333333333333,"y":457.3333333333333,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":448,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":461.3333333333333,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":460,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":461.3333333333333,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"shape","x":64,"y":516,"width":1152,"height":81.33333333333333,"shape":"rect","fill":"ead7cc"},{"kind":"shape","x":64,"y":516,"width":4,"height":81.33333333333333,"shape":"rect","fill":"252824"},{"kind":"text","x":81.33333333333333,"y":538.6666666666666,"width":373.3333333333333,"height":49.333333333333336,"textRole":"body","fontSize":18,"textCapacity":15},{"kind":"text","x":497.3333333333333,"y":529.3333333333334,"width":172,"height":60,"textRole":"body","fontSize":28,"textCapacity":4},{"kind":"text","x":697.3333333333334,"y":542.6666666666666,"width":193.33333333333334,"height":44,"textRole":"body","fontSize":17,"textCapacity":8},{"kind":"text","x":922.6666666666666,"y":541.3333333333334,"width":36,"height":40,"textRole":"body","fontSize":18,"textCapacity":1},{"kind":"text","x":980,"y":542.6666666666666,"width":210.66666666666666,"height":40,"textRole":"body","fontSize":16,"textCapacity":9},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":11,"sourceTitle":"Sequence the work around a decision gate","family":"process","titlePosition":"left","bodyColumns":2,"density":"high","features":["roadmap"],"recommendedRoles":["process"],"structureSummary":"Four timed workstreams and a decision gate","zones":[{"kind":"text","x":64,"y":36,"width":886.6666666666666,"height":26.666666666666668,"textRole":"body","fontSize":10,"textCapacity":66},{"kind":"title","x":64,"y":101.33333333333333,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":32,"textCapacity":27},{"kind":"text","x":1005.3333333333334,"y":61.333333333333336,"width":210.66666666666666,"height":17.333333333333332,"textRole":"body","fontSize":9,"textCapacity":17},{"kind":"text","x":64,"y":222.66666666666666,"width":324,"height":30.666666666666668,"textRole":"body","fontSize":11,"textCapacity":22},{"kind":"text","x":421.3333333333333,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":617.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":813.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":1009.3333333333334,"y":221.33333333333334,"width":176,"height":33.333333333333336,"textRole":"body","fontSize":12,"textCapacity":11},{"kind":"text","x":64,"y":273.3333333333333,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":313.3333333333333,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":406.6666666666667,"y":289.3333333333333,"width":176.4,"height":29.333333333333332,"shape":"rect","fill":"b9b6ad"},{"kind":"shape","x":579.0666666666667,"y":300,"width":8,"height":8,"shape":"ellipse","fill":"807f79"},{"kind":"text","x":64,"y":354.6666666666667,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":394.6666666666667,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":543.8666666666667,"y":370.6666666666667,"width":254.79999999999998,"height":29.333333333333332,"shape":"rect","fill":"b9b6ad"},{"kind":"shape","x":794.6666666666666,"y":381.3333333333333,"width":8,"height":8,"shape":"ellipse","fill":"807f79"},{"kind":"text","x":64,"y":436,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":476,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":759.4666666666667,"y":452,"width":215.60000000000002,"height":29.333333333333332,"shape":"rect","fill":"252824"},{"kind":"shape","x":971.0666666666667,"y":462.6666666666667,"width":8,"height":8,"shape":"ellipse","fill":"252824"},{"kind":"text","x":64,"y":517.3333333333334,"width":318.6666666666667,"height":40,"textRole":"body","fontSize":18,"textCapacity":13},{"kind":"text","x":64,"y":557.3333333333334,"width":318.6666666666667,"height":32,"textRole":"body","fontSize":11,"textCapacity":21},{"kind":"shape","x":955.4666666666666,"y":533.3333333333334,"width":235.20000000000002,"height":29.333333333333332,"shape":"rect","fill":"b9b6ad"},{"kind":"shape","x":1186.6666666666665,"y":544,"width":8,"height":8,"shape":"ellipse","fill":"807f79"},{"kind":"shape","x":949.3333333333334,"y":592,"width":10.666666666666666,"height":10.666666666666666,"shape":"ellipse","fill":"B5392A"},{"kind":"text","x":64,"y":633.3333333333334,"width":1152,"height":33.333333333333336,"textRole":"body","fontSize":13,"textCapacity":66},{"kind":"text","x":64,"y":676,"width":1044,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":87},{"kind":"text","x":1161.3333333333333,"y":672,"width":54.666666666666664,"height":29.333333333333332,"textRole":"body","fontSize":11,"textCapacity":3}],"jsxReference":""},{"slideNumber":12,"sourceTitle":"执行结论","family":"closing","titlePosition":"left","bodyColumns":1,"density":"medium","features":["statement"],"recommendedRoles":["closing"],"structureSummary":"执行结论;以可编辑文本和矢量形状组织信息。","zones":[{"kind":"text","x":64,"y":32,"width":933.3333333333334,"height":24,"textRole":"body","fontSize":10,"textCapacity":70},{"kind":"title","x":64,"y":90.66666666666667,"width":1152,"height":85.33333333333333,"textRole":"title","fontSize":31,"textCapacity":27},{"kind":"text","x":64,"y":673.3333333333334,"width":1013.3333333333334,"height":21.333333333333332,"textRole":"body","fontSize":9,"textCapacity":84},{"kind":"text","x":1146.6666666666667,"y":672,"width":64,"height":24,"textRole":"body","fontSize":11,"textCapacity":4},{"kind":"title","x":64,"y":229.33333333333334,"width":1026.6666666666667,"height":168,"textRole":"title","fontSize":44,"textCapacity":34},{"kind":"shape","x":64,"y":468,"width":1152,"height":136,"shape":"rect","fill":"E7E0D4"},{"kind":"text","x":96,"y":509.3333333333333,"width":1080,"height":60,"textRole":"body","fontSize":24,"textCapacity":33}],"jsxReference":""}]}}};