@ceccec/millennium-solutions 0.1.1 → 9.0.6

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 (91) hide show
  1. package/.zenodo.json +33 -9
  2. package/ACCOUNTING.md +7 -7
  3. package/AXIOMS.md +559 -0
  4. package/CHALLENGES.md +2181 -2479
  5. package/CITATION.cff +1 -1
  6. package/DEPLOY.md +2 -2
  7. package/DEVELOP.md +1 -1
  8. package/LICENSE +6 -5
  9. package/PRIOR-ART.md +149 -0
  10. package/README.md +221 -123
  11. package/SIGNATURE.md +2 -2
  12. package/TRIAL.md +69 -0
  13. package/WHITEPAPER.md +5 -5
  14. package/captain.md +2 -2
  15. package/compare.md +4 -4
  16. package/compute.md +9 -0
  17. package/dashboard.md +1 -1
  18. package/examples.md +5 -5
  19. package/forensic.md +67 -0
  20. package/guide.md +5 -5
  21. package/index.md +209 -139
  22. package/package.json +88 -9
  23. package/paper.md +7183 -0
  24. package/quantum.md +42 -0
  25. package/rights.md +39 -0
  26. package/solutions.md +7 -7
  27. package/speedup.md +4 -4
  28. package/src/0/index.ts +12 -2
  29. package/src/1/index.ts +1 -1
  30. package/src/2/frequency-scales.ts +13 -1
  31. package/src/2/index.ts +1 -1
  32. package/src/3/index.ts +1 -1
  33. package/src/4/index.ts +1 -1
  34. package/src/5/index.ts +1 -1
  35. package/src/6/index.ts +1 -1
  36. package/src/7/index.ts +1 -1
  37. package/src/9/funding.ts +2 -2
  38. package/src/api/gates.ts +117 -0
  39. package/src/api/index.ts +488 -0
  40. package/src/api/lanes.ts +81 -0
  41. package/src/demand/queries.json +1764 -0
  42. package/src/face/index.ts +100 -0
  43. package/src/html/index.ts +10 -0
  44. package/src/latex/index.ts +474 -0
  45. package/src/millennium/index.ts +53 -0
  46. package/src/proof/README.md +1 -1
  47. package/src/proof/address.lean +117 -0
  48. package/src/proof/coin.lean +148 -0
  49. package/src/proof/covered.json +9 -0
  50. package/src/proof/demand.lean +112 -0
  51. package/src/proof/demand2.lean +171 -0
  52. package/src/proof/demand3.lean +117 -0
  53. package/src/proof/discovered.json +10965 -1864
  54. package/src/proof/elementary.lean +393 -0
  55. package/src/proof/energy.lean +215 -0
  56. package/src/proof/families.lean +435 -0
  57. package/src/proof/fixtures/axiom-control.lean +39 -0
  58. package/src/proof/fnv.lean +99 -0
  59. package/src/proof/generated-theorems.json +207 -0
  60. package/src/proof/generated.lean +101 -0
  61. package/src/proof/imagined.lean +492 -0
  62. package/src/proof/index.lean +98 -18
  63. package/src/proof/index.ts +2 -2
  64. package/src/proof/involution.lean +90 -0
  65. package/src/proof/ledgerclaims.lean +84 -0
  66. package/src/proof/light.lean +135 -0
  67. package/src/proof/mechanical.lean +421 -0
  68. package/src/proof/merkaba.lean +89 -0
  69. package/src/proof/merkle.lean +132 -0
  70. package/src/proof/nim.lean +105 -0
  71. package/src/proof/phenomena.lean +90 -0
  72. package/src/proof/priorart.lean +189 -0
  73. package/src/proof/quantum.lean +161 -0
  74. package/src/proof/reach.lean +84 -0
  75. package/src/proof/recovered.lean +56 -0
  76. package/src/proof/reversal.lean +73 -0
  77. package/src/proof/rights.lean +157 -0
  78. package/src/proof/sequences.lean +105 -0
  79. package/src/proof/speed.lean +129 -0
  80. package/src/proof/split.lean +180 -0
  81. package/src/proof/theorems.lean +48 -1
  82. package/src/proof/trial-all.json +15260 -0
  83. package/src/proof/z9.lean +92 -0
  84. package/src/proof/z9plus.lean +208 -0
  85. package/src/proofs.lisp +3 -3
  86. package/src/prove/emit.ts +115 -0
  87. package/src/prove/index.ts +143 -0
  88. package/src/prove/translate.ts +638 -0
  89. package/src/publication/index.ts +363 -0
  90. package/src/quantum/field.ts +73 -0
  91. package/src/quantum/tree.ts +79 -0
package/CITATION.cff CHANGED
@@ -9,7 +9,7 @@ authors:
9
9
  affiliation: "PSG, Bulgaria"
10
10
  version: "1.2.0"
11
11
  doi: "10.5281/zenodo.21819217"
12
- license: CC-BY-NC-4.0
12
+ license: CC-BY-NC-ND-4.0
13
13
  repository-code: "https://github.com/ceccec/millennium-solutions"
14
14
  url: "https://github.com/ceccec/millennium-solutions"
15
15
  identifiers:
package/DEPLOY.md CHANGED
@@ -10,7 +10,7 @@ git push -u origin main --tags
10
10
  - Zenodo → **Settings → GitHub** → toggle **on** `millennium-solutions`.
11
11
  - Publish a GitHub **Release** from tag `v1.0.0` (or re-push the tag).
12
12
  - Zenodo archives it, reads `.zenodo.json` / `CITATION.cff`, and mints the DOI —
13
- carrying the honest abstract, your ORCID, CC BY-NC 4.0, and the funding.
13
+ carrying the honest abstract, your ORCID, CC BY-NC-ND 4.0, and the funding.
14
14
 
15
15
  ## 3. Verify the formal layer (optional)
16
16
  `lean-toolchain` must match the Mathlib you pull. Simplest:
@@ -26,7 +26,7 @@ lake-buildable consolidation — numeric dir names are not valid Lean modules.)
26
26
  npm ci && npm run docs:build # build the whole site (fused modules render)
27
27
  node scripts/seal.ts # review every abstract (must all seal, 0/7)
28
28
  node scripts/release.ts # content-addressed release + signed v1.0.0 tag
29
- node scripts/ledger-sha256.ts # SHA-256 tamper-evident ledger demo
29
+ node scripts/forensics.ts # re-verify the chain: tamper-evident ledger seal
30
30
  ```
31
31
 
32
32
  ## 4. npm (your account) — publishing is fused to the seal gate
package/DEVELOP.md CHANGED
@@ -27,7 +27,7 @@ development honest.
27
27
 
28
28
  ## What you keep
29
29
 
30
- - **Attribution** (CC BY-NC 4.0). Your content-address is your provenance — it can't be quietly lost.
30
+ - **Attribution** (CC BY-NC-ND 4.0). Your content-address is your provenance — it can't be quietly lost.
31
31
  - **Commercial use** = the two coins (`110 − 108 = 2`), reinvested in development.
32
32
 
33
33
  > Honest: contribution here is public and verifiable, and the gates keep it truthful. Nothing lets
package/LICENSE CHANGED
@@ -1,25 +1,26 @@
1
- Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)
1
+ Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)
2
2
 
3
3
  Copyright (c) 2026 Tsvetan Rouschev
4
4
 
5
5
  This work — code, text, and figures in this repository — is licensed under the
6
- Creative Commons Attribution-NonCommercial 4.0 International License.
6
+ Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
7
7
 
8
8
  You are free to:
9
9
  • Share — copy and redistribute the material in any medium or format
10
- • Adapt — remix, transform, and build upon the material
11
10
 
12
11
  Under the following terms:
13
12
  • Attribution — You must give appropriate credit to Tsvetan Rouschev, provide a
14
13
  link to this license, and indicate if changes were made.
15
14
  • NonCommercial — You may not use the material for commercial purposes without
16
15
  separate permission from the author.
16
+ • NoDerivatives — If you remix, transform, or build upon the material, you may
17
+ not distribute the modified material.
17
18
 
18
19
  No additional restrictions — you may not apply legal terms or technological
19
20
  measures that legally restrict others from doing anything the license permits.
20
21
 
21
- Full legal code: https://creativecommons.org/licenses/by-nc/4.0/legalcode
22
- Human-readable deed: https://creativecommons.org/licenses/by-nc/4.0/
22
+ Full legal code: https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode
23
+ Human-readable deed: https://creativecommons.org/licenses/by-nc-nd/4.0/
23
24
 
24
25
  Commercial licensing ("the two coins", 110 − 108 = −χ of the genus-2 surface):
25
26
  for any commercial use, contact the author — ceccec@psg.bg.
package/PRIOR-ART.md ADDED
@@ -0,0 +1,149 @@
1
+ ---
2
+ title: Prior art
3
+ description: What this deposit restates from named earlier work, what it claims as its own, and why claiming is not the same as establishing novelty.
4
+ head:
5
+ - ['meta', { name: 'robots', content: 'index, follow' }]
6
+ ---
7
+ # Prior art — what is restated, what is claimed, and the difference
8
+
9
+ Of 628 machine-checked declarations, **619** restate work that already has an author and
10
+ **9** are about this deposit's own construction. Each source file declares which it is, in its own
11
+ frontmatter; [`src/proof/priorart.lean`](https://github.com/ceccec/millennium-solutions/blob/main/src/proof/priorart.lean)
12
+ holds the same partition as a table the kernel decides over, and the build fails if the two disagree.
13
+
14
+ ## What is claimed
15
+
16
+ **Priority, which is evidenced.** A dated, content-addressed publication: the DOI fixes the date, the
17
+ append-only receipt chain fixes which statement was published, and anyone can recompute either. Priority says
18
+ *this was published, in this form, by this date*.
19
+
20
+ **Not novelty, which is not.** Nothing here can decide that no earlier work states a result — a kernel decides
21
+ propositions over finite domains, it does not search the literature. `noveltyEstablished = 0` is a theorem in
22
+ `priorart.lean` for the same reason `provenHere = 0` is one: the boundary is checked on every run rather
23
+ than remembered. **No prior art known to the author** is a fact about the author. **No prior art exists** is a
24
+ fact about the world, and this deposit does not assert it.
25
+
26
+ ### The partition, which must be read as three numbers and never as one
27
+
28
+ | | theorems |
29
+ |---|---|
30
+ | attributed to named earlier work | **619** |
31
+ | unclassified — no search performed, status unknown | **9** |
32
+ | claimed as novel | **0** |
33
+
34
+ **Zero claims is not full attribution.** Stated alone, "this deposit claims no novelty" reads as a concession
35
+ that everything here already has an author. It is not that. **9** theorems have had no prior-art
36
+ search at all, so their status is unknown rather than conceded — and of the 25 distinct years the
37
+ attributions carry, **23** predate the DOI system (2000); the earliest is 628. "Every
38
+ theorem has registered prior art" is therefore not merely unproven here, it is impossible. The zero has exactly one meaning: **nobody has
39
+ looked.** It is a statement about work not done, not about work found.
40
+
41
+ `zero_claims_is_not_full_attribution` decides those two facts together in the kernel, so the count and its
42
+ caveat cannot be separated by an edit.
43
+
44
+ A source may claim novelty only if it names a prior-art search that was actually performed — what was
45
+ searched, where, and when. An earlier version of this page claimed novelty for 1 sources and
46
+ 9 theorems on the strength of their own self-description, with nobody having looked. Asserting
47
+ that nothing earlier exists because no one went to check is the same defect as asserting a proof because no
48
+ one went to read it.
49
+
50
+ ## Restated from named earlier work — 31 sources, 619 theorems
51
+
52
+ No novelty is claimed over any of these. What is done here is to decide each over a stated finite domain,
53
+ which is a contribution of verification, not of discovery.
54
+
55
+ <table><thead><tr><th>source</th><th>theorems</th><th>domain</th><th>whose work</th></tr></thead><tbody>
56
+ <tr><td><code>address.lean</code></td><td>18</td><td>content addressing</td><td>composes FNV-1a (Fowler, Noll, Vo, 1991) with the Merkle hash tree (Merkle, 1979)</td></tr>
57
+ <tr><td><code>coin.lean</code></td><td>12</td><td>the method of complements</td><td>the reflection d ↦ 10 − d is the TEN'S COMPLEMENT, and its sibling 9 − d the nines' complement — the method of complements, used to turn subtraction into addition in Pascal's calculator (1642), the Comptometer and the Curta, and in modern computer arithmetic. That it is an involution with a single fixed point is the property those machines rely on. Searched 2026-09-04, term "method of complements / nines' complement / ten's complement"; prior art found and credited</td></tr>
58
+ <tr><td><code>demand.lean</code></td><td>8</td><td>elementary number theory</td><td>the named results the search data asks for — Bézout’s identity (Étienne Bézout, 1779; Bachet, 1624), the Chinese remainder theorem (Sunzi, c. 3rd–5th century), and others named in their theorems</td></tr>
59
+ <tr><td><code>demand2.lean</code></td><td>8</td><td>elementary number theory, second tier</td><td>Wilson’s theorem — John Wilson; first proved by Joseph-Louis Lagrange, 1771; the Catalan conjecture on consecutive perfect powers — Eugène Catalan, 1844; proved by Preda Mihăilescu, 2002</td></tr>
60
+ <tr><td><code>demand3.lean</code></td><td>7</td><td>elementary number theory, named results</td><td>Legendre’s three-square theorem — Adrien-Marie Legendre, 1797; Carmichael numbers — Robert Carmichael, 1910; amicable pairs — known to antiquity</td></tr>
61
+ <tr><td><code>elementary.lean</code></td><td>32</td><td>elementary number theory and combinatorial game theory</td><td>Euclid (Elements IX.36) and Euler for the even perfect numbers; the amicable pair</td></tr>
62
+ <tr><td><code>energy.lean</code></td><td>19</td><td>electrochemistry and combustion</td><td>the laws of electrolysis — Michael Faraday, 1834; the enthalpy of combustion of hydrogen, standard physical chemistry</td></tr>
63
+ <tr><td><code>families.lean</code></td><td>41</td><td>modular arithmetic, quantified</td><td>quantifies the ℤ/9 arithmetic above; the underlying results are Fermat’s, Euler’s and Gauss’s</td></tr>
64
+ <tr><td><code>fnv.lean</code></td><td>13</td><td>non-cryptographic hashing</td><td>FNV-1a — Glenn Fowler, Landon Curt Noll and Phong Vo, 1991</td></tr>
65
+ <tr><td><code>generated.lean</code></td><td>13</td><td>elementary number theory — the unit group of ℤ/9 and the doubling orbit</td><td>the structure underneath is standard and is credited. The doubling orbit</td></tr>
66
+ <tr><td><code>imagined.lean</code></td><td>118</td><td>elementary number theory — the unit group of Z/9</td><td>the doubling orbit 1,2,4,8,7,5 is the cyclic group U(9), which is cyclic of order 6 generated by 2, with units {1,2,4,5,7,8} = φ(9); 2 and 5 are its only generators. Standard elementary number theory, in Gauss and in every abstract-algebra text. The closure statements quantify that structure. Searched 2026-09-04, term "multiplicative group of units mod 9 cyclic order 6 generated by 2"; prior art found and credited</td></tr>
67
+ <tr><td><code>index.lean</code></td><td>11</td><td>elementary number theory — the unit group of ℤ/9 and the doubling orbit</td><td>the structure underneath is standard and is credited. The doubling orbit</td></tr>
68
+ <tr><td><code>involution.lean</code></td><td>8</td><td>elementary group theory — orbit decomposition of an order-two permutation</td><td>that a permutation of order two decomposes a finite set into fixed points and</td></tr>
69
+ <tr><td><code>ledgerclaims.lean</code></td><td>8</td><td>hash trees and membership proofs</td><td>`membership_grows_by_one_seal_per_doubling` and `membership_is_logarithmic_not_linear`</td></tr>
70
+ <tr><td><code>light.lean</code></td><td>11</td><td>metrology — the International System of Units</td><td>the exact numerical values below are DEFINITIONS adopted by the Conférence Générale des</td></tr>
71
+ <tr><td><code>mechanical.lean</code></td><td>107</td><td>Boolean algebra and elementary modular arithmetic</td><td>the Boolean rows are De Morgan's laws — Augustus De Morgan, 1847 — written in the arithmetic of {0,1}; the group rows are the additive group of Z/9. Both long prior. Searched 2026-09-04, terms "De Morgan's laws boolean algebra" and "additive group mod 9"; prior art found and credited</td></tr>
72
+ <tr><td><code>merkaba.lean</code></td><td>8</td><td>elementary group theory — subgroups and cosets of Z/9</td><td>the partition into {3,6,9} and two three-element classes closed under doubling is the subgroup and coset structure of Z/9 under the action of U(9); Lagrange. One theorem already credits Euler for the polyhedron formula. Searched 2026-09-04; prior art found and credited</td></tr>
73
+ <tr><td><code>merkle.lean</code></td><td>12</td><td>hash trees and membership proofs</td><td>the hash tree — Ralph Merkle, 1979 (thesis); CRYPTO 1987</td></tr>
74
+ <tr><td><code>nim.lean</code></td><td>10</td><td>combinatorial game theory</td><td>Nim — Charles L. Bouton, 1901; the Sprague–Grundy theorem — Roland Sprague, 1935 and Patrick M. Grundy, 1939</td></tr>
75
+ <tr><td><code>phenomena.lean</code></td><td>4</td><td>metrology and classical physical chemistry</td><td>the SI base quantities and their defining constants are definitions of the Conférence</td></tr>
76
+ <tr><td><code>quantum.lean</code></td><td>12</td><td>canonical forms and order-invariant commitments</td><td>sorting a multiset into a canonical order BEFORE folding it is standard practice, not a</td></tr>
77
+ <tr><td><code>reach.lean</code></td><td>4</td><td>elementary set theory — the naturals are not exhausted by any finite list</td><td>that no finite set contains every natural number is Euclid's argument in form and is as</td></tr>
78
+ <tr><td><code>recovered.lean</code></td><td>15</td><td>elementary number theory — the unit group of ℤ/9</td><td>every fact here is standard: the units of ℤ/9 are {1,2,4,5,7,8}, their product is −1</td></tr>
79
+ <tr><td><code>reversal.lean</code></td><td>9</td><td>elementary arithmetic</td><td>digit reversal and digit sums; casting out nines, in use by the 12th century</td></tr>
80
+ <tr><td><code>rights.lean</code></td><td>9</td><td>copyright law — rights arising without formality</td><td>this file already NAMED its prior art in prose while the attribution table recorded none.</td></tr>
81
+ <tr><td><code>sequences.lean</code></td><td>12</td><td>integer sequences and identities</td><td>Cassini’s identity — G. D. Cassini, 1680; Lucas sequences — Édouard Lucas, 1878; the Brahmagupta–Fibonacci identity — Brahmagupta, 628; Pascal’s triangle mod 2 — Blaise Pascal, 1654</td></tr>
82
+ <tr><td><code>speed.lean</code></td><td>10</td><td>hash trees and membership proofs</td><td>the structural claim is Merkle's and is credited here as merkle.lean already credits it:</td></tr>
83
+ <tr><td><code>split.lean</code></td><td>19</td><td>elementary number theory — the unit group of ℤ/9</td><td>the classification this file rests on is standard and is credited: the units of ℤ/9 are</td></tr>
84
+ <tr><td><code>theorems.lean</code></td><td>8</td><td>the method of complements</td><td>the universal reflection here is the same ten's complement d ↦ 10 − d as coin.lean, with its centre and its pairs summing to ten. Method of complements, long prior to this deposit. Searched 2026-09-04</td></tr>
85
+ <tr><td><code>z9.lean</code></td><td>21</td><td>modular arithmetic</td><td>Fermat’s little theorem — Pierre de Fermat, 1640; Euler’s theorem — Leonhard Euler, 1763; primitive roots — Carl Friedrich Gauss, 1801</td></tr>
86
+ <tr><td><code>z9plus.lean</code></td><td>32</td><td>modular arithmetic and periodicity</td><td>digital roots (casting out nines) — in use by the 12th century; the Pisano period — after Leonardo Pisano; studied by Joseph-Louis Lagrange, 1774</td></tr>
87
+ </tbody></table>
88
+
89
+ ### The domains this touches
90
+
91
+ - **Boolean algebra and elementary modular arithmetic** — 107 theorems, in `mechanical.lean`
92
+ - **canonical forms and order-invariant commitments** — 12 theorems, in `quantum.lean`
93
+ - **combinatorial game theory** — 10 theorems, in `nim.lean`
94
+ - **content addressing** — 18 theorems, in `address.lean`
95
+ - **copyright law — rights arising without formality** — 9 theorems, in `rights.lean`
96
+ - **electrochemistry and combustion** — 19 theorems, in `energy.lean`
97
+ - **elementary arithmetic** — 9 theorems, in `reversal.lean`
98
+ - **elementary group theory — orbit decomposition of an order-two permutation** — 8 theorems, in `involution.lean`
99
+ - **elementary group theory — subgroups and cosets of Z/9** — 8 theorems, in `merkaba.lean`
100
+ - **elementary number theory** — 8 theorems, in `demand.lean`
101
+ - **elementary number theory and combinatorial game theory** — 32 theorems, in `elementary.lean`
102
+ - **elementary number theory — the unit group of Z/9** — 118 theorems, in `imagined.lean`
103
+ - **elementary number theory — the unit group of ℤ/9** — 34 theorems, in `recovered.lean`, `split.lean`
104
+ - **elementary number theory — the unit group of ℤ/9 and the doubling orbit** — 24 theorems, in `generated.lean`, `index.lean`
105
+ - **elementary number theory, named results** — 7 theorems, in `demand3.lean`
106
+ - **elementary number theory, second tier** — 8 theorems, in `demand2.lean`
107
+ - **elementary set theory — the naturals are not exhausted by any finite list** — 4 theorems, in `reach.lean`
108
+ - **hash trees and membership proofs** — 30 theorems, in `ledgerclaims.lean`, `merkle.lean`, `speed.lean`
109
+ - **integer sequences and identities** — 12 theorems, in `sequences.lean`
110
+ - **metrology and classical physical chemistry** — 4 theorems, in `phenomena.lean`
111
+ - **metrology — the International System of Units** — 11 theorems, in `light.lean`
112
+ - **modular arithmetic** — 21 theorems, in `z9.lean`
113
+ - **modular arithmetic and periodicity** — 32 theorems, in `z9plus.lean`
114
+ - **modular arithmetic, quantified** — 41 theorems, in `families.lean`
115
+ - **non-cryptographic hashing** — 13 theorems, in `fnv.lean`
116
+ - **the method of complements** — 20 theorems, in `coin.lean`, `theorems.lean`
117
+
118
+ Each is a field with an existing literature, and each is where this deposit's contribution actually sits: not
119
+ a new result, but an exhaustive machine-checked decision of a known one over a **stated finite domain**. That
120
+ is worth saying precisely, because it is both smaller than a discovery claim and more checkable than one.
121
+
122
+ Author and year are given rather than a resolver identifier. Asserting a DOI for someone else's paper without
123
+ verifying it would be a fabricated citation, and this is the worst document in the deposit to put one in.
124
+
125
+ ## This deposit's own construction — 1 sources, 9 theorems, none claimed
126
+
127
+ The ℤ/9 vortex framework, its ledger, its receipts, and the enumeration its own generators proposed. These are
128
+ **unclassified**: no prior-art search has been performed for them, so nothing is claimed about them either
129
+ way. They are listed because a reader deserves to know which parts of the deposit are its own construction —
130
+ not as an assertion that no one has been here before.
131
+
132
+ To move a source out of this table, add `-- prior_art_search:` to it naming the search performed; the build
133
+ refuses a `none-known` declaration that does not carry one.
134
+
135
+ <table><thead><tr><th>source</th><th>theorems</th><th>note</th></tr></thead><tbody>
136
+ <tr><td><code>priorart.lean</code></td><td>9</td><td>THE PRACTICE IS PRIOR ART AND IS CREDITED. Recording provenance and attribution per</td></tr>
137
+ </tbody></table>
138
+
139
+ ## Defensive publication
140
+
141
+ These are decidable mathematical facts, and mathematical methods as such are excluded subject matter under
142
+ EPC Art. 52(2)(a) — see [Rights](/rights). Publishing them openly and with a date is **defensive publication**:
143
+ it keeps them available to everyone rather than granting anyone a monopoly. That is the purpose of the
144
+ priority claim above, and it is the whole of it.
145
+
146
+ ---
147
+
148
+ Partition seal `a77e6377-37a1-86ef-b493-c2fe0d2e7aba` · recompute with `node scripts/priorart.ts` · the kernel re-decides
149
+ `priorart.lean` on every run. A content-address proves integrity, not truth. `entails → 0/7`.