2sagaco48 1.0.0

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 (365) hide show
  1. package/diagnostics.mjs +141 -0
  2. package/dist/compute.worker-j5ahIpF-.js +1 -0
  3. package/dist/graph.worker-DG6iGCB9.js +1 -0
  4. package/dist/index.html +2314 -0
  5. package/flatten-guide.md +248 -0
  6. package/index.html +12 -0
  7. package/package.json +38 -0
  8. package/src/App.orig.tsx +204 -0
  9. package/src/App.orig1.tsx +27 -0
  10. package/src/App.orig2.tsx +25 -0
  11. package/src/App.tsx +3 -0
  12. package/src/BaseApp.tsx +18 -0
  13. package/src/INTEGRATION_LEDGER.md +22 -0
  14. package/src/PERSIST_CANARY.orig.txt +1 -0
  15. package/src/PERSIST_CANARY.txt +1 -0
  16. package/src/REGRESSION_LEDGER.md +651 -0
  17. package/src/TEMPLATE_PIPELINE_AUDIT.md +208 -0
  18. package/src/WILLIAMS_PERSONA_GUIDE.md +62 -0
  19. package/src/chat/VeritasChat.tsx +69 -0
  20. package/src/chat/synthesis.ts +31 -0
  21. package/src/chat/tier.ts +45 -0
  22. package/src/components/AdaptersPage.orig.tsx +99 -0
  23. package/src/components/AdaptersPage.tsx +3 -0
  24. package/src/components/AdversarialPanel.tsx +136 -0
  25. package/src/components/AnchorBaselinePanel.tsx +75 -0
  26. package/src/components/AnswerPanel.tsx +60 -0
  27. package/src/components/ArtifactPanel.tsx +43 -0
  28. package/src/components/ChatApp.orig.tsx +1582 -0
  29. package/src/components/ChatApp.orig1.tsx +722 -0
  30. package/src/components/ChatApp.tsx +95 -0
  31. package/src/components/ChatAugmentPanels.tsx +73 -0
  32. package/src/components/CitationLedgerPanel.tsx +313 -0
  33. package/src/components/ComputeSandboxPanel.tsx +130 -0
  34. package/src/components/ConfigPanel.tsx +110 -0
  35. package/src/components/ControlPlanePage.tsx +195 -0
  36. package/src/components/CreativeTreeLifePage.tsx +234 -0
  37. package/src/components/CreativeTreeOfLifePanel.tsx +149 -0
  38. package/src/components/DebugTracePanel.tsx +137 -0
  39. package/src/components/DeepReasoningTrace.tsx +48 -0
  40. package/src/components/EntitySheetPanel.tsx +51 -0
  41. package/src/components/FailureModesPanel.tsx +104 -0
  42. package/src/components/GBSDashboard.tsx +239 -0
  43. package/src/components/GraphView.tsx +116 -0
  44. package/src/components/HUD.tsx +125 -0
  45. package/src/components/HypothesisPanel.tsx +67 -0
  46. package/src/components/InnovationGenomeEngine.tsx +792 -0
  47. package/src/components/InnovationPersonaGuide.tsx +348 -0
  48. package/src/components/InnovationPersonaPanel.tsx +289 -0
  49. package/src/components/LiveResourceHUD.tsx +109 -0
  50. package/src/components/LongWriterPanel.tsx +112 -0
  51. package/src/components/MainPipelineV10Bridge.tsx +72 -0
  52. package/src/components/MarkdownLite.tsx +63 -0
  53. package/src/components/MemoryInspector.tsx +38 -0
  54. package/src/components/MemoryMonitor.tsx +52 -0
  55. package/src/components/MemoryStressPanel.tsx +176 -0
  56. package/src/components/ModulesPage.tsx +171 -0
  57. package/src/components/PipelineDebugConsole.orig.tsx +1856 -0
  58. package/src/components/PipelineDebugConsole.tsx +3 -0
  59. package/src/components/PreFlightHUD.tsx +67 -0
  60. package/src/components/PrismaFetchTracePanel.tsx +87 -0
  61. package/src/components/ReportOSPanel.tsx +165 -0
  62. package/src/components/ResourceEstimatorPage.tsx +327 -0
  63. package/src/components/RichText.tsx +181 -0
  64. package/src/components/SagaOsPanel.tsx +605 -0
  65. package/src/components/SagaOsReference.tsx +421 -0
  66. package/src/components/SagaOsV2Panel.tsx +594 -0
  67. package/src/components/SagaStyleTab.tsx +382 -0
  68. package/src/components/SageBlueprintPanel.tsx +416 -0
  69. package/src/components/SharedChatInput.tsx +77 -0
  70. package/src/components/StatFinancePanel.tsx +190 -0
  71. package/src/components/StylePersonaPanel.tsx +128 -0
  72. package/src/components/TemplatesPage.tsx +300 -0
  73. package/src/components/TestPanel.tsx +63 -0
  74. package/src/components/TraceLog.tsx +89 -0
  75. package/src/components/V15CalibrationAugment.tsx +1134 -0
  76. package/src/components/V15CalibrationDialog.tsx +1871 -0
  77. package/src/components/V15Overlay.orig.tsx +120 -0
  78. package/src/components/V15Overlay.tsx +4 -0
  79. package/src/components/V15OverlayWrapper.tsx +362 -0
  80. package/src/components/V15Toggle.tsx +34 -0
  81. package/src/console/DiagnosticRecoveryPanel.tsx +358 -0
  82. package/src/console/EngineeringConsole.tsx +103 -0
  83. package/src/console/FictionSystemPanels.tsx +882 -0
  84. package/src/console/InspectorPanels.tsx +254 -0
  85. package/src/console/ManuscriptGraderPanel.tsx +182 -0
  86. package/src/console/RecursiveReviserPanel.tsx +245 -0
  87. package/src/console/SeedControlPanel.tsx +135 -0
  88. package/src/console/StoryControllerPanel.tsx +443 -0
  89. package/src/console/engineBridge.ts +258 -0
  90. package/src/console/gemini.ts +106 -0
  91. package/src/console/grading.ts +250 -0
  92. package/src/console/util.ts +45 -0
  93. package/src/fiction/continuity.ts +372 -0
  94. package/src/fiction/crash-protection.ts +111 -0
  95. package/src/fiction/diagnostics.ts +208 -0
  96. package/src/fiction/diff.ts +74 -0
  97. package/src/fiction/entity-state-machine.ts +214 -0
  98. package/src/fiction/nive-engine.ts +404 -0
  99. package/src/fiction/pipeline-selftest.ts +132 -0
  100. package/src/fiction/seed-control.ts +193 -0
  101. package/src/fiction/story-engine.ts +326 -0
  102. package/src/fiction/types.ts +68 -0
  103. package/src/flatten-guide.md +379 -0
  104. package/src/index.css +14 -0
  105. package/src/index.orig.css +13 -0
  106. package/src/lib/academic-sources.base.ts +188 -0
  107. package/src/lib/academic-sources.orig.ts +28 -0
  108. package/src/lib/academic-sources.ts +10 -0
  109. package/src/lib/advanced-math.ts +119 -0
  110. package/src/lib/adversarial-engine.base.ts +409 -0
  111. package/src/lib/adversarial-engine.ts +82 -0
  112. package/src/lib/ai-revision.ts +623 -0
  113. package/src/lib/app-state.tsx +426 -0
  114. package/src/lib/artifact-registry.ts +97 -0
  115. package/src/lib/artifacts.ts +180 -0
  116. package/src/lib/atlas-dr.ts +167 -0
  117. package/src/lib/browser-mtls.ts +127 -0
  118. package/src/lib/browser-queue.ts +221 -0
  119. package/src/lib/browser-search-scraper.base.ts +382 -0
  120. package/src/lib/browser-search-scraper.orig.ts +90 -0
  121. package/src/lib/browser-search-scraper.ts +10 -0
  122. package/src/lib/calc-interceptor.ts +82 -0
  123. package/src/lib/citation-lane-tap.ts +78 -0
  124. package/src/lib/citation-ledger-store.ts +369 -0
  125. package/src/lib/citation-ledger.ts +203 -0
  126. package/src/lib/compute-sandbox.ts +215 -0
  127. package/src/lib/compute.worker.ts +153 -0
  128. package/src/lib/connectors/gemini.ts +120 -0
  129. package/src/lib/connectors/jina.ts +233 -0
  130. package/src/lib/connectors/marketdata.ts +51 -0
  131. package/src/lib/connectors/prismafetch.base.ts +175 -0
  132. package/src/lib/connectors/prismafetch.ts +1 -0
  133. package/src/lib/connectors/serpapi.ts +65 -0
  134. package/src/lib/connectors/wikidata.ts +44 -0
  135. package/src/lib/constraints.ts +331 -0
  136. package/src/lib/continuation-detector.base.ts +153 -0
  137. package/src/lib/continuation-detector.ts +48 -0
  138. package/src/lib/contradraft.ts +168 -0
  139. package/src/lib/cors-proxy.ts +120 -0
  140. package/src/lib/coverage.ts +81 -0
  141. package/src/lib/debug/architecture-prescription.ts +556 -0
  142. package/src/lib/debug/covea-repair.ts +543 -0
  143. package/src/lib/debug/helios-ground.ts +319 -0
  144. package/src/lib/debug/intent-decomposer.ts +281 -0
  145. package/src/lib/debug/intent-lattice.ts +349 -0
  146. package/src/lib/debug/pipeline-diagnosis.ts +1149 -0
  147. package/src/lib/debug/pipeline-trace-bus.ts +424 -0
  148. package/src/lib/debug/prompt-forge.ts +678 -0
  149. package/src/lib/debug/repair-sites.ts +513 -0
  150. package/src/lib/debug/research-phase.ts +266 -0
  151. package/src/lib/debug/retrieval-context.ts +76 -0
  152. package/src/lib/debug/retrieval-hardener.ts +142 -0
  153. package/src/lib/debug/scraper-debug-runner.ts +576 -0
  154. package/src/lib/debug/scraper-forensics.ts +418 -0
  155. package/src/lib/debug/scraper-lane-roadmap.ts +136 -0
  156. package/src/lib/debug/self-test.ts +415 -0
  157. package/src/lib/debug/step-attribution.ts +211 -0
  158. package/src/lib/debug/template-rubric.ts +301 -0
  159. package/src/lib/debug/unified-innovation.ts +126 -0
  160. package/src/lib/debug/veritas-hybrid-scraper.ts +335 -0
  161. package/src/lib/defense-registry.ts +104 -0
  162. package/src/lib/defenses.ts +162 -0
  163. package/src/lib/deterministic-citation-ledger.ts +174 -0
  164. package/src/lib/elo-registry.base.ts +117 -0
  165. package/src/lib/elo-registry.ts +1 -0
  166. package/src/lib/entity-resolver.ts +291 -0
  167. package/src/lib/failure-modes.ts +267 -0
  168. package/src/lib/feature-registry.ts +69 -0
  169. package/src/lib/flaw-registry.ts +143 -0
  170. package/src/lib/flaws/_template.ts +52 -0
  171. package/src/lib/flaws/builtins.ts +63 -0
  172. package/src/lib/flaws/finance.ts +169 -0
  173. package/src/lib/flaws/fixers.ts +10 -0
  174. package/src/lib/flaws/index.ts +32 -0
  175. package/src/lib/flaws/legal.ts +157 -0
  176. package/src/lib/flaws/medical.ts +188 -0
  177. package/src/lib/flaws/original-defenses-pack.ts +81 -0
  178. package/src/lib/flaws/sample-declarative-pack.json +38 -0
  179. package/src/lib/flaws/selftest.ts +201 -0
  180. package/src/lib/flaws/software-extended.ts +125 -0
  181. package/src/lib/flaws/software-rn-webgl.ts +182 -0
  182. package/src/lib/flaws/statistics-advanced.ts +46 -0
  183. package/src/lib/flaws/statistics.ts +61 -0
  184. package/src/lib/gbse/config.ts +20 -0
  185. package/src/lib/gbse/engine.ts +226 -0
  186. package/src/lib/gbse/graph.ts +118 -0
  187. package/src/lib/gbse/graph.worker.ts +21 -0
  188. package/src/lib/gbse/tests.ts +117 -0
  189. package/src/lib/gbse/tiers.ts +65 -0
  190. package/src/lib/gbse/types.ts +94 -0
  191. package/src/lib/innovation-genome-engine-v2.orig.ts +1001 -0
  192. package/src/lib/innovation-genome-engine-v2.ts +3 -0
  193. package/src/lib/innovation-genome-engine.orig.ts +330 -0
  194. package/src/lib/innovation-genome-engine.ts +3 -0
  195. package/src/lib/innovation-genome-v10.orig.ts +314 -0
  196. package/src/lib/innovation-genome-v10.ts +2 -0
  197. package/src/lib/innovation-genome-v3.orig.ts +2015 -0
  198. package/src/lib/innovation-genome-v3.ts +2 -0
  199. package/src/lib/innovation-genome-v4.orig.ts +1959 -0
  200. package/src/lib/innovation-genome-v4.ts +2 -0
  201. package/src/lib/innovation-genome-v5.orig.ts +1210 -0
  202. package/src/lib/innovation-genome-v5.ts +2 -0
  203. package/src/lib/innovation-genome-v7.orig.ts +2549 -0
  204. package/src/lib/innovation-genome-v7.ts +2 -0
  205. package/src/lib/innovation-genome-v8.orig.ts +1485 -0
  206. package/src/lib/innovation-genome-v8.ts +2 -0
  207. package/src/lib/innovation-genome-v9.orig.ts +643 -0
  208. package/src/lib/innovation-genome-v9.ts +2 -0
  209. package/src/lib/jina.base.ts +293 -0
  210. package/src/lib/jina.ts +1 -0
  211. package/src/lib/live-telemetry.ts +61 -0
  212. package/src/lib/longwriter.ts +84 -0
  213. package/src/lib/manuscript-grade-v2.ts +298 -0
  214. package/src/lib/memory-governor.ts +173 -0
  215. package/src/lib/memory-stress-tests.ts +248 -0
  216. package/src/lib/model-intelligence.ts +48 -0
  217. package/src/lib/model-rotator.ts +75 -0
  218. package/src/lib/models.orig.ts +513 -0
  219. package/src/lib/models.ts +151 -0
  220. package/src/lib/n-deep.base.ts +592 -0
  221. package/src/lib/n-deep.ts +51 -0
  222. package/src/lib/nih-simulator.ts +56 -0
  223. package/src/lib/nih-vulnerability-fixes.ts +460 -0
  224. package/src/lib/omega-templates.base.ts +294 -0
  225. package/src/lib/omega-templates.ts +225 -0
  226. package/src/lib/omni-nexus.ts +64 -0
  227. package/src/lib/oracle-adapters.ts +67 -0
  228. package/src/lib/oracle-registry.ts +163 -0
  229. package/src/lib/orchestrator.ts +357 -0
  230. package/src/lib/output-boundary.ts +235 -0
  231. package/src/lib/overrides/vite-native-chaos-harness.ts +154 -0
  232. package/src/lib/overrides/vite-native-contract-plane.ts +245 -0
  233. package/src/lib/overrides/vite-native-doctor-plane.ts +208 -0
  234. package/src/lib/overrides/vite-native-knowledge-store.ts +267 -0
  235. package/src/lib/overrides/vite-native-policy-plane.ts +190 -0
  236. package/src/lib/overrides/vite-native-replay-plane.ts +197 -0
  237. package/src/lib/overrides/vite-native-runtime-plane.ts +106 -0
  238. package/src/lib/overrides/vite-native-scraper.ts +848 -0
  239. package/src/lib/overrides/vite-native-selftest-functional.ts +217 -0
  240. package/src/lib/overrides/vite-native-selftest.ts +183 -0
  241. package/src/lib/overrides/vite-native-snapshot-plane.ts +123 -0
  242. package/src/lib/philosophy-toolkit.ts +75 -0
  243. package/src/lib/pipeline.orig.ts +659 -0
  244. package/src/lib/pipeline.ts +42 -0
  245. package/src/lib/precache.ts +128 -0
  246. package/src/lib/py-sandbox.ts +205 -0
  247. package/src/lib/quality-score.ts +96 -0
  248. package/src/lib/quant-engine.ts +231 -0
  249. package/src/lib/quant-lib.ts +80 -0
  250. package/src/lib/reportos.ts +175 -0
  251. package/src/lib/research-os.ts +306 -0
  252. package/src/lib/resource-estimator.ts +114 -0
  253. package/src/lib/rpm-governor.ts +93 -0
  254. package/src/lib/runtime-estimator.ts +135 -0
  255. package/src/lib/sage/empty-space-v6.ts +560 -0
  256. package/src/lib/sage/empty-space-v7.ts +222 -0
  257. package/src/lib/sage/empty-space.ts +733 -0
  258. package/src/lib/sage/engine.ts +786 -0
  259. package/src/lib/sage/index.ts +17 -0
  260. package/src/lib/sage/judge.ts +246 -0
  261. package/src/lib/sage/prng.ts +53 -0
  262. package/src/lib/sage/reality-grounding.ts +380 -0
  263. package/src/lib/sage/repetition.ts +151 -0
  264. package/src/lib/sage/saga-os-v2-engines.ts +1870 -0
  265. package/src/lib/sage/saga-os-v2.ts +274 -0
  266. package/src/lib/sage/saga-os-v3-core.ts +1491 -0
  267. package/src/lib/sage/saga-os-v3-release.ts +739 -0
  268. package/src/lib/sage/saga-os-v4-aureate.ts +1161 -0
  269. package/src/lib/sage/saga-os-v4.ts +212 -0
  270. package/src/lib/sage/saga-os-v5.ts +205 -0
  271. package/src/lib/sage/saga-os-v6.ts +346 -0
  272. package/src/lib/sage/saga-os-v7.ts +314 -0
  273. package/src/lib/sage/saga-os-v8.ts +505 -0
  274. package/src/lib/sage/saga-os.ts +329 -0
  275. package/src/lib/sage/taxonomy.ts +403 -0
  276. package/src/lib/sage/unified-roll.ts +524 -0
  277. package/src/lib/sage/worked-sketches.ts +44 -0
  278. package/src/lib/sage.ts +166 -0
  279. package/src/lib/scraper-debug-bus.ts +53 -0
  280. package/src/lib/scraper-enhanced.orig.ts +153 -0
  281. package/src/lib/scraper-enhanced.ts +10 -0
  282. package/src/lib/scraper-hardener.base.orig.ts +155 -0
  283. package/src/lib/scraper-hardener.base.ts +317 -0
  284. package/src/lib/scraper-hardener.ts +1 -0
  285. package/src/lib/scraper-palisade/palisade-adjudicator.orig.ts +419 -0
  286. package/src/lib/scraper-palisade/palisade-adjudicator.ts +13 -0
  287. package/src/lib/scraper-vnext/arbiter-omega.orig.ts +688 -0
  288. package/src/lib/scraper-vnext/arbiter-omega.ts +13 -0
  289. package/src/lib/scraper-vnext/canonical-portfolio-augments.ts +479 -0
  290. package/src/lib/scraper-vnext/canonical-portfolio-orchestrator.orig.ts +1529 -0
  291. package/src/lib/scraper-vnext/canonical-portfolio-orchestrator.ts +13 -0
  292. package/src/lib/scraper-vnext/conclave-omega.ts +1830 -0
  293. package/src/lib/scraper-vnext/content-extractor-v2.ts +226 -0
  294. package/src/lib/scraper-vnext/diagnostics-suite.ts +36 -0
  295. package/src/lib/scraper-vnext/epistemic-packer.ts +97 -0
  296. package/src/lib/scraper-vnext/fusion-v2.ts +65 -0
  297. package/src/lib/scraper-vnext/hydra-reader.orig.ts +1216 -0
  298. package/src/lib/scraper-vnext/hydra-reader.ts +13 -0
  299. package/src/lib/scraper-vnext/native-scraper-browser-vnext.orig.ts +91 -0
  300. package/src/lib/scraper-vnext/native-scraper-browser-vnext.ts +13 -0
  301. package/src/lib/scraper-vnext/nexus-consensus.orig.ts +905 -0
  302. package/src/lib/scraper-vnext/nexus-consensus.ts +13 -0
  303. package/src/lib/scraper-vnext/portfolio-consensus-adjudicator.ts +804 -0
  304. package/src/lib/scraper-vnext/portfolio-consensus-memory.ts +377 -0
  305. package/src/lib/scraper-vnext/portfolio-terminal-governor.ts +548 -0
  306. package/src/lib/scraper-vnext/query-strategist.orig.ts +224 -0
  307. package/src/lib/scraper-vnext/query-strategist.ts +423 -0
  308. package/src/lib/scraper-vnext/retrieval-accelerator.ts +708 -0
  309. package/src/lib/scraper-vnext/retrieval-audit-augments.ts +477 -0
  310. package/src/lib/scraper-vnext/retrieval-control-plane.ts +904 -0
  311. package/src/lib/scraper-vnext/retrieval-policy-augments.ts +358 -0
  312. package/src/lib/scraper-vnext/safe-fetch-v2.ts +157 -0
  313. package/src/lib/scraper-vnext/sentinel-omega.ts +56 -0
  314. package/src/lib/scraper-vnext/sentinel-orchestrator.ts +69 -0
  315. package/src/lib/scraper-vnext/sibyl-oracle.orig.ts +413 -0
  316. package/src/lib/scraper-vnext/sibyl-oracle.ts +13 -0
  317. package/src/lib/scraper-vnext/smart-read-v2.ts +55 -0
  318. package/src/lib/scraper-vnext/spa-rescue-bridge.ts +608 -0
  319. package/src/lib/scraper-vnext/strata-engine.orig.ts +2666 -0
  320. package/src/lib/scraper-vnext/strata-engine.ts +13 -0
  321. package/src/lib/scraper-vnext/structured-source-adapter.orig.ts +369 -0
  322. package/src/lib/scraper-vnext/structured-source-adapter.ts +34 -0
  323. package/src/lib/scraper-vnext/terminal-complete.ts +224 -0
  324. package/src/lib/scraper-vnext/terminal-final.ts +277 -0
  325. package/src/lib/scraper-vnext/terminal-saturation.ts +345 -0
  326. package/src/lib/scraper-vnext/terminal-wire.ts +425 -0
  327. package/src/lib/scraper-vnext/vanguard-titanium.orig.ts +467 -0
  328. package/src/lib/scraper-vnext/vanguard-titanium.ts +17 -0
  329. package/src/lib/search-cache.ts +138 -0
  330. package/src/lib/sloop-runner.base.ts +223 -0
  331. package/src/lib/sloop-runner.ts +104 -0
  332. package/src/lib/sloop.ts +114 -0
  333. package/src/lib/small-model-adapters.ts +82 -0
  334. package/src/lib/sscp.ts +86 -0
  335. package/src/lib/system-map.ts +54 -0
  336. package/src/lib/uni-node.ts +86 -0
  337. package/src/lib/universal-rigor-guard.ts +433 -0
  338. package/src/lib/v15-gate-testbed.ts +274 -0
  339. package/src/lib/v15-gemini.base.ts +89 -0
  340. package/src/lib/v15-gemini.ts +1 -0
  341. package/src/lib/v15-grounding.orig.ts +241 -0
  342. package/src/lib/v15-grounding.ts +79 -0
  343. package/src/lib/v15-pipeline.base.ts +769 -0
  344. package/src/lib/v15-pipeline.orig.ts +1154 -0
  345. package/src/lib/v15-pipeline.ts +674 -0
  346. package/src/lib/v15-questions.ts +64 -0
  347. package/src/lib/v15-rate-limiter.orig.ts +91 -0
  348. package/src/lib/v15-rate-limiter.ts +48 -0
  349. package/src/lib/v15-state.base.ts +87 -0
  350. package/src/lib/v15-state.ts +28 -0
  351. package/src/lib/visual-table-generator.tsx +207 -0
  352. package/src/lib/wasm-runtime.ts +133 -0
  353. package/src/lib/williams-persona-guide.ts +265 -0
  354. package/src/lib/williams-style.base.ts +464 -0
  355. package/src/lib/williams-style.ts +59 -0
  356. package/src/lib/worker-pool.ts +96 -0
  357. package/src/lib/writing-tiers.ts +125 -0
  358. package/src/main.orig.tsx +10 -0
  359. package/src/main.tsx +10 -0
  360. package/src/utils/cn.orig.ts +6 -0
  361. package/src/utils/cn.ts +6 -0
  362. package/src/vite-env.d.ts +1 -0
  363. package/tsconfig.json +31 -0
  364. package/unify.mjs +537 -0
  365. package/vite.config.ts +18 -0
@@ -0,0 +1,560 @@
1
+ /**
2
+ * SAGE Empty Space / Grounded Space canonical database — Turn 6 (append-only).
3
+ * ---------------------------------------------------------------------------
4
+ * Source: user-provided P6 canonical entries in this conversation turn. Rows
5
+ * are stored as pipe-table raw text and parsed into the same `[id,name,desc,tag]`
6
+ * tuple shape used by `empty-space.ts`. This keeps the text near-verbatim while
7
+ * making it executable and rollable by SAGE.
8
+ *
9
+ * HONESTY: this is static transcription from provided context. No external
10
+ * source, search, corpus index, or novelty detector was used.
11
+ */
12
+
13
+ export type V6Row = [string, string, string, string];
14
+
15
+ function rows(raw: string): V6Row[] {
16
+ return raw
17
+ .trim()
18
+ .split(/\n+/)
19
+ .map((line) => line.trim())
20
+ .filter(Boolean)
21
+ .map((line) => {
22
+ const parts = line.split("|").map((p) => p.trim());
23
+ const [id, name, ...rest] = parts;
24
+ const tag = rest.pop() ?? "";
25
+ return [id, name, rest.join(" | "), tag] as V6Row;
26
+ });
27
+ }
28
+
29
+ const ES_HB_P6 = rows(`
30
+ ES-HB021 | The Anti-Reveal | A character has direct access to a truth and deliberately leaves it unopened | ≠ withheld-information plot: the refusal itself completes the beat | [candidate][play:H][src:opus4-8]
31
+ ES-HB022 | The Successful Handoff | Responsibility transfers so cleanly that the receiver never learns how close failure came | ≠ relay scene: invisible continuity is the achievement | [candidate][play:H][src:opus4-8]
32
+ ES-HB023 | The Calibration Scene | Two parties knowingly offset their errors so a third measurement becomes accurate | ≠ conspiracy: agreed wrongness produces public truth | [candidate][play:M][src:opus4-8]
33
+ ES-HB024 | The De-Escalation Beat | The scene resolves by making the contested stakes smaller | ≠ anticlimax: reduction is deliberate skilled action | [candidate][play:H][src:opus4-8]
34
+ ES-HB025 | The Refused Apology | Acceptance is withheld as mercy because resolution would destroy a necessary bond | ≠ grudge: keeping the moral account open is compassionate | [candidate][play:M][src:opus4-8]
35
+ ES-HB026 | The Load-Bearing Silence | Characters explicitly negotiate the exact sentence neither will say | ≠ ordinary subtext: the omission is a recognized shared object | [adj:subtext][play:H][src:opus4-8]
36
+ ES-HB027 | Consent-to-Know | A revelation may proceed only after its recipient accepts responsibility for knowing | ≠ warning: consent changes later obligations | [candidate][play:H][src:opus4-8]
37
+ ES-HB028 | The Un-Introduction | Previously acquainted people formally remove their acquaintance and resume as strangers | ≠ breakup: their having-met status is withdrawn | [candidate][play:M][src:opus4-8]
38
+ ES-HB029 | The Maintenance Check | The recurring beat proves that a working arrangement remains intact | ≠ filler: measurable drift supplies tension | [candidate][play:H][src:opus4-8]
39
+ ES-HB030 | The Ordering Handshake | Parties assign an agreed sequence to intrinsically simultaneous acts | ≠ factual dispute: order is manufactured, not discovered | [adj:partial-order][play:M][src:opus4-8]
40
+ ES-HB031 | The Deliberate Forget | Two people collaboratively remove a memory as an act of intimacy | ≠ amnesia: forgetting is intentional joint craft | [candidate][play:M][src:opus4-8]
41
+ ES-HB032 | The Counter-Signature | A second party must refuse to sign so responsibility remains undivided | ≠ endorsement refusal: non-signature protects agency | [candidate][play:M][src:opus4-8]
42
+ `);
43
+
44
+ const ES_HG_P6 = rows(`
45
+ ES-HG021 | Prevention Fiction | Suspense resolves through disasters that never occur | ≠ thriller: the non-event is the earned payoff | [candidate][play:H][src:opus4-8]
46
+ ES-HG022 | Custodial Fiction | Protagonists hold powers, identities, or objects they must never use | ≠ quest: restraint, not acquisition, structures the genre | [candidate][play:H][src:opus4-8]
47
+ ES-HG023 | Draw Fiction | Works build toward an earned tie or mutual sufficiency | ≠ compromise plot: non-victory is affirmative culmination | [candidate][play:M][src:opus4-8]
48
+ ES-HG024 | Discretion Fiction | Professional secrecy and selective forgetting are heroic crafts | ≠ spy fiction: information is protected rather than extracted | [candidate][play:H][src:opus4-8]
49
+ ES-HG025 | Calibration Fiction | Reliable bias and known error enable collective accuracy | ≠ expert satire: imperfect instruments are intentionally coordinated | [candidate][play:M][src:opus4-8]
50
+ ES-HG026 | Slow-Emergency Fiction | One continuous crisis unfolds over generations, allowing each protagonist only a few moves | ≠ family saga: the emergency, not the lineage, is continuous | [candidate][play:M][src:opus4-8]
51
+ ES-HG027 | Negligibility Fiction | Survival and influence depend on remaining below institutional notice | ≠ underdog rise: visibility is the failure condition | [candidate][play:M][src:opus4-8]
52
+ ES-HG028 | Sequence Fiction | Conflict concerns the assigned order of undisputed events | ≠ mystery: events are known; precedence is constructed | [adj:partial-order][play:M][src:opus4-8]
53
+ ES-HG029 | Attention-Economy Fiction | Regard is a rationed life-support resource | ≠ celebrity satire: inattention has material effects | [candidate][play:H][src:opus4-8]
54
+ ES-HG030 | Restraint-Duel Fiction | Opponents compete by acting, caring, or escalating less | ≠ chicken: movement toward disengagement is strategically dominant | [candidate][play:H][src:opus4-8]
55
+ `);
56
+
57
+ const ES_HM_P6 = rows(`
58
+ ES-HM021 | Non-Comparability Law | Courts may certify that two harms or goods have no valid ranking relation | ≠ equality judgment: comparison itself is legally rejected | [adj:value pluralism][play:M][src:opus4-8]
59
+ ES-HM022 | Restraint Jurisprudence | Law assigns enforceable duties not to intervene | ≠ negligence: intervention is the prohibited act | [candidate][play:H][src:opus4-8]
60
+ ES-HM023 | Ordering Law | Courts legislate which simultaneous act counts as first | ≠ chronology finding: sequence is a legal construction | [adj:partial-order][play:M][src:opus4-8]
61
+ ES-HM024 | Forward-Debt Law | Specific unborn creditors may assert itemized claims against living ancestors | ≠ general future-generation ethics: claims are enforceable and personal | [candidate][play:M][src:opus4-8]
62
+ ES-HM025 | Over-Determination Justice | Liability is allocated where every defendant independently caused the entire harm | ≠ joint liability: each cause is fully sufficient | [candidate][play:H][src:opus4-8]
63
+ ES-HM026 | Discretion Rights | Individuals possess a right not to be understood past a defined threshold | ≠ privacy: comprehension, not information collection, is regulated | [candidate][play:M][src:opus4-8]
64
+ ES-HM027 | Uncomputed-Past Rights | Inquiry into an ungenerated history requires consent because questioning creates it | ≠ secrecy: nothing exists to disclose before inquiry | [candidate][play:H][src:opus4-8]
65
+ ES-HM028 | Attention Law | Citizens share enforceable duties to witness people and events at risk of disappearing | ≠ duty to rescue: observation itself is aid | [candidate][play:M][src:opus4-8]
66
+ ES-HM029 | Blame-Hydraulics Law | Courts route conserved guilt toward bearable social basins | ≠ scapegoating: culpability obeys a declared conservation rule | [candidate][play:H][src:opus4-8]
67
+ ES-HM030 | Naming Rationing | Registrars allocate a finite stock of complete legal names | ≠ identity papers: exhaustive naming consumes or fixes the named | [candidate][play:M][src:opus4-8]
68
+ ES-HM031 | Mutual-Win Mandate | A judgment is void unless it secures the losing party’s legitimate core need | ≠ compromise: the antagonist’s flourishing is mandatory | [candidate][play:M][src:opus4-8]
69
+ ES-HM032 | Custodial Property | The highest property title grants responsibility while permanently forbidding use | ≠ trust ownership: no beneficiary may authorize use | [candidate][play:H][src:opus4-8]
70
+ `);
71
+
72
+ const ES_HL_P6 = rows(`
73
+ ES-HL021 | Duty Inheritance | Estates transfer unfinished responsibilities before property | ≠ inherited quest: ordinary obligations form the estate | [candidate][play:H][src:opus4-8]
74
+ ES-HL022 | Custodial Adoption | A person temporarily adopts another’s selfhood and must return it unused | ≠ guardianship: identity itself is held in trust | [candidate][play:M][src:opus4-8]
75
+ `);
76
+
77
+ const ES_HMED_P6 = rows(`
78
+ ES-HMED021 | Interoceptive Diagnostics | Medicine treats heartbeat, hunger, nausea, balance, and internal sensation as primary evidence | ≠ symptom checklist: patients learn a formal internal language | [adj:interoception][play:M][src:opus4-8]
79
+ ES-HMED022 | Recomputation Medicine | Clinics treat identity divergence after a patient is neurologically re-derived during sleep | ≠ amnesia care: continuity is recalculated, not forgotten | [candidate][play:M][src:opus4-8]
80
+ ES-HMED023 | Threshold Medicine | Specialists manage involuntary identity changes caused by crossing quantitative thresholds | ≠ diagnosis: classification physically changes the patient | [candidate][play:M][src:opus4-8]
81
+ ES-HMED024 | Ratchet Rehabilitation | Therapy assists people who can gain traits but cannot shed them | ≠ chronic care: saturation by accumulated improvement is the danger | [candidate][play:H][src:opus4-8]
82
+ `);
83
+
84
+ const ES_HGAME_P6 = rows(`
85
+ ES-HGAME021 | Maintenance Loop | Score rewards keeping a system within tolerance without growth | ≠ management game: a flat line is victory | [candidate][play:H][src:opus4-8]
86
+ ES-HGAME022 | Handoff Co-op | No player may finish; state must cross lifetimes and controllers | ≠ relay race: transferred interpretation matters more than speed | [candidate][play:M][src:opus4-8]
87
+ ES-HGAME023 | Discretion Game | Players win by protecting benign information from exposure | ≠ stealth: the player may remain visible | [candidate][play:H][src:opus4-8]
88
+ ES-HGAME024 | Two-Player Disambiguation | Each participant possesses only the ordering relations the other lacks | ≠ asymmetric co-op: neither side owns complete sequence logic | [candidate][play:M][src:opus4-8]
89
+ ES-HGAME025 | De-Escalation Game | Players win by lowering shared stakes without triggering opportunistic betrayal | ≠ pacifist combat: value itself must be reduced | [candidate][play:H][src:opus4-8]
90
+ ES-HGAME026 | Foreclosure Auditor | Exploration removes future possibilities from each visited location | ≠ branching game: play narrows rather than opens paths | [candidate][play:M][src:opus4-8]
91
+ ES-HGAME027 | Consent-Gated Story | Knowledge and branches unlock only after accepting later obligations | ≠ content warning: consent alters game rules | [candidate][play:H][src:opus4-8]
92
+ ES-HGAME028 | Draw-Seeking Game | Rational competitive play converges on a mutually earned tie | ≠ forced draw: both sides must actively construct it | [candidate][play:M][src:opus4-8]
93
+ `);
94
+
95
+ const GS_N = rows(`
96
+ GS-N001 | The Deliberate Amateur | A professional must remain untrained in one domain to preserve an uncontaminated judgment | ≠ novice hero: maintained ignorance is the qualification | [candidate][play:M][src:opus4-8]
97
+ GS-N002 | The Sunset Archivist | Curates what a civilization is permitted to forget | ≠ censor: planned forgetting preserves institutional function | [candidate][play:H][src:opus4-8]
98
+ GS-N003 | The Non-Expert Panel | A tribunal is valid only while none of its members understands the specialty | ≠ lay jury: ignorance must be demonstrated and maintained | [candidate][play:M][src:opus4-8]
99
+ GS-N004 | The Unlearner | Removes obsolete skills and reflexes that have become liabilities | ≠ rehabilitation: competence, not injury, is subtracted | [candidate][play:H][src:opus4-8]
100
+ GS-N005 | The Redaction Poet | Creates civic works by licensed subtraction from official texts | ≠ found poetry: the omissions have legal consequences | [candidate][play:M][src:opus4-8]
101
+ `);
102
+
103
+ const GS_C = rows(`
104
+ GS-C001 | The Supply Line | A logistics chain, rather than any worker, carries the protagonist arc | ≠ shipment quest: resilience of the chain is the character change | [candidate][play:H][src:opus4-8]
105
+ GS-C002 | The Shift Rotation | A schedule develops, fails, and recovers while individual workers cycle through it | ≠ workplace ensemble: the rota is the persistent agent | [candidate][play:M][src:opus4-8]
106
+ GS-C003 | The Queue | A waiting line behaves as a slow social organism with memory and justice | ≠ ensemble-in-line: position relations form the protagonist | [candidate][play:M][src:opus4-8]
107
+ GS-C004 | The Standard Operating Procedure | A protocol is tested, amended, resisted, and matured like a character | ≠ rulebook plot: procedural revisions are the arc | [candidate][play:H][src:opus4-8]
108
+ GS-C005 | The Mutual-Aid Mesh | A leaderless support network succeeds through reachability and redundancy | ≠ collective hero: connectivity, not solidarity alone, governs outcomes | [candidate][play:M][src:opus4-8]
109
+ `);
110
+
111
+ const GS_D = rows(`
112
+ GS-D001 | The Chain of Custody | An evidence log is wounded whenever custody breaks | ≠ object mystery: provenance, not object identity, is protagonist | [candidate][play:H][src:opus4-8]
113
+ GS-D002 | The Erratum | A narrative exists entirely through corrections to an unavailable prior account | ≠ unreliable manuscript: amendments are the primary text | [candidate][play:M][src:opus4-8]
114
+ GS-D003 | The Marginalia Life | A biography is reconstructed only through notes written inside other people’s books | ≠ documentary novel: central documents never exist | [candidate][play:H][src:opus4-8]
115
+ GS-D004 | The Receipt Archive | Family relationships are reconstructed solely from transactions | ≠ ledger novel: economic traces replace explicit testimony | [candidate][play:M][src:opus4-8]
116
+ GS-D005 | The Version-Control Saga | A shared document’s revision history supplies plot and chronology | ≠ epistolary fiction: merge conflicts replace correspondence | [candidate][play:M][src:opus4-8]
117
+ `);
118
+
119
+ const GS_E = rows(`
120
+ GS-E001 | The Watershed Protagonist | A drainage basin changes through linked upstream and downstream decisions | ≠ nature-as-character: state is defined by water movement and allocation | [adj:ecofiction][play:M][src:opus4-8]
121
+ GS-E002 | The Building’s Lifetime | Commissioning, occupation, repair, retrofit, and decommissioning form a biography | ≠ haunted-house lineage: service state creates the arc | [adj:building fiction][play:H][src:opus4-8]
122
+ GS-E003 | The Standard’s Career | A technical standard moves from proposal through adoption to obsolescence | ≠ invention story: interoperability and retirement are central | [candidate][play:M][src:opus4-8]
123
+ GS-E004 | The Seed-Bank Vigil | Dormant biological potential is kept viable for an unknown claimant future | ≠ seed-vault thriller: maintenance without deployment is success | [adj:climate fiction][play:H][src:opus4-8]
124
+ GS-E005 | The Maintenance Ecology | Humans and a slow ecosystem mutually maintain one another without a dominant hero | ≠ restoration story: stable reciprocity is the endpoint | [adj:ecofiction][play:M][src:opus4-8]
125
+ `);
126
+
127
+ const GS_A = rows(`
128
+ GS-A001 | Relief Fiction | The emotional center is sustained relief after danger has passed | ≠ aftermath fiction: the exhale, not consequences, structures the work | [adj:aftermath][play:H][src:opus4-8]
129
+ GS-A003 | Sufficiency Fiction | The central realization is that a stable amount is enough | ≠ anti-ambition tale: stopping has positive narrative form | [candidate][play:M][src:opus4-8]
130
+ GS-A004 | Gratitude-Without-Debt Fiction | Thanks creates no reciprocal obligation | ≠ gift economy: gratitude is deliberately nonbinding | [candidate][play:M][src:opus4-8]
131
+ `);
132
+
133
+ const GS_K = rows(`
134
+ GS-K001 | Escrow Friendship | A neutral third party holds each friend’s vulnerability until reciprocity is established | ≠ mediated trust: staged exposure is constitutive | [candidate][play:H][src:opus4-8]
135
+ GS-K002 | Dead-Man’s-Switch Vow | A promise is enforced by disclosure that triggers if maintenance stops | ≠ blackmail: both parties voluntarily construct the trigger | [adj:dead-man switch][play:M][src:opus4-8]
136
+ GS-K003 | Rotating Hostage Trust | Each side alternately places something valuable in the other’s care | ≠ hostage exchange: custody rotates as a trust practice | [candidate][play:M][src:opus4-8]
137
+ GS-K004 | Quorum Confidence | A secret changes state when the number of keepers crosses a threshold | ≠ conspiracy: secrecy is neither binary nor leader-controlled | [candidate][play:H][src:opus4-8]
138
+ GS-K005 | Graduated Disclosure Pact | Intimacy proceeds through predefined stages gated by prior conduct | ≠ courtship milestones: disclosure permissions are contractual | [candidate][play:M][src:opus4-8]
139
+ `);
140
+
141
+ const GS_WX = rows(`
142
+ GS-WX001 | The Forecast Handoff | Night and day forecast teams transfer uncertainty rather than facts; one omitted doubt becomes the crisis | ≠ disaster forecast: the seam between forecasts is protagonist | [candidate][play:H]
143
+ GS-WX002 | Beneficial-Hazard Arbitration | Water managers need a storm that emergency managers fear | ≠ weather dilemma: both outcomes arise from the same event at different thresholds | [candidate][play:H]
144
+ GS-WX003 | The Ensemble Household | A family organizes life around several mutually plausible forecasts instead of one prediction | ≠ prophecy choice: uncertainty remains irreducible | [adj:forecast ensemble][play:H]
145
+ GS-WX004 | The Weather-Window Cooperative | Rival workers share a shrinking safe interval for harvest, repair, travel, and rescue | ≠ ticking clock: stakeholders require incompatible uses of the same window | [candidate][play:H]
146
+ GS-WX005 | The Antecedent-Condition Case | A weak storm becomes lethal because of old fire, saturated ground, and neglected drainage | ≠ surprise disaster: responsibility lies in prior maintenance | [candidate][play:H]
147
+ GS-WX006 | Storm-Succession Fiction | No storm is catastrophic alone; damage emerges because recovery intervals vanish | ≠ escalation by larger storms: accumulation, not intensity, defeats the system | [candidate][play:H]
148
+ GS-WX007 | Evacuation-Fatigue Tribunal | Officials must justify another warning after repeated harmless evacuations | ≠ false-alarm plot: compliance itself is a depletable resource | [candidate][play:H]
149
+ GS-WX008 | Microclimate Boundary Board | A city adjudicates shade, wind, heat, frost, and rain differences created block by block | ≠ weather-control fiction: ordinary construction redistributes exposure | [candidate][play:H]
150
+ GS-WX009 | Forecast Verification Ritual | After each season, forecasters publicly separate bad outcomes from bad decisions | ≠ blame hearing: uncertainty calibration is judged independently of luck | [candidate][play:M]
151
+ GS-WX010 | The Last Dry Day Market | Conflicting communities bid for priority use of the final workable day before a long wet period | ≠ deadline story: weather access is allocated as a commons | [candidate][play:H]
152
+ `);
153
+
154
+ const GS_AN = rows(`
155
+ GS-AN001 | Migration-Corridor Custodian | A family maintains passage across land it does not own for animals that appear briefly each year | ≠ animal rescue: continuity of route is the duty | [candidate][play:H]
156
+ GS-AN002 | The Stopover Town | A town’s economy, identity, and calendar depend on a species pausing there for days | ≠ tourism fiction: the visitors cannot negotiate or be retained | [candidate][play:H]
157
+ GS-AN003 | Collective-Movement Observer | A scientist discovers group direction has no leader and must defend responsibility without command | ≠ hive mind: decisions emerge from local alignment | [adj:behavioral ecology][play:H]
158
+ GS-AN004 | Sentinel-Rotation Failure | A social animal group collapses because vigilance labor becomes unevenly distributed | ≠ predator attack: breakdown of shared watch is the plot | [candidate][play:M]
159
+ GS-AN005 | The Scent Commons | Multiple species depend on an odor corridor disrupted by human cleaning, masking, and development | ≠ magical scent trail: chemical access functions as infrastructure | [candidate][play:M]
160
+ GS-AN006 | The Molt Window | Fishers, predators, researchers, and animals depend on the same period of extreme animal vulnerability | ≠ hunting-season fiction: vulnerability, not abundance, structures obligations | [candidate][play:H]
161
+ GS-AN007 | Predator-Risk Budget | A herd’s choices redistribute danger among edge, center, young, and old members | ≠ sacrifice tale: geometry allocates risk continuously | [candidate][play:M]
162
+ GS-AN008 | The Orphaned Migration | A new generation inherits a route whose destination no longer exists | ≠ lost-home migration: inherited movement persists after purpose | [candidate][play:H]
163
+ GS-AN009 | Mixed-Species Alarm Treaty | Human communities learn to rely on several species’ incompatible warning signals | ≠ animal omen: signals are fallible public infrastructure | [candidate][play:H]
164
+ GS-AN010 | Corridor-Inheritance Trial | Land heirs discover an animal population holds an older seasonal claim across the estate | ≠ conservation lawsuit: occupancy is periodic but indispensable | [candidate][play:H]
165
+ `);
166
+
167
+ const GS_WST = rows(`
168
+ GS-WST001 | Contamination Cascade | One wrongly sorted object downgrades an entire valuable material stream | ≠ recycling morality tale: classification failure propagates operationally | [adj:waste fiction][play:H]
169
+ GS-WST002 | Landfill Aftercare Inheritance | Descendants inherit monitoring duties for a landfill closed before they were born | ≠ toxic-land story: responsibility begins after disposal ends | [candidate][play:H]
170
+ GS-WST003 | Waste-Hierarchy Appeal | A community contests whether an object must be prevented, reused, repaired, recycled, burned, or buried | ≠ courtroom over pollution: the disputed issue is its correct afterlife | [candidate][play:H]
171
+ GS-WST004 | Material-Passport Mystery | A building’s components cannot be reused because their origins and treatments are missing | ≠ provenance mystery: identity determines safe future use | [candidate][play:H]
172
+ GS-WST005 | Reverse-Logistics Family | A family business moves unwanted products backward through retail, repair, reuse, and disassembly | ≠ recycling business story: reverse movement replaces sales growth | [candidate][play:H]
173
+ GS-WST006 | The Compost Clock | A neighborhood’s food, heat, odor, labor, and planting schedules depend on decomposition timing | ≠ gardening fiction: decay is the shared production process | [candidate][play:H]
174
+ GS-WST007 | The Ash Residual | A waste-to-energy town discovers that apparent disappearance leaves a smaller but harder remainder | ≠ pollution reveal: the residual was always disclosed but socially ignored | [candidate][play:H]
175
+ GS-WST008 | Repair-Triage Board | Scarce parts force a community to decide which broken objects deserve continued life | ≠ sentimental-object tale: repairability is a public allocation problem | [candidate][play:H]
176
+ GS-WST009 | The Closure Town | A community built around disposal must survive the successful closure of its landfill | ≠ company-town collapse: environmental success removes the economy | [candidate][play:H]
177
+ GS-WST010 | Unclaimed-Waste Ownership | Courts decide when abandonment ends ownership and when responsibility nevertheless remains | ≠ treasure-from-trash story: value and liability separate | [candidate][play:H]
178
+ `);
179
+
180
+ const GS_PHEN = rows(`
181
+ GS-PHEN001 | False-Spring Liability | Early warmth triggers action, then returning cold destroys what trusted it | ≠ weather disaster: premature response is the central harm | [candidate][play:H]
182
+ GS-PHEN002 | The Mismatch Year | Flowers, pollinators, pests, and workers reach readiness at different times | ≠ bad harvest: relationships fail because clocks diverge | [candidate][play:H]
183
+ GS-PHEN003 | First-Bloom Registry | Property, ritual, and labor rights turn on the first verified seasonal event | ≠ almanac fiction: observation confers legal consequences | [candidate][play:H]
184
+ GS-PHEN004 | Season-Handoff Board | Farmers, schools, utilities, wildlife managers, and festivals negotiate when a season officially changes | ≠ calendar reform: one season has multiple operational starts | [candidate][play:H]
185
+ GS-PHEN005 | Migratory Citizenship | Seasonal residents gain civic rights only while their associated species is present | ≠ seasonal worker story: political membership follows ecology | [candidate][play:M]
186
+ GS-PHEN006 | Last-Frost Insurance | Families dispute whether a damaging frost fell inside or outside an insured growing season | ≠ weather claim: the legal object is the season’s boundary | [candidate][play:H]
187
+ GS-PHEN007 | The Off-Season Caretaker | A worker preserves a place through the long period when its visible purpose disappears | ≠ seasonal job: absence is the main workload | [candidate][play:H]
188
+ GS-PHEN008 | Season-Extension Debt | A longer productive season creates hidden water, labor, pest, and exhaustion costs | ≠ climate boon reversal: benefits themselves generate the debt | [candidate][play:H]
189
+ GS-PHEN009 | Calendar-Divergence Family | Members organize life using school, agricultural, religious, fiscal, and biological seasons that no longer align | ≠ scheduling comedy: calendars represent incompatible realities | [candidate][play:H]
190
+ GS-PHEN010 | The Missing Phenophase | Investigators search not for a creature but for a lifecycle event that failed to occur | ≠ ecological mystery: the absent transition is the victim | [candidate][play:H]
191
+ `);
192
+
193
+ const GS_TA = rows(`
194
+ GS-TA001 | The Innovator Orphans | Early users master a technology abandoned before a mainstream community forms | ≠ obsolete-tech nostalgia: expertise arrives before social support | [adj:diffusion theory][play:H]
195
+ GS-TA002 | The Chasm Town | A settlement builds itself around a tool too mature for enthusiasts and too risky for ordinary users | ≠ failed-startup story: the community inhabits the adoption gap | [adj:diffusion theory][play:H]
196
+ GS-TA003 | The Reference-Customer Burden | One organization must remain exemplary because every later adopter depends on its success | ≠ pilot project: failure would erase trust across a whole sector | [candidate][play:H]
197
+ GS-TA004 | The Dual-Running Household | A family maintains old and new systems because no member can migrate at the same pace | ≠ generational-tech conflict: coexistence, not persuasion, is required | [candidate][play:H]
198
+ GS-TA005 | The Laggard Custodian | The final non-adopter becomes the only person preserving knowledge that the new system omitted | ≠ conservative vindication: refusal creates archival responsibility | [candidate][play:H]
199
+ GS-TA006 | The Shadow Workflow | Workers adopt new software publicly while secretly preserving the old process that keeps reality functioning | ≠ office resistance: the unofficial system is operationally essential | [adj:IT fiction][play:H]
200
+ GS-TA007 | Compatibility-Debt Heirs | Descendants inherit obligations created by technologies that promised permanent backward compatibility | ≠ technical debt story: the debt binds users across generations | [candidate][play:H]
201
+ GS-TA008 | Forced-Update Sanctuary | A refuge maintains machines and practices that cannot survive mandatory updates | ≠ retrocomputing nostalgia: compatibility supplies essential care | [candidate][play:H]
202
+ GS-TA009 | The Decommission Window | A team must retire a functioning system during the one interval when every dependent can survive without it | ≠ shutdown thriller: success destroys a working object deliberately | [candidate][play:H]
203
+ GS-TA010 | Adoption-Reversal Court | Citizens petition to return from a mainstream technology to the system it displaced | ≠ anti-technology revolt: reversal must rebuild lost dependencies | [candidate][play:H]
204
+ `);
205
+
206
+ const GS_H2O = rows(`
207
+ GS-H2O001 | Reservoir-Release Jury | Communities decide whether stored water belongs to current users, ecosystems, or future drought | ≠ dam conflict: timing, not ownership alone, is decisive | [candidate][play:H]
208
+ GS-H2O002 | The Upstream Promise | A town vows to preserve water quality for people it will never meet downstream | ≠ pollution plot: trust travels with the water | [candidate][play:H]
209
+ GS-H2O003 | The Leak Cartographer | A worker maps losses that never appear above ground | ≠ infrastructure detective: absence of water is the evidence | [candidate][play:H]
210
+ GS-H2O004 | Pressure-Zone Inequality | Elevation and network pressure determine which homes receive reliable service | ≠ water scarcity: the same supply creates unequal access through hydraulics | [candidate][play:H]
211
+ GS-H2O005 | The Drought-Ration Family | Household members receive distinct legal water identities based on work, health, and age | ≠ survival rationing: intimacy becomes allocation governance | [candidate][play:H]
212
+ GS-H2O006 | Floodplain Memory Registry | A city must preserve knowledge of floods that have not occurred within living memory | ≠ disaster archive: success makes the evidence seem unnecessary | [candidate][play:H]
213
+ GS-H2O007 | Groundwater Delay Debt | A community profits from pumping whose damage will appear decades later and elsewhere | ≠ resource depletion: cause and claimant are separated in time | [candidate][play:H]
214
+ GS-H2O008 | Stormwater Commons | Every paved property contributes to a shared flood burden that no parcel can solve alone | ≠ neighborhood flood story: runoff connectivity is the antagonist | [candidate][play:H]
215
+ GS-H2O009 | Water-Quality Handoff | Treatment, distribution, buildings, and households each receive water they can either preserve or contaminate | ≠ poisoning mystery: every handoff remains locally compliant | [candidate][play:H]
216
+ GS-H2O010 | Pipe-Shutdown Surgery | A repair crew must isolate one pipe without depriving a hospital, home, or fire system | ≠ maintenance thriller: network boundaries are the tactical field | [candidate][play:H]
217
+ `);
218
+
219
+ const GS_ENG = rows(`
220
+ GS-ENG001 | Load-Shedding Court | A tribunal decides whose power disappears during shortage | ≠ blackout drama: interruption is selective, planned, and political | [candidate][play:H]
221
+ GS-ENG002 | The Black-Start Crew | Workers must rebuild a dead grid without relying on the grid | ≠ post-apocalyptic restoration: startup dependencies create the puzzle | [candidate][play:H]
222
+ GS-ENG003 | Frequency Keeper | One operator maintains the balance between generation and consumption second by second | ≠ control-room thriller: tiny deviations, not sabotage, create suspense | [candidate][play:M]
223
+ GS-ENG004 | The Curtailment Hero | A producer saves the system by deliberately making less valuable energy | ≠ sacrifice plot: nonproduction is technical competence | [candidate][play:H]
224
+ GS-ENG005 | The Islanded Neighborhood | A community disconnects from a failing grid and must decide when reconnection becomes safe | ≠ off-grid fiction: separation is temporary system protection | [candidate][play:H]
225
+ GS-ENG006 | Peak-Demand Family | A household reorganizes intimacy, care, and work around the hours when shared energy is most expensive | ≠ poverty drama: synchronized demand creates the conflict | [candidate][play:H]
226
+ GS-ENG007 | Storage-Fade Saga | A community’s energy reserve slowly loses capacity while appearing unchanged | ≠ failing-battery story: degradation is distributed across years | [candidate][play:H]
227
+ GS-ENG008 | Energy-Poverty Weather Crisis | Survival depends not on owning energy but on affording it during one climatic extreme | ≠ fuel scarcity: tariff timing and building quality decide outcomes | [candidate][play:H]
228
+ GS-ENG009 | Demand-Response Marriage | Partners agree which comforts and duties may be deferred when the grid calls for reduction | ≠ domestic austerity: the interruption is cooperative infrastructure work | [candidate][play:H]
229
+ GS-ENG010 | The Generator Funeral | A town ceremonially retires a reliable but harmful machine before its replacement has earned trust | ≠ industrial closure: reliability itself makes retirement painful | [candidate][play:H]
230
+ `);
231
+
232
+ const GS_BIO = rows(`
233
+ GS-BIO001 | The Fallow-Year Marriage | A couple’s livelihood requires one planned year of visible nonproduction | ≠ farm hardship: rest is the productive act | [candidate][play:H]
234
+ GS-BIO002 | Topsoil Inheritance | Heirs receive fertile depth rather than acreage, making erosion a form of estate loss | ≠ land inheritance: the valuable property can physically leave | [candidate][play:H]
235
+ GS-BIO003 | Pollinator-Timing Contract | Growers and habitat stewards share obligations tied to a brief overlap between bloom and insect activity | ≠ bee crisis: synchrony, not population alone, governs success | [candidate][play:H]
236
+ GS-BIO004 | Root-Zone Boundary | Neighbors dispute underground access to water and nutrients that ignores surface property lines | ≠ boundary-tree case: the root network is the shared infrastructure | [candidate][play:H]
237
+ GS-BIO005 | Crop-Rotation Lineage | Each generation is obligated to plant what repairs the damage created by the preceding crop | ≠ farming dynasty: succession follows soil needs rather than blood ambition | [candidate][play:H]
238
+ GS-BIO006 | The Fungal Benefit Dispute | A community cannot agree whether an invisible underground exchange is cooperation, exploitation, or both | ≠ magical mycelium: uncertainty about reciprocity drives policy | [adj:ecological fiction][play:M]
239
+ GS-BIO007 | Invasive-Removal Jury | Citizens decide whether a beloved organism’s local history outweighs ecological harm | ≠ monster eradication: affection and damage coexist | [candidate][play:H]
240
+ GS-BIO008 | Soil-Compaction Detective | Crop failure is traced to accumulated pressure from ordinary successful work | ≠ sabotage mystery: correct operations collectively caused the harm | [candidate][play:H]
241
+ GS-BIO009 | Germination-Window Cooperative | Rival growers share scarce labor and equipment during a narrow biological opening | ≠ harvest race: the decisive event occurs before growth is visible | [candidate][play:H]
242
+ GS-BIO010 | Volunteer-Plant Citizenship | A city determines when an unplanted organism becomes resident, weed, crop, or protected claimant | ≠ garden story: legal status follows self-arrival | [candidate][play:M]
243
+ `);
244
+
245
+ const GS_SAN = rows(`
246
+ GS-SAN001 | The Sewer Handoff Shift | Upstream operators must warn downstream crews about invisible incoming conditions | ≠ underground adventure: flow information is the central trust | [candidate][play:H]
247
+ GS-SAN002 | Overflow-Forecast Board | A city chooses which streets, waterways, and facilities receive excess flow during a storm | ≠ flood control: sanitation and drainage compete for capacity | [candidate][play:H]
248
+ GS-SAN003 | Sludge Ownership | Courts determine who owns, values, transports, and remains liable for treatment residuals | ≠ waste lawsuit: material is both resource and responsibility | [candidate][play:H]
249
+ GS-SAN004 | Septic Boundary | Rural neighbors dispute failures whose source, flow, and damage cross parcels underground | ≠ contamination mystery: responsibility follows maintenance history | [candidate][play:H]
250
+ GS-SAN005 | The Cross-Connection Detective | An investigator traces where clean and contaminated systems were accidentally linked | ≠ poisoning plot: the crime may be a legal plumbing change | [candidate][play:H]
251
+ GS-SAN006 | Odor Tribunal | Residents, operators, and regulators adjudicate a harm that is real but difficult to preserve as evidence | ≠ nuisance comedy: sensory testimony has institutional stakes | [candidate][play:H]
252
+ GS-SAN007 | The Flushable Claim | Product makers, households, and utilities dispute who caused objects to enter a system unable to process them | ≠ consumer lawsuit: ordinary correct use creates systemic failure | [candidate][play:H]
253
+ GS-SAN008 | Treatment-Threshold Strike | Workers threaten not shutdown but deliberate operation at the lowest legally acceptable performance | ≠ labor stoppage: compliance becomes the weapon | [candidate][play:H]
254
+ GS-SAN009 | Flooded-Plant Recovery | A treatment crew must restore sanitation while the surrounding population most needs it | ≠ disaster recovery: the facility cannot protect itself by closing | [candidate][play:H]
255
+ GS-SAN010 | Toilet-Access Covenant | A community treats sanitation access as a mutual public obligation rather than a purchased service | ≠ public-health story: everyday hosting and refusal become political acts | [candidate][play:H]
256
+ `);
257
+
258
+ const GS_RPR = rows(`
259
+ GS-RPR001 | The Last Technician | One aging worker alone understands a still-essential machine | ≠ lone-genius story: success requires making themselves replaceable | [adj:legacy-system fiction][play:H]
260
+ GS-RPR002 | The Cannibalized Machine | One device stays alive by becoming the donor body for several others | ≠ sentient-machine tragedy: allocation of parts divides a community | [candidate][play:H]
261
+ GS-RPR003 | Spare-Part Custodian | A worker protects components that may never be used but cannot be recreated | ≠ warehouse story: readiness without consumption is success | [candidate][play:H]
262
+ GS-RPR004 | Repair-or-Replace Court | Citizens decide whether continuity, efficiency, memory, safety, or cost governs an object’s right to survive | ≠ sentimental restoration: competing public values determine the ruling | [candidate][play:H]
263
+ GS-RPR005 | The Patch-Window Truce | Enemies suspend ordinary activity because both rely on one brief maintenance interval | ≠ ceasefire: the shared dependency, not diplomacy, forces peace | [candidate][play:H]
264
+ GS-RPR006 | Calibration-Drift Mystery | Measurements remain internally consistent while the reference slowly moves | ≠ faulty-instrument reveal: every result is precise but collectively wrong | [candidate][play:H]
265
+ GS-RPR007 | Salvage Rights | Workers, owners, insurers, and communities contest who may dismantle a failed system | ≠ treasure salvage: value exists only through authorized disassembly | [candidate][play:H]
266
+ GS-RPR008 | Single-Source Dependency | An insignificant supplier becomes indispensable because no alternative meets an old specification | ≠ monopoly plot: power emerges accidentally from compatibility | [candidate][play:H]
267
+ GS-RPR009 | The Long-Lead Promise | A buyer commits years before knowing the final need, while the supplier builds for a future customer they cannot inspect | ≠ procurement drama: uncertainty is shared but asymmetric | [candidate][play:H]
268
+ GS-RPR010 | The Change-Order Spiral | Every reasonable improvement forces revisions elsewhere until the original project becomes unrecognizable | ≠ cost-overrun satire: individually correct changes create systemic drift | [candidate][play:H]
269
+ `);
270
+
271
+ const GS_CHR = rows(`
272
+ GS-CHR001 | The Transition Worker | protagonist whose entire working life is spent in the gap between systems; builds the bridge but never lives on either side | ≠ builder: the work product is temporary and deliberately destroyed | [candidate][play:H]
273
+ GS-CHR002 | The Inventory Ghost | character who exists only in records; everyone references them, no scene contains them, their decisions arrive via paperwork | ≠ absent character: never off-page temporarily — literally never on-page | [candidate][play:H]
274
+ GS-CHR003 | The Latency Messenger | courier whose value lies in deliberate slowness; delivering too fast is failure, correct pace is the skill | ≠ urgent messenger: velocity inverted | [candidate][play:H]
275
+ GS-CHR004 | The Inherited-Argument Heir | person who inherits not wealth but both sides of an ancestor's unresolved dispute and must advocate for positions they don't hold | ≠ legacy conflict: both sides internal | [candidate][play:H]
276
+ GS-CHR005 | The Format Translator | mediates between people using incompatible life-organization systems (calendars, units, kinship terms, value frameworks) without converting either | ≠ interpreter: no common destination language exists | [candidate][play:H]
277
+ GS-CHR006 | The Queue Warden | maintains fairness in a waiting system where the resource arrives unpredictably and claimants' needs change while waiting | ≠ bouncer/gatekeeper: ordering, not admitting | [candidate][play:H]
278
+ GS-CHR007 | The Threshold Certifier | decides when a gradual change has crossed enough boundary to count as a new legal/social state (village→town, friend→family, hobby→profession) | ≠ judge: only threshold-crossings, never disputes within a state | [candidate][play:H]
279
+ GS-CHR008 | The Capacity Reservist | maintains personal readiness for a crisis that may never come; their entire character arc is the tension between preparedness and unlived ordinary life | ≠ soldier awaiting war: civilian with no institution behind them | [candidate][play:H]
280
+ GS-CHR009 | The Provenance Keeper | for every object that passes through a community, this person records where it was, who touched it, and why | ≠ archivist: objects, not documents; chain of touch | [candidate][play:H]
281
+ GS-CHR010 | The De-Escalation Specialist | professional whose success is invisible because prevented conflicts leave no evidence; must justify their budget to people who see no problem | ≠ mediator: works before parties recognize the dispute | [candidate][play:H]
282
+ GS-CHR011 | The Seasonal-Identity Person | character whose personality, obligations, and social role genuinely change with seasons; not metaphor — civic/legal role rotates | ≠ seasonal worker: identity itself rotates | [candidate][play:H]
283
+ GS-CHR012 | The Quiet-Emergency Responder | works on crises too slow or diffuse to register as emergencies; erosion, gradual contamination, demographic decline | ≠ first responder: tempo is generational | [candidate][play:H]
284
+ GS-CHR013 | The Compatibility Custodian | ensures that new additions to a community (people, tools, practices) can coexist with what's already there | ≠ HR: compatibility is material/systemic, not interpersonal | [candidate][play:H]
285
+ GS-CHR014 | The Grief Accountant | tracks who owes mourning to whom, when grief-debts mature, and whether sufficient attention has been paid to losses | ≠ mourner: administrative role | [candidate][play:H]
286
+ GS-CHR015 | The Surplus Handler | manages excess (too much harvest, too many applicants, too much kindness) without waste or injury | ≠ distributor: the problem is abundance, not scarcity | [candidate][play:H]
287
+ `);
288
+
289
+ const GS_SET = rows(`
290
+ GS-SET001 | The Handoff Zone | physical space that exists solely during transitions between shifts, seasons, or administrations; empty before and after | ≠ threshold: temporally bounded rather than spatially | [candidate][play:H]
291
+ GS-SET002 | The Buffer Landscape | land maintained between incompatible uses specifically to prevent their interaction; its custodians serve the gap | ≠ border: not contested, deliberately empty | [candidate][play:H]
292
+ GS-SET003 | The Waiting Infrastructure | facilities built to serve people during delay: airport, clinic waiting room, unemployment office, parole checkpoint — delay as native setting | ≠ liminal space: institutional, purposeful | [candidate][play:H]
293
+ GS-SET004 | The Decommissioned System | a retired infrastructure still physically present, legally undefined, socially remembered | ≠ ruin: not decayed, merely unpowered | [candidate][play:H]
294
+ GS-SET005 | The Calibration Room | space where standards are maintained; nothing is produced, only referenced | ≠ laboratory: no experiments, only preservation of measurement | [candidate][play:M]
295
+ GS-SET006 | The Overflow Destination | place that receives what other places cannot handle (water, people, grief, surplus) | ≠ dump: receives valued things that simply don't fit elsewhere | [candidate][play:H]
296
+ GS-SET007 | The Compatibility Layer | physical or social space built to translate between two incompatible systems operating side by side | ≠ embassy: serves things/processes, not nations | [candidate][play:H]
297
+ GS-SET008 | The Dormancy Vault | facility preserving things in suspended readiness for a need that hasn't arrived | ≠ warehouse: stored items have specific activation conditions | [candidate][play:H]
298
+ GS-SET009 | The Residual Quarter | neighborhood built from leftover spaces — gaps between other zones, spaces no plan claimed | ≠ slum: formed by structural accident, not poverty | [candidate][play:H]
299
+ GS-SET010 | The Maintenance Cathedral | workspace whose grandeur reflects the importance of upkeep; architecturally celebrates repair | ≠ factory: nothing made here, only sustained | [candidate][play:M]
300
+ `);
301
+
302
+ const GS_SIT = rows(`
303
+ GS-SIT001 | The Graceful Handoff Failure | a transition between roles goes slightly wrong in a way everyone notices but collectively agrees to absorb | ≠ disaster: the imperfection is managed | [candidate][play:H]
304
+ GS-SIT002 | The Surplus Crisis | too much of a good thing arrives simultaneously and the community must decide what to refuse | ≠ abundance: choosing what NOT to accept is the conflict | [candidate][play:H]
305
+ GS-SIT003 | The Standards Drift Discovery | someone notices that a baseline has moved imperceptibly and must prove drift to people who feel fine | ≠ cover-up: no one concealed anything; everyone failed to notice | [candidate][play:H]
306
+ GS-SIT004 | The Compatibility Break | two previously coexisting systems become incompatible through no one's fault; the event is the moment they can no longer share space | ≠ schism: neither side chose to separate | [candidate][play:H]
307
+ GS-SIT005 | The Deferred-Maintenance Reckoning | accumulated small neglects compound into a crisis that no single act caused | ≠ disaster: every individual decision was locally reasonable | [candidate][play:H]
308
+ GS-SIT006 | The Threshold Crossing Without Ceremony | a quantitative change has occurred but no institution recognized it; the community must retroactively acknowledge a new state | ≠ revelation: everyone knew; no one formalized | [candidate][play:H]
309
+ GS-SIT007 | The Last-Compatible-Generation Meeting | the final people who can bridge two incompatible systems meet while both systems still run | ≠ mentor-student: neither is senior; both are endpoints | [candidate][play:H]
310
+ GS-SIT008 | The Provenance Gap | an object's history has a hole; everything before and after is documented but one transfer is missing | ≠ mystery: what happened may be known; why it wasn't recorded is the wound | [candidate][play:H]
311
+ GS-SIT009 | The Successful Boring Day | a day where nothing went wrong and the achievement is structural — but no artifact, award, or memory results | ≠ routine: the success is costly and deliberate | [candidate][play:H]
312
+ GS-SIT010 | The Collective Slow Forgetting | a community gradually loses a skill, memory, or practice without any single person forgetting; the aggregate fades while individuals retain fragments | ≠ cultural erasure: no one erased it; attention simply didn't sustain it | [candidate][play:H]
313
+ GS-SIT011 | The Residual Activation | a dormant resource, promise, or protocol activates after so long that no one remembers setting it up | ≠ time bomb: it was protective, not destructive, but forgotten | [candidate][play:H]
314
+ GS-SIT012 | The Mutual De-Escalation Race | two parties compete to lower stakes faster; the first to genuinely not care wins something neither can name | ≠ standoff: motion is toward disengagement | [candidate][play:H]
315
+ `);
316
+
317
+ const GS_REL = rows(`
318
+ GS-REL001 | The Shift-Change Bond | two people who share the same role but never overlap; they know each other only through residual evidence | ≠ pen pals: they inhabit the same job, not the same page | [candidate][play:H]
319
+ GS-REL002 | The Compatibility Pair | two people whose value to each other is that their systems (tools, schedules, languages) still interoperate when nothing else does | ≠ alliance: utility is structural, not strategic | [candidate][play:H]
320
+ GS-REL003 | The Buffer Friendship | a bond that exists to prevent two other relationships from touching; the friends serve as insulation | ≠ mediator: they never mediate; their presence suffices | [candidate][play:H]
321
+ GS-REL004 | The Threshold Witness | someone present specifically at transitions (births, deaths, promotions, retirements) who never participates in what comes before or after | ≠ celebrant: they attend only boundaries | [candidate][play:H]
322
+ GS-REL005 | The Provenance Chain | a sequence of custodians connected by one object they each held briefly; they share nothing else | ≠ relay team: no common goal, only common touch | [candidate][play:H]
323
+ GS-REL006 | The Dormancy Partner | two people bound by a shared commitment that activates only under specific rare conditions; between activations they may be strangers | ≠ emergency contact: the bond has positive content during dormancy | [candidate][play:H]
324
+ GS-REL007 | The Surplus-Absorber Pair | one person consistently receives the other's overflow (time, emotion, material) without resentment because the structure was agreed | ≠ codependency: the flow is designed and both benefit from the capacity | [candidate][play:H]
325
+ GS-REL008 | The Format-Mismatch Marriage | partners whose internal organization systems are permanently incompatible; love is expressed in continuous translation without resolution | ≠ opposites attract: no reconciliation is possible or sought | [candidate][play:H]
326
+ `);
327
+
328
+ const GS_MAC = rows(`
329
+ GS-MAC001 | The Handoff Novel | whole-work architecture where each chapter is a different custodian of the same responsibility; no protagonist recurs | ≠ relay narrative: custodians don't choose successors | [candidate][play:H]
330
+ GS-MAC002 | The Calibration Arc | story whose dramatic shape is repeated fine-tuning toward an agreed standard; climax = the measurement that finally matches | ≠ quest: the goal was defined from the start; the drama is precision | [candidate][play:M]
331
+ GS-MAC003 | The Surplus Comedy | comic structure where every act brings more good than anyone can handle; the joke is excess, not scarcity | ≠ abundance fantasy: managing overflow is genuinely difficult | [candidate][play:H]
332
+ GS-MAC004 | The Residual Mystery | investigation into what remains after an ostensibly complete resolution; the solved case left something behind | ≠ sequel: the residual challenges the original verdict | [candidate][play:H]
333
+ GS-MAC005 | The Compatibility Saga | multi-generational work tracking how coexisting systems maintain interoperability as each evolves independently | ≠ alliance saga: no shared enemy; the work is mutual translation | [candidate][play:H]
334
+ `);
335
+
336
+ const ES2_CH = rows(`
337
+ ES2-CH001 | The Threshold-Holder | one who lives permanently at the moment of a decision without making it, and whose held-open choice keeps others' options alive; deciding would foreclose the community | ≠ Hamlet-delayer: the indecision is load-bearing public service, not flaw | [candidate] [play:H]
338
+ ES2-CH002 | The Beneficiary-Detective | protagonist who investigates a great kindness done to them anonymously; the mystery engine is gratitude, and solving it may oblige them beyond bearing | ≠ whodunit: the "crime" is a gift, and the reveal creates debt | [candidate] [play:H]
339
+ ES2-CH003 | The Peak-Passed Protagonist | hero whose one extraordinary act happened before page one and can never recur; the arc is living as the site of a former miracle | ≠ washed-up hero (seeks comeback): no comeback is possible or sought — the arc is stewarding a past self | [candidate] [play:H]
340
+ ES2-CH004 | The Designated Rememberer of a Loser | one appointed to keep faith with the losing side of a settled conflict — not to reopen it, only to prevent its erasure; loyalty without revanchism | ≠ rebel/loyalist: they accept the loss and guard only its memory | [candidate] [play:H]
341
+ ES2-CH005 | The Beneficent Bottleneck | a person through whom everything in a community must pass, who never abuses the position and whose arc is the cost of chronic trustworthiness | ≠ gatekeeper-villain: the drama is the toll of being permanently trusted | [candidate] [play:H]
342
+ ES2-CH006 | The Second-Confirmer | one whose confirmations make others' acts real (signatures, witnessings, seconds) and who has never originated anything; the arc is their first original act | ≠ sidekick-steps-up: their entire social function is derivative validation, and originality endangers it | [candidate] [play:H]
343
+ ES2-CH007 | The Voluntary Predecessor | a person who spends their life deliberately making themselves surpassable — building a successor who will erase them; ambition inverted into engineered self-obsolescence | ≠ mentor: mentors transmit; this one designs their own supersession as the project | [adj:GS-RPR001 differentiated: not a technician; a life-strategy archetype] [play:H]
344
+ ES2-CH008 | The Non-Reciprocal Saint | one who can give but is constitutionally unable to receive — help, gifts, apology, love; the arc is the harm their pure giving does | ≠ selfless hero: the incapacity to receive is the flaw dramatized | [candidate] [play:H]
345
+ ES2-CH009 | The Grievance Executor | inherits not property but a specific, legitimate, unresolved grievance from the dead, with a duty to resolve it justly — including against their own interest | ≠ avenger: the mandate is resolution, not revenge, and may vindicate the enemy | [adj:ES-HL021 differentiated: character-arc form, not estate law] [play:H]
346
+ ES2-CH010 | The Calibrated Coward | one who has precisely mapped their own courage's limits and works entirely within them; the arc is a situation exactly at the boundary | ≠ coward-turned-brave: no transformation — the drama is exact self-knowledge under boundary pressure | [candidate] [play:H]
347
+ ES2-CH011 | The Undeclared Winner | a person who won something enormous (contest, inheritance, love) and never told anyone, living inside an unclaimed victory; the arc is whether claiming it is still possible | ≠ hidden-heir: they concealed it by choice, and the statute of claiming is running out | [candidate] [play:H]
348
+ ES2-CH012 | The Professional Penultimate | always second-to-last in every process — the one before the decider, the reader before the editor, the checker before the signer; power without authorship, and the arc is a day the last position is empty | ≠ second-in-command: not rank — sequence-position as identity | [candidate] [play:H]
349
+ ES2-CH013 | The Apology-in-Progress | a protagonist whose entire multi-year arc is the correct staging of one apology — earning the standing to make it; the story ends when it can begin | ≠ redemption arc: no self-improvement montage — the labor is building the conditions under which the apology means something | [candidate] [play:H]
350
+ ES2-CH014 | The Witness Who Benefited | sole witness to an injustice from which they innocently profited; testimony would be true, doubted, and self-ruinous — silence is safe, corrosive, and complicit | ≠ whistleblower: their gain taints the truth they alone hold | [candidate] [play:H]
351
+ ES2-CH015 | The Maintainer of an Enemy | one who keeps their community's designated adversary alive, fed, and functional, because the community's identity requires the enemy's existence | ≠ secret-sympathizer: no sympathy needed — the maintenance is structural, and the crisis is the enemy's decline | [adj:ES-M "vacancy villain" cluster differentiated: caretaker-side POV, grounded, no metaphysics] [play:H]
352
+ ES2-CH016 | The Averted Person | someone whose defining catastrophe was prevented by strangers before their birth or memory, who learns of it and must relate to a devastation that never touched them but shaped everything around them | ≠ survivor: nothing happened — the arc is inheriting a prevented history | [candidate] [play:H]
353
+ ES2-CH017 | The Reluctant Standard | a person whose ordinary life has been adopted by others as the measure of normalcy; deviation by them recalibrates everyone, so their private changes are public events | ≠ role model: not admired — used as a unit; the drama is the wish to change privately | [adj:ES-C030 differentiated: fully grounded, social not metaphysical] [play:H]
354
+ ES2-CH018 | The Last Fluent Mourner | the only person left who knew the dead well enough to mourn them accurately; everyone else's grief is generic, and the arc is whether to correct it | ≠ keeper-of-memory: the conflict is between accurate grief and the community's comforting inaccurate version | [candidate] [play:H]
355
+ `);
356
+
357
+ const ES2_SUB = rows(`
358
+ ES2-SUB001 | The De-Herald | the figure who arrives to announce that the adventure is off — the call withdrawn, the prophecy voided; their scene forces the protagonist to discover what remains without the summons | ≠ herald: delivers the un-call | [candidate] [play:H]
359
+ ES2-SUB002 | The Stake-Holder (literal) | a neutral party who physically holds what both sides want for the story's duration; their neutrality decays under proximity to the prize and both parties' courtship | ≠ MacGuffin-keeper: they are courted, tempted, and changed — the object's custody is a character-pressure role | [candidate] [play:H]
360
+ ES2-SUB003 | The Foil's Foil | a tertiary figure who contrasts with the contrast-character, revealing that the protagonist and antagonist are both extremes of a spectrum with a habitable middle | ≠ foil: operates on the foil, not the hero — a second-derivative role | [candidate] [play:M]
361
+ ES2-SUB004 | The Scheduled Betrayer | an ally whose future betrayal is agreed in advance by both parties as necessary (cover, plausibility, protection); the relationship is warm because the betrayal is contracted | ≠ traitor: the betrayal is collaborative, and the drama is the schedule arriving | [candidate] [play:H]
362
+ ES2-SUB005 | The Mentor's Creditor | the person the mentor owes everything to, appearing mid-story; the hero discovers their teacher's wisdom was borrowed and partially unpaid | ≠ mentor's-dark-past: not a secret shame — an open debt that transfers to the student | [candidate] [play:H]
363
+ ES2-SUB006 | The Recusal Figure | the one perfectly positioned to help who formally declines for stated principled reasons, and whose refusal defines the moral geometry of everyone who then acts | ≠ refusing-mentor (later relents): never relents; the refusal is permanent and correct | [adj:ES-HW006 differentiated: dramatic function, not guild] [play:H]
364
+ ES2-SUB007 | The Anti-Confidant | the person to whom the protagonist tells everything falsely — a designated recipient of the cover story, maintained with care; intimacy built entirely of curated untruth | ≠ deceived friend: the protagonist maintains the false channel as protection for them | [candidate] [play:H]
365
+ ES2-SUB008 | The Load-Bearing Acquaintance | a minor, never-deepened relationship that structurally holds the protagonist's life together (the newsstand nod, the bus regular); its unexplained loss destabilizes everything | ≠ friend: the role's power is its shallowness — weak-tie as keystone | [candidate] [play:H]
366
+ ES2-SUB009 | The Rival's Advocate | a figure whose function is arguing the antagonist's case to the protagonist honestly — not a traitor, not a peacemaker, but a sworn representative of the enemy's legitimate interests inside the hero's camp | ≠ devil's advocate: permanent, formal, and loyal to both sides at once | [candidate] [play:H]
367
+ ES2-SUB010 | The Continuity Child | a child character whose function is to have been promised something by every adult faction; the promises are incompatible, and the child's ledger is the plot's conscience | ≠ innocent-witness: an active creditor of the whole cast | [candidate] [play:H]
368
+ ES2-SUB011 | The Understudy Antagonist | the person prepared to become the villain if the current one falls — visible throughout, courteous, dreading promotion | ≠ dragon/lieutenant: not subordinate — a successor in waiting who wants the incumbent to survive | [adj:ES-M vacancy cluster differentiated: grounded succession, no metaphysics] [play:H]
369
+ ES2-SUB012 | The Wrong Rescuer | the one who saved the protagonist at the origin-point and was never the one the protagonist wished had done it; gratitude and disappointment permanently fused in one relationship | ≠ life-debt: the debt is real but aimed at the wrong person, and both know | [candidate] [play:H]
370
+ ES2-SUB013 | The Meaning-Checker | a supporting figure whose scenes verify whether the protagonist's sacrifices are still serving their original purpose; a recurring audit-relationship, and the story turns when the audit fails | ≠ conscience-figure: checks alignment, not morality — the sacrifice can be moral and still audit-fail | [candidate] [play:H]
371
+ ES2-SUB014 | The Pre-Forgiver | someone who forgives the protagonist at the start for what they have not yet done; the forgiveness sits in advance of the act, altering whether it happens | ≠ prophetic warner: no prediction — a standing amnesty whose existence is the temptation and the restraint at once | [candidate] [play:H]
372
+ `);
373
+
374
+ const ES2_SET = rows(`
375
+ ES2-SET001 | The Almost-Border | a strip where a boundary was surveyed but never ratified; residents live under permanent provisionality, and every institution has two draft versions | ≠ borderland: the border does not exist yet and may never | [candidate] [play:H]
376
+ ES2-SET002 | The Decommissioned Sacred | a former holy site correctly and respectfully deconsecrated — not desecrated, not ruined; the setting's charge is the orderly absence of what was there | ≠ ruins/haunted church: nothing lingers; the drama is how people behave in a properly emptied place | [candidate] [play:H]
377
+ ES2-SET003 | The Rehearsal Town | a full-scale duplicate settlement used to rehearse events (evacuations, ceremonies, invasions) for the real town nearby; some people prefer living in the rehearsal | ≠ movie set/model village: functionally inhabited, permanently provisional | [candidate] [play:H]
378
+ ES2-SET004 | The Waiting Inheritance | a fully maintained house/farm/shop kept ready for an heir who has not yet decided; the setting is a life offered but unclaimed, staffed by people paid to keep the offer open | ≠ abandoned estate: nothing decays — readiness itself is the atmosphere | [candidate] [play:H]
379
+ ES2-SET005 | The Overlap Hour Place | a site that serves two incompatible communities on alternating schedules (day-market/night-court, school/shelter), with a daily transition hour when both are present | ≠ shared building: the transition hour is the dramatic native ground | [candidate] [play:H]
380
+ ES2-SET006 | The Correction District | a neighborhood built on the acknowledged site of an old planning error, whose layout preserves the mistake legibly as civic penance; wayfinding teaches the error | ≠ memorial district: the error is structural and inhabited, not commemorated | [candidate] [play:M]
381
+ ES2-SET007 | The Last-Instance Archive | the place holding the final physical copy of things duplicated nowhere; every visit risks the original, and access-decisions are triage | ≠ library/vault: the drama is the singularity of each item — reading is risk | [adj:GS-RPR003 differentiated: setting, not custodian role] [play:H]
382
+ ES2-SET008 | The Verified Commons | a meadow/square/beach whose legal existence depends on continuous recorded communal use; a use-log must never lapse, and quiet days are civic emergencies | ≠ commons: usage itself is the maintenance, and idleness is the threat | [adj:prescriptive-easement law, dramatized] [play:H]
383
+ ES2-SET009 | The Sound-Shadow Village | a settlement in the acoustic shadow of something enormous (falls, highway, range) where a specific silence exists nowhere else; the silence is the economy and the identity | ≠ quiet town: the silence is a locatable physical resource with edges | [candidate] [play:H]
384
+ ES2-SET010 | The Split Custody House | a dwelling legally divided in time, not space — one family inhabits it half the year, another the other half, each erasing and restoring itself seasonally; the handover week is the native drama | ≠ timeshare: full domestic lives alternate, and the house holds both | [candidate] [play:H]
385
+ ES2-SET011 | The Instrument Landscape | terrain maintained as a measuring device (a sightline kept clear for a survey mark, a field kept bare as a gauge); the land's purpose is metrological, and its keepers rank accuracy above yield | ≠ farmland/park: the crop is measurement | [candidate] [play:M]
386
+ ES2-SET012 | The Pending Demolition | a structure with a fixed, distant demolition date decades away; everything inside is lived fully and provisionally, and the countdown reorders every relationship formed there | ≠ condemned building: fully legal, safe, and loved — only finite | [candidate] [play:H]
387
+ ES2-SET013 | The Reciprocity Road | a route passable only through serial private courtesies — each segment crossed by permission renewed at each house; the road is a chain of relationships, and one grudge severs geography | ≠ toll road: payment is social, and the map is a social graph | [candidate] [play:H]
388
+ ES2-SET014 | The Off-Books Room | a space that appears in no plan, deed, or record — not hidden, just never documented; things done there have no official location, and the room becomes the district's pressure valve | ≠ secret room: everyone knows it — it is administratively, not physically, invisible | [candidate] [play:H]
389
+ `);
390
+
391
+ const ES2_SIT = rows(`
392
+ ES2-SIT001 | The Simultaneous Rescue | two parties in danger; each can only be saved by the resources committed to the other; the rescuer must not choose whom to save but whom to have been saving all along | ≠ Sophie's choice: the commitment was made before the danger, and the choice is retroactive reinterpretation | [candidate] [play:H]
393
+ ES2-SIT002 | Vindication Arriving Too Late to Want | proof of innocence surfaces after the accused has built a full life on accepted guilt; exoneration would demolish the second life | ≠ wrongful-conviction drama: the victim fights the vindication | [candidate] [play:H]
394
+ ES2-SIT003 | The Obligatory Gift | one party must give (custom, law, love) and the other must not receive (vow, health, pride); the situation is the standoff of two valid duties over one object | ≠ refused gift: both compulsions are legitimate and public | [candidate] [play:H]
395
+ ES2-SIT004 | The Shared Secret Neither Knows the Other Knows | two people each privately hold the same secret, each protecting the other from it; the situation is the mutual, doubled, unnecessary shield | ≠ dramatic irony: symmetric, and the audience watches redundant sacrifice | [candidate] [play:H]
396
+ ES2-SIT005 | The Kindness That Must Be Repaid to a Third Party | a benefactor's only accepted repayment is a duty performed for someone the debtor has never met — possibly an enemy | ≠ pay-it-forward: the recipient is specified and objectionable | [candidate] [play:H]
397
+ ES2-SIT006 | The Contested Non-Event | two parties agree on every fact except whether something happened at all (a proposal, an insult, a promise); no evidence can exist, and their shared life requires a joint ruling | ≠ he-said-she-said: nothing is misremembered — the event's very occurrence is genuinely indeterminate between them | [candidate] [play:H]
398
+ ES2-SIT007 | The Rescue That Must Be Concealed From the Rescued | saving someone in a way they must never discover, because knowledge of the rescue would destroy what it saved | ≠ anonymous benefactor: active, ongoing concealment with rising cost | [candidate] [play:H]
399
+ ES2-SIT008 | The Two Claims to One Grief | two people each hold a legitimate but incompatible chief-mourner claim to the same loss; the dead cannot adjudicate, and the funeral requires one to yield falsely | ≠ inheritance dispute: the contested asset is standing-to-grieve | [adj:prior grief-custody entries differentiated: dyadic staged situation, not institution] [play:H]
400
+ ES2-SIT009 | The Promotion Into One's Own Victim | a person rises into the exact position from which they were once wronged, inheriting the pressures that produced their own injury; the situation is meeting the temptation from the other side | ≠ becoming-the-monster: the structure, not corruption, is the antagonist | [candidate] [play:H]
401
+ ES2-SIT010 | The Alibi That Incriminates Elsewhere | proving innocence of one accusation requires revealing presence somewhere more damning; truth is available but strictly worse | ≠ locked-alibi: the exculpation itself is the trap | [candidate] [play:H]
402
+ ES2-SIT011 | The Consensus Against Both | two adversaries discover the community requires their feud to continue (economics, identity, entertainment); reconciliation is ready, and the obstacle is everyone else | ≠ star-crossed lovers: the bond obstructed is a peace, not a romance | [candidate] [play:H]
403
+ ES2-SIT012 | The Inherited Half of a Deal | one party to a private bargain dies; the survivor holds an obligation whose other half no living person can verify, release, or receive | ≠ deathbed promise: the deal was reciprocal, and the counter-obligation is now unownable | [candidate] [play:H]
404
+ ES2-SIT013 | The Necessary Audience | an act (confession, mercy, defiance) that only counts if a specific person witnesses it — and that person refuses to watch; the situation is procuring an unwilling witness without coercion | ≠ public confession: validity, not courage, requires the witness | [candidate] [play:H]
405
+ ES2-SIT014 | The Rehearsed Reunion | two long-separated people have each privately rehearsed the reunion so thoroughly that the actual meeting is a collision of two incompatible scripts; the situation is negotiating out of both performances into contact | ≠ awkward reunion: the scripts are the antagonists | [candidate] [play:H]
406
+ ES2-SIT015 | The Beneficiary of the Verdict One Knows Is Wrong | a judgment in one's favor rests on an error only oneself can see; correcting it costs everything, and the error will now compound through others' reliance | ≠ guilty secret: the initial act was innocent — the guilt accrues through maintained silence | [candidate] [play:H]
407
+ ES2-SIT016 | The Duty to Disappoint Correctly | one must deliver a refusal or verdict, and the entire moral weight lies in how — the content is fixed, and the drama is the craft of the necessary wound | ≠ bearer-of-bad-news: the news is the giver's own decision, and the artistry of delivery is the plot | [candidate] [play:H]
408
+ `);
409
+
410
+ const ES2_TW = rows(`
411
+ ES2-TW001 | The Reveal of Redundancy | the protagonist's decisive act is shown to have been one of several independent sufficient acts by strangers; the deed was real, the necessity was not | ≠ villain-already-won: the outcome stands — only its dependence on the hero dissolves | [candidate] [play:H]
412
+ ES2-TW002 | The Wrong Beneficiary Reveal | the sacrifice worked perfectly — for someone other than intended, through a chain no one controlled; the gift arrived, misdelivered by causality | ≠ futile sacrifice: fully effective, differently aimed | [candidate] [play:H]
413
+ ES2-TW003 | The Reveal of the Second Keeper | a secret guarded lifelong is revealed to have been independently kept by another guardian the whole time; the loneliness, not the secret, was unnecessary | ≠ shared-secret reveal: the twist re-prices decades of solitary cost | [candidate] [play:H]
414
+ ES2-TW004 | The Maintenance Reveal | what seemed a natural, effortless permanence (a marriage, a peace, a garden, a truce) is shown to have been laboriously maintained daily by an unseen party now stopping | ≠ hidden-benefactor: the revealed labor is upkeep, and the plot begins at its cessation | [candidate] [play:H]
415
+ ES2-TW005 | The Reveal That the Test Was Passed Long Ago | the trial the protagonist is straining toward is disclosed as already completed, unrecognized, in an ordinary earlier moment; the quest was a receipt, not an exam | ≠ "it was within you": a specific past scene is retroactively promoted to the climax | [candidate] [play:H]
416
+ ES2-TW006 | The Mutual Decoy Reveal | two parties each believed they were protecting the other by drawing danger to themselves; the danger, meanwhile, was aimed at neither | ≠ double bluff: symmetric sacrificial misdirection, both wasted, both binding | [candidate] [play:H]
417
+ ES2-TW007 | The Reveal of the Kept Appointment | an apparently random recurring encounter is disclosed as one side keeping a promise the other made and forgot; the "coincidences" were fidelity | ≠ stalker reveal: the kept promise was benign and requested | [candidate] [play:H]
418
+ ES2-TW008 | The Correct Rumor Reveal | the malicious, invented rumor is shown to have been accidentally true — fabricated from nothing, landing on fact; the liar must handle having been right | ≠ vindicated gossip: the truth was unknown to its own inventor | [candidate] [play:H]
419
+ ES2-TW009 | The Reveal of the Off-Stage Payer | every advantage the protagonist attributed to merit or luck is disclosed as invoiced — someone has been quietly paying, and the bill's existence, not its collection, is the twist | ≠ secret patron: the payer wants nothing; the injury is to self-authorship | [candidate] [play:H]
420
+ ES2-TW010 | The Un-Ended Ending Reveal | a concluded episode all parties treated as closed is shown to have never formally ended — a technicality kept it open, and someone has been living inside the open bracket the whole time | ≠ sequel hook: the openness is legal/ritual and retroactively reframes years | [candidate] [play:M]
421
+ `);
422
+
423
+ const ES2_NR = rows(`
424
+ ES2-NR001 | The Handover Narrator | narration passed like a shift-duty between in-world characters at formal transitions, each signing on and off; the seams are shown and the log is the book | ≠ rotating POV: the transfer is diegetic labor with protocol, gaps, and disputed entries | [candidate] [play:H]
425
+ ES2-NR002 | The Rehearsal Narrator | tells events as preparation for telling them properly to a specific dreaded listener later; every chapter is a draft of a confession we never hear delivered | ≠ frame-tale: the true telling remains outside the book, and revisions between drafts carry the plot | [candidate] [play:H]
426
+ ES2-NR003 | The Executor Narrator | narrates under a duty of accuracy owed to the dead subject, with visible internal conflict between the estate's interests, the truth, and the deceased's known wishes | ≠ biographer: legally and morally bound, and the binding shows | [candidate] [play:H]
427
+ ES2-NR004 | The Witness-for-Hire Narrator | a professional observer (per witness-guild logic) narrating events they were paid to watch by a client whose identity and purpose leak slowly through what they were told to notice | ≠ detective narrator: no inquiry — pure commissioned attention, with the commission as the mystery | [adj:ES-HI023 differentiated: narratorial form, not institution] [play:H]
428
+ ES2-NR005 | The Translation-Loss Narrator | narrates a story that occurred in a language they imperfectly share, marking honestly at each point what certainly, probably, and possibly was said; the uncertainty gradient is the style | ≠ unreliable narrator: scrupulously reliable about their own unreliability's exact shape | [adj:ES-HTR001 differentiated: POV form, not auditor role] [play:H]
429
+ ES2-NR006 | The Minutes-Keeper Narrator | the story is told as official minutes of a body that keeps meeting about the events; drama surfaces through amendments, objections to prior minutes, and what the chair rules out of order | ≠ epistolary/deposition: collective, procedural, and contested in-form | [candidate] [play:M]
430
+ ES2-NR007 | The Beneficiary Narrator | tells the story of people whose choices produced the narrator's comfortable life, discovering the costs as they narrate; the telling is the repayment attempt | ≠ descendant-memoir: the narrator's stake compounds each chapter as the debt clarifies | [candidate] [play:H]
431
+ ES2-NR008 | The Alternating Silence Narrator | two narrators who never narrate the same events; each tells only what happened when the other was absent, and the shared scenes — the relationship's core — are structurally untold | ≠ dual POV: the overlap is the deliberate hole; readers triangulate the center from its edges | [candidate] [play:H]
432
+ `);
433
+
434
+ const ES2_NH = rows(`
435
+ ES2-NH001 | The Retired Working Animal | a service/rescue/military animal in formal retirement whose trained reflexes keep firing in civilian life; the arc is unemployment of instinct | ≠ loyal pet: obsolete competence is the drama | [candidate] | [play:H]
436
+ ES2-NH002 | The Wrong-Flock Bird | an animal imprinted on the wrong species (goose on humans, dog on cats), living as a permanent structural foreigner; its category-error is the plot | ≠ ugly duckling: no true flock is ever found — the mismatch is livable | [candidate] | [play:H]
437
+ ES2-NH003 | The Boundary Herd | livestock whose grazing legally defines a border; moving the animals moves the law, and the herd becomes the object of cartographic politics | ≠ symbolic animal: the herd IS the surveying instrument | [candidate] | [play:H]
438
+ ES2-NH004 | The Last Pollinator | the sole surviving individual of a pollinator population on which one plant, one orchard, one family economy depends; a keystone individual | ≠ endangered species: singular, located, known by name | [candidate] | [play:H]
439
+ ES2-NH005 | The Successor Tree | a sapling planted to replace a landmark tree while the elder still stands; two generations of one landmark coexist, and the community's loyalty is split | ≠ world-tree: succession-in-progress as character pair | [candidate] | [play:H]
440
+ ES2-NH006 | The Escaped Domestic | a formerly-owned animal now feral, recognized by all, claimed by none; it patrols the boundary between owned and wild, and its status is a standing legal question | ≠ stray: publicly known biography | [candidate] | [play:H]
441
+ ES2-NH007 | The Instrument Animal | an animal whose body is a measuring device (canary-logic generalized): its comfort or distress is the community's official gauge for something invisible | ≠ omen-beast: calibrated, maintained, replaced with ceremony | [candidate] | [play:H]
442
+ ES2-NH008 | The Overwintering Guest | a migratory individual that one year fails to leave; its staying breaks the calendar, and the community must decide whether it is now a resident | ≠ magical visitor: phenological anomaly as character | [candidate] | [play:H]
443
+ ES2-NH009 | The Machine in Probate | a machine whose ownership is unresolved for years; it keeps working while humans dispute it, accruing a work-history no owner authorized | ≠ sentient machine: fully inert — its legal life is the character | [candidate] | [play:H]
444
+ ES2-NH010 | The Building's Load-Bearer | the one wall/beam/column everyone knows cannot be touched; renovation plans orbit it, and it silently dictates a century of human choices | ≠ living building: inert veto-power as character-function | [candidate] | [play:H]
445
+ `);
446
+
447
+ const ES2_MB = rows(`
448
+ ES2-MB001 | The Anti-Aristeia | a sequence granting a character their moment of supreme restraint — maximal capability displayed through visible non-use | ≠ aristeia: excellence shown by withholding | [candidate] | [play:H]
449
+ ES2-MB002 | The Catalog of Absences | the epic-catalog form applied to what is missing: mustering the dead, the emigrated, the never-born before an undertaking | ≠ Homeric catalog: the muster is of gaps | [candidate] | [play:H]
450
+ ES2-MB003 | The Reverse Ekphrasis | a beat where a character describes an artwork/object that is present to people who cannot see it, and the description becomes the contested official version | ≠ ekphrasis: the audience is in the room, blind to it | [candidate] | [play:M]
451
+ ES2-MB004 | The Redundant Oath | swearing an oath to do what one is already fully compelled to do; the beat's content is why the oath was still wanted | ≠ oath scene: legally empty, emotionally load-bearing | [candidate] | [play:H]
452
+ ES2-MB005 | The Second Threshold | re-crossing a threshold already crossed, now without the first crossing's stakes; the beat measures what the interval did | ≠ threshold crossing: the drama is diminished charge | [candidate] | [play:H]
453
+ ES2-MB006 | The Handled Prophecy | a prophecy is received, filed, processed, and scheduled by competent administrators; the beat is bureaucratic absorption of fate | ≠ prophecy scene: no dread — intake procedure | [candidate] | [play:H]
454
+ ES2-MB007 | The Un-Recognition | two people who should recognize each other genuinely do not; no disguise, no amnesia — time alone has made them strangers, and the beat is the failed anagnorisis | ≠ recognition scene: the token fails honestly | [candidate] | [play:H]
455
+ ES2-MB008 | The Borrowed Boast | a flyting/boast delivered on behalf of an absent party who never authorized it; the boaster is spending someone else's honor | ≠ flyting: proxy vaunt with unowned stakes | [candidate] | [play:M]
456
+ ES2-MB009 | The Maintenance Litany | a recurring recitation of what has been kept working (mirror of the muster): pumps checked, seals renewed, names remembered; the litany's first omission is the inciting incident | ≠ catalog: continuity-verse whose gap is plot | [candidate] | [play:H]
457
+ ES2-MB010 | The Post-Boon Inventory | immediately after the climactic gain, a quiet beat itemizing what the boon costs to store, maintain, insure, and explain | ≠ denouement: logistics of victory as its own unit | [candidate] | [play:H]
458
+ `);
459
+
460
+ const ES2_END = rows(`
461
+ ES2-END001 | The Custodial Ending | the conflict is not resolved but formally transferred to named successors with documented state; the book ends at a completed handoff, not an outcome | ≠ sequel hook: the transfer is the achieved telos | [candidate] | [play:H]
462
+ ES2-END002 | The Downgraded Ending | the central conflict ends by ceasing to matter — not resolved, outgrown; the final chapters track stakes deflating until the question dissolves | ≠ anticlimax: the deflation is earned and mutual | [candidate] | [play:H]
463
+ ES2-END003 | The Verified Ending | the story ends only when an in-world auditor certifies it ended; the final scene is the inspection, and the reader watches closure being checked | ≠ epilogue: certification as form | [candidate] | [play:M]
464
+ ES2-END004 | The Split-Custody Ending | the resolution is deliberately divided — each party takes home a different, incompatible, workable account of how it ended, by explicit agreement | ≠ ambiguous ending: the ambiguity is negotiated in-world | [candidate] | [play:H]
465
+ ES2-END005 | The Maintenance Ending | the ending is a schedule: the resolution will hold only under listed recurring duties, printed as the final page; closure is conditional and chore-shaped | ≠ happily-ever-after: the ever-after has a rota | [candidate] | [play:H]
466
+ ES2-END006 | The Third-Party Ending | the protagonists' conflict is ended by an uninvolved stranger's unrelated act; the leads must accept a closure they did not author | ≠ deus ex machina: mundane, lawful, and thematically priced | [candidate] | [play:H]
467
+ ES2-END007 | The Rehearsed Ending Performed | the ending the characters rehearsed all book finally occurs — and the performance of it, matching or missing the rehearsal, is the entire final chapter | ≠ planned finale: rehearsal-vs-performance delta is the content | [candidate] | [play:H]
468
+ ES2-END008 | The Ending Held in Escrow | the resolution exists, sealed, disclosed to the reader but embargoed in-world until a condition the book ends before reaching | ≠ open ending: closure exists, locked | [candidate] | [play:M]
469
+ `);
470
+
471
+ const ES_HAI = rows(`
472
+ ES-HAI001 | The Problem-Solver Panel | difficult practical puzzles (stuck mechanisms, route-finding) are formally submitted to corvid/octopus/rat test-populations; their solutions are studied and credited | ≠ lab research: civic problem-solving office | [candidate] | [play:M]
473
+ ES-HAI002 | The Deception Auditor | species capable of tactical deception (corvids re-caching, cephalopod misdirection) are studied by an office that certifies human institutions against analogous frauds | ≠ ethology: fraud-prevention derived from animal cognition | [candidate] | [play:M]
474
+ ES-HAI003 | The Memory Baseline Herd | an elephant or corvid population serves as the community's long-memory check; disputed decades-old claims are tested against where the animals still refuse to go, still gather, still avoid | ≠ animal-omen: behavioral archive with error bars | [candidate] | [play:H]
475
+ ES-HAI004 | The Grief-Recognition Registry | species with documented mourning behavior (elephants, corvids, cetaceans) are observed after community deaths; their attendance or absence at sites enters the civic record of a death's weight | ≠ symbolic animal mourning: recorded institutional datum | [candidate] | [play:M]
476
+ ES-HAI005 | The Tool-Right Species | species that demonstrably use tools hold a legal category of "tool-bearing"; harming their tool-sites (anvil stones, probe-twig groves) is a distinct crime | ≠ habitat protection: cognition-specific property | [candidate] | [play:H]
477
+ ES-HAI006 | The Cross-Species Apprentice | a human trade (diving, tracking, foraging) formally requires a period of observing its animal analog before certification; the animal is the first instructor | ≠ nature-inspired craft: mandatory curriculum stage | [candidate] | [play:H]
478
+ ES-HAI007 | The Vocabulary Warden | for species with documented signal-repertoires (prairie dogs, vervets, whales), a warden maintains the human-side dictionary and rules on disputed "utterances" in legal contexts | ≠ Dr. Dolittle: statistical, contested, institutional | [candidate] | [play:M]
479
+ ES-HAI008 | The Recognition Estate | animals that demonstrably recognize individual humans (crows, elephants) can be named in wills; the bequest funds whoever the animal continues to approach | ≠ pet inheritance: the animal's cognition selects the heir | [candidate] | [play:H]
480
+ `);
481
+
482
+ const ES_HEC = rows(`
483
+ ES-HEC001 | The Succession Trustee | land is held in trust not for a person but for a stage — the trustee's duty is to deliver the parcel to climax forest/meadow in 200 years; every human use is judged against the trajectory | ≠ conservation easement: staged, directional obligation | [candidate] | [play:H]
484
+ ES-HEC002 | The Pioneer-Species Household | families who settle disturbed land (burn zones, floodplains, brownfields) hold a formal "pioneer" status with duties to improve and then leave when the next stage arrives | ≠ homesteader: departure is contractual success | [candidate] | [play:H]
485
+ ES-HEC003 | The Disturbance Calendar | a community schedules its own controlled disturbances (burns, floods, harvests) as civic events with liturgical weight; the calendar is ecological, not solar | ≠ controlled burn: full civic ritual cycle | [candidate] | [play:H]
486
+ ES-HEC004 | The Climax Dispute | factions disagree over which stable state a recovering landscape should be steered toward — each climax implies a different economy, aesthetic, and set of winners | ≠ land-use fight: the contested object is an endpoint decades away | [candidate] | [play:H]
487
+ ES-HEC005 | The Succession Witness | a lineage-office that observes one parcel across the full succession arc; each holder serves one stage and trains the next, no individual ever seeing the whole | ≠ forester: multi-generational single-parcel vigil | [candidate] | [play:H]
488
+ ES-HEC006 | The Ruderal Rights | organisms and people who thrive only in disturbed ground hold rights to disturbance; a too-stable community owes them upheaval | ≠ squatter's rights: instability as entitlement | [candidate] | [play:M]
489
+ ES-HEC007 | The Arrested-Succession Garden | a landscape deliberately frozen mid-succession (permanent meadow, held shrubland) at enormous ongoing labor cost; the garden is a monument to a chosen moment | ≠ formal garden: the exhibit is a paused process | [candidate] | [play:H]
490
+ ES-HEC008 | The Recovery Bond | after a disturbance, responsible parties post bonds released only at verified succession milestones over decades; heirs inherit the bond's stake | ≠ environmental fine: staged, multigenerational escrow | [candidate] | [play:H]
491
+ `);
492
+
493
+ const ES_HNOI = rows(`
494
+ ES-HNOI001 | The Static Registrar | records interference patterns on the community's channels; unexplained noise is a civic event requiring investigation and naming | ≠ radio operator: noise-cataloguing office | [candidate] | [play:M]
495
+ ES-HNOI002 | The Jamming Sabbath | one day per season all signals are deliberately jammed; the community practices functioning without transmission | ≠ digital detox: civic drill with liturgy | [candidate] | [play:H]
496
+ ES-HNOI003 | The Crosstalk Court | disputes arising from overheard/bled-through communication (thin walls, crossed lines) have a dedicated tribunal with doctrine on accidental knowledge | ≠ privacy law: interference-specific | [candidate] | [play:H]
497
+ `);
498
+
499
+ const ES_HQU = rows(`
500
+ ES-HQU001 | The Queue Estate | a place in a decades-long queue (housing, transplant, pilgrimage) is heritable property; the estate is a position | ≠ waiting list: positions are bequeathed, taxed, contested | [candidate] | [play:H]
501
+ ES-HQU002 | The Yield Ledger | recorded acts of letting-others-ahead accrue formal standing; a lifetime of yielding is a fortune | ≠ courtesy: ledgered priority-capital | [candidate] | [play:H]
502
+ ES-HQU003 | The Queue Marriage | two queue-positions may merge by union, advancing both parties; queue-strategic courtship follows | ≠ marriage of convenience: positional | [candidate] | [play:H]
503
+ `);
504
+
505
+ const ES_HSHA = rows(`
506
+ ES-HSHA001 | The Reflection Custodian | maintains the community's reflective surfaces (pools, polished stone); the right to see oneself is a maintained utility | ≠ mirror-maker: reflection as infrastructure | [candidate] | [play:M]
507
+ ES-HSHA002 | The Shade Commons | shadow cast by large structures is common property; sitting-rights in shade are allocated in heat seasons | ≠ shade tree: adjudicated cooling-commons | [candidate] | [play:H]
508
+ `);
509
+
510
+ const ES_HDU = rows(`
511
+ ES-HDU001 | The Dust Witness | undisturbed dust-layers are legally protected evidence-strata; cleaning a room can be evidence-tampering | ≠ forensics: dust as archive with custody rules | [candidate] | [play:H]
512
+ ES-HDU002 | The Sediment Reader | river/harbor sediment cores are read annually as the community's involuntary diary; what settled is what happened | ≠ geology: civic self-knowledge ritual | [candidate] | [play:M]
513
+ `);
514
+
515
+ export const V6_EMPTY_SPACE_BANDS: { key: string; label: string; rows: V6Row[]; rollable: boolean }[] = [
516
+ { key: "ES-HB", label: "P6 beat additions", rows: ES_HB_P6, rollable: true },
517
+ { key: "ES-HG", label: "P6 genre additions", rows: ES_HG_P6, rollable: true },
518
+ { key: "ES-HM", label: "P6 moral/legal additions", rows: ES_HM_P6, rollable: true },
519
+ { key: "ES-HL", label: "P6 love/kinship additions", rows: ES_HL_P6, rollable: true },
520
+ { key: "ES-HMED", label: "P6 medical additions", rows: ES_HMED_P6, rollable: true },
521
+ { key: "ES-HGAME", label: "P6 playable additions", rows: ES_HGAME_P6, rollable: true },
522
+ { key: "GS-N", label: "Grounded non-expert / subtraction roles", rows: GS_N, rollable: true },
523
+ { key: "GS-C", label: "Grounded chain / protocol protagonists", rows: GS_C, rollable: true },
524
+ { key: "GS-D", label: "Grounded document/provenance forms", rows: GS_D, rollable: true },
525
+ { key: "GS-E", label: "Grounded ecological/object careers", rows: GS_E, rollable: true },
526
+ { key: "GS-A", label: "Grounded affect forms", rows: GS_A, rollable: true },
527
+ { key: "GS-K", label: "Grounded trust/kinship mechanisms", rows: GS_K, rollable: true },
528
+ { key: "GS-WX", label: "Weather-system corpora", rows: GS_WX, rollable: true },
529
+ { key: "GS-AN", label: "Animal and multispecies systems", rows: GS_AN, rollable: true },
530
+ { key: "GS-WST", label: "Waste/material-afterlife corpora", rows: GS_WST, rollable: true },
531
+ { key: "GS-PHEN", label: "Seasons and phenology", rows: GS_PHEN, rollable: true },
532
+ { key: "GS-TA", label: "Technology adoption and retirement", rows: GS_TA, rollable: true },
533
+ { key: "GS-H2O", label: "Water-system corpora", rows: GS_H2O, rollable: true },
534
+ { key: "GS-ENG", label: "Energy-system corpora", rows: GS_ENG, rollable: true },
535
+ { key: "GS-BIO", label: "Soil, plants, and slow biological systems", rows: GS_BIO, rollable: true },
536
+ { key: "GS-SAN", label: "Sanitation and wastewater corpora", rows: GS_SAN, rollable: true },
537
+ { key: "GS-RPR", label: "Repair, spares, procurement, and retirement", rows: GS_RPR, rollable: true },
538
+ { key: "GS-CHR", label: "Underexplored character subtypes", rows: GS_CHR, rollable: true },
539
+ { key: "GS-SET", label: "Underexplored settings", rows: GS_SET, rollable: true },
540
+ { key: "GS-SIT", label: "Underexplored situations/events", rows: GS_SIT, rollable: true },
541
+ { key: "GS-REL", label: "Underexplored relationships", rows: GS_REL, rollable: true },
542
+ { key: "GS-MAC", label: "Underexplored macro-shapes", rows: GS_MAC, rollable: true },
543
+ { key: "ES2-CH", label: "Unseen protagonist archetypes", rows: ES2_CH, rollable: true },
544
+ { key: "ES2-SUB", label: "Unseen supporting-role archetypes", rows: ES2_SUB, rollable: true },
545
+ { key: "ES2-SET", label: "Unseen setting archetypes", rows: ES2_SET, rollable: true },
546
+ { key: "ES2-SIT", label: "Unseen dramatic situations", rows: ES2_SIT, rollable: true },
547
+ { key: "ES2-TW", label: "Unseen twist/reveal types", rows: ES2_TW, rollable: true },
548
+ { key: "ES2-NR", label: "Unseen narrator forms", rows: ES2_NR, rollable: true },
549
+ { key: "ES2-NH", label: "Unseen non-human character archetypes", rows: ES2_NH, rollable: true },
550
+ { key: "ES2-MB", label: "Unseen micro-beats", rows: ES2_MB, rollable: true },
551
+ { key: "ES2-END", label: "Unseen ending-types", rows: ES2_END, rollable: true },
552
+ { key: "ES-HAI", label: "Animal-intelligence institutions", rows: ES_HAI, rollable: true },
553
+ { key: "ES-HEC", label: "Ecological-succession institutions", rows: ES_HEC, rollable: true },
554
+ { key: "ES-HNOI", label: "Noise/interference institutions", rows: ES_HNOI, rollable: true },
555
+ { key: "ES-HQU", label: "Queues/ordering institutions", rows: ES_HQU, rollable: true },
556
+ { key: "ES-HSHA", label: "Shadows/reflections institutions", rows: ES_HSHA, rollable: true },
557
+ { key: "ES-HDU", label: "Dust/sediment institutions", rows: ES_HDU, rollable: true },
558
+ ];
559
+
560
+ export const V6_EMPTY_SPACE_TOTAL = V6_EMPTY_SPACE_BANDS.reduce((n, b) => n + b.rows.length, 0);