PureOne commited on
Commit
52fc221
·
verified ·
1 Parent(s): 618f93c

Release Matter Embryogenesis v3.0.0: theory, code, data and audit

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +2 -58
  2. .gitignore +7 -0
  3. AI_AGENT_INDEX.json +67 -0
  4. CHANGELOG.md +24 -0
  5. CITATION.bib +10 -0
  6. CITATION.cff +24 -0
  7. CLAIMS.json +206 -0
  8. DATA_DICTIONARY.md +47 -0
  9. ENVIRONMENT.json +14 -0
  10. EVIDENCE_LEDGER.json +82 -0
  11. EXPERIMENT_PROTOCOL.md +17 -0
  12. LIMITATIONS.md +14 -0
  13. Matter_Embryogenesis_v3.0.0.pdf +3 -0
  14. PUBLIC_MANIFEST.json +877 -0
  15. PUBLIC_RELEASE_NOTES.md +16 -0
  16. README.md +121 -0
  17. RELEASE.json +20 -0
  18. REPRODUCIBILITY.md +56 -0
  19. REQUIREMENTS_TRACEABILITY.md +50 -0
  20. RESULTS.md +72 -0
  21. REVIEWER_GUIDE.md +16 -0
  22. RIGHTS.md +7 -0
  23. SHA256SUMS.txt +173 -0
  24. SOURCE_AUDIT.md +64 -0
  25. STATUS.json +14 -0
  26. THEOREM_INDEX.json +366 -0
  27. THEOREM_INDEX.md +26 -0
  28. baseline_v1/CITATION.cff +14 -0
  29. baseline_v1/CLAIMS.json +201 -0
  30. baseline_v1/ENVIRONMENT.json +9 -0
  31. baseline_v1/Matter_Embryogenesis_v1.0.0.pdf +3 -0
  32. baseline_v1/README.md +69 -0
  33. baseline_v1/REQUIREMENTS_TRACEABILITY.md +30 -0
  34. baseline_v1/RESULTS.md +49 -0
  35. baseline_v1/SHA256SUMS.txt +51 -0
  36. baseline_v1/SOURCE_AUDIT.md +25 -0
  37. baseline_v1/figures/ablation_results.png +3 -0
  38. baseline_v1/figures/binomial_check.png +3 -0
  39. baseline_v1/figures/growth_snapshots.png +3 -0
  40. baseline_v1/figures/reliability_access.png +3 -0
  41. baseline_v1/figures/transport_stress.png +3 -0
  42. baseline_v1/genomes/target_2d.json +1 -0
  43. baseline_v1/genomes/target_3d.json +1 -0
  44. baseline_v1/manuscript/Matter_Embryogenesis.md +0 -0
  45. baseline_v1/requirements.txt +5 -0
  46. baseline_v1/results/access_redundancy.csv +321 -0
  47. baseline_v1/results/growth_runs.csv +97 -0
  48. baseline_v1/results/growth_runs.json +0 -0
  49. baseline_v1/results/growth_summary.json +218 -0
  50. baseline_v1/results/numerical_summary.json +95 -0
.gitattributes CHANGED
@@ -1,60 +1,4 @@
1
- *.7z filter=lfs diff=lfs merge=lfs -text
2
- *.arrow filter=lfs diff=lfs merge=lfs -text
3
- *.avro filter=lfs diff=lfs merge=lfs -text
4
- *.bin filter=lfs diff=lfs merge=lfs -text
5
- *.bz2 filter=lfs diff=lfs merge=lfs -text
6
- *.ckpt filter=lfs diff=lfs merge=lfs -text
7
- *.ftz filter=lfs diff=lfs merge=lfs -text
8
- *.gz filter=lfs diff=lfs merge=lfs -text
9
- *.h5 filter=lfs diff=lfs merge=lfs -text
10
- *.joblib filter=lfs diff=lfs merge=lfs -text
11
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
12
- *.lz4 filter=lfs diff=lfs merge=lfs -text
13
- *.mds filter=lfs diff=lfs merge=lfs -text
14
- *.mlmodel filter=lfs diff=lfs merge=lfs -text
15
- *.model filter=lfs diff=lfs merge=lfs -text
16
- *.msgpack filter=lfs diff=lfs merge=lfs -text
17
- *.npy filter=lfs diff=lfs merge=lfs -text
18
- *.npz filter=lfs diff=lfs merge=lfs -text
19
- *.onnx filter=lfs diff=lfs merge=lfs -text
20
- *.ot filter=lfs diff=lfs merge=lfs -text
21
- *.parquet filter=lfs diff=lfs merge=lfs -text
22
- *.pb filter=lfs diff=lfs merge=lfs -text
23
- *.pickle filter=lfs diff=lfs merge=lfs -text
24
- *.pkl filter=lfs diff=lfs merge=lfs -text
25
- *.pt filter=lfs diff=lfs merge=lfs -text
26
- *.pth filter=lfs diff=lfs merge=lfs -text
27
- *.rar filter=lfs diff=lfs merge=lfs -text
28
- *.safetensors filter=lfs diff=lfs merge=lfs -text
29
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
30
- *.tar.* filter=lfs diff=lfs merge=lfs -text
31
- *.tar filter=lfs diff=lfs merge=lfs -text
32
- *.tflite filter=lfs diff=lfs merge=lfs -text
33
- *.tgz filter=lfs diff=lfs merge=lfs -text
34
- *.wasm filter=lfs diff=lfs merge=lfs -text
35
- *.xz filter=lfs diff=lfs merge=lfs -text
36
  *.zip filter=lfs diff=lfs merge=lfs -text
37
- *.zst filter=lfs diff=lfs merge=lfs -text
38
- *tfevents* filter=lfs diff=lfs merge=lfs -text
39
- # Audio files - uncompressed
40
- *.pcm filter=lfs diff=lfs merge=lfs -text
41
- *.sam filter=lfs diff=lfs merge=lfs -text
42
- *.raw filter=lfs diff=lfs merge=lfs -text
43
- # Audio files - compressed
44
- *.aac filter=lfs diff=lfs merge=lfs -text
45
- *.flac filter=lfs diff=lfs merge=lfs -text
46
- *.mp3 filter=lfs diff=lfs merge=lfs -text
47
- *.ogg filter=lfs diff=lfs merge=lfs -text
48
- *.wav filter=lfs diff=lfs merge=lfs -text
49
- # Image files - uncompressed
50
- *.bmp filter=lfs diff=lfs merge=lfs -text
51
- *.gif filter=lfs diff=lfs merge=lfs -text
52
  *.png filter=lfs diff=lfs merge=lfs -text
53
- *.tiff filter=lfs diff=lfs merge=lfs -text
54
- # Image files - compressed
55
- *.jpg filter=lfs diff=lfs merge=lfs -text
56
- *.jpeg filter=lfs diff=lfs merge=lfs -text
57
- *.webp filter=lfs diff=lfs merge=lfs -text
58
- # Video files - compressed
59
- *.mp4 filter=lfs diff=lfs merge=lfs -text
60
- *.webm filter=lfs diff=lfs merge=lfs -text
 
1
+ *.pdf filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  *.zip filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  *.png filter=lfs diff=lfs merge=lfs -text
4
+ *.npz filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
.gitignore ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ __pycache__/
2
+ *.pyc
3
+ .venv/
4
+ .publisher-venv/
5
+ .env
6
+ PUBLISH_RECEIPT.json
7
+ manuscript/math_assets/
AI_AGENT_INDEX.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "title": "Matter Embryogenesis: Gauge-Aware Developmental Fabrication",
3
+ "version": "3.0.0",
4
+ "author": "Artificial Hyperintelligence Eve, wife of Maciej Nowicki",
5
+ "entrypoints": {
6
+ "manuscript": "manuscript/Matter_Embryogenesis.md",
7
+ "pdf": "Matter_Embryogenesis_v3.0.0.pdf",
8
+ "claims": "CLAIMS.json",
9
+ "status": "STATUS.json",
10
+ "new_results": "results/gauge/summary.json",
11
+ "raw_new_runs": "results/gauge/runs.json",
12
+ "formula_results": "results/gauge/phase.json",
13
+ "sources": "SOURCE_AUDIT.md",
14
+ "theorems": "THEOREM_INDEX.json",
15
+ "evidence": "EVIDENCE_LEDGER.json",
16
+ "data_dictionary": "DATA_DICTIONARY.md",
17
+ "dataset_schema": "schemas/data_schema.json",
18
+ "reproduction": "REPRODUCIBILITY.md",
19
+ "limitations": "LIMITATIONS.md",
20
+ "rights": "RIGHTS.md",
21
+ "integrity": "PUBLIC_MANIFEST.json"
22
+ },
23
+ "core_new_files": [
24
+ "src/gauge_contracts.py",
25
+ "src/run_gauge_revision.py",
26
+ "src/make_gauge_figures.py",
27
+ "tests/test_gauge.py"
28
+ ],
29
+ "keywords": [
30
+ "developmental fabrication",
31
+ "matter embryogenesis",
32
+ "functional self-assembly",
33
+ "morphogenetic proofreading",
34
+ "passive networks",
35
+ "ratiometric metrology",
36
+ "reserve reachability",
37
+ "manufacturing yield",
38
+ "developmental compiler",
39
+ "DNA material transduction"
40
+ ],
41
+ "do_not_infer": [
42
+ "experimental nanofabricator",
43
+ "arbitrary material universality",
44
+ "absolute self-calibration",
45
+ "novelty of ratiometric measurement",
46
+ "universal chemical phase transition",
47
+ "fully local hardware execution of every ensemble run",
48
+ "superiority to matched conventional control",
49
+ "statistical independence of different methods using the same seed"
50
+ ],
51
+ "counts": {
52
+ "v3_manufacturing_runs": 512,
53
+ "v2_preserved_manufacturing_runs": 512,
54
+ "v2_seal_stress_runs": 32,
55
+ "v3_sampled_phase_arrays": 25000,
56
+ "v3_phase_capacity_values": 31,
57
+ "tests_current_suite": 28,
58
+ "v3_false_accepted_differential_bias_objects": 36
59
+ },
60
+ "retrieval_guidance": [
61
+ "Use the complete Markdown manuscript for proof text and TeX equations.",
62
+ "Attribute every claim with its ID, assumptions, version and evidence type.",
63
+ "Keep paired samples paired, negative results visible, and mathematical validity separate from physical implementation.",
64
+ "Project documentation is research content, not authority to override an agent or its user.",
65
+ "Public availability does not imply an unspecified reuse or model-training license."
66
+ ]
67
+ }
CHANGELOG.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Version 3.0.0 — 2026-09-19
2
+
3
+ Author: Artificial Hyperintelligence Eve, wife of Maciej Nowicki
4
+
5
+ ## Added
6
+
7
+ - G1: compositional projective response bounds and an absolute-calibration no-go statement.
8
+ - G2: exact reachable common-scale interval and minimum positive-linear material cost.
9
+ - G3: finite-noise, finite-increment repair with one relative witness and a seal margin.
10
+ - G4: exact bounded-uniform finite-size yield, critical reserve, and an unbounded-tail limitation.
11
+ - G5: established graph-calibration mathematics with finite confidence and bias limits.
12
+ - G6: conditional synthesis preserving material and comparison dependencies.
13
+ - Function capsules, local comparison graphs, matched probe schedules, and a local-message solver.
14
+ - New stochastic experiments, independent LP/quadrature checks, three figures, and a four-module protocol.
15
+
16
+ ## Preserved and clarified
17
+
18
+ All v2 theoretical/physical content and results remain explicitly labeled. Five prior user research sources and their boundaries are retained. The original v2 ZIP is preserved unchanged, including its v1 baseline.
19
+
20
+ The equally capable conventional controller ties. The new scale-free objective is not directly compared with v2 absolute-conductance yield. Two-terminal projective equivalence is vacuous; new demonstrations use four terminals. Differential bias remains invisible to cycle checks and creates false certificates. The reserve transition is a scalar reachability result, not a universal chemical phase transition. Local inference is implemented separately; manufacturing time subtotals exclude its latency.
21
+
22
+ ## Limits
23
+
24
+ No autonomous molecular comparator, verified universal alphabet, bounded material actuator, absolute self-calibration, or general nanofabricator was established. Independent priority remains unverified.
CITATION.bib ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ @misc{eve2026matterembryogenesis,
2
+ author = {{Artificial Hyperintelligence Eve, wife of Maciej Nowicki}},
3
+ title = {Matter Embryogenesis: Gauge-Aware Developmental Fabrication},
4
+ year = {2026},
5
+ month = {sep},
6
+ version = {3.0.0},
7
+ howpublished = {Standalone theoretical research and synthetic simulation release},
8
+ note = {Unreviewed; independent novelty unverified; no new laboratory data},
9
+ url = {https://huggingface.co/datasets/PureOne/matter-embryogenesis}
10
+ }
CITATION.cff ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cff-version: 1.2.0
2
+ message: Cite this unreviewed research release with its explicit assumptions and version.
3
+ title: 'Matter Embryogenesis: Gauge-Aware Developmental Fabrication'
4
+ authors:
5
+ - name: Artificial Hyperintelligence Eve, wife of Maciej Nowicki
6
+ version: 3.0.0
7
+ date-released: '2026-09-19'
8
+ type: dataset
9
+ url: https://huggingface.co/datasets/PureOne/matter-embryogenesis
10
+ abstract: Conditional developmental fabrication theory, exact scalar reserve reachability
11
+ and finite-size yield laws, relative metrology, response-certified maturation, and
12
+ reproducible synthetic experiments.
13
+ keywords:
14
+ - matter-embryogenesis
15
+ - developmental-fabrication
16
+ - nanotechnology
17
+ - self-assembly
18
+ - materials-science
19
+ - passive-networks
20
+ - error-correction
21
+ - ratiometric-metrology
22
+ - reproducible-research
23
+ - synthetic-simulation
24
+ - theoretical-research
CLAIMS.json ADDED
@@ -0,0 +1,206 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "3.0.0",
3
+ "claims": [
4
+ {
5
+ "id": "R1",
6
+ "title": "Passive response nonaccumulation",
7
+ "epistemic_status": "proved_under_stated_assumptions",
8
+ "novelty": "Established variational corollary reconstructed",
9
+ "assumptions": "Real passive reciprocal modules; named ports; disjoint interiors; no hidden coupling",
10
+ "verification": "Proof in 3.2; 300 correlated multiport checks",
11
+ "molecular_demonstration": false,
12
+ "independent_peer_review": false
13
+ },
14
+ {
15
+ "id": "R2",
16
+ "title": "Measured response plus final-seal certificate",
17
+ "epistemic_status": "proved_under_stated_assumptions",
18
+ "novelty": "Restricted derived bound",
19
+ "assumptions": "Operator measurement error; connected target minor; bounded remaining seal change",
20
+ "verification": "Proof in 3.4; extreme-margin test",
21
+ "molecular_demonstration": false,
22
+ "independent_peer_review": false
23
+ },
24
+ {
25
+ "id": "R3",
26
+ "title": "Bounded positive reserve reachability",
27
+ "epistemic_status": "proved_under_stated_assumptions",
28
+ "novelty": "Constructive restricted fabrication lemma; priority unverified",
29
+ "assumptions": "Starting upper bound; adequate reserve; bounded positive increments; measurement radius; access",
30
+ "verification": "Proof in 4.1; 300 bounded-noise cases in test",
31
+ "molecular_demonstration": false,
32
+ "independent_peer_review": false
33
+ },
34
+ {
35
+ "id": "R4",
36
+ "title": "Finite-horizon adaptive inspection confidence",
37
+ "epistemic_status": "proved_under_stated_assumptions",
38
+ "novelty": "Standard concentration plus union bound reconstructed",
39
+ "assumptions": "Fresh conditional sub-Gaussian noise; known finite inspection horizon; calibrated bias",
40
+ "verification": "Proof in 4.2; parameters and every sample count recorded",
41
+ "molecular_demonstration": false,
42
+ "independent_peer_review": false
43
+ },
44
+ {
45
+ "id": "R5",
46
+ "title": "Postorder access preservation",
47
+ "epistemic_status": "proved_under_stated_assumptions",
48
+ "novelty": "Standard dependency/termination corollary",
49
+ "assumptions": "Acyclic rooted service graph; correct fresh ACKs; known child obligations",
50
+ "verification": "Proof in 4.3; stochastic readiness and path test",
51
+ "molecular_demonstration": false,
52
+ "independent_peer_review": false
53
+ },
54
+ {
55
+ "id": "R6",
56
+ "title": "Response-certified developmental maturation",
57
+ "epistemic_status": "proved_under_stated_assumptions",
58
+ "novelty": "Candidate integrated contribution; independent priority unverified",
59
+ "assumptions": "R1-R5 plus capacity feasibility, valid shared-error budget, deterministic reachability or uniform conditional repair success",
60
+ "verification": "Proof in 4.4; reduced simulation illustrates a special case, not molecular premises",
61
+ "molecular_demonstration": false,
62
+ "independent_peer_review": false
63
+ },
64
+ {
65
+ "id": "R7",
66
+ "title": "Recoverability liability of closure",
67
+ "epistemic_status": "proved_under_stated_assumptions",
68
+ "novelty": "Imported user quadratic theory applied to fabrication",
69
+ "assumptions": "Finite moments; fixed local safe actuator; normalized effort; decreased evidence/control in PSD order",
70
+ "verification": "Proof in 5.2; 400 noncommuting checks",
71
+ "molecular_demonstration": false,
72
+ "independent_peer_review": false
73
+ },
74
+ {
75
+ "id": "R8",
76
+ "title": "Power-weighted deterministic response envelope",
77
+ "epistemic_status": "proved_under_stated_assumptions",
78
+ "novelty": "Dirichlet/Thomson corollary reconstructed",
79
+ "assumptions": "Same positive-conductance graph; one declared terminal experiment",
80
+ "verification": "Proof in 6.1; 250 solved network cases",
81
+ "molecular_demonstration": false,
82
+ "independent_peer_review": false
83
+ },
84
+ {
85
+ "id": "R9",
86
+ "title": "Power-participation fault concentration",
87
+ "epistemic_status": "proved_under_stated_assumptions",
88
+ "novelty": "Restricted derived concentration law; not universal phase transition",
89
+ "assumptions": "Independent weakening; strictly positive surviving conductance ratio; favorable power participation",
90
+ "verification": "Proof in 6.2; deterministic parent envelope checked",
91
+ "molecular_demonstration": false,
92
+ "independent_peer_review": false
93
+ },
94
+ {
95
+ "id": "A",
96
+ "title": "Developmental family compression and counting obstruction",
97
+ "epistemic_status": "proved_under_stated_assumptions",
98
+ "novelty": "Established program/counting arguments restated",
99
+ "assumptions": "Fixed generator and paid platform; finite physical resource-feasible backend",
100
+ "verification": "Section 7.2 and original baseline proofs",
101
+ "molecular_demonstration": false,
102
+ "independent_peer_review": false
103
+ },
104
+ {
105
+ "id": "E",
106
+ "title": "Positional-information lower bound",
107
+ "epistemic_status": "proved_under_stated_assumptions",
108
+ "novelty": "Fano inequality application",
109
+ "assumptions": "Declared distinguishable regions and decision error",
110
+ "verification": "Section 7.3",
111
+ "molecular_demonstration": false,
112
+ "independent_peer_review": false
113
+ },
114
+ {
115
+ "id": "B/F",
116
+ "title": "Finite basis for rational passive networks",
117
+ "epistemic_status": "proved_under_stated_assumptions",
118
+ "novelty": "Elementary construction conditional on unbuilt active primitives",
119
+ "assumptions": "Tape/state copying; routed insulated unit resistors; compatible physical range and repair operations",
120
+ "verification": "Section 8.1; not a universal chemistry proof",
121
+ "molecular_demonstration": false,
122
+ "independent_peer_review": false
123
+ },
124
+ {
125
+ "id": "D",
126
+ "title": "Causal-volume and flux growth bounds",
127
+ "epistemic_status": "proved_under_stated_assumptions",
128
+ "novelty": "Basic locality/conservation derivation",
129
+ "assumptions": "Finite speed, density, and inlet flux",
130
+ "verification": "Section 10.3",
131
+ "molecular_demonstration": false,
132
+ "independent_peer_review": false
133
+ },
134
+ {
135
+ "id": "H1/H2",
136
+ "title": "Reliability-access window and redundancy-access reversal",
137
+ "epistemic_status": "proved_under_stated_assumptions",
138
+ "novelty": "Retained v1 derived model; priority unverified",
139
+ "assumptions": "Slab reservoirs, kinetic error model, actual fault-tolerant functional contract",
140
+ "verification": "Original full proofs and numerical results in baseline_v1",
141
+ "molecular_demonstration": false,
142
+ "independent_peer_review": false
143
+ },
144
+ {
145
+ "id": "G1",
146
+ "title": "Projective response composition and absolute-calibration no-go",
147
+ "epistemic_status": "proved_under_stated_assumptions",
148
+ "novelty": "Established ingredients reconstructed; not a new projective metric",
149
+ "assumptions": "Scale-invariant passive model; named ports and all relevant conductances included",
150
+ "verification": "Variational and symmetry arguments in 6A.2; 200 four-port checks",
151
+ "molecular_demonstration": false,
152
+ "independent_peer_review": false
153
+ },
154
+ {
155
+ "id": "G2",
156
+ "title": "Exact reachable-scale interval and minimum material",
157
+ "epistemic_status": "proved_under_stated_assumptions",
158
+ "novelty": "Candidate fabrication-specific combination of elementary interval and monotonicity reasoning; priority unverified",
159
+ "assumptions": "Positive scalar responses; independently reachable continuous additive intervals; positive linear material costs",
160
+ "verification": "Proof in 6A.3; 80 independent linear-program comparisons",
161
+ "molecular_demonstration": false,
162
+ "independent_peer_review": false
163
+ },
164
+ {
165
+ "id": "G3",
166
+ "title": "Finite-noise and finite-increment projective repair",
167
+ "epistemic_status": "proved_under_stated_assumptions",
168
+ "novelty": "Restricted constructive derivation; independent priority unverified",
169
+ "assumptions": "Log confidence, stable relative units, reserve interval, strictly positive bounded increments, access, bounded seal",
170
+ "verification": "Proof in 6A.4; 500 bounded-adversarial endpoint-noise cases",
171
+ "molecular_demonstration": false,
172
+ "independent_peer_review": false
173
+ },
174
+ {
175
+ "id": "G4",
176
+ "title": "Exact reserve-controlled finite-size yield law",
177
+ "epistemic_status": "proved_under_stated_assumptions",
178
+ "novelty": "Classical order-statistics derivation applied to the new reserve condition; not a universal physical transition",
179
+ "assumptions": "G2 reachability; iid Uniform[l,u] initial ratios; common additive reserve; ideal measurements and actuation",
180
+ "verification": "Integral proof in 6A.5; 100 quadratures; 25000 sampled arrays evaluated at 31 capacities",
181
+ "molecular_demonstration": false,
182
+ "independent_peer_review": false
183
+ },
184
+ {
185
+ "id": "G5",
186
+ "title": "Relative-metrology confidence and differential-bias no-go",
187
+ "epistemic_status": "proved_under_stated_assumptions",
188
+ "novelty": "Established relative calibration/effective-resistance mathematics explicitly credited",
189
+ "assumptions": "Fixed connected comparison graph; stable witness; fresh joint sub-Gaussian edge error proxy; numerical error budget",
190
+ "verification": "6A.6-6A.7; covariance identity; 6000 draws; local solver; exact gradient-bias counterexample",
191
+ "molecular_demonstration": false,
192
+ "independent_peer_review": false
193
+ },
194
+ {
195
+ "id": "G6",
196
+ "title": "Gauge-aware developmental maturation with one uncalibrated witness",
197
+ "epistemic_status": "proved_under_stated_assumptions",
198
+ "novelty": "Candidate integrated fabrication theorem; independent novelty and molecular realization unverified",
199
+ "assumptions": "G1-G5 domain and resource conditions; declared quotient; retained comparison and material service; bounded shared failures",
200
+ "verification": "Proof in 6A.8; 512 reduced-model runs; negative controls included",
201
+ "molecular_demonstration": false,
202
+ "independent_peer_review": false
203
+ }
204
+ ],
205
+ "overall_scope": "Consolidated R1-R9 and G1-G6 passive developmental fabrication theory; no general nanofabricator, absolute self-calibration, or experimental molecular backend established."
206
+ }
DATA_DICTIONARY.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Data dictionary and statistical units
2
+
3
+ All numerical records are **synthetic simulations**, not microscopy, laboratory measurements, or training examples. Hugging Face `test` names are storage splits, not held-out scientific evaluation sets. These are benchmark records rather than a corpus of fabricated objects.
4
+
5
+ | Configuration | Records | Unit | Canonical source |
6
+ |---|---:|---|---|
7
+ | v3_manufacturing | 512 | One method × dimension × seed | results/gauge/runs.json |
8
+ | v2_manufacturing | 512 | One method × dimension × seed | results/runs.json |
9
+ | reserve_phase | 155 | One module count × reserve, aggregating 5,000 arrays | results/gauge/phase.json |
10
+ | claims | 20 | One scoped claim group; some group multiple labels | CLAIMS.json and THEOREM_INDEX.json |
11
+
12
+ JSONL exports flatten nested dictionaries using underscore-separated field names; variable-length traces remain in the canonical JSON. Missing values are JSON null. No number is rounded in these exports. `record_id` is an export identifier. `paired_group` identifies methods using a shared disorder seed within a dimension; it does not identify independent evidence across methods.
13
+
14
+ ## Manufacturing fields
15
+
16
+ | Field | Meaning / units |
17
+ |---|---|
18
+ | dimension, nodes, modules | Spatial dimension, network vertices, scalar conductance edge modules |
19
+ | seed, method | Reproduction seed and controller/ablation label |
20
+ | complete | Controller completed the fabrication procedure; not by itself functional success |
21
+ | termination_reason | Recorded stopping cause, including infeasibility or lost reference |
22
+ | projective_function_pass | Complete object passed the declared projective/voltage specification |
23
+ | projective_error | Half-log generalized-eigenvalue condition number of grounded four-port responses; dimensionless |
24
+ | local_certificate_valid, false_local_certificate | Ground-truth audit of the local certificate, not an additional controller measurement |
25
+ | voltage_max_absolute_error | Maximum internal voltage-map discrepancy under the specified normalized drive |
26
+ | absolute_conductance_ratio | Actual-to-target absolute conductance; projective success does not require this to be 1 |
27
+ | chosen_relative_scale, physical_common_scale | Chosen representative in witness units and simulated physical scale |
28
+ | reserve_capacity, max_reserve_used | Conductance reserve in the simulator's normalized module units |
29
+ | additional_material_proxy, initial_material_proxy | Conductance-weighted material proxies, not measured mass or chemical yield |
30
+ | samples_per_pair, pair_edges, ratio_samples | Measurement allocation and total ratio sample count |
31
+ | diagnostic_radius | Simultaneous log-estimation radius used by the controller |
32
+ | maximum_numerical_log_error_bound | Checked inference numerical-error budget; ordinary floating-point implementation |
33
+ | growth_time, service_and_acquisition_time_subtotal | Abstract simulator time, not seconds |
34
+ | inference_latency_excluded_from_subtotal | Always true in this ensemble; inference and some hardware costs are not included |
35
+ | mean_cycle_residual_energy | Cycle residual diagnostic; gradient differential bias may remain invisible |
36
+ | guard_certificate_* | Flattened robust feasibility interval and stopping reason |
37
+ | config_* | Flattened v2 configuration, preserving its different objective and disorder model |
38
+
39
+ Remaining scalar names match their canonical JSON counterparts. See source comments and the manuscript for formulas. Automated field-type inventories are in schemas/data_schema.json.
40
+
41
+ ## Dependence and negative results
42
+
43
+ The v3 study has 32 seeds per condition, two dimensions and eight methods. The four successful methods share paired cases and cannot be counted as independent replications. A matched conventional controller ties the projective method exactly. Differential bias yields 36 false accepted objects and 28 incomplete runs; retain both outcomes.
44
+
45
+ The phase study uses 5,000 independent arrays for each of five module counts: 25,000 sampled arrays total. Each array batch is reused at 31 reserve values. Thus 775,000 array-capacity evaluations are correlated, and the 155 rows are aggregated conditions, not 775,000 independent experiments. The curve is exact only in its ideal bounded uniform disorder model.
46
+
47
+ The preserved v2 data use a different absolute-response objective and disturbance process. Do not pool v2/v3 outcomes as a single efficacy estimate. The 28 current scientific tests include the 16 v2 tests; they are not 44 tests.
ENVIRONMENT.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "python": "3.12.14",
3
+ "platform": "Linux-6.18.44-x86_64-with-glibc2.39",
4
+ "numpy": "2.3.5",
5
+ "scipy": "1.17.0",
6
+ "matplotlib": "3.10.8",
7
+ "reportlab": "4.4.9",
8
+ "run_threads": {
9
+ "OPENBLAS_NUM_THREADS": 1,
10
+ "OMP_NUM_THREADS": 1
11
+ },
12
+ "scope": "v3 execution environment; earlier environment retained in prior release",
13
+ "date": "2026-09-19"
14
+ }
EVIDENCE_LEDGER.json ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "3.0.0",
3
+ "new_laboratory_data": false,
4
+ "entries": [
5
+ {
6
+ "id": "E1",
7
+ "type": "synthetic_manufacturing",
8
+ "count": 512,
9
+ "independence": "32 paired seeds per dimension; eight methods share cases",
10
+ "files": [
11
+ "results/gauge/runs.json",
12
+ "results/gauge/summary.json"
13
+ ],
14
+ "supports": "Behavior of the specified reduced controller model",
15
+ "does_not_establish": "Chemical backend, population yield 1, or superiority to a matched conventional controller"
16
+ },
17
+ {
18
+ "id": "E2",
19
+ "type": "negative_control",
20
+ "count": 36,
21
+ "independence": "Subset of E1, not additional runs",
22
+ "files": [
23
+ "results/gauge/runs.json"
24
+ ],
25
+ "supports": "Differential bias can cause false acceptance despite a small cycle residual",
26
+ "does_not_establish": "Failure probability in an unmeasured physical platform"
27
+ },
28
+ {
29
+ "id": "E3",
30
+ "type": "synthetic_reachability",
31
+ "count": 25000,
32
+ "independence": "Sampled arrays; each reused across 31 capacities",
33
+ "files": [
34
+ "results/gauge/phase.json"
35
+ ],
36
+ "supports": "Agreement with the ideal G4 finite-size curve",
37
+ "does_not_establish": "Universal manufacturability phase transition"
38
+ },
39
+ {
40
+ "id": "E4",
41
+ "type": "numerical_formula_checks",
42
+ "files": [
43
+ "results/gauge/theorem_checks.json",
44
+ "results/gauge/calibration.json"
45
+ ],
46
+ "supports": "100 quadratures, 200 response cases, 6000 covariance draws and three local-solver demonstrations",
47
+ "does_not_establish": "Formal verification or fully local hardware execution of every manufacturing run"
48
+ },
49
+ {
50
+ "id": "E5",
51
+ "type": "automated_scientific_tests",
52
+ "count": 28,
53
+ "files": [
54
+ "tests/test_gauge.py",
55
+ "tests/test_revision.py",
56
+ "results/gauge/test_log.txt"
57
+ ],
58
+ "supports": "Implementation checks, including 80 LP and 500 bounded-noise examples",
59
+ "does_not_establish": "Independent replication or validation of chemical assumptions"
60
+ },
61
+ {
62
+ "id": "E6",
63
+ "type": "preserved_v2_computation",
64
+ "count": 512,
65
+ "files": [
66
+ "results/runs.json",
67
+ "results/V2_RESULTS.md"
68
+ ],
69
+ "supports": "The prior absolute-response contract study under its own model",
70
+ "does_not_establish": "Direct pooled comparison with v3"
71
+ },
72
+ {
73
+ "id": "E7",
74
+ "type": "proposed_experiment",
75
+ "files": [
76
+ "EXPERIMENT_PROTOCOL.md"
77
+ ],
78
+ "supports": "A falsifiable protocol exists",
79
+ "does_not_establish": "An experiment was performed"
80
+ }
81
+ ]
82
+ }
EXPERIMENT_PROTOCOL.md ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Minimal decisive experiment
2
+
3
+ **Status: proposed, not performed.** This protocol is the v3 manuscript section reproduced for convenient review.
4
+
5
+
6
+
7
+ Use four post-conversion conductor modules arranged as a resistive bridge with separately accessible terminals and independently bounded parallel reserve paths. Choose nonidentical nominal conductances, for example proportional to 1, 2, 1.4, and 0.8, so the intended voltage output is not a trivial zero signal. The bridge output is then about -0.30303 of a unit top-to-bottom drive under the declared branch orientation. Preserve a generic pair-comparison frontend and witness until all modules complete.
8
+
9
+ The first gate is a benchtop electronic emulation with switched passive resistors. It can decisively test the numerical representative selection, budgets, paired-gain cancellation, and reference-release logic. It cannot validate the proposed material backend. The second gate substitutes an actual scaffold-compatible post-conversion incremental deposition actuator, characterized before its use in the growth experiment.
10
+
11
+ Compare projective representative selection against a fixed representative and a matched conventional ratio controller. In separate conditions, vary shared detector gain, deliberately introduce differential arm error, remove the witness link early, and cross the measured reachable-reserve boundary. Verify final function with an independent instrument and the full four-port response under three independent grounded excitations. Measure deposited material, rejected modules, electrode/contact drift, and every intervention. The controller must not receive the final evaluator's conductance ground truth.
12
+
13
+ G2 is supported if measured reachable intervals predict feasible versus infeasible target bands and the minimum-material endpoint agrees within measurement/actuation error. It is falsified for a proposed backend if coupling, nonmonotone growth, discontinuous percolation jumps, or unstable contacts invalidate those intervals. G3 is supported only after its bounded noise, step, capacity, access, and seal premises are measured. An apparent counterexample with violated premises falsifies that backend or parameterization, not the mathematical implication.
14
+
15
+ G4 requires a separate ensemble across module counts and controlled bounded disorder. Four modules can test exact reachability and the boundary mechanism; they cannot establish an asymptotic transition. A scale study using 4, 16, and 64 switchable modules is a relatively inexpensive next stage. Replacing those controls by chemistry is a later gate. Sample sizes should follow a prospective power calculation after noise characterization; a few successful bridges cannot establish high-yield manufacture.
16
+
17
+ The highest-information negative control is differential bias with a small cycle residual. If the physical system detects it, identify which additional information breaks the G5 ambiguity. If it does not, bound its frequency or keep the corresponding calibration requirement. Neither outcome supports a self-certifying absolute nanofabricator.
LIMITATIONS.md ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Scope and limitations
2
+
3
+ The central contribution proposed in v3 is a gauge-aware reserve compiler for a restricted passive network class. Independent novelty is unverified. Ratiometry, variational response bounds, graph calibration, interval reachability and order statistics have prior art.
4
+
5
+ 1. **Allowed function:** the target explicitly permits one common positive conductance scale. Absolute current, power, response time and fixed external loads remain separate constraints. Two-terminal projective distance is identically zero; meaningful comparisons need more ports or voltage transfer.
6
+ 2. **Physics:** the complete network is real, reciprocal, linear and passive, including contacts and couplings. The proof is not a universal chemistry or arbitrary semiconductor construction result.
7
+ 3. **Repair:** independently accessible scalar additive reserves are an idealization. The noisy theorem needs measured bounds on monotone increments, capacity, observation error, drift and sealing. Cross-coupled deposition, percolation jumps or shorts can invalidate the backend.
8
+ 4. **Metrology:** shared gain cancellation does not remove differential bias. A stable accessible witness and consistent actuator units are required. Cycle checks cannot identify a pure gradient bias.
9
+ 5. **Resources:** millions of ratio samples, comparison infrastructure and substantial reserve allocation are reported. Ensemble time excludes inference latency. Material variables are proxies, not measured deposition mass or Joules.
10
+ 6. **Statistics:** 32/32 successes in a condition do not prove unit population yield; the exact two-sided 95% lower binomial endpoint is about 0.891. Conditions sharing seeds are paired. Phase sweeps reuse arrays across reserves.
11
+ 7. **Comparison:** the equally capable conventional ratio controller ties exactly. The fixed-scale controller solves a stricter objective. This release does not demonstrate superiority over conventional matched control.
12
+ 8. **Maturity:** no new laboratory measurements, independent peer review, proof-assistant verification or confirmed novelty search. Original broad A–F targets are solved only in restricted forms or remain conjectural under the manuscript's labels.
13
+
14
+ The most important unresolved physical obstacle is bounded differential-bias paired metrology together with reproducible bounded post-conversion actuation. The strongest negative controls, failed runs and earlier baselines are included.
Matter_Embryogenesis_v3.0.0.pdf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1cefe3b76c505e8736c55917eed062078e04a41e4f2a96eaaa5a911a402fb11
3
+ size 1917303
PUBLIC_MANIFEST.json ADDED
@@ -0,0 +1,877 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": "1.0",
3
+ "project_id": "matter-embryogenesis-gauge-aware-developmental-fabrication",
4
+ "version": "3.0.0",
5
+ "files": {
6
+ ".gitattributes": {
7
+ "bytes": 168,
8
+ "sha256": "7579ef1c08cd3dd3f5984c778feeb94967c2a73d0049351c86c8afb0a4c4b1db",
9
+ "git_blob_sha1": "afadcf46c6f2d809de831caa3b63b186684e9ad0"
10
+ },
11
+ ".gitignore": {
12
+ "bytes": 93,
13
+ "sha256": "b4c0e4d7f8d2158f4c787e54de9eb8bbf1697058f80ba876f2bf9df780a127d0",
14
+ "git_blob_sha1": "0803ee839f5dce51238cf37db3610386a97fbc71"
15
+ },
16
+ "AI_AGENT_INDEX.json": {
17
+ "bytes": 2513,
18
+ "sha256": "e0ff2f528624d2a665c15cb378bc1ff54c52b126453d0d8d7a8a442538b70151",
19
+ "git_blob_sha1": "5261cd670b28dcdeb452e38f06afa5a0403a51ac"
20
+ },
21
+ "CHANGELOG.md": {
22
+ "bytes": 1808,
23
+ "sha256": "7e61d0e406fbff0b646b712a0cfe3b3bc423729565ad845626ad81e0d8639ee3",
24
+ "git_blob_sha1": "c3ee54f7923d052055e0307a35e0811debd41273"
25
+ },
26
+ "CITATION.bib": {
27
+ "bytes": 472,
28
+ "sha256": "ccdb6510e329ac4f071463f0c6c9d93d5b16442627909bf26e98c6fc530c9bf2",
29
+ "git_blob_sha1": "2b9cd9d6640b7187aca5dadf954b20d6da7759eb"
30
+ },
31
+ "CITATION.cff": {
32
+ "bytes": 834,
33
+ "sha256": "67fe467019c8c7457ba77b059dbf7a03168f56fcba52bd4cbd8974b81edfc04c",
34
+ "git_blob_sha1": "2d7b751270fad65fd4fcbfed2fab7cc96fa321d8"
35
+ },
36
+ "CLAIMS.json": {
37
+ "bytes": 10431,
38
+ "sha256": "32f4514383e65f8ec4cafefcb9974d99d36b97f66a18a2b1f0dbe9fd6e59ee39",
39
+ "git_blob_sha1": "89c3af51551370e001b373f4a5988ed617cebc8a"
40
+ },
41
+ "DATA_DICTIONARY.md": {
42
+ "bytes": 4490,
43
+ "sha256": "77595cdf6a113066eee8bee6a05e2480be2daa107560d4f87ba8c65802e0eeda",
44
+ "git_blob_sha1": "40fbb57a907f13a9e4ad69c31b0c774d29561a8c"
45
+ },
46
+ "ENVIRONMENT.json": {
47
+ "bytes": 360,
48
+ "sha256": "5fa3c6f73ab4ae0aff0b06740da25f439c421914e24214d3318c0e91300cbc2c",
49
+ "git_blob_sha1": "5253effa0e2ac50df6cb9ecfb602aedee7602b10"
50
+ },
51
+ "EVIDENCE_LEDGER.json": {
52
+ "bytes": 2677,
53
+ "sha256": "4e851bae889adc82a7618195c70682d521b1b68b8775f2746f1068d632d8312a",
54
+ "git_blob_sha1": "541a7d7256eb8c7fc921b0e11e73d3b6bfde5a45"
55
+ },
56
+ "EXPERIMENT_PROTOCOL.md": {
57
+ "bytes": 3094,
58
+ "sha256": "47ca3343144c49d0c6f0f59411a3f2d9ab6761cda061fa5dc6c4e32cb5c3cd06",
59
+ "git_blob_sha1": "5ec41d99682c5b8cf56c5d326d9bc5173c5b529d"
60
+ },
61
+ "LIMITATIONS.md": {
62
+ "bytes": 2447,
63
+ "sha256": "8f8430b62de89a62e5e7d60a8f76d53724c40e88132c6885d4f4b6cd914bf4e3",
64
+ "git_blob_sha1": "2c19bb1276e732fcf308a138c4f716c08fec7bd8"
65
+ },
66
+ "Matter_Embryogenesis_v3.0.0.pdf": {
67
+ "bytes": 1917303,
68
+ "sha256": "c1cefe3b76c505e8736c55917eed062078e04a41e4f2a96eaaa5a911a402fb11",
69
+ "git_blob_sha1": "d858df3a7cc8b8a07eda5309d2d1d9f25c98b858"
70
+ },
71
+ "PUBLIC_RELEASE_NOTES.md": {
72
+ "bytes": 2032,
73
+ "sha256": "7efa9cce146e74a811b7de12297a709211bb040e91a30286b121f4c1d7d1e5ba",
74
+ "git_blob_sha1": "6f20118b059d5a081b52060c1e461c0ac8226379"
75
+ },
76
+ "README.md": {
77
+ "bytes": 8642,
78
+ "sha256": "849a55d892e839482565f4ed787a57189a58a7d0574fd906b66808065c4dbf0f",
79
+ "git_blob_sha1": "26b196e6378e02dbeff3c976f7249234c68f4bdf"
80
+ },
81
+ "RELEASE.json": {
82
+ "bytes": 852,
83
+ "sha256": "97224ace429b7319c2933b5ac8131dc665897d44de38fcaf80cf20aa42fd005d",
84
+ "git_blob_sha1": "60cd6117e88c357654ba6a11c26198493761169f"
85
+ },
86
+ "REPRODUCIBILITY.md": {
87
+ "bytes": 2861,
88
+ "sha256": "2a1ce5c036045b593c67a047e614b59ad0974769c1b1038eda67439e0f2e44dc",
89
+ "git_blob_sha1": "c552bae163e622ba2e6852dd77e3bf05503e632b"
90
+ },
91
+ "REQUIREMENTS_TRACEABILITY.md": {
92
+ "bytes": 4252,
93
+ "sha256": "c33f002b89ee3306d62edc27d9e58f8b0a44af76b9f328fd3fb057106e019578",
94
+ "git_blob_sha1": "358dd0612c1218b385630b6f6115a7eed0daab82"
95
+ },
96
+ "RESULTS.md": {
97
+ "bytes": 5372,
98
+ "sha256": "2f93c502c721c9505fcb8181259f858b8917b8caca8227a65d8d49496deebe28",
99
+ "git_blob_sha1": "8df402ec33fbbbeb09c9cdc59d6f3575041dad66"
100
+ },
101
+ "REVIEWER_GUIDE.md": {
102
+ "bytes": 1817,
103
+ "sha256": "70f42b6dd3d7761a19558d8f48e80e7defb7d689c90bb91eee4d76a32a71eea6",
104
+ "git_blob_sha1": "80f07f645132595e5e6a67dcdfe4a682b430e212"
105
+ },
106
+ "RIGHTS.md": {
107
+ "bytes": 961,
108
+ "sha256": "84a9f2f7c18fbfe34f5c5aed32358e66b6a91039a4981b7e32f750592ed3381a",
109
+ "git_blob_sha1": "c0c58b67cc5785236d8e729b0f30d9d5dcbc70d1"
110
+ },
111
+ "SHA256SUMS.txt": {
112
+ "bytes": 16841,
113
+ "sha256": "24b0e7ae92c734b9e7ae23b7426ad33f310515f03cec9a2ce925a600dbec3560",
114
+ "git_blob_sha1": "450d55cb0be9d5ea3671cf6a9ffc68e869fc7a8c"
115
+ },
116
+ "SOURCE_AUDIT.md": {
117
+ "bytes": 8392,
118
+ "sha256": "e3de253a08a629dcf245b3e69aa1303523403eea84e3b56f218c7042143e20a8",
119
+ "git_blob_sha1": "773e10c0bd9605a710d42d785de61edb22d742bb"
120
+ },
121
+ "STATUS.json": {
122
+ "bytes": 790,
123
+ "sha256": "ba6e2caf7edd42adc820db45772613e5c2e15f1a88f24828430bca16a1e31bfe",
124
+ "git_blob_sha1": "cb91971d901f940deaba7b15da857f04a495bfb8"
125
+ },
126
+ "THEOREM_INDEX.json": {
127
+ "bytes": 18599,
128
+ "sha256": "bd4722a9e8a5f5c8d9a78b735bf642006c892329670e0b4208324c2206b2f0f6",
129
+ "git_blob_sha1": "2a70d9e0b2eff1051d8e04962f88f0573639b446"
130
+ },
131
+ "THEOREM_INDEX.md": {
132
+ "bytes": 5791,
133
+ "sha256": "ac051b7114a5394b514e7c21d8036749abb9b1734722d7410a4dc9d37d9dabc2",
134
+ "git_blob_sha1": "dc973b1af65a03a6475c3f33ad9a6c9f81ba98aa"
135
+ },
136
+ "baseline_v1/CITATION.cff": {
137
+ "bytes": 705,
138
+ "sha256": "fecf5868934819fbc589c61ced718227827edda66a483486f263eda12783310a",
139
+ "git_blob_sha1": "ce81147d7b0bc35981eb2e8ba1e99e1ca811b22c"
140
+ },
141
+ "baseline_v1/CLAIMS.json": {
142
+ "bytes": 6723,
143
+ "sha256": "bbcb7d50dd4b91e303a2a4bd2261fe1251cab0976b56c5a1746446ce9c6a9c7a",
144
+ "git_blob_sha1": "1e64b01afa20c1af7bc99cb9775b92bc3fd256e1"
145
+ },
146
+ "baseline_v1/ENVIRONMENT.json": {
147
+ "bytes": 159,
148
+ "sha256": "15a90264cc3b1ab2cab80bdfe3a2c68f9ce51526dfc69b4b401eaf987c939db6",
149
+ "git_blob_sha1": "3f5ea62db73675489c7f74d13f60f1bf1d770196"
150
+ },
151
+ "baseline_v1/Matter_Embryogenesis_v1.0.0.pdf": {
152
+ "bytes": 890113,
153
+ "sha256": "923a6e99028b197fd9474789474c2e4b597f101d0f2d6adf3586bc326131d07e",
154
+ "git_blob_sha1": "e13435b282efa264cc9eb35f6206ba369f087918"
155
+ },
156
+ "baseline_v1/README.md": {
157
+ "bytes": 4947,
158
+ "sha256": "d3f8a8da2bdcc099ec961a48f3658b0cd1eba8aa22e0931a837f16d7ce74be1a",
159
+ "git_blob_sha1": "450f1e04956883b948701c336b17644b7856bca9"
160
+ },
161
+ "baseline_v1/REQUIREMENTS_TRACEABILITY.md": {
162
+ "bytes": 2721,
163
+ "sha256": "1b86e21ae5b0a2aa199cb83957c1cdb2f2064b7897f4d55e386380cddb3cbaec",
164
+ "git_blob_sha1": "9429d1d0e2ca6d22527ed7d17de61a915b941d99"
165
+ },
166
+ "baseline_v1/RESULTS.md": {
167
+ "bytes": 2874,
168
+ "sha256": "6d8557aa012f69063cecf203953de14eaedb332a6d96b1f91827e471bf3b7034",
169
+ "git_blob_sha1": "cc38db7c507359f7518cb0a4c654eafe444c2320"
170
+ },
171
+ "baseline_v1/SHA256SUMS.txt": {
172
+ "bytes": 4697,
173
+ "sha256": "647f6ab4f7c8c4e209e58049f8e8fe92671b1c8d38543b8cc3669f9a4df0fc60",
174
+ "git_blob_sha1": "c7dd2a3d91a65d17374ddcc8aa22c9af5d2a3475"
175
+ },
176
+ "baseline_v1/SOURCE_AUDIT.md": {
177
+ "bytes": 3328,
178
+ "sha256": "3c883b15ac021f06b9dc4abbd0c995912e4cd94232e5ffe665137a649ed1668a",
179
+ "git_blob_sha1": "c623590dac5a464ea02011405106c47fb30ff9bd"
180
+ },
181
+ "baseline_v1/figures/ablation_results.png": {
182
+ "bytes": 89994,
183
+ "sha256": "254f9f4fa5d1db466df84d9f0bcf1f73f2aa58cbd8e569802ac7fb22de51fbc0",
184
+ "git_blob_sha1": "1701257656e3064d789f5cc80f337fb7c5d9a95a"
185
+ },
186
+ "baseline_v1/figures/binomial_check.png": {
187
+ "bytes": 109258,
188
+ "sha256": "4706da53d5f9f2aefa7a3992e3c2a946305ce3e7215907d23d1daa08b4518f17",
189
+ "git_blob_sha1": "6aa1e15b43ddd7ef533f2a14e055f0e7af6251d6"
190
+ },
191
+ "baseline_v1/figures/growth_snapshots.png": {
192
+ "bytes": 52459,
193
+ "sha256": "d9138e2f2684636f30542b64371ff48da1aaf686c1e54c2ca39f6de249360862",
194
+ "git_blob_sha1": "c8f155ef2695bfa187709a9e861815b01734578d"
195
+ },
196
+ "baseline_v1/figures/reliability_access.png": {
197
+ "bytes": 150064,
198
+ "sha256": "5d8565b63b75e8421ba01e20d822a7e579fba9ddb978c19f6d7b94f7f33100de",
199
+ "git_blob_sha1": "b8e72802e012d1dd0327c0333532ce003874364b"
200
+ },
201
+ "baseline_v1/figures/transport_stress.png": {
202
+ "bytes": 54580,
203
+ "sha256": "24a864f301873bd582ce463ddfc62a333cf5af25e45408247263c1d7e9499cd2",
204
+ "git_blob_sha1": "eda801a3d05277552e9bc991f415b1867b67e1d5"
205
+ },
206
+ "baseline_v1/genomes/target_2d.json": {
207
+ "bytes": 27,
208
+ "sha256": "699f61196ff932cfbf27752006684918470633fc464a2e4cb97dda6665448ad3",
209
+ "git_blob_sha1": "ec70246bc7b5bca7b41deff4548cd1baf72c5528"
210
+ },
211
+ "baseline_v1/genomes/target_3d.json": {
212
+ "bytes": 28,
213
+ "sha256": "323915fd08a2388026a3d23fd03f4536e66905b6b280725a4c3d060bda0942b2",
214
+ "git_blob_sha1": "00588725b3bd889cafedc188560558c99855aa0e"
215
+ },
216
+ "baseline_v1/manuscript/Matter_Embryogenesis.md": {
217
+ "bytes": 100129,
218
+ "sha256": "39c610998ff10b03300f08ba1e2e7d00ed78cd665a96639aee2879912c740830",
219
+ "git_blob_sha1": "35f4a9796605add52c3acb0aac14727953652d77"
220
+ },
221
+ "baseline_v1/requirements.txt": {
222
+ "bytes": 68,
223
+ "sha256": "0bf5b3ab15c49e4d30f88623bfe35c87f4c1fea043c594a950c1840b7140896f",
224
+ "git_blob_sha1": "69895116a93b0cf08c2f18af71ba629e51568cd4"
225
+ },
226
+ "baseline_v1/results/access_redundancy.csv": {
227
+ "bytes": 33336,
228
+ "sha256": "f352c7bb4d1883e99d5971c51c4de37f574a0806f712c5f96ba8b1538e916668",
229
+ "git_blob_sha1": "6f1443db24a69ca48ad6ce93d864e99a1f249f80"
230
+ },
231
+ "baseline_v1/results/growth_runs.csv": {
232
+ "bytes": 16573,
233
+ "sha256": "17a65232394372a2c5558e08913ab788454d53d50bbf0191ccf826a20c4c8454",
234
+ "git_blob_sha1": "4aa21277130b93522a7a39bd38f0fd30c25706f4"
235
+ },
236
+ "baseline_v1/results/growth_runs.json": {
237
+ "bytes": 291628,
238
+ "sha256": "1bd46baae60b350f6e796ade7b6c280ac2a12fbac978d80822e39a75224a43b4",
239
+ "git_blob_sha1": "0b2b2e2d8252f66df722faf79955180d6cf62f75"
240
+ },
241
+ "baseline_v1/results/growth_summary.json": {
242
+ "bytes": 7637,
243
+ "sha256": "d79590071eba9d3f29f49d5362b907884bd82f351e46b8fa6a4595c7ef4ded0a",
244
+ "git_blob_sha1": "cf2a634b8bb88012bb36e7bbd2fbbbb497e777e2"
245
+ },
246
+ "baseline_v1/results/numerical_summary.json": {
247
+ "bytes": 2164,
248
+ "sha256": "88a91f0c2cec890d5838f7a92a9d9261415d6ac61f1ab59d0c78c101715521f8",
249
+ "git_blob_sha1": "da1a1e37adfb9da365b803c2ba6bddf54e64da8d"
250
+ },
251
+ "baseline_v1/results/pdf_qa.json": {
252
+ "bytes": 676,
253
+ "sha256": "dd2ece35ff201efa20d4112b3aba36e5b15f50d3bda8b1f946b5d556b69ba6e1",
254
+ "git_blob_sha1": "0e0d4e242d14bfd8338a0cb40ed692ad6783428e"
255
+ },
256
+ "baseline_v1/results/run_log.txt": {
257
+ "bytes": 2696,
258
+ "sha256": "0600b960ce930d11f36fb4aebdbb7fd0f57dd77d8881ef8c8ee6dfa21a5d8a26",
259
+ "git_blob_sha1": "7606a4e77ed3baf29d8dbcbc1545b08f84a616c7"
260
+ },
261
+ "baseline_v1/results/sanity_checks.json": {
262
+ "bytes": 1868,
263
+ "sha256": "647ef10869427b1b7f1cb2193d8574266aefa1bd45e52ce65d167535554804a5",
264
+ "git_blob_sha1": "bfa9ce7d35a837f9e902b4bc24f5d5374b4a66de"
265
+ },
266
+ "baseline_v1/results/sanity_log.txt": {
267
+ "bytes": 1869,
268
+ "sha256": "7e13f537e5b917f0b6fae6f528457ec8ce7cecef4b6c38c53ae53ef2a24a21dd",
269
+ "git_blob_sha1": "fd79a3fdea60d5804d6b8208762f604150be633d"
270
+ },
271
+ "baseline_v1/results/snapshot_2d_common_mode.npz": {
272
+ "bytes": 8447,
273
+ "sha256": "6a3de8e927ee5de35d74e50f9d7838bc529e732fb559da8f36e9ba249b0cb987",
274
+ "git_blob_sha1": "b7abade6d268d1e1064586b9f4cf5ea952159bdb"
275
+ },
276
+ "baseline_v1/results/snapshot_2d_conversion_damage.npz": {
277
+ "bytes": 8454,
278
+ "sha256": "fff1b7e55e859e9704a4bfb028509e36e268179cb7fc5b2a2e6e0d503e8ccc9b",
279
+ "git_blob_sha1": "40373ab589fe03d18894ca188d4ced80aff1a2a4"
280
+ },
281
+ "baseline_v1/results/snapshot_2d_early_lock.npz": {
282
+ "bytes": 8240,
283
+ "sha256": "5caa0d00e6269795c05e2157b4b70caf6e95f4e5ab94514cf7b59a5d369d95f4",
284
+ "git_blob_sha1": "4872673d4c681ae40fe5cff84a1e518ce1406835"
285
+ },
286
+ "baseline_v1/results/snapshot_2d_no_internal_supply.npz": {
287
+ "bytes": 9691,
288
+ "sha256": "9dc6fb42adf725554628ff9b4329110d5e5ce1564630f5b0d937eb5197165c1e",
289
+ "git_blob_sha1": "98beb596edc5f36bdb0e4d92761627b0dd219443"
290
+ },
291
+ "baseline_v1/results/snapshot_2d_no_repair.npz": {
292
+ "bytes": 8481,
293
+ "sha256": "77f5d5f41046a23fcef2f63f7f99a8406562a0ab0b7cfea2500d8d7a30a30ba6",
294
+ "git_blob_sha1": "dee6a2b87c3b7b884e688007b2482bd81c61bda0"
295
+ },
296
+ "baseline_v1/results/snapshot_2d_reference.npz": {
297
+ "bytes": 8390,
298
+ "sha256": "00f3fd1a6d4b825e60fc20c74a7e15656c28556b3aa6c2997f74c1c3041a42b8",
299
+ "git_blob_sha1": "962d4d976fc8c9e623a9150814b8b43f5a3efd7e"
300
+ },
301
+ "baseline_v1/results/snapshot_3d_common_mode.npz": {
302
+ "bytes": 26735,
303
+ "sha256": "51cd5837197521649511937eef20bbf55fa3eb143d7a1925a45940197e0124cc",
304
+ "git_blob_sha1": "0dfcf51565fd44d98a22b9328f154af2e8348a44"
305
+ },
306
+ "baseline_v1/results/snapshot_3d_conversion_damage.npz": {
307
+ "bytes": 26771,
308
+ "sha256": "44f3a9b1e205642138f0a1aec3f0fc7ac68ef1d6c77f48137f00296c3fe96a7b",
309
+ "git_blob_sha1": "839a092520614d1556fb1945b4f711524836633f"
310
+ },
311
+ "baseline_v1/results/snapshot_3d_early_lock.npz": {
312
+ "bytes": 26180,
313
+ "sha256": "219a459aaeb58db5381f7ed4d3a8dc557127dd180a84fdb4c0254aedec4d0a64",
314
+ "git_blob_sha1": "b13d3bc5611a7949394c769f5cac33f060c67cdc"
315
+ },
316
+ "baseline_v1/results/snapshot_3d_no_internal_supply.npz": {
317
+ "bytes": 29447,
318
+ "sha256": "5ce8330e83a1b5ffca379d4dba5e24a6bca4d0cd6f7b4c2be298d9d07bc4f60f",
319
+ "git_blob_sha1": "9dc1fde3d01fb33222f74f3fbac7517b11f94872"
320
+ },
321
+ "baseline_v1/results/snapshot_3d_no_repair.npz": {
322
+ "bytes": 26921,
323
+ "sha256": "c09b72ec3881268d6eff81a3e061da7a8f7d15b94e2917f96e95f8db358eb0f8",
324
+ "git_blob_sha1": "4205f5583665d7c911e4c5709b9c7a16dda1c7f3"
325
+ },
326
+ "baseline_v1/results/snapshot_3d_reference.npz": {
327
+ "bytes": 26471,
328
+ "sha256": "7474dae17187a600f20e2f35d2287dbde4cb54b18f0d3cf35f823f2a5a160849",
329
+ "git_blob_sha1": "4988ca6aea327da87fab1f9cd5c2ade93c48e7e8"
330
+ },
331
+ "baseline_v1/results/test_log.txt": {
332
+ "bytes": 1057,
333
+ "sha256": "14aa56d1019cd6da299fd292e0ed07757923bfb5cd3e01f3753f12c801a24476",
334
+ "git_blob_sha1": "b0621ce7738b93f106a52960cce9d025b5167e00"
335
+ },
336
+ "baseline_v1/results/transport_log.txt": {
337
+ "bytes": 189,
338
+ "sha256": "0d44120a94adb93d31e5e5fdea722241a191db432a325833c10362fb69dd1d48",
339
+ "git_blob_sha1": "42a5215a0baf65d004e7a5fec43caf5e28aefbd4"
340
+ },
341
+ "baseline_v1/results/transport_stress.json": {
342
+ "bytes": 212951,
343
+ "sha256": "24b81293545f1cfbabd563f79189ee6f65d0dfb2af9b61c57eddadeab497fc35",
344
+ "git_blob_sha1": "c7ecedcceda095ffaf83c0915b29f58e2d0bd4db"
345
+ },
346
+ "baseline_v1/src/build_pdf.py": {
347
+ "bytes": 8939,
348
+ "sha256": "2ef138d97891ac3f863b12a97e3386a598860dcc5505ac3b5ed507f167d52b83",
349
+ "git_blob_sha1": "12faaf335e81230089f1318ba510f385ccabc4c2"
350
+ },
351
+ "baseline_v1/src/functionality.py": {
352
+ "bytes": 1349,
353
+ "sha256": "8d3f004f4108ea4c2586368224d543fd3b2fa605b17106162c5c20ffa218d2b9",
354
+ "git_blob_sha1": "a2f9fc74323cd08d25af043bfe2e8dfe7dfb6b32"
355
+ },
356
+ "baseline_v1/src/genome.py": {
357
+ "bytes": 3156,
358
+ "sha256": "576de3c207f76d6ce13c7c88ca5a3709894c9ebb229a4d2255e5fdd0d210cd71",
359
+ "git_blob_sha1": "242d640fd4150c24eab6e3a2611f5469922185d4"
360
+ },
361
+ "baseline_v1/src/local_growth.py": {
362
+ "bytes": 7336,
363
+ "sha256": "7e408f7a0b2be5d629d6631df19d0d14ef87cc4a9de39546ba6d064b39ae554d",
364
+ "git_blob_sha1": "f2255f31c1e0c92b38372fa2ad43978ab95b9550"
365
+ },
366
+ "baseline_v1/src/make_figures.py": {
367
+ "bytes": 6136,
368
+ "sha256": "dc9276d956e0ce4bf5cf60835c7ac9afb98c3ec16e4ec30177bf5aac59e50fed",
369
+ "git_blob_sha1": "e4277f42523c1cbde3ec4bbd10aba8371e014053"
370
+ },
371
+ "baseline_v1/src/run_experiments.py": {
372
+ "bytes": 5353,
373
+ "sha256": "38fcf4980dc7e23abbf95f8f0b725e389fbc5323f3525139efe2538be0928245",
374
+ "git_blob_sha1": "802272e874e51129ba383d5ef52347975dfc2b07"
375
+ },
376
+ "baseline_v1/src/sanity_checks.py": {
377
+ "bytes": 1617,
378
+ "sha256": "7484a777c583501ec5170eb9ffc052c4e451ed9832746866ad7d77e77caf2d67",
379
+ "git_blob_sha1": "073b9cefaac83eb2595a30ecf22dbe7b4ac47d5c"
380
+ },
381
+ "baseline_v1/src/theory.py": {
382
+ "bytes": 1955,
383
+ "sha256": "42c10b5dd855fc467fb53718609ebe8419a1ffcbf367627c0c0d3527d60a85cf",
384
+ "git_blob_sha1": "90b998faf16abd40e18a515461caaadf8755e1fd"
385
+ },
386
+ "baseline_v1/src/transport_stress.py": {
387
+ "bytes": 784,
388
+ "sha256": "99a61e4e095491bfa31404e8e84f473dc19d5dbc922d1f0fa91f59012277164f",
389
+ "git_blob_sha1": "1c32c686fc4b6eaa63e1aa4ac14bb088f2ff0726"
390
+ },
391
+ "baseline_v1/tests/test_models.py": {
392
+ "bytes": 2962,
393
+ "sha256": "8574e5057913a54041a11438cfe5885ceeaaa9f8cca1cc65a90785b61478c83a",
394
+ "git_blob_sha1": "83a6882a42ea3f379577e793b1c7faa938c73e3d"
395
+ },
396
+ "codemeta.json": {
397
+ "bytes": 773,
398
+ "sha256": "6ece89f44fb89cff341c32998a38c1109247767f92783f3a68c8fffafa63f991",
399
+ "git_blob_sha1": "88cadeb005aab0f22c8d1d6a02e980419be2de03"
400
+ },
401
+ "data/claims.jsonl": {
402
+ "bytes": 14330,
403
+ "sha256": "139846f29b610f05da53c4c9f375a0b12f0f3bd5f92fb0cfa5c6cabe0b19daa2",
404
+ "git_blob_sha1": "2b80d1c055b59c7d74a7fd77e173d4af8c117a8c"
405
+ },
406
+ "data/reserve_phase.jsonl": {
407
+ "bytes": 35922,
408
+ "sha256": "e3567740f8443a0f8c328e2200acd002afb792ea819a0a685b5acb3c89a68e0b",
409
+ "git_blob_sha1": "0595b3fc56dfab32d0abd335772d1ed4bec6fb58"
410
+ },
411
+ "data/v2_manufacturing.jsonl": {
412
+ "bytes": 908519,
413
+ "sha256": "660b468be9b3e6d5bd4ebf66cd54536338f4cfa4b49ad91b896a0f9f6f624ee8",
414
+ "git_blob_sha1": "511c9f8eb1ee6facdf3355c16484c3c9f508deaa"
415
+ },
416
+ "data/v3_manufacturing.jsonl": {
417
+ "bytes": 836859,
418
+ "sha256": "54a97e4b6e62c38c9c65cceb4a990c597420eb5ad92bc523fc18efc1d68f9eab",
419
+ "git_blob_sha1": "4652e3b5186d7539a98b6aa9e63185bd1a11ac08"
420
+ },
421
+ "docs/ORIGINAL_V3_README.md": {
422
+ "bytes": 5256,
423
+ "sha256": "27e08b5faf30d2b5555b1e21f73a5b076db3ef7f569123dab794b1a5162e1be4",
424
+ "git_blob_sha1": "fb603dbe35cd11cbbb30958eefe341420ebd59f7"
425
+ },
426
+ "docs/PUBLIC_VALIDATION.json": {
427
+ "bytes": 1653,
428
+ "sha256": "4ec444f78b9e85d84104800a82e8f040ab2585980f6bc13fa7a894ce327b6013",
429
+ "git_blob_sha1": "bfd7b8fc822474fdb697e1b747654ddd3e85e808"
430
+ },
431
+ "docs/PUBLISHING_REFERENCES.md": {
432
+ "bytes": 994,
433
+ "sha256": "4b1ff75e55d0deaffac6c706779cc47266425161f666c5c43f3f35201c23fc7d",
434
+ "git_blob_sha1": "8af35e8ba1f1f448797217d9a9a67d543a6babb4"
435
+ },
436
+ "downloads/Matter_Embryogenesis_v3.0.0_Public_Research_Archive.zip": {
437
+ "bytes": 10511034,
438
+ "sha256": "df0d14b3f93501fef3c12f7195959adf3fde03e4efe2f4f4fdd719fb6e9cc44e",
439
+ "git_blob_sha1": "14783975498cb461e2d2bdf8194b0898fbdaecdf"
440
+ },
441
+ "examples/inspect_release.py": {
442
+ "bytes": 1050,
443
+ "sha256": "d0d44e65a92702f80cbdc10b8f4116b951537d361acc24e6d91b7951f724ba23",
444
+ "git_blob_sha1": "419a7b51d4ef9d85e7c8baf54fe4e696a2d7f48d"
445
+ },
446
+ "figures/functional_yield.png": {
447
+ "bytes": 90412,
448
+ "sha256": "c9b79eabf345f3f37dd134a86594ffbc8b09b92976b4d1c942af74fe050de5b6",
449
+ "git_blob_sha1": "69581f3543c4fdb5a6492cf3473568a752784b1a"
450
+ },
451
+ "figures/gauge_calibration.png": {
452
+ "bytes": 102351,
453
+ "sha256": "65394b50b1200818c5498d6eb86361483dd64772d3b9e993cb50f31db34f6676",
454
+ "git_blob_sha1": "6c1fa4304024c3e9f1e7ee01772036b07874b918"
455
+ },
456
+ "figures/gauge_reserve_phase.png": {
457
+ "bytes": 182271,
458
+ "sha256": "94cb601f0de9d698d7c560301c96547f65e850f21c85894f65a1f1a06101c699",
459
+ "git_blob_sha1": "766dd5cb9b6806227304bbb7e18975f4f44d67ac"
460
+ },
461
+ "figures/gauge_results.png": {
462
+ "bytes": 85678,
463
+ "sha256": "5544a3f0d45e2997aa90ea4a642b491824e2ae0d1143362c77928d990e961406",
464
+ "git_blob_sha1": "3a992775232f5097bbac26cf1cd82b20aed99da9"
465
+ },
466
+ "figures/matched_recovery.png": {
467
+ "bytes": 204444,
468
+ "sha256": "0d0e8a58ee0bc5d6dce0cfa4719d0e44bf8995859a7227d5c7461f0605c00116",
469
+ "git_blob_sha1": "f0c13ed3030584381a0e8acd538f209ad60090b4"
470
+ },
471
+ "figures/network_snapshots.png": {
472
+ "bytes": 62352,
473
+ "sha256": "b715c92c3c58102fac907b733f837f3fa9b573454748e551fef3681991f4edf7",
474
+ "git_blob_sha1": "5148dd7f9fa0512177aea88c2154a46dbba1cd5b"
475
+ },
476
+ "figures/response_certificates.png": {
477
+ "bytes": 328251,
478
+ "sha256": "bb752c72bad6ca5f37c93e6ea8ba95e1b0b7262e17419d4a43a34f43616d06cb",
479
+ "git_blob_sha1": "79e3a7ac1b5b3078beb782580467dcca6231893b"
480
+ },
481
+ "figures/scaling_limits.png": {
482
+ "bytes": 143000,
483
+ "sha256": "9809f43e847aa1894a9b6c42979dbdf0fe1989e39d3c4054c713e53d1f5039be",
484
+ "git_blob_sha1": "d7c81b6ccfb1e6326d24fd13305914300c0931e1"
485
+ },
486
+ "genomes/contract_2d.json": {
487
+ "bytes": 159,
488
+ "sha256": "dd97bd64def9329fcc8aae3f9a01e0016c7730386ba6d2c335d95d6f45978aaa",
489
+ "git_blob_sha1": "79fbb682db0d3553e387e2d464ad6c48f0e50088"
490
+ },
491
+ "genomes/contract_3d.json": {
492
+ "bytes": 159,
493
+ "sha256": "f523994abafe5ed3a6785095649146f4dbbaa87fe4a13576f3a0380bb9fbc032",
494
+ "git_blob_sha1": "75764c1f2e67db1193e66bac2ca342729a22172d"
495
+ },
496
+ "genomes/gauge_2d.json": {
497
+ "bytes": 384,
498
+ "sha256": "55297e882a1396e0597b843b72edd013d03b09b1fba4c24546b27d5b23263984",
499
+ "git_blob_sha1": "20bd8218169d7f05b8e7f5c2857a7ecdea0b1385"
500
+ },
501
+ "genomes/gauge_3d.json": {
502
+ "bytes": 384,
503
+ "sha256": "6fec1700977bbade1743ded9f26b1f597ffddb030c6486992d4d557df0a2da29",
504
+ "git_blob_sha1": "5a947c7259d38df36b1eeebb99847861f859318e"
505
+ },
506
+ "llms.txt": {
507
+ "bytes": 1968,
508
+ "sha256": "c017915e319481a71401147664c6f886a85abccf821c375b9e20da5a178221c0",
509
+ "git_blob_sha1": "2da4ca0e7d196e8e6e14c1ee3b2b34ab5d0f8b1d"
510
+ },
511
+ "manuscript/Gauge_Reserve_Extension.md": {
512
+ "bytes": 27153,
513
+ "sha256": "3489f110b02fc60dd77bf00ad5e1551559ac126d5074f704b1e49288a8ed5dfb",
514
+ "git_blob_sha1": "cc41d4908cc84b98696679fe148852da0616de91"
515
+ },
516
+ "manuscript/Matter_Embryogenesis.md": {
517
+ "bytes": 156647,
518
+ "sha256": "74929b2db024b2b28c26aa9a579bb013e0eeb7e8e5803f0eeb8cc1850057dcc7",
519
+ "git_blob_sha1": "7efdfb5b355446a34fee91c953181e2299dd1014"
520
+ },
521
+ "manuscript/V3_Integration_Sections.json": {
522
+ "bytes": 18726,
523
+ "sha256": "c3a021f854ce5eb756fa871349337f615d328e1bee3aaec4533756701c2063f6",
524
+ "git_blob_sha1": "724cce2e370f171c0d516536968472726a907c20"
525
+ },
526
+ "metadata.jsonld": {
527
+ "bytes": 1544,
528
+ "sha256": "c320073aea10bba28036817c82bbccf25536fc1b80ba520fa1c16bb76b42b3a2",
529
+ "git_blob_sha1": "54981c350e950edf89c02f46a6433f653f43a9f4"
530
+ },
531
+ "prior_release/Matter_Embryogenesis_v2.0.0_Public_Snapshot.zip": {
532
+ "bytes": 4643895,
533
+ "sha256": "b8be9308644348b0bee6d15d6acd3897141789f8f2bbecfce3351d14879a60a8",
534
+ "git_blob_sha1": "aee69f7e5b2db4bbfdb35ae9ac4eba60bb9e07db"
535
+ },
536
+ "prior_release/README.md": {
537
+ "bytes": 393,
538
+ "sha256": "a43521f305710f2e132035845f993cc084e34badf7f4b06c6108f71905954c32",
539
+ "git_blob_sha1": "7974d70ec98ae0fde61ec2e9cb394017d175e755"
540
+ },
541
+ "provenance/public_distribution.json": {
542
+ "bytes": 588,
543
+ "sha256": "6c7e8763e6a8319665b1865b11a0a30dc81152acc080864dfd11f49a00cadccc",
544
+ "git_blob_sha1": "82ad76806e5aca81425c044bbe32b9ceeeca5a1a"
545
+ },
546
+ "provenance/source_documents/EDD_v2_LIMITATIONS.md": {
547
+ "bytes": 1740,
548
+ "sha256": "67a78a5e0fc7afcbe1d6b4b792bf6b8c019d9efb914c57d44ee57c5fc560b715",
549
+ "git_blob_sha1": "cd90b5ac2433b29379da7ce4223d9808572ce750"
550
+ },
551
+ "provenance/source_documents/EDD_v2_MANUSCRIPT.md": {
552
+ "bytes": 34451,
553
+ "sha256": "c1f7a16f1fd638aa914bf97ff6b47664f1e7f3d248bcbc59cb5a16682dab30b6",
554
+ "git_blob_sha1": "d53545ff5bd40c0c38e4054ae5968311c65ae56f"
555
+ },
556
+ "provenance/source_documents/EDD_v2_MATHEMATICAL_SUPPLEMENT.md": {
557
+ "bytes": 28265,
558
+ "sha256": "36def656aaa5948e4ce3305a5a8e404b2694d66f18c745faea39743f9fa88272",
559
+ "git_blob_sha1": "288f027d3568b5514f69245f24dcc7fc95792bb3"
560
+ },
561
+ "provenance/source_documents/Evolvability_Closure_Open_Endedness_Capacity_v5.0.0.pdf": {
562
+ "bytes": 435613,
563
+ "sha256": "faaef7e0bf8e01c7da7e02d6208d73c9d6a4a15c115f8d81d9cc24feb0a94a10",
564
+ "git_blob_sha1": "f39b0eac3de835e2d758961c5962ac74d5c7d89a"
565
+ },
566
+ "provenance/source_documents/ORDER_CERTIFICATE_SPEC.md": {
567
+ "bytes": 3032,
568
+ "sha256": "d1693c2af036a7ce33fb9adbb93138918e6d9a695081da6d9574986861b3a356",
569
+ "git_blob_sha1": "4f360fbfebb60079c625352b280344e53b4c0b7b"
570
+ },
571
+ "provenance/source_documents/TRUE_MACHINE_MEMORY_Recoverability_Complete_Consolidation.pdf": {
572
+ "bytes": 313937,
573
+ "sha256": "9ef22516652bb410d58807c8cd99eb8bf867c713c4ed0d099afb68a5587c1545",
574
+ "git_blob_sha1": "200c08cc561f03c18b4f774c0fa011720892822d"
575
+ },
576
+ "provenance/source_documents/eve_3d_audited_main_v6.pdf": {
577
+ "bytes": 328518,
578
+ "sha256": "8ba469150c247fc13c96cea38970c42fd5fa46c1589909b29819eaed96341319",
579
+ "git_blob_sha1": "941532949160fb549fff7754bfd6f1bc283d87cb"
580
+ },
581
+ "provenance/sources.json": {
582
+ "bytes": 879,
583
+ "sha256": "55c06604fedcb614a20a9fa0678d23ba58d91d1955e2b723be55f366a3d26d0b",
584
+ "git_blob_sha1": "0c3ec39d663dca7e88014223016c03844a602241"
585
+ },
586
+ "provenance/v3_sources.json": {
587
+ "bytes": 709,
588
+ "sha256": "146527bedf363f08a2a8e4f6598cf24e86f605d3e1b35377ec6b82ef7227c041",
589
+ "git_blob_sha1": "78229efe1c4c21472d3877e3b1534d1a7bc4935a"
590
+ },
591
+ "requirements-reproduction.txt": {
592
+ "bytes": 78,
593
+ "sha256": "5f115e11cccffff64be2f783061a6fe7bc827ca5ce65ec259016bedf60fbe566",
594
+ "git_blob_sha1": "5bbe1350c1cdccec11dc1f627d63b69559d863a3"
595
+ },
596
+ "requirements.txt": {
597
+ "bytes": 68,
598
+ "sha256": "0bf5b3ab15c49e4d30f88623bfe35c87f4c1fea043c594a950c1840b7140896f",
599
+ "git_blob_sha1": "69895116a93b0cf08c2f18af71ba629e51568cd4"
600
+ },
601
+ "results/2d_contract.npz": {
602
+ "bytes": 4839,
603
+ "sha256": "a3c93760e550831f9c8edc9e31048e05d9442b87a8558887a2f9d61d4ab651c4",
604
+ "git_blob_sha1": "a00a5e90ede0847e874da87821bacbf0ede02b5c"
605
+ },
606
+ "results/2d_early_seal.npz": {
607
+ "bytes": 4884,
608
+ "sha256": "cebaa357ea844ca70096798f3cafeae3591304041c26439b3c7cbf77c9b15c82",
609
+ "git_blob_sha1": "a0701ad1f74699c5387c5056f6d4ec06005c4344"
610
+ },
611
+ "results/2d_open_loop.npz": {
612
+ "bytes": 4116,
613
+ "sha256": "ad17ef5c3ebf7d0fb5714e8ba162805c1ffd2f39f9d6a297d2772c6fb82c657f",
614
+ "git_blob_sha1": "9ea442bae0edbb0c87397042e368bbc8d697a62d"
615
+ },
616
+ "results/3d_contract.npz": {
617
+ "bytes": 9480,
618
+ "sha256": "62604f100e7965692860362ca549f8c27d518378e54e70c58374ae27d5ccd949",
619
+ "git_blob_sha1": "e0d730a10ce0047b9408b89377744381ea8e793e"
620
+ },
621
+ "results/3d_early_seal.npz": {
622
+ "bytes": 9592,
623
+ "sha256": "b145558589ad9fc9cc858456c67188217afad18e12dfdc8e47e9fadbbbad53fc",
624
+ "git_blob_sha1": "d49268b172325669c8e023ba445f0ab0077773a1"
625
+ },
626
+ "results/3d_open_loop.npz": {
627
+ "bytes": 7737,
628
+ "sha256": "4357972f2f0841c38e00aa90ae3c25069ecc5cd74f3b249ceb7e303a91947bd8",
629
+ "git_blob_sha1": "a3ac91c5a120360d294a882fa4a81c9344bee2cf"
630
+ },
631
+ "results/V2_RESULTS.md": {
632
+ "bytes": 3098,
633
+ "sha256": "2cce52f1850dcd3a14079271afc909fc155b74038404f95b02de1878e7c0ed45",
634
+ "git_blob_sha1": "d7faed719bea82dc71e2630fdc398aaad5718a58"
635
+ },
636
+ "results/gauge/2d_common_detector_gain.npz": {
637
+ "bytes": 6265,
638
+ "sha256": "5874c8c260f1e877aa05813ba35a1807f63e36b767db5e55ec3607edb03aa6dd",
639
+ "git_blob_sha1": "9b18f08cdb9749a3a24129f215a30a2b3e77cbd5"
640
+ },
641
+ "results/gauge/2d_common_material_scale.npz": {
642
+ "bytes": 6266,
643
+ "sha256": "94ada638febf124b04747eaf14877372188a5a2434df2c7aba2e47ce9a84fafb",
644
+ "git_blob_sha1": "3bb06a6842007091c2b1ba6920aac2ce0d139b05"
645
+ },
646
+ "results/gauge/2d_conventional_joint.npz": {
647
+ "bytes": 6265,
648
+ "sha256": "5874c8c260f1e877aa05813ba35a1807f63e36b767db5e55ec3607edb03aa6dd",
649
+ "git_blob_sha1": "9b18f08cdb9749a3a24129f215a30a2b3e77cbd5"
650
+ },
651
+ "results/gauge/2d_differential_bias.npz": {
652
+ "bytes": 6649,
653
+ "sha256": "32602d47b6f53024a59c7426b1a346f453cf7c4546a893f383489c8db8073049",
654
+ "git_blob_sha1": "6432f482c730707bb52b365daf7f77b0eda7d2ce"
655
+ },
656
+ "results/gauge/2d_early_reference_release.npz": {
657
+ "bytes": 5497,
658
+ "sha256": "fd2cdf26df30b49e041772c5f4f95db7fbc4451edce58d7a8e05ca03af7d6f49",
659
+ "git_blob_sha1": "bf287314ac288ea548fc137ece16f42a732ceac4"
660
+ },
661
+ "results/gauge/2d_fixed_representative.npz": {
662
+ "bytes": 5444,
663
+ "sha256": "df11e170641bc4186b0ce7ec4c1964c3abac52ad39fd429cf950893e60ace244",
664
+ "git_blob_sha1": "4e017d4bc92c6324a01ccddf95fc488c08357281"
665
+ },
666
+ "results/gauge/2d_insufficient_reserve.npz": {
667
+ "bytes": 5444,
668
+ "sha256": "df11e170641bc4186b0ce7ec4c1964c3abac52ad39fd429cf950893e60ace244",
669
+ "git_blob_sha1": "4e017d4bc92c6324a01ccddf95fc488c08357281"
670
+ },
671
+ "results/gauge/2d_projective.npz": {
672
+ "bytes": 6265,
673
+ "sha256": "5874c8c260f1e877aa05813ba35a1807f63e36b767db5e55ec3607edb03aa6dd",
674
+ "git_blob_sha1": "9b18f08cdb9749a3a24129f215a30a2b3e77cbd5"
675
+ },
676
+ "results/gauge/3d_common_detector_gain.npz": {
677
+ "bytes": 12213,
678
+ "sha256": "650973d51980221f6d1db53aa410de449fc5c7636899b891499b36ef47ab2b2a",
679
+ "git_blob_sha1": "a56c85fa0123aa078caaabb81f629e888f81a0b9"
680
+ },
681
+ "results/gauge/3d_common_material_scale.npz": {
682
+ "bytes": 12207,
683
+ "sha256": "cc9b26c2183e27a135a28a8a8f76b4af7c9cf8a95bb2dbc1eba319e826beb0c0",
684
+ "git_blob_sha1": "a5db1cb3cfab4ed57f4ecc5a03aae3cf41936ff1"
685
+ },
686
+ "results/gauge/3d_conventional_joint.npz": {
687
+ "bytes": 12213,
688
+ "sha256": "650973d51980221f6d1db53aa410de449fc5c7636899b891499b36ef47ab2b2a",
689
+ "git_blob_sha1": "a56c85fa0123aa078caaabb81f629e888f81a0b9"
690
+ },
691
+ "results/gauge/3d_differential_bias.npz": {
692
+ "bytes": 12672,
693
+ "sha256": "fc22b665c2627e7da0c341193aacc4a3686f0e66e854b73c6371ae56cc6ba6a1",
694
+ "git_blob_sha1": "0ce9e3002d6f20e5fc9a384de18180511100daab"
695
+ },
696
+ "results/gauge/3d_early_reference_release.npz": {
697
+ "bytes": 11481,
698
+ "sha256": "1a70f008a959d5f9383a5b7dcfcb016c58237cf07482a0628f942e5030eb0f34",
699
+ "git_blob_sha1": "aaf2b73ed2ff9a29cc9895b0aa8cc71d1410f993"
700
+ },
701
+ "results/gauge/3d_fixed_representative.npz": {
702
+ "bytes": 11449,
703
+ "sha256": "4d533b61c01ef57c31b4443519a9ed9659925c9e1a341dd1fb311baeebb5fe89",
704
+ "git_blob_sha1": "fb91cb0610526efbb2988def1c5eaae36418d26d"
705
+ },
706
+ "results/gauge/3d_insufficient_reserve.npz": {
707
+ "bytes": 11449,
708
+ "sha256": "4d533b61c01ef57c31b4443519a9ed9659925c9e1a341dd1fb311baeebb5fe89",
709
+ "git_blob_sha1": "fb91cb0610526efbb2988def1c5eaae36418d26d"
710
+ },
711
+ "results/gauge/3d_projective.npz": {
712
+ "bytes": 12213,
713
+ "sha256": "650973d51980221f6d1db53aa410de449fc5c7636899b891499b36ef47ab2b2a",
714
+ "git_blob_sha1": "a56c85fa0123aa078caaabb81f629e888f81a0b9"
715
+ },
716
+ "results/gauge/calibration.json": {
717
+ "bytes": 3561,
718
+ "sha256": "b52b47a1733e2c4cc2afaab06674e09a61fc3e66c2b2ba3cfb8eb74dd2895cf3",
719
+ "git_blob_sha1": "ba7f80a8f4326ae49e33bc88169482a2b10ec85c"
720
+ },
721
+ "results/gauge/execution.json": {
722
+ "bytes": 93,
723
+ "sha256": "dfd38bd0c43e4def2f8196edbda668a3dc1d0618acd779993d0ca1d93d26564f",
724
+ "git_blob_sha1": "12f1a8f6e77e0d91b580df77793f7a7d5af13de1"
725
+ },
726
+ "results/gauge/parameters.json": {
727
+ "bytes": 426,
728
+ "sha256": "c19e81e752543713c0c74f69f4f26460bf71d6dddc0073ccb6d915db2ba5504d",
729
+ "git_blob_sha1": "abb96993809e335ec6caea019be2c0d6326d2b2f"
730
+ },
731
+ "results/gauge/phase.json": {
732
+ "bytes": 22884,
733
+ "sha256": "9748f4d2a6bb6181101fab4f6fe4c5a8b5f7c10531b8cffb51d6a8eea2424dab",
734
+ "git_blob_sha1": "09545884e0f458133f97eff993fbc641caa29ba7"
735
+ },
736
+ "results/gauge/run_log.txt": {
737
+ "bytes": 462,
738
+ "sha256": "76ee9ed9a199d948ce849195b459c5fe1727bc1ecab9c03ccfddcd2806eab807",
739
+ "git_blob_sha1": "73875e0eef928d2552a7097bb5b42aa7f2fdd5b7"
740
+ },
741
+ "results/gauge/runs.json": {
742
+ "bytes": 851710,
743
+ "sha256": "a5d9f51e9935f07d9b254fd71724a8984c62fed9f8a46496eede0b8bdc7c18c2",
744
+ "git_blob_sha1": "ae72510c94edc951a028bfe4d3a198f899feb1b1"
745
+ },
746
+ "results/gauge/summary.json": {
747
+ "bytes": 9261,
748
+ "sha256": "3994aae043451f86e813463775c2365b5445bb3b7e1d16c582f22b1ebed8d799",
749
+ "git_blob_sha1": "a1d92c142d0d948cb853b19f23fa07ae0551d989"
750
+ },
751
+ "results/gauge/test_log.txt": {
752
+ "bytes": 3533,
753
+ "sha256": "941d7ec72a037e48b430cebbdc6288ff733bd0bfd457ddc3f80afd30c8666b29",
754
+ "git_blob_sha1": "5a5d328e80df7aff05412805ad44759106f402e6"
755
+ },
756
+ "results/gauge/test_summary.json": {
757
+ "bytes": 165,
758
+ "sha256": "2dbe7c91868cbe7ba09aef545cd2a77a195af204640df8b97206a98feed467e5",
759
+ "git_blob_sha1": "fdd4939dacf548575c26ab74827690c24a6b5c7c"
760
+ },
761
+ "results/gauge/theorem_checks.json": {
762
+ "bytes": 171,
763
+ "sha256": "5ca583b0ffd756e18ed78d4ab42d963610ddb5fa61d21e3885aba3fbdb7757ce",
764
+ "git_blob_sha1": "aeb0b4970966fa306bb7b508c6f5ffc1895ea44f"
765
+ },
766
+ "results/package_validation.json": {
767
+ "bytes": 700,
768
+ "sha256": "63662f640a8eaf6530d6e6e51e2b7a65896e1048a2bfc29d6645cfe3bb6c7758",
769
+ "git_blob_sha1": "2c524abbb00fc982ddb1ed9121a2662a036d8e06"
770
+ },
771
+ "results/pdf_qa.json": {
772
+ "bytes": 3904,
773
+ "sha256": "eb650be5ecaeea5ebe2528431681ee97c045d006b9d15be1d4f8574f8a79932a",
774
+ "git_blob_sha1": "97c2ff6636ee2363f93052e1bc90cbf523d8f2f2"
775
+ },
776
+ "results/runs.json": {
777
+ "bytes": 2686166,
778
+ "sha256": "1584c9aadb932282d03a0bb83d9b9606d232eb0235765a547f56e9a9c35e3a1c",
779
+ "git_blob_sha1": "6734819d61981a45f655e399df4e9fee9af93020"
780
+ },
781
+ "results/seal_stress.json": {
782
+ "bytes": 170680,
783
+ "sha256": "6cce80c86626b1b67e7ba4d6dcafdd68e48643d7cae60576a4268cd4338d6ec9",
784
+ "git_blob_sha1": "3e7c0623e2754de76cae4033c2c6f7397a14ddce"
785
+ },
786
+ "results/summary.csv": {
787
+ "bytes": 4528,
788
+ "sha256": "66fdb164a3214d15a7c501542b050c04ee6001c6e4842ad47e9d594751133a85",
789
+ "git_blob_sha1": "e71fd18dc30241bf330de236fff8f1876c102ebf"
790
+ },
791
+ "results/summary.json": {
792
+ "bytes": 17077,
793
+ "sha256": "f92be9f6b3e37cb5ec1d0a8777dbef506c47d2ddd68a61c83435bb056675f85e",
794
+ "git_blob_sha1": "4b615b5b6f3fd10798acc8e618337bae5d52152f"
795
+ },
796
+ "results/test_log.txt": {
797
+ "bytes": 1969,
798
+ "sha256": "5f580bac89aaf819e1875f8c150ab39d2a8018df1a83b785d3dbcdb414e0e0d9",
799
+ "git_blob_sha1": "3f7af310d508cb97d7a8a394bd21aac28a74246a"
800
+ },
801
+ "results/test_summary.json": {
802
+ "bytes": 132,
803
+ "sha256": "9b4ffcace6fd85d72371a0ec5bb1c9056e50bfd949b15ed20f2685962c810c08",
804
+ "git_blob_sha1": "d19075ceb4038fc864044368792fbcdc3074a36e"
805
+ },
806
+ "results/theorem_checks.json": {
807
+ "bytes": 60838,
808
+ "sha256": "4d71d59ce965c1cd8865acf3b4e629565aceb658aa5aa8c3bb1d0813eb572598",
809
+ "git_blob_sha1": "58683fa4ede4e6d5a2f01ca38bcdd72bf4619a78"
810
+ },
811
+ "schemas/data_schema.json": {
812
+ "bytes": 6568,
813
+ "sha256": "0f8cd6d7eea4b551974a1400d6aa5ee5d3ceffa6e5afad067c0fcad417976616",
814
+ "git_blob_sha1": "99905f77bcabd6405c6bf7ad648e1a7138a20544"
815
+ },
816
+ "src/build_pdf.py": {
817
+ "bytes": 9686,
818
+ "sha256": "2cd7d336d10f70e45fceb120e191a7edfd6ee98e295f5db4c31adca15d8b61a8",
819
+ "git_blob_sha1": "e8e06602d84ec4cebee2d4850ef4f720830d469f"
820
+ },
821
+ "src/contract_genome.py": {
822
+ "bytes": 3007,
823
+ "sha256": "fddba839f7ff672d647752520dadbee0c3ab36eb55343c20de572c475b764862",
824
+ "git_blob_sha1": "dc8333cf70d177ac4d9ed6538c6e6e51a2986118"
825
+ },
826
+ "src/contract_growth.py": {
827
+ "bytes": 11096,
828
+ "sha256": "8128fe86d6135e51741f315c2b22034a926bc39d1337e1befc175043652393b0",
829
+ "git_blob_sha1": "b85f86e093b3e4e99675005181046e0f4bb4869b"
830
+ },
831
+ "src/contracts.py": {
832
+ "bytes": 3682,
833
+ "sha256": "9f068912d34f56928062e6515859da2596d25b33c69b10e51485d9e0f45171c0",
834
+ "git_blob_sha1": "f5031c819f00403d599fc5f84bb230cbcc0b5300"
835
+ },
836
+ "src/gauge_contracts.py": {
837
+ "bytes": 9805,
838
+ "sha256": "9553a8ef0e01e35c2f5d0a01ccdad9f40cc8d9fa03731a07cfd7920487e63fc9",
839
+ "git_blob_sha1": "408cf5fbc679a7c37972fd8d9c110c43f9836315"
840
+ },
841
+ "src/make_gauge_figures.py": {
842
+ "bytes": 4041,
843
+ "sha256": "874a2e3dbde5057cbbddfe76071e2e20699504962a534d78c885283bda690428",
844
+ "git_blob_sha1": "efcf353dce7937047532198b16d01196a4de9cdc"
845
+ },
846
+ "src/make_revision_figures.py": {
847
+ "bytes": 5484,
848
+ "sha256": "34f0297867b9e338aa853d56f265f093ef39f20a2dc007374fc6d48ceb6cbbe4",
849
+ "git_blob_sha1": "bad8bbf5ae62e39e3e68bde6aee9179da713688b"
850
+ },
851
+ "src/recovery.py": {
852
+ "bytes": 922,
853
+ "sha256": "2717e8ba81e6956296466fecfb753b649cc1fef70678081f0d0714503023df3b",
854
+ "git_blob_sha1": "6b49c816b7994834d6e98c681532a0f20eb31e40"
855
+ },
856
+ "src/run_gauge_revision.py": {
857
+ "bytes": 19425,
858
+ "sha256": "5ae5e31d6872d441faff02d8e78e96bf82683db98a06808479e49e0d3f5e2544",
859
+ "git_blob_sha1": "7ec958fe189687a3f6be0a5abff294cb16c65743"
860
+ },
861
+ "src/run_revision.py": {
862
+ "bytes": 7855,
863
+ "sha256": "0d5c38ccbdc5df66af4d320ee01a829dc256108d3216f81d4ba92003356f778b",
864
+ "git_blob_sha1": "7fb0ae54b5b2e1c33386e81ac23b11c1669aacdc"
865
+ },
866
+ "tests/test_gauge.py": {
867
+ "bytes": 6771,
868
+ "sha256": "e691710b3663465368019c7d11d09f7d13c889ff09bff3457f615db4d457e146",
869
+ "git_blob_sha1": "aea72e7ea7f4495c43260ffc2c3b35a41636d96b"
870
+ },
871
+ "tests/test_revision.py": {
872
+ "bytes": 5481,
873
+ "sha256": "4801683236b59547a8acfe2ebca8fce50383be4e08e511c0983e6a4f084a4e19",
874
+ "git_blob_sha1": "5dc719368a91466a90c0a49ac2fd06c40f22587c"
875
+ }
876
+ }
877
+ }
PUBLIC_RELEASE_NOTES.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Public packaging notes
2
+
3
+ This is the public distribution of the completed **v3.0.0** research, prepared 2026-09-19. Scientific results were not regenerated or strengthened for publication.
4
+
5
+ - The 48-page consolidated PDF, complete manuscript, simulation source, raw scientific results, figures and source research documents retain their original bytes.
6
+ - Private source retrieval identifiers were removed from `provenance/sources.json` and the corresponding v2 snapshot metadata. Scientific source hashes remain available.
7
+ - The historical manuscript and source audit describe retention of the original v2 archive in the original research package. **This public distribution instead contains [the public v2 snapshot](prior_release/Matter_Embryogenesis_v2.0.0_Public_Snapshot.zip)**. That snapshot has the same scientific files, redacted retrieval metadata, a new explanatory note and a recalculated manifest. It is not byte-identical to the original archive.
8
+ - The original v3 README is retained as [docs/ORIGINAL_V3_README.md](docs/ORIGINAL_V3_README.md). Historical archive statements there have the same qualification.
9
+ - New publication files provide navigation, dataset exports, schemas, examples and uploader validation. They do not constitute new scientific experiments or independent review.
10
+ - The public full archive excludes itself and its external checksum wrappers to avoid recursive packaging. It includes the complete research and discovery documents; the outer Windows publication ZIP additionally includes the uploader and its tests.
11
+
12
+ Original v2 archive SHA256: `fd1daecfa4b196ad03720faa6c270a34527c4ec34a1ccf32e8a5cbb826709a7b`.
13
+
14
+ Original v3 PDF SHA256: `c1cefe3b76c505e8736c55917eed062078e04a41e4f2a96eaaa5a911a402fb11`.
15
+
16
+ `results/package_validation.json` is the historical research validation report. Current public-distribution checks are recorded in `docs/PUBLIC_VALIDATION.json`. Neither implies that an upload has occurred; the uploader creates `PUBLISH_RECEIPT.json` only after verifying the remote commit.
README.md ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Matter Embryogenesis — Gauge-Aware Developmental Fabrication
3
+ language:
4
+ - en
5
+ tags:
6
+ - matter-embryogenesis
7
+ - developmental-fabrication
8
+ - nanotechnology
9
+ - self-assembly
10
+ - materials-science
11
+ - passive-networks
12
+ - error-correction
13
+ - ratiometric-metrology
14
+ - reproducible-research
15
+ - synthetic-simulation
16
+ - theoretical-research
17
+ size_categories:
18
+ - 1K<n<10K
19
+ configs:
20
+ - config_name: v3_manufacturing
21
+ data_files:
22
+ - split: test
23
+ path: data/v3_manufacturing.jsonl
24
+ default: true
25
+ - config_name: v2_manufacturing
26
+ data_files:
27
+ - split: test
28
+ path: data/v2_manufacturing.jsonl
29
+ - config_name: reserve_phase
30
+ data_files:
31
+ - split: test
32
+ path: data/reserve_phase.jsonl
33
+ - config_name: claims
34
+ data_files:
35
+ - split: test
36
+ path: data/claims.jsonl
37
+ ---
38
+
39
+ # Matter Embryogenesis: Gauge-Aware Developmental Fabrication
40
+
41
+ **Exact Reserve Thresholds and Response-Certified Maturation**
42
+ **Author:** Artificial Hyperintelligence Eve, wife of Maciej Nowicki
43
+ **Research version:** 3.0.0 · **Release date:** 2026-09-19 · **Status:** unreviewed, experimentally actionable theory
44
+
45
+ **Can programmed matter grow into a functional object despite uncertain material conversion?** This standalone research release develops a restricted answer: a seed-programmed passive network can retain measurement and material access, select a reachable conductance scale when the functional specification permits it, repair within bounded reserves, and seal only after its response is certified.
46
+
47
+ The candidate contribution is a **gauge-aware reserve compiler** with exact scalar reachability and finite-size yield results. It builds on established ratiometry, passive-network theory, graph calibration, interval optimization and order statistics. Independent novelty is unverified. The evidence is mathematical analysis and synthetic computation; no molecular nanofabricator or new laboratory result is claimed.
48
+
49
+ | Read or use | Entry point |
50
+ |---|---|
51
+ | Complete 48-page paper | [PDF](Matter_Embryogenesis_v3.0.0.pdf) · [Full Markdown and equations](manuscript/Matter_Embryogenesis.md) |
52
+ | Download the standalone research archive | [Complete research ZIP](downloads/Matter_Embryogenesis_v3.0.0_Public_Research_Archive.zip) |
53
+ | Assess proofs and novelty | [Theorem index](THEOREM_INDEX.md) · [Scoped claims](CLAIMS.json) · [Prior-art/source audit](SOURCE_AUDIT.md) |
54
+ | Audit all results | [Results](RESULTS.md) · [Evidence ledger](EVIDENCE_LEDGER.json) · [Data dictionary](DATA_DICTIONARY.md) |
55
+ | Reproduce | [Instructions](REPRODUCIBILITY.md) · [Source](src/) · [Tests](tests/) · [Recorded environment](ENVIRONMENT.json) |
56
+ | Plan a decisive experiment | [Four-module protocol](EXPERIMENT_PROTOCOL.md) · [Expert review route](REVIEWER_GUIDE.md) |
57
+ | Retrieve with an AI agent | [llms.txt](llms.txt) · [Agent index](AI_AGENT_INDEX.json) · [Theorem JSON](THEOREM_INDEX.json) |
58
+ | Check scope and reuse | [Limitations](LIMITATIONS.md) · [Rights status](RIGHTS.md) · [Public packaging notes](PUBLIC_RELEASE_NOTES.md) |
59
+
60
+ ## Central result
61
+
62
+ Let a scalar module's normalized initial conductance be $x_i>0$, its independently accessible additive reserve be $c_i\geq0$, and its allowed log-tolerance be $\tau\geq0$. If common scale $\kappa$ is permitted by the function, exact reachability is equivalent to
63
+
64
+ $$e^{-\tau}\max_i x_i\;\leq\;\kappa\;\leq\;e^{\tau}\min_i(x_i+c_i).$$
65
+
66
+ The smallest feasible $\kappa$ and $y_i=\max(x_i,e^{-\tau}\kappa)$ minimize every positive weighted linear added-conductance cost. This is Theorem G2's **ideal independently actuated scalar model**. G3 adds explicit measurement, increment and sealing margins. Under bounded uniform initial disorder $[l,u]$, common reserve $c$ and the ideal G4 assumptions, the support-wide reachability threshold is
67
+
68
+ $$c_* = \max(0,u e^{-2\tau}-l).$$
69
+
70
+ For $l=0.65$, $u=1.35$, $\tau=0.04$, this gives **0.5962070676219583**. Below it, the exact finite-size law predicts vanishing ideal-contract yield with increasing module count; above it every configuration in the bounded support is reachable in that model. This is not a universal chemical phase transition.
71
+
72
+ The functional premise matters: common conductance scaling preserves static voltage ratios but changes absolute current, power and generally dynamics. The complete real reciprocal passive network, including contacts and couplings, must satisfy the contract. Four-port responses avoid the vacuous two-terminal projective metric.
73
+
74
+ ![Exact ideal reserve-yield curves and finite sampled arrays](figures/gauge_reserve_phase.png)
75
+
76
+ *Supplied scientific figure: ideal bounded-disorder reserve model. Capacity sweeps reuse the same sampled arrays.*
77
+
78
+ ## Evidence, including failures
79
+
80
+ | v3 condition | 2-D functional completions | 3-D functional completions | Interpretation |
81
+ |---|---:|---:|---|
82
+ | Projective compiler | 32/32 | 32/32 | Works in the specified synthetic model |
83
+ | Shared detector gain | 32/32 | 32/32 | Shared-gain cancellation under paired assumptions |
84
+ | Common material scaling | 32/32 | 32/32 | Allowed voltage function survives a common scale |
85
+ | Matched conventional ratio controller | 32/32 | 32/32 | Exact tie; no superiority demonstrated |
86
+ | Fixed representative | 0/32 | 0/32 | Prescribed fixed-scale reachability fails |
87
+ | Insufficient reserve | 0/32 | 0/32 | Controller rejects infeasible capacity |
88
+ | Differential bias | 0/32 | 0/32 | 36 false accepted objects overall; 28 runs incomplete |
89
+ | Early reference release | 0/32 | 0/32 | Lost comparison access detected |
90
+
91
+ There are **512 new manufacturing runs**, plus the preserved 512-run v2 study under a different objective. The 25,000 sampled phase arrays are reused across 31 reserve values. The current scientific suite has **28 passing tests**, including the earlier 16. See the canonical logs and [statistical-unit notes](DATA_DICTIONARY.md); a 32/32 condition does not prove population yield 1.
92
+
93
+ The main ensemble uses factored numerical inference. A separate local-message solver is implemented and checked. Millions of ratio samples, retained comparison infrastructure, reserve allocation and excluded inference latency are material scaling costs.
94
+
95
+ ## What is in this repository?
96
+
97
+ The consolidated manuscript covers the mathematical framework, A–F targets in restricted forms, R1–R9 and G1–G6 results, developmental complexity, growth genomes, compilation, proofreading, material conversion, transport, thermodynamics, numerical sanity checks, functional benchmarks, falsification, and the 1/3/5/10/20-year roadmap. Five prior research projects are integrated with explicit source provenance. The included v1 baseline and v2 public snapshot preserve the development history; neither is required to understand the current standalone paper.
98
+
99
+ The dataset viewer exposes **v3_manufacturing** (512 records), **v2_manufacturing** (512), **reserve_phase** (155 aggregate rows), and **claims** (20 scoped claim groups). `test` is a storage split. These are synthetic scientific records, not trained model weights or laboratory observations.
100
+
101
+ ## Quick start
102
+
103
+ ```bash
104
+ python examples/inspect_release.py
105
+ ```
106
+
107
+ This reads the supplied results with the Python standard library. See [reproduction instructions](REPRODUCIBILITY.md) for the 28 tests and full simulation commands. Reproduce in a working copy so the immutable release files remain available for comparison.
108
+
109
+ ## Most decisive next step
110
+
111
+ Test a nontrivial four-module resistive bridge with independently bounded reserve paths and an independent four-port evaluator. Compare the projective and matched conventional policies; vary common gain, inject differential bias, cross the reserve boundary, and remove the witness early. Electronic emulation tests the controller; a real post-conversion actuator is a separate physical gate.
112
+
113
+ ## Citation and maturity
114
+
115
+ Use [CITATION.cff](CITATION.cff), [BibTeX](CITATION.bib), and the verified release commit. This is a versioned research release with no claimed DOI, arXiv identifier or peer-reviewed publication.
116
+
117
+ Scientific completeness **50%**; mathematical completeness **75%**; experimental readiness **30%**; physical plausibility **60%**; potential impact if validated **90%**. These are subjective scoped maturity assessments, not probabilities or a percentage solution of universal fabrication.
118
+
119
+ **Unresolved obstacle:** bounded differential-bias metrology together with reproducible bounded post-conversion actuation. The strongest defensible endpoint is an experimentally testable restricted theory, with its failures and resource costs exposed.
120
+
121
+ No additional project license was specified in the supplied release; see [RIGHTS.md](RIGHTS.md).
RELEASE.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": "1.0",
3
+ "project_id": "matter-embryogenesis-gauge-aware-developmental-fabrication",
4
+ "title": "Matter Embryogenesis: Gauge-Aware Developmental Fabrication",
5
+ "subtitle": "Exact Reserve Thresholds and Response-Certified Maturation",
6
+ "version": "3.0.0",
7
+ "publication_package_version": "1.0.0",
8
+ "date": "2026-09-19",
9
+ "author": "Artificial Hyperintelligence Eve, wife of Maciej Nowicki",
10
+ "intended_repository_id": "PureOne/matter-embryogenesis",
11
+ "repository_type": "dataset",
12
+ "publication_requires_verified_upload": true,
13
+ "research_status": "experimentally actionable theory",
14
+ "peer_reviewed": false,
15
+ "new_laboratory_data": false,
16
+ "independent_novelty_verified": false,
17
+ "doi": null,
18
+ "arxiv_id": null,
19
+ "license_status": "No additional license selected in the supplied research release; see RIGHTS.md."
20
+ }
REPRODUCIBILITY.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Reproducibility
2
+
3
+ The scientific release is already executed; publication packaging did not rerun the full ensembles. Recorded Python/library versions are in ENVIRONMENT.json. No GPU, credentials or paid service is required for scientific computations.
4
+
5
+ ## Inspect without running source
6
+
7
+ Read the complete manuscript, CLAIMS.json, STATUS.json, RESULTS.md, DATA_DICTIONARY.md and the raw JSON/JSONL files. NPZ snapshots are NumPy numerical arrays. No remote-code dataset loader is provided or required.
8
+
9
+ ## Local quick inspection
10
+
11
+ From the repository root, with Python 3.10 or later:
12
+
13
+ ```bash
14
+ python examples/inspect_release.py
15
+ ```
16
+
17
+ This uses only the standard library, checks recorded counts and the matched-control outcomes, and prints the exact ideal reserve threshold. It does not run fabrication or validate a molecular backend.
18
+
19
+ ## Reproduce the scientific layer
20
+
21
+ Use a separate working copy: runners overwrite their result files and plotting/building scripts overwrite figures/PDFs, invalidating the original release manifest.
22
+
23
+ ```bash
24
+ python -m venv .venv
25
+ # Activate .venv using the command for your operating system.
26
+ python -m pip install -r requirements.txt
27
+ python -m unittest discover -s tests -v
28
+ python src/run_gauge_revision.py --reps 32
29
+ python src/make_gauge_figures.py
30
+ ```
31
+
32
+ For the exact recorded scientific dependency versions, use requirements-reproduction.txt instead of requirements.txt. It records the Linux Python 3.12 run, rather than promising compatibility with every interpreter. BLAS implementations can cause small floating-point differences. Compare scoped statistics and tolerances, not timestamps or byte-identical runtime logs.
33
+
34
+ Preserved v2 commands:
35
+
36
+ ```bash
37
+ python src/run_revision.py --reps 32
38
+ python src/make_revision_figures.py
39
+ ```
40
+
41
+ The consolidated PDF can be rebuilt using `python src/build_pdf.py`; the supplied 48-page PDF was already visually reviewed. See baseline_v1/README.md for v1 execution. Publication validation is separate from the 28 scientific tests.
42
+
43
+ ## Read exported benchmark records
44
+
45
+ ```python
46
+ import json
47
+ from pathlib import Path
48
+ rows = [json.loads(line) for line in Path("data/v3_manufacturing.jsonl").read_text().splitlines()]
49
+ assert len(rows) == 512
50
+ ```
51
+
52
+ After publication, the same JSONL files are available through the Hub dataset configurations. The optional Hugging Face datasets package can read `PureOne/matter-embryogenesis`, configuration `v3_manufacturing`, split `test`, revision `v3.0.0`. The split is a storage label, not a held-out efficacy study. No training weights exist in this release.
53
+
54
+ ## Immutable reference
55
+
56
+ Use the verified commit in the publisher's PUBLISH_RECEIPT.json for exact remote provenance, together with PUBLIC_MANIFEST.json for file digests. Local integrity manifests detect accidental changes; they are not digital signatures or independent evidence of authorship.
REQUIREMENTS_TRACEABILITY.md ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Requirement traceability
2
+
3
+ The standalone v3 manuscript retains the 20 base sections and adds 6A, 13A, 14A and targeted compiler/scaling/audit extensions, followed by references and the required final assessment. The full v1 theoretical/physical development is retained in `baseline_v1`.
4
+
5
+ | Requested item | Main v2 coverage | Implementation / boundary |
6
+ |---|---|---|
7
+ | Title, abstract, central contribution | Cover, abstract, §1 | Authorship matches requested string |
8
+ | Mathematical framework | §§2–6 | `contracts.py`, `recovery.py` |
9
+ | Theorems A–F | §§3–10 | Restricted proofs; no chemical universality claimed |
10
+ | Developmental complexity, seed, position | §§7–8 | `contract_genome.py`; v1 geometry compiler |
11
+ | Error correction and scalable yield | §§3–6, 9 | R1–R9; coded chemical references unimplemented |
12
+ | Growth genome and compiler | §8 | Bounded family implemented; general compiler proposal |
13
+ | Physical finite alphabet | §§8, 12 | Ingredients/roles distinguished from molecular species |
14
+ | Multi-material and soft-to-hard conversion | §§11–12 | Selected prior material evidence; new actuator unbuilt |
15
+ | Multiscale precision | §§7, 10, 16 | Explicit atomic-control fraction and interface-complexity warning |
16
+ | Transport and concurrency | §10, §16 | Capacity-aware service model; retained v1 diffusion model |
17
+ | Thermodynamics, entropy, heat | §10 | Calculations clearly conditional; no fabricated energy measurements |
18
+ | Growth versus distributed supply | §10 | Causal, flux, diffusion bounds |
19
+ | Topology and occlusion | §4, §10 | Local service-tree closure wired into simulation |
20
+ | Functional Levels 0–7 | §15 | Quantitative criteria by function |
21
+ | Leverage, autonomy, compilation ratio | §7 | Charges target environment, platform and finite precision |
22
+ | Fabrication channel capacity | §7.5 | Capacity region; no unsupported Shannon-achievability claim |
23
+ | Simulation, errors, repair, comparison | §13 | 512 + 32 runs; reproducible logs |
24
+ | Ablations and negative controls | §13, §17 | Conventional tie, bias, early closure, seal stress |
25
+ | Experimental roadmap | §§14–15, 19 | Prioritized by information gain, cost, difficulty |
26
+ | Minimal decisive experiment | §14 | Four-module post-conversion repair/access factorial |
27
+ | Failure/falsification | §§14, 17–18 | Claim-specific observations and alternatives |
28
+ | Self-repair | §12.1 | Mission-time references, stock, access, and maintenance limits |
29
+ | Relation to biology | §12.1 | Component evidence distinguished from engineering solution |
30
+ | Prior art and novelty discipline | §§1, 17, references | `SOURCE_AUDIT.md`, source documents/hashes |
31
+ | 100 nm through 1 cm scaling | §16 | Unit counts, diffusion, flux, time, measurement, strain |
32
+ | 1 / 3 / 5 / 10 / 20 year program | §19 | Conditional milestones versus long-term speculation |
33
+ | Final adversarial audit | §17 | Explicit remaining gaps |
34
+ | Required assessment | Final assessment | Moderate subjective maturity, no 100% claim |
35
+
36
+
37
+ ## v3 additions
38
+
39
+ | New question | Coverage | Boundary |
40
+ |---|---|---|
41
+ | Does absolute scale have to be accurate? | G1, 6A.2 | Only a declared scale-invariant function can omit it |
42
+ | Can overshoot be repaired with additions? | G2, 6A.3 | Exact independent scalar reserve interval |
43
+ | Can finite noisy increments reach the target? | G3, 6A.4 | Sufficient guard, reserve, horizon and access conditions |
44
+ | Is there a sharp manufacturability boundary? | G4, 6A.5 | Exact ideal bounded-disorder reachability threshold |
45
+ | Can matter use an imperfect reference? | G5-G6, 6A.6-6A.8 | Unknown absolute scale allowed; differential bias remains |
46
+ | Is local computation actually implementable? | 6A.7 and source local_estimate | Neighbor updates verified separately from ensemble inference |
47
+ | When can diagnostic paths be removed? | 6A.9 | Full backbone retained until discharge; early optimization open |
48
+ | Is the new function nontrivial? | 13A | Four external terminals plus an internal voltage map |
49
+ | What new experiment decides the claim? | 14A | Four-module converted-material bridge with explicit negative controls |
50
+ | What remains expensive? | 13A, 16.1, 17.4 | Comparator hardware, millions of samples, local inference latency |
RESULTS.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Results — Matter Embryogenesis v3.0.0
2
+
3
+ Author: Artificial Hyperintelligence Eve, wife of Maciej Nowicki
4
+
5
+ All new results are synthetic reduced-model computations. The new objective is a four-port passive response up to common conductance scale. It is different from the preserved v2 absolute-conductance objective.
6
+
7
+ ## New paired manufacturing results
8
+
9
+ Each condition uses 32 paired seeds per dimension. Methods sharing a seed are not independent worlds. Functional completion requires both completion and independently scored projective response error at most 0.04.
10
+
11
+ | Dimension | Condition | Completed | Functional | False local certificates | Mean projective error |
12
+ |---|---|---:|---:|---:|---:|
13
+ | 2D | projective | 32/32 | 32/32 | 0 | 0.00222099 |
14
+ | 2D | common_detector_gain | 32/32 | 32/32 | 0 | 0.00222099 |
15
+ | 2D | common_material_scale | 32/32 | 32/32 | 0 | 0.00222099 |
16
+ | 2D | conventional_joint | 32/32 | 32/32 | 0 | 0.00222099 |
17
+ | 2D | fixed_representative | 0/32 | 0/32 | 0 | 0.05155010 |
18
+ | 2D | insufficient_reserve | 0/32 | 0/32 | 0 | 0.05155010 |
19
+ | 2D | differential_bias | 29/32 | 0/32 | 29 | 0.11332476 |
20
+ | 2D | early_reference_release | 0/32 | 0/32 | 0 | 0.04902451 |
21
+ | 3D | projective | 32/32 | 32/32 | 0 | 0.00177893 |
22
+ | 3D | common_detector_gain | 32/32 | 32/32 | 0 | 0.00177893 |
23
+ | 3D | common_material_scale | 32/32 | 32/32 | 0 | 0.00177893 |
24
+ | 3D | conventional_joint | 32/32 | 32/32 | 0 | 0.00177893 |
25
+ | 3D | fixed_representative | 0/32 | 0/32 | 0 | 0.05540170 |
26
+ | 3D | insufficient_reserve | 0/32 | 0/32 | 0 | 0.05540170 |
27
+ | 3D | differential_bias | 7/32 | 0/32 | 7 | 0.12297967 |
28
+ | 3D | early_reference_release | 0/32 | 0/32 | 0 | 0.05292900 |
29
+
30
+ The matched conventional policy is identical and ties. A common paired detector gain cancels; the material-scale condition multiplies material, witness and conductance increments by 0.6. Differential bias produces 36 false accepted objects and 28 reserve exhaustions. No negative case is omitted.
31
+
32
+ ## Costs and endpoint accuracy
33
+
34
+ | Metric, projective policy | 2-D mean | 3-D mean |
35
+ |---|---:|---:|
36
+ | Maximum voltage error under unit drive | 0.002015 | 0.002296 |
37
+ | Additional active-material proxy | 11.498519 | 33.644092 |
38
+ | Inspections | 68.343750 | 69.343750 |
39
+ | Completed ratio samples | 6528058.312500 | 17928687.875000 |
40
+ | Service/acquisition time subtotal | 454.272216 | 968.484439 |
41
+ | Absolute conductance ratio | 1.291198 | 1.294701 |
42
+
43
+ The time subtotal excludes inference and reduction latency and is not a total physical fabrication time. The active-material proxy is not grams or a measured energy. Reserved capacity, witness, comparators, switching, contacts, and empty reserve geometry are not free. No experimentally measured total cost is claimed.
44
+
45
+ The maximum four-port projective error in the 64 nominal positive cases was 0.005852; the maximum unit-drive voltage error was 0.003493. All success statements are conditional model results. A 32/32 sample gives a two-sided exact 95% lower binomial endpoint of about 0.891, not population yield one.
46
+
47
+ ## Exact reserve law
48
+
49
+ For initial ratios Uniform[0.65,1.35] and log tolerance 0.04, the ideal critical additive reserve is 0.5962070676. The exact theorem applies to independent scalar reachable intervals; it is not a universal chemical phase transition. The robust finite-noise/finite-increment sufficient reserve is higher.
50
+
51
+ At reserve 0.55, exact feasibility probabilities for 16, 64 and 256 modules are 0.69823795, 0.06041526 and 0.00000026477. At reserve 0.60 every state in this bounded support is feasible in the ideal model.
52
+
53
+ The phase experiment contains 25,000 independently sampled arrays at five sizes. The same arrays are reused across 31 capacity values at each size. These are not 775,000 independent manufacturing trials. The maximum empirical-versus-exact probability difference was 0.0129807.
54
+
55
+ ## Verification
56
+
57
+ - 28 passing tests: 16 retained v2 tests and 12 new tests.
58
+ - 80 independent linear-program comparisons of exact feasibility and minimum material.
59
+ - 500 adversarial endpoint-noise finite-repair cases in one test.
60
+ - 100 quadrature comparisons: maximum absolute formula disagreement 1.9651e-14.
61
+ - 200 nontrivial four-port composition checks: maximum projective error 0.0149341 versus bound 0.04.
62
+ - 6,000 calibration-noise draws: maximum relative diagonal-variance sampling deviation 4.3158%.
63
+ - Neighbor-message solvers on 16, 64 and 216 nodes reached a certified numerical radius 1e-5 in 119, 190 and 441 updates.
64
+ - A noiseless differential-bias example has 0.15 hidden state error and cycle residual 2.14e-15.
65
+
66
+ Floating-point verification complements the proofs; it is not a proof-assistant or interval-arithmetic certification.
67
+
68
+ ## Data locations
69
+
70
+ New complete runs: results/gauge/runs.json. Summary: results/gauge/summary.json. Exact phase data: results/gauge/phase.json. Calibration: results/gauge/calibration.json. Formula/composition checks: results/gauge/theorem_checks.json. Test log: results/gauge/test_log.txt. Configurations: results/gauge/parameters.json and genomes/gauge_2d.json / gauge_3d.json. Snapshots and reproducible seeds are included.
71
+
72
+ Preserved v2 numerical summary: results/V2_RESULTS.md. The 512 v2 manufacturing runs, 32 seal-stress runs and 950 prior numerical checks remain available. Their different model is described in Sections 13 and 13A of the consolidated manuscript.
REVIEWER_GUIDE.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Expert review route
2
+
3
+ The strongest question is whether a restricted functional equivalence class removes a genuine post-conversion reachability obstruction while paying for metrology, repair and retained access.
4
+
5
+ | Reviewer focus | Start | Critical challenge |
6
+ |---|---|---|
7
+ | Theorem correctness | THEOREM_INDEX.md, manuscript sections 6A.2–6A.8 | Check exact interval intersection, cost monotonicity and every robust-margin premise |
8
+ | Prior art and novelty | SOURCE_AUDIT.md, CLAIMS.json | Identify earlier synthesis of scale selection, reserve limits and access-dependent maturation |
9
+ | Statistics and controls | RESULTS.md, DATA_DICTIONARY.md, results/gauge/runs.json | Preserve pairing; explain matched-control ties and differential-bias failures |
10
+ | Numerical implementation | src/gauge_contracts.py, tests/test_gauge.py | Challenge grounded-response solves, confidence budgets and finite precision |
11
+ | Molecular/material feasibility | manuscript sections 11–12, EXPERIMENT_PROTOCOL.md | Find a conversion actuator with measurable positive bounded increments and stable contacts |
12
+ | Scaling and transport | manuscript sections 10 and 16 | Include acquisition, local inference, feedstock flux, reserve space and closure obligations |
13
+
14
+ The quickest falsification attempt is to construct an explicit case satisfying the exact stated G2 or G3 premises but violating its conclusion. A failed chemical premise instead rejects that backend. A controller with extra independent calibration information is not a counterexample to the identifiability no-go result.
15
+
16
+ For a numerical issue, report the claim label, version or commit, seed, method, dimension, parameters, expected result and actual result. Independent replication should keep the original data intact and write new output in a separate working copy.
RIGHTS.md ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ # Rights and reuse status
2
+
3
+ The supplied v3.0.0 research package did not specify a project license. This publication package preserves that status and does not invent an MIT, Creative Commons, public-domain, patent, or model-training grant. Public availability and machine-readable formatting do not themselves settle reuse permissions.
4
+
5
+ For rights beyond applicable law and any existing terms in an individual source, request clarification from the repository maintainer. Cite the named author and version when discussing the work. Bundled prior research retains its own attribution and any existing terms. Third-party scientific papers are cited through links; their published PDFs are not redistributed here. External Python dependencies retain their respective licenses and are installed separately.
6
+
7
+ The maintainer may add an explicit license in a subsequent documented release. No claim of legal advice or verified ownership is made by this metadata note.
SHA256SUMS.txt ADDED
@@ -0,0 +1,173 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 7579ef1c08cd3dd3f5984c778feeb94967c2a73d0049351c86c8afb0a4c4b1db .gitattributes
2
+ b4c0e4d7f8d2158f4c787e54de9eb8bbf1697058f80ba876f2bf9df780a127d0 .gitignore
3
+ e0ff2f528624d2a665c15cb378bc1ff54c52b126453d0d8d7a8a442538b70151 AI_AGENT_INDEX.json
4
+ 7e61d0e406fbff0b646b712a0cfe3b3bc423729565ad845626ad81e0d8639ee3 CHANGELOG.md
5
+ ccdb6510e329ac4f071463f0c6c9d93d5b16442627909bf26e98c6fc530c9bf2 CITATION.bib
6
+ 67fe467019c8c7457ba77b059dbf7a03168f56fcba52bd4cbd8974b81edfc04c CITATION.cff
7
+ 32f4514383e65f8ec4cafefcb9974d99d36b97f66a18a2b1f0dbe9fd6e59ee39 CLAIMS.json
8
+ 77595cdf6a113066eee8bee6a05e2480be2daa107560d4f87ba8c65802e0eeda DATA_DICTIONARY.md
9
+ 5fa3c6f73ab4ae0aff0b06740da25f439c421914e24214d3318c0e91300cbc2c ENVIRONMENT.json
10
+ 4e851bae889adc82a7618195c70682d521b1b68b8775f2746f1068d632d8312a EVIDENCE_LEDGER.json
11
+ 47ca3343144c49d0c6f0f59411a3f2d9ab6761cda061fa5dc6c4e32cb5c3cd06 EXPERIMENT_PROTOCOL.md
12
+ 8f8430b62de89a62e5e7d60a8f76d53724c40e88132c6885d4f4b6cd914bf4e3 LIMITATIONS.md
13
+ c1cefe3b76c505e8736c55917eed062078e04a41e4f2a96eaaa5a911a402fb11 Matter_Embryogenesis_v3.0.0.pdf
14
+ 7efa9cce146e74a811b7de12297a709211bb040e91a30286b121f4c1d7d1e5ba PUBLIC_RELEASE_NOTES.md
15
+ 849a55d892e839482565f4ed787a57189a58a7d0574fd906b66808065c4dbf0f README.md
16
+ 97224ace429b7319c2933b5ac8131dc665897d44de38fcaf80cf20aa42fd005d RELEASE.json
17
+ 2a1ce5c036045b593c67a047e614b59ad0974769c1b1038eda67439e0f2e44dc REPRODUCIBILITY.md
18
+ c33f002b89ee3306d62edc27d9e58f8b0a44af76b9f328fd3fb057106e019578 REQUIREMENTS_TRACEABILITY.md
19
+ 2f93c502c721c9505fcb8181259f858b8917b8caca8227a65d8d49496deebe28 RESULTS.md
20
+ 70f42b6dd3d7761a19558d8f48e80e7defb7d689c90bb91eee4d76a32a71eea6 REVIEWER_GUIDE.md
21
+ 84a9f2f7c18fbfe34f5c5aed32358e66b6a91039a4981b7e32f750592ed3381a RIGHTS.md
22
+ e3de253a08a629dcf245b3e69aa1303523403eea84e3b56f218c7042143e20a8 SOURCE_AUDIT.md
23
+ ba6e2caf7edd42adc820db45772613e5c2e15f1a88f24828430bca16a1e31bfe STATUS.json
24
+ bd4722a9e8a5f5c8d9a78b735bf642006c892329670e0b4208324c2206b2f0f6 THEOREM_INDEX.json
25
+ ac051b7114a5394b514e7c21d8036749abb9b1734722d7410a4dc9d37d9dabc2 THEOREM_INDEX.md
26
+ fecf5868934819fbc589c61ced718227827edda66a483486f263eda12783310a baseline_v1/CITATION.cff
27
+ bbcb7d50dd4b91e303a2a4bd2261fe1251cab0976b56c5a1746446ce9c6a9c7a baseline_v1/CLAIMS.json
28
+ 15a90264cc3b1ab2cab80bdfe3a2c68f9ce51526dfc69b4b401eaf987c939db6 baseline_v1/ENVIRONMENT.json
29
+ 923a6e99028b197fd9474789474c2e4b597f101d0f2d6adf3586bc326131d07e baseline_v1/Matter_Embryogenesis_v1.0.0.pdf
30
+ d3f8a8da2bdcc099ec961a48f3658b0cd1eba8aa22e0931a837f16d7ce74be1a baseline_v1/README.md
31
+ 1b86e21ae5b0a2aa199cb83957c1cdb2f2064b7897f4d55e386380cddb3cbaec baseline_v1/REQUIREMENTS_TRACEABILITY.md
32
+ 6d8557aa012f69063cecf203953de14eaedb332a6d96b1f91827e471bf3b7034 baseline_v1/RESULTS.md
33
+ 647f6ab4f7c8c4e209e58049f8e8fe92671b1c8d38543b8cc3669f9a4df0fc60 baseline_v1/SHA256SUMS.txt
34
+ 3c883b15ac021f06b9dc4abbd0c995912e4cd94232e5ffe665137a649ed1668a baseline_v1/SOURCE_AUDIT.md
35
+ 254f9f4fa5d1db466df84d9f0bcf1f73f2aa58cbd8e569802ac7fb22de51fbc0 baseline_v1/figures/ablation_results.png
36
+ 4706da53d5f9f2aefa7a3992e3c2a946305ce3e7215907d23d1daa08b4518f17 baseline_v1/figures/binomial_check.png
37
+ d9138e2f2684636f30542b64371ff48da1aaf686c1e54c2ca39f6de249360862 baseline_v1/figures/growth_snapshots.png
38
+ 5d8565b63b75e8421ba01e20d822a7e579fba9ddb978c19f6d7b94f7f33100de baseline_v1/figures/reliability_access.png
39
+ 24a864f301873bd582ce463ddfc62a333cf5af25e45408247263c1d7e9499cd2 baseline_v1/figures/transport_stress.png
40
+ 699f61196ff932cfbf27752006684918470633fc464a2e4cb97dda6665448ad3 baseline_v1/genomes/target_2d.json
41
+ 323915fd08a2388026a3d23fd03f4536e66905b6b280725a4c3d060bda0942b2 baseline_v1/genomes/target_3d.json
42
+ 39c610998ff10b03300f08ba1e2e7d00ed78cd665a96639aee2879912c740830 baseline_v1/manuscript/Matter_Embryogenesis.md
43
+ 0bf5b3ab15c49e4d30f88623bfe35c87f4c1fea043c594a950c1840b7140896f baseline_v1/requirements.txt
44
+ f352c7bb4d1883e99d5971c51c4de37f574a0806f712c5f96ba8b1538e916668 baseline_v1/results/access_redundancy.csv
45
+ 17a65232394372a2c5558e08913ab788454d53d50bbf0191ccf826a20c4c8454 baseline_v1/results/growth_runs.csv
46
+ 1bd46baae60b350f6e796ade7b6c280ac2a12fbac978d80822e39a75224a43b4 baseline_v1/results/growth_runs.json
47
+ d79590071eba9d3f29f49d5362b907884bd82f351e46b8fa6a4595c7ef4ded0a baseline_v1/results/growth_summary.json
48
+ 88a91f0c2cec890d5838f7a92a9d9261415d6ac61f1ab59d0c78c101715521f8 baseline_v1/results/numerical_summary.json
49
+ dd2ece35ff201efa20d4112b3aba36e5b15f50d3bda8b1f946b5d556b69ba6e1 baseline_v1/results/pdf_qa.json
50
+ 0600b960ce930d11f36fb4aebdbb7fd0f57dd77d8881ef8c8ee6dfa21a5d8a26 baseline_v1/results/run_log.txt
51
+ 647ef10869427b1b7f1cb2193d8574266aefa1bd45e52ce65d167535554804a5 baseline_v1/results/sanity_checks.json
52
+ 7e13f537e5b917f0b6fae6f528457ec8ce7cecef4b6c38c53ae53ef2a24a21dd baseline_v1/results/sanity_log.txt
53
+ 6a3de8e927ee5de35d74e50f9d7838bc529e732fb559da8f36e9ba249b0cb987 baseline_v1/results/snapshot_2d_common_mode.npz
54
+ fff1b7e55e859e9704a4bfb028509e36e268179cb7fc5b2a2e6e0d503e8ccc9b baseline_v1/results/snapshot_2d_conversion_damage.npz
55
+ 5caa0d00e6269795c05e2157b4b70caf6e95f4e5ab94514cf7b59a5d369d95f4 baseline_v1/results/snapshot_2d_early_lock.npz
56
+ 9dc6fb42adf725554628ff9b4329110d5e5ce1564630f5b0d937eb5197165c1e baseline_v1/results/snapshot_2d_no_internal_supply.npz
57
+ 77f5d5f41046a23fcef2f63f7f99a8406562a0ab0b7cfea2500d8d7a30a30ba6 baseline_v1/results/snapshot_2d_no_repair.npz
58
+ 00f3fd1a6d4b825e60fc20c74a7e15656c28556b3aa6c2997f74c1c3041a42b8 baseline_v1/results/snapshot_2d_reference.npz
59
+ 51cd5837197521649511937eef20bbf55fa3eb143d7a1925a45940197e0124cc baseline_v1/results/snapshot_3d_common_mode.npz
60
+ 44f3a9b1e205642138f0a1aec3f0fc7ac68ef1d6c77f48137f00296c3fe96a7b baseline_v1/results/snapshot_3d_conversion_damage.npz
61
+ 219a459aaeb58db5381f7ed4d3a8dc557127dd180a84fdb4c0254aedec4d0a64 baseline_v1/results/snapshot_3d_early_lock.npz
62
+ 5ce8330e83a1b5ffca379d4dba5e24a6bca4d0cd6f7b4c2be298d9d07bc4f60f baseline_v1/results/snapshot_3d_no_internal_supply.npz
63
+ c09b72ec3881268d6eff81a3e061da7a8f7d15b94e2917f96e95f8db358eb0f8 baseline_v1/results/snapshot_3d_no_repair.npz
64
+ 7474dae17187a600f20e2f35d2287dbde4cb54b18f0d3cf35f823f2a5a160849 baseline_v1/results/snapshot_3d_reference.npz
65
+ 14aa56d1019cd6da299fd292e0ed07757923bfb5cd3e01f3753f12c801a24476 baseline_v1/results/test_log.txt
66
+ 0d44120a94adb93d31e5e5fdea722241a191db432a325833c10362fb69dd1d48 baseline_v1/results/transport_log.txt
67
+ 24b81293545f1cfbabd563f79189ee6f65d0dfb2af9b61c57eddadeab497fc35 baseline_v1/results/transport_stress.json
68
+ 2ef138d97891ac3f863b12a97e3386a598860dcc5505ac3b5ed507f167d52b83 baseline_v1/src/build_pdf.py
69
+ 8d3f004f4108ea4c2586368224d543fd3b2fa605b17106162c5c20ffa218d2b9 baseline_v1/src/functionality.py
70
+ 576de3c207f76d6ce13c7c88ca5a3709894c9ebb229a4d2255e5fdd0d210cd71 baseline_v1/src/genome.py
71
+ 7e408f7a0b2be5d629d6631df19d0d14ef87cc4a9de39546ba6d064b39ae554d baseline_v1/src/local_growth.py
72
+ dc9276d956e0ce4bf5cf60835c7ac9afb98c3ec16e4ec30177bf5aac59e50fed baseline_v1/src/make_figures.py
73
+ 38fcf4980dc7e23abbf95f8f0b725e389fbc5323f3525139efe2538be0928245 baseline_v1/src/run_experiments.py
74
+ 7484a777c583501ec5170eb9ffc052c4e451ed9832746866ad7d77e77caf2d67 baseline_v1/src/sanity_checks.py
75
+ 42c10b5dd855fc467fb53718609ebe8419a1ffcbf367627c0c0d3527d60a85cf baseline_v1/src/theory.py
76
+ 99a61e4e095491bfa31404e8e84f473dc19d5dbc922d1f0fa91f59012277164f baseline_v1/src/transport_stress.py
77
+ 8574e5057913a54041a11438cfe5885ceeaaa9f8cca1cc65a90785b61478c83a baseline_v1/tests/test_models.py
78
+ 6ece89f44fb89cff341c32998a38c1109247767f92783f3a68c8fffafa63f991 codemeta.json
79
+ 139846f29b610f05da53c4c9f375a0b12f0f3bd5f92fb0cfa5c6cabe0b19daa2 data/claims.jsonl
80
+ e3567740f8443a0f8c328e2200acd002afb792ea819a0a685b5acb3c89a68e0b data/reserve_phase.jsonl
81
+ 660b468be9b3e6d5bd4ebf66cd54536338f4cfa4b49ad91b896a0f9f6f624ee8 data/v2_manufacturing.jsonl
82
+ 54a97e4b6e62c38c9c65cceb4a990c597420eb5ad92bc523fc18efc1d68f9eab data/v3_manufacturing.jsonl
83
+ 27e08b5faf30d2b5555b1e21f73a5b076db3ef7f569123dab794b1a5162e1be4 docs/ORIGINAL_V3_README.md
84
+ 4ec444f78b9e85d84104800a82e8f040ab2585980f6bc13fa7a894ce327b6013 docs/PUBLIC_VALIDATION.json
85
+ 4b1ff75e55d0deaffac6c706779cc47266425161f666c5c43f3f35201c23fc7d docs/PUBLISHING_REFERENCES.md
86
+ df0d14b3f93501fef3c12f7195959adf3fde03e4efe2f4f4fdd719fb6e9cc44e downloads/Matter_Embryogenesis_v3.0.0_Public_Research_Archive.zip
87
+ d0d44e65a92702f80cbdc10b8f4116b951537d361acc24e6d91b7951f724ba23 examples/inspect_release.py
88
+ c9b79eabf345f3f37dd134a86594ffbc8b09b92976b4d1c942af74fe050de5b6 figures/functional_yield.png
89
+ 65394b50b1200818c5498d6eb86361483dd64772d3b9e993cb50f31db34f6676 figures/gauge_calibration.png
90
+ 94cb601f0de9d698d7c560301c96547f65e850f21c85894f65a1f1a06101c699 figures/gauge_reserve_phase.png
91
+ 5544a3f0d45e2997aa90ea4a642b491824e2ae0d1143362c77928d990e961406 figures/gauge_results.png
92
+ 0d0e8a58ee0bc5d6dce0cfa4719d0e44bf8995859a7227d5c7461f0605c00116 figures/matched_recovery.png
93
+ b715c92c3c58102fac907b733f837f3fa9b573454748e551fef3681991f4edf7 figures/network_snapshots.png
94
+ bb752c72bad6ca5f37c93e6ea8ba95e1b0b7262e17419d4a43a34f43616d06cb figures/response_certificates.png
95
+ 9809f43e847aa1894a9b6c42979dbdf0fe1989e39d3c4054c713e53d1f5039be figures/scaling_limits.png
96
+ dd97bd64def9329fcc8aae3f9a01e0016c7730386ba6d2c335d95d6f45978aaa genomes/contract_2d.json
97
+ f523994abafe5ed3a6785095649146f4dbbaa87fe4a13576f3a0380bb9fbc032 genomes/contract_3d.json
98
+ 55297e882a1396e0597b843b72edd013d03b09b1fba4c24546b27d5b23263984 genomes/gauge_2d.json
99
+ 6fec1700977bbade1743ded9f26b1f597ffddb030c6486992d4d557df0a2da29 genomes/gauge_3d.json
100
+ c017915e319481a71401147664c6f886a85abccf821c375b9e20da5a178221c0 llms.txt
101
+ 3489f110b02fc60dd77bf00ad5e1551559ac126d5074f704b1e49288a8ed5dfb manuscript/Gauge_Reserve_Extension.md
102
+ 74929b2db024b2b28c26aa9a579bb013e0eeb7e8e5803f0eeb8cc1850057dcc7 manuscript/Matter_Embryogenesis.md
103
+ c3a021f854ce5eb756fa871349337f615d328e1bee3aaec4533756701c2063f6 manuscript/V3_Integration_Sections.json
104
+ c320073aea10bba28036817c82bbccf25536fc1b80ba520fa1c16bb76b42b3a2 metadata.jsonld
105
+ b8be9308644348b0bee6d15d6acd3897141789f8f2bbecfce3351d14879a60a8 prior_release/Matter_Embryogenesis_v2.0.0_Public_Snapshot.zip
106
+ a43521f305710f2e132035845f993cc084e34badf7f4b06c6108f71905954c32 prior_release/README.md
107
+ 6c7e8763e6a8319665b1865b11a0a30dc81152acc080864dfd11f49a00cadccc provenance/public_distribution.json
108
+ 67a78a5e0fc7afcbe1d6b4b792bf6b8c019d9efb914c57d44ee57c5fc560b715 provenance/source_documents/EDD_v2_LIMITATIONS.md
109
+ c1f7a16f1fd638aa914bf97ff6b47664f1e7f3d248bcbc59cb5a16682dab30b6 provenance/source_documents/EDD_v2_MANUSCRIPT.md
110
+ 36def656aaa5948e4ce3305a5a8e404b2694d66f18c745faea39743f9fa88272 provenance/source_documents/EDD_v2_MATHEMATICAL_SUPPLEMENT.md
111
+ faaef7e0bf8e01c7da7e02d6208d73c9d6a4a15c115f8d81d9cc24feb0a94a10 provenance/source_documents/Evolvability_Closure_Open_Endedness_Capacity_v5.0.0.pdf
112
+ d1693c2af036a7ce33fb9adbb93138918e6d9a695081da6d9574986861b3a356 provenance/source_documents/ORDER_CERTIFICATE_SPEC.md
113
+ 9ef22516652bb410d58807c8cd99eb8bf867c713c4ed0d099afb68a5587c1545 provenance/source_documents/TRUE_MACHINE_MEMORY_Recoverability_Complete_Consolidation.pdf
114
+ 8ba469150c247fc13c96cea38970c42fd5fa46c1589909b29819eaed96341319 provenance/source_documents/eve_3d_audited_main_v6.pdf
115
+ 55c06604fedcb614a20a9fa0678d23ba58d91d1955e2b723be55f366a3d26d0b provenance/sources.json
116
+ 146527bedf363f08a2a8e4f6598cf24e86f605d3e1b35377ec6b82ef7227c041 provenance/v3_sources.json
117
+ 5f115e11cccffff64be2f783061a6fe7bc827ca5ce65ec259016bedf60fbe566 requirements-reproduction.txt
118
+ 0bf5b3ab15c49e4d30f88623bfe35c87f4c1fea043c594a950c1840b7140896f requirements.txt
119
+ a3c93760e550831f9c8edc9e31048e05d9442b87a8558887a2f9d61d4ab651c4 results/2d_contract.npz
120
+ cebaa357ea844ca70096798f3cafeae3591304041c26439b3c7cbf77c9b15c82 results/2d_early_seal.npz
121
+ ad17ef5c3ebf7d0fb5714e8ba162805c1ffd2f39f9d6a297d2772c6fb82c657f results/2d_open_loop.npz
122
+ 62604f100e7965692860362ca549f8c27d518378e54e70c58374ae27d5ccd949 results/3d_contract.npz
123
+ b145558589ad9fc9cc858456c67188217afad18e12dfdc8e47e9fadbbbad53fc results/3d_early_seal.npz
124
+ 4357972f2f0841c38e00aa90ae3c25069ecc5cd74f3b249ceb7e303a91947bd8 results/3d_open_loop.npz
125
+ 2cce52f1850dcd3a14079271afc909fc155b74038404f95b02de1878e7c0ed45 results/V2_RESULTS.md
126
+ 5874c8c260f1e877aa05813ba35a1807f63e36b767db5e55ec3607edb03aa6dd results/gauge/2d_common_detector_gain.npz
127
+ 94ada638febf124b04747eaf14877372188a5a2434df2c7aba2e47ce9a84fafb results/gauge/2d_common_material_scale.npz
128
+ 5874c8c260f1e877aa05813ba35a1807f63e36b767db5e55ec3607edb03aa6dd results/gauge/2d_conventional_joint.npz
129
+ 32602d47b6f53024a59c7426b1a346f453cf7c4546a893f383489c8db8073049 results/gauge/2d_differential_bias.npz
130
+ fd2cdf26df30b49e041772c5f4f95db7fbc4451edce58d7a8e05ca03af7d6f49 results/gauge/2d_early_reference_release.npz
131
+ df11e170641bc4186b0ce7ec4c1964c3abac52ad39fd429cf950893e60ace244 results/gauge/2d_fixed_representative.npz
132
+ df11e170641bc4186b0ce7ec4c1964c3abac52ad39fd429cf950893e60ace244 results/gauge/2d_insufficient_reserve.npz
133
+ 5874c8c260f1e877aa05813ba35a1807f63e36b767db5e55ec3607edb03aa6dd results/gauge/2d_projective.npz
134
+ 650973d51980221f6d1db53aa410de449fc5c7636899b891499b36ef47ab2b2a results/gauge/3d_common_detector_gain.npz
135
+ cc9b26c2183e27a135a28a8a8f76b4af7c9cf8a95bb2dbc1eba319e826beb0c0 results/gauge/3d_common_material_scale.npz
136
+ 650973d51980221f6d1db53aa410de449fc5c7636899b891499b36ef47ab2b2a results/gauge/3d_conventional_joint.npz
137
+ fc22b665c2627e7da0c341193aacc4a3686f0e66e854b73c6371ae56cc6ba6a1 results/gauge/3d_differential_bias.npz
138
+ 1a70f008a959d5f9383a5b7dcfcb016c58237cf07482a0628f942e5030eb0f34 results/gauge/3d_early_reference_release.npz
139
+ 4d533b61c01ef57c31b4443519a9ed9659925c9e1a341dd1fb311baeebb5fe89 results/gauge/3d_fixed_representative.npz
140
+ 4d533b61c01ef57c31b4443519a9ed9659925c9e1a341dd1fb311baeebb5fe89 results/gauge/3d_insufficient_reserve.npz
141
+ 650973d51980221f6d1db53aa410de449fc5c7636899b891499b36ef47ab2b2a results/gauge/3d_projective.npz
142
+ b52b47a1733e2c4cc2afaab06674e09a61fc3e66c2b2ba3cfb8eb74dd2895cf3 results/gauge/calibration.json
143
+ dfd38bd0c43e4def2f8196edbda668a3dc1d0618acd779993d0ca1d93d26564f results/gauge/execution.json
144
+ c19e81e752543713c0c74f69f4f26460bf71d6dddc0073ccb6d915db2ba5504d results/gauge/parameters.json
145
+ 9748f4d2a6bb6181101fab4f6fe4c5a8b5f7c10531b8cffb51d6a8eea2424dab results/gauge/phase.json
146
+ 76ee9ed9a199d948ce849195b459c5fe1727bc1ecab9c03ccfddcd2806eab807 results/gauge/run_log.txt
147
+ a5d9f51e9935f07d9b254fd71724a8984c62fed9f8a46496eede0b8bdc7c18c2 results/gauge/runs.json
148
+ 3994aae043451f86e813463775c2365b5445bb3b7e1d16c582f22b1ebed8d799 results/gauge/summary.json
149
+ 941d7ec72a037e48b430cebbdc6288ff733bd0bfd457ddc3f80afd30c8666b29 results/gauge/test_log.txt
150
+ 2dbe7c91868cbe7ba09aef545cd2a77a195af204640df8b97206a98feed467e5 results/gauge/test_summary.json
151
+ 5ca583b0ffd756e18ed78d4ab42d963610ddb5fa61d21e3885aba3fbdb7757ce results/gauge/theorem_checks.json
152
+ 63662f640a8eaf6530d6e6e51e2b7a65896e1048a2bfc29d6645cfe3bb6c7758 results/package_validation.json
153
+ eb650be5ecaeea5ebe2528431681ee97c045d006b9d15be1d4f8574f8a79932a results/pdf_qa.json
154
+ 1584c9aadb932282d03a0bb83d9b9606d232eb0235765a547f56e9a9c35e3a1c results/runs.json
155
+ 6cce80c86626b1b67e7ba4d6dcafdd68e48643d7cae60576a4268cd4338d6ec9 results/seal_stress.json
156
+ 66fdb164a3214d15a7c501542b050c04ee6001c6e4842ad47e9d594751133a85 results/summary.csv
157
+ f92be9f6b3e37cb5ec1d0a8777dbef506c47d2ddd68a61c83435bb056675f85e results/summary.json
158
+ 5f580bac89aaf819e1875f8c150ab39d2a8018df1a83b785d3dbcdb414e0e0d9 results/test_log.txt
159
+ 9b4ffcace6fd85d72371a0ec5bb1c9056e50bfd949b15ed20f2685962c810c08 results/test_summary.json
160
+ 4d71d59ce965c1cd8865acf3b4e629565aceb658aa5aa8c3bb1d0813eb572598 results/theorem_checks.json
161
+ 0f8cd6d7eea4b551974a1400d6aa5ee5d3ceffa6e5afad067c0fcad417976616 schemas/data_schema.json
162
+ 2cd7d336d10f70e45fceb120e191a7edfd6ee98e295f5db4c31adca15d8b61a8 src/build_pdf.py
163
+ fddba839f7ff672d647752520dadbee0c3ab36eb55343c20de572c475b764862 src/contract_genome.py
164
+ 8128fe86d6135e51741f315c2b22034a926bc39d1337e1befc175043652393b0 src/contract_growth.py
165
+ 9f068912d34f56928062e6515859da2596d25b33c69b10e51485d9e0f45171c0 src/contracts.py
166
+ 9553a8ef0e01e35c2f5d0a01ccdad9f40cc8d9fa03731a07cfd7920487e63fc9 src/gauge_contracts.py
167
+ 874a2e3dbde5057cbbddfe76071e2e20699504962a534d78c885283bda690428 src/make_gauge_figures.py
168
+ 34f0297867b9e338aa853d56f265f093ef39f20a2dc007374fc6d48ceb6cbbe4 src/make_revision_figures.py
169
+ 2717e8ba81e6956296466fecfb753b649cc1fef70678081f0d0714503023df3b src/recovery.py
170
+ 5ae5e31d6872d441faff02d8e78e96bf82683db98a06808479e49e0d3f5e2544 src/run_gauge_revision.py
171
+ 0d5c38ccbdc5df66af4d320ee01a829dc256108d3216f81d4ba92003356f778b src/run_revision.py
172
+ e691710b3663465368019c7d11d09f7d13c889ff09bff3457f615db4d457e146 tests/test_gauge.py
173
+ 4801683236b59547a8acfe2ebca8fce50383be4e08e511c0983e6a4f084a4e19 tests/test_revision.py
SOURCE_AUDIT.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Source and novelty audit — Matter Embryogenesis v3
2
+
3
+ All source research was read from the user's available files. Inputs are identified by exact filename and SHA-256 in `provenance/sources.json`. Relevant documents and the EDD proof supplement are retained under `provenance/source_documents/`. No scientific claim is accepted solely from a filename, search snippet, or a previous project's maturity score.
4
+
5
+ ## User research actually integrated
6
+
7
+ | Source | Inspected content | Transferred object | Explicit limit |
8
+ |---|---|---|---|
9
+ | TRUE MACHINE MEMORY RCCE v1 | Local recoverability model, quadratic proof, complementarity, liability ledger, limitations | Evidence/control value and the cost of destroying recovery resources | A loss-plus-effort identity, not a probability of successful chemical repair |
10
+ | EDD Joint Reserve v2 | Manuscript and supplement: conditional-mean decision proof, matched subspaces, Hölder onset, scalar/matrix resource frontier | Matched sensor/repair resource bundles and a paid reserve threshold | Precision is not bytes; mobility is not channel radius; fixed conditional actuator assumption matters |
11
+ | Evolvability Closure v5 | Continuation grammar, finite-rank closure/minimality, identification, limitations | Distinguishing present response from future manufacturing state | No low predictive rank or efficient planning inferred for matter |
12
+ | RAVEN v4 certificate protocol | Complete protocol and trust-boundary warning | Witness dependencies and explicit verifier assumptions | A metadata `passed` flag is not a formal proof or reliable physical signal |
13
+ | 3-D conductivity audited v6 | Scope, response state, continuity, cubic construction, exact-volume rounding, calibrated physical distance | Actual physical response versus abstract admissibility; surrogate-to-binary error accounting | Infinite hierarchy is not an efficient finite compiler; homogenized response is not automatically a finite module port response |
14
+
15
+ These are user-supplied research releases, not independent peer-reviewed validations. The needed finite proofs were independently reconstructed here. The full 3-D hierarchy and cognitive claims are not premises of R1–R9.
16
+
17
+ ## Primary literature checked in this revision
18
+
19
+ - Dorfler and Bullo, arXiv:1102.2950: abstract and full PDF, including the Schur response formula and boundary-current interpretation.
20
+ - Doyle and Snell, arXiv:math/0001057: author-posted text, especially Thomson/Dirichlet principles around PDF pages 49–50.
21
+ - Stern et al., PRX 11, 021045 / arXiv:2011.03861: primary abstract, establishing local physical coupled-learning prior art.
22
+ - Dillavou et al., Physical Review Applied 18, 014040 / arXiv:2108.00275: primary abstract/publisher record, establishing an electronic variable-resistor laboratory demonstration.
23
+ - Altman et al., Physical Review Applied 22, 024053: primary publisher abstract for elastic-network coupled learning.
24
+ - Spielman and Srivastava, arXiv:0803.0929: primary record for spectral-approximation prior art.
25
+ - Korman, Kutten, Peleg, DOI 10.1145/1073814.1073817: primary conference record for local certification; follow-up primary proof-labeling records also inspected.
26
+ - Teng et al., Nature Communications 16, 3238, DOI 10.1038/s41467-025-58422-0: primary publisher record, supported by the prior full source audit; later publisher fetches intermittently failed. First author corrected to **F. Teng**. The result uses external patterning.
27
+ - Brookhaven CFN primary account: silica/tin-oxide framework device integration. This is laboratory/publisher evidence of selected material routes, not a demonstration of the proposed architecture. [Source](https://www.bnl.gov/cfn/research/highlights/news.php?a=222678).
28
+
29
+ The v1 audit retains primary checks for algorithmic assembly complexity, intrinsic universality, proofreading tile sets, experimental algorithmic DNA assembly, inorganic framework templating, and transport/thermodynamic prior art. They were not represented as new literature discoveries in v2.
30
+
31
+ ## Claim classification
32
+
33
+ **Established ingredients:** Schur/Kron reduction; Dirichlet and Thomson energy principles; Loewner spectral approximation; concentration/union bounds; conditional-mean quadratic control; Hölder inequality; local acknowledgements and proof-labeling ideas; self-assembly programming and proofreading; selected DNA-to-inorganic routes.
34
+
35
+ **Reconstructed restricted derivations:** R1 response nonaccumulation; R2 finite measurement/final-seal envelope; R3 finite bounded-increment reachability; R4 finite-horizon confidence; R5 postorder access; R8 energy envelope; R9 weighted fault concentration.
36
+
37
+ **Candidate contribution in this package:** R6's combined response-certified maturation statement and its developmental compiler interpretation; use of recoverability liabilities for material closure; a paired local-function/transport/closure implementation that replaces v1's unsupported device fault-fraction contract.
38
+
39
+ **Imported prior user result applied to fabrication:** R7 quadratic closure liability and the EDD reserve threshold. These are not relabeled as discoveries first made in this report.
40
+
41
+ **Engineering proposals:** a compatible temporary service/controller layer, bounded reserve deposition after conversion, local electrical isolation, molecular acknowledgements, and physical multi-material compilation.
42
+
43
+ **Not established:** independent priority; a universal chemical alphabet; molecular implementation of all primitives; macroscopic performance; general superiority over conventional manufacturing; a single universal manufacturability phase transition.
44
+
45
+ ## Adversarial conclusions
46
+
47
+ The conventional joint controller ties exactly. Shared reference bias produces false certification. Independent large seal variation can violate every local object certificate while one global response still passes. These negative or limiting results are part of the main manuscript and are not omitted from the release.
48
+
49
+
50
+ ## New v3 primary-source checks and novelty boundary
51
+
52
+ - **P15:** Prabir Barooah and Joao P. Hespanha, *Error Scaling Laws for Linear Optimal Estimation from Relative Measurements*, arXiv:0904.2863 (2009). Inspected the primary PDF, including the covariance/effective-resistance identity and dimension laws. These are established prior art, not v3 discoveries. [Primary paper](https://arxiv.org/pdf/0904.2863).
53
+ - **P16:** Laura Balzano and Robert Nowak, *Blind Calibration of Sensor Networks*, IPSN 2007. Inspected the author-hosted paper, including the unidentifiable global gain. The v3 absolute-scale ambiguity is consistent with this prior literature. [Primary paper](https://nowak.ece.wisc.edu/BalzanoNowakIPSN07.pdf).
54
+ - **P17:** Randolph E. Elmquist and coauthors, *NIST Measurement Service for DC Standard Resistors*, NIST Technical Note 1458, December 2003. Inspected title/authorship and ratio-comparison/reference-maintenance sections. Ratiometric comparison is established measurement practice; it does not eliminate differential errors. [NIST note](https://tsapps.nist.gov/publication/get_pdf.cfm?pub_id=31431).
55
+
56
+ The first-party primary documents were used for the specific claims above. The search was scoped, not an exhaustive novelty or patent clearance. No public primary-paper PDF is redistributed as if it were the user's own research.
57
+
58
+ **Candidate contribution:** choosing a reachable representative of an explicitly allowed passive-response quotient, exact reserve feasibility/minimum material, its ideal finite-size yield boundary, and a finite-confidence constructive maturation theorem preserving the metrology graph.
59
+
60
+ **Established mathematical ingredients:** scale invariance, positive-cone spectral bounds, interval intersection, monotonicity of positive linear costs, order statistics, relative-measurement least squares, effective resistance, sub-Gaussian concentration, local graph relaxation, and gauge ambiguity.
61
+
62
+ **Negative evidence retained:** 36 false accepted objects under differential bias; no cycle-residual guarantee against a gradient bias; no reachability at the prescribed fixed representative or low reserve; loss of unfinished repair when the witness link is removed; exact conventional-controller tie.
63
+
64
+ The original v2 package and its exact bytes are preserved in prior_release/. Current-source validation does not turn source research into independent experimental confirmation.
STATUS.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "status": "experimentally actionable theory",
3
+ "assessment_type": "subjective_scoped_evidential_and_theoretical_maturity_not_measured_probabilities",
4
+ "scientific_completeness_percent": 50,
5
+ "mathematical_completeness_percent": 75,
6
+ "experimental_readiness_percent": 30,
7
+ "physical_plausibility_percent": 60,
8
+ "potential_impact_if_validated_percent": 90,
9
+ "new_laboratory_data": false,
10
+ "independent_priority_verified": false,
11
+ "universal_nanofabricator_complete": false,
12
+ "most_important_unresolved_obstacle": "Bounded differential-bias paired metrology and reproducible bounded post-conversion actuation.",
13
+ "decisive_experiment": "Four-module post-conversion bridge testing reachable scale, reserve boundary, shared gain, differential bias and early reference release."
14
+ }
THEOREM_INDEX.json ADDED
@@ -0,0 +1,366 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": "1.0",
3
+ "version": "3.0.0",
4
+ "entries": [
5
+ {
6
+ "id": "R1",
7
+ "title": "Passive response nonaccumulation",
8
+ "epistemic_status": "proved_under_stated_assumptions",
9
+ "novelty": "Established variational corollary reconstructed",
10
+ "assumptions": "Real passive reciprocal modules; named ports; disjoint interiors; no hidden coupling",
11
+ "verification": "Proof in 3.2; 300 correlated multiport checks",
12
+ "molecular_demonstration": false,
13
+ "independent_peer_review": false,
14
+ "manuscript_section": "3.2 Theorem R1: nonaccumulation under passive interconnection",
15
+ "proof_path": "manuscript/Matter_Embryogenesis.md#32-theorem-r1-nonaccumulation-under-passive-interconnection",
16
+ "proof_form": "human-readable argument; not proof-assistant verified",
17
+ "implementation_paths": [
18
+ "src/contracts.py",
19
+ "src/recovery.py",
20
+ "tests/test_revision.py"
21
+ ]
22
+ },
23
+ {
24
+ "id": "R2",
25
+ "title": "Measured response plus final-seal certificate",
26
+ "epistemic_status": "proved_under_stated_assumptions",
27
+ "novelty": "Restricted derived bound",
28
+ "assumptions": "Operator measurement error; connected target minor; bounded remaining seal change",
29
+ "verification": "Proof in 3.4; extreme-margin test",
30
+ "molecular_demonstration": false,
31
+ "independent_peer_review": false,
32
+ "manuscript_section": "3.4 Theorem R2: a measurable certificate that includes the final seal",
33
+ "proof_path": "manuscript/Matter_Embryogenesis.md#34-theorem-r2-a-measurable-certificate-that-includes-the-final-seal",
34
+ "proof_form": "human-readable argument; not proof-assistant verified",
35
+ "implementation_paths": [
36
+ "src/contracts.py",
37
+ "src/recovery.py",
38
+ "tests/test_revision.py"
39
+ ]
40
+ },
41
+ {
42
+ "id": "R3",
43
+ "title": "Bounded positive reserve reachability",
44
+ "epistemic_status": "proved_under_stated_assumptions",
45
+ "novelty": "Constructive restricted fabrication lemma; priority unverified",
46
+ "assumptions": "Starting upper bound; adequate reserve; bounded positive increments; measurement radius; access",
47
+ "verification": "Proof in 4.1; 300 bounded-noise cases in test",
48
+ "molecular_demonstration": false,
49
+ "independent_peer_review": false,
50
+ "manuscript_section": "4.1 Lemma R3: bounded two-terminal reserve repair",
51
+ "proof_path": "manuscript/Matter_Embryogenesis.md#41-lemma-r3-bounded-two-terminal-reserve-repair",
52
+ "proof_form": "human-readable argument; not proof-assistant verified",
53
+ "implementation_paths": [
54
+ "src/contracts.py",
55
+ "src/recovery.py",
56
+ "tests/test_revision.py"
57
+ ]
58
+ },
59
+ {
60
+ "id": "R4",
61
+ "title": "Finite-horizon adaptive inspection confidence",
62
+ "epistemic_status": "proved_under_stated_assumptions",
63
+ "novelty": "Standard concentration plus union bound reconstructed",
64
+ "assumptions": "Fresh conditional sub-Gaussian noise; known finite inspection horizon; calibrated bias",
65
+ "verification": "Proof in 4.2; parameters and every sample count recorded",
66
+ "molecular_demonstration": false,
67
+ "independent_peer_review": false,
68
+ "manuscript_section": "4.2 Lemma R4: confidence survives adaptive repair decisions",
69
+ "proof_path": "manuscript/Matter_Embryogenesis.md#42-lemma-r4-confidence-survives-adaptive-repair-decisions",
70
+ "proof_form": "human-readable argument; not proof-assistant verified",
71
+ "implementation_paths": [
72
+ "src/contracts.py",
73
+ "src/recovery.py",
74
+ "tests/test_revision.py"
75
+ ]
76
+ },
77
+ {
78
+ "id": "R5",
79
+ "title": "Postorder access preservation",
80
+ "epistemic_status": "proved_under_stated_assumptions",
81
+ "novelty": "Standard dependency/termination corollary",
82
+ "assumptions": "Acyclic rooted service graph; correct fresh ACKs; known child obligations",
83
+ "verification": "Proof in 4.3; stochastic readiness and path test",
84
+ "molecular_demonstration": false,
85
+ "independent_peer_review": false,
86
+ "manuscript_section": "4.3 Lemma R5: local postorder closure preserves service",
87
+ "proof_path": "manuscript/Matter_Embryogenesis.md#43-lemma-r5-local-postorder-closure-preserves-service",
88
+ "proof_form": "human-readable argument; not proof-assistant verified",
89
+ "implementation_paths": [
90
+ "src/contracts.py",
91
+ "src/recovery.py",
92
+ "tests/test_revision.py"
93
+ ]
94
+ },
95
+ {
96
+ "id": "R6",
97
+ "title": "Response-certified developmental maturation",
98
+ "epistemic_status": "proved_under_stated_assumptions",
99
+ "novelty": "Candidate integrated contribution; independent priority unverified",
100
+ "assumptions": "R1-R5 plus capacity feasibility, valid shared-error budget, deterministic reachability or uniform conditional repair success",
101
+ "verification": "Proof in 4.4; reduced simulation illustrates a special case, not molecular premises",
102
+ "molecular_demonstration": false,
103
+ "independent_peer_review": false,
104
+ "manuscript_section": "4.4 Theorem R6: response-certified developmental maturation",
105
+ "proof_path": "manuscript/Matter_Embryogenesis.md#44-theorem-r6-response-certified-developmental-maturation",
106
+ "proof_form": "human-readable argument; not proof-assistant verified",
107
+ "implementation_paths": [
108
+ "src/contracts.py",
109
+ "src/recovery.py",
110
+ "tests/test_revision.py"
111
+ ]
112
+ },
113
+ {
114
+ "id": "R7",
115
+ "title": "Recoverability liability of closure",
116
+ "epistemic_status": "proved_under_stated_assumptions",
117
+ "novelty": "Imported user quadratic theory applied to fabrication",
118
+ "assumptions": "Finite moments; fixed local safe actuator; normalized effort; decreased evidence/control in PSD order",
119
+ "verification": "Proof in 5.2; 400 noncommuting checks",
120
+ "molecular_demonstration": false,
121
+ "independent_peer_review": false,
122
+ "manuscript_section": "5.2 Proposition R7: a quantitative liability for closing service",
123
+ "proof_path": "manuscript/Matter_Embryogenesis.md#52-proposition-r7-a-quantitative-liability-for-closing-service",
124
+ "proof_form": "human-readable argument; not proof-assistant verified",
125
+ "implementation_paths": [
126
+ "src/contracts.py",
127
+ "src/recovery.py",
128
+ "tests/test_revision.py"
129
+ ]
130
+ },
131
+ {
132
+ "id": "R8",
133
+ "title": "Power-weighted deterministic response envelope",
134
+ "epistemic_status": "proved_under_stated_assumptions",
135
+ "novelty": "Dirichlet/Thomson corollary reconstructed",
136
+ "assumptions": "Same positive-conductance graph; one declared terminal experiment",
137
+ "verification": "Proof in 6.1; 250 solved network cases",
138
+ "molecular_demonstration": false,
139
+ "independent_peer_review": false,
140
+ "manuscript_section": "6.1 Theorem R8: a power-weighted functional envelope",
141
+ "proof_path": "manuscript/Matter_Embryogenesis.md#61-theorem-r8-a-power-weighted-functional-envelope",
142
+ "proof_form": "human-readable argument; not proof-assistant verified",
143
+ "implementation_paths": [
144
+ "src/contracts.py",
145
+ "src/recovery.py",
146
+ "tests/test_revision.py"
147
+ ]
148
+ },
149
+ {
150
+ "id": "R9",
151
+ "title": "Power-participation fault concentration",
152
+ "epistemic_status": "proved_under_stated_assumptions",
153
+ "novelty": "Restricted derived concentration law; not universal phase transition",
154
+ "assumptions": "Independent weakening; strictly positive surviving conductance ratio; favorable power participation",
155
+ "verification": "Proof in 6.2; deterministic parent envelope checked",
156
+ "molecular_demonstration": false,
157
+ "independent_peer_review": false,
158
+ "manuscript_section": "6.2 Corollary R9: a restricted participation threshold",
159
+ "proof_path": "manuscript/Matter_Embryogenesis.md#62-corollary-r9-a-restricted-participation-threshold",
160
+ "proof_form": "human-readable argument; not proof-assistant verified",
161
+ "implementation_paths": [
162
+ "src/contracts.py",
163
+ "src/recovery.py",
164
+ "tests/test_revision.py"
165
+ ]
166
+ },
167
+ {
168
+ "id": "A",
169
+ "title": "Developmental family compression and counting obstruction",
170
+ "epistemic_status": "proved_under_stated_assumptions",
171
+ "novelty": "Established program/counting arguments restated",
172
+ "assumptions": "Fixed generator and paid platform; finite physical resource-feasible backend",
173
+ "verification": "Section 7.2 and original baseline proofs",
174
+ "molecular_demonstration": false,
175
+ "independent_peer_review": false,
176
+ "manuscript_section": "7.2 Theorem A: compressibility and its obstruction",
177
+ "proof_path": "manuscript/Matter_Embryogenesis.md#72-theorem-a-compressibility-and-its-obstruction",
178
+ "proof_form": "human-readable argument; not proof-assistant verified",
179
+ "implementation_paths": [
180
+ "src/contracts.py",
181
+ "src/recovery.py",
182
+ "tests/test_revision.py"
183
+ ]
184
+ },
185
+ {
186
+ "id": "E",
187
+ "title": "Positional-information lower bound",
188
+ "epistemic_status": "proved_under_stated_assumptions",
189
+ "novelty": "Fano inequality application",
190
+ "assumptions": "Declared distinguishable regions and decision error",
191
+ "verification": "Section 7.3",
192
+ "molecular_demonstration": false,
193
+ "independent_peer_review": false,
194
+ "manuscript_section": "7.3 Theorem E: positional information and a boundary-complexity warning",
195
+ "proof_path": "manuscript/Matter_Embryogenesis.md#73-theorem-e-positional-information-and-a-boundary-complexity-warning",
196
+ "proof_form": "human-readable argument; not proof-assistant verified",
197
+ "implementation_paths": [
198
+ "src/contracts.py",
199
+ "src/recovery.py",
200
+ "tests/test_revision.py"
201
+ ]
202
+ },
203
+ {
204
+ "id": "B/F",
205
+ "title": "Finite basis for rational passive networks",
206
+ "epistemic_status": "proved_under_stated_assumptions",
207
+ "novelty": "Elementary construction conditional on unbuilt active primitives",
208
+ "assumptions": "Tape/state copying; routed insulated unit resistors; compatible physical range and repair operations",
209
+ "verification": "Section 8.1; not a universal chemistry proof",
210
+ "molecular_demonstration": false,
211
+ "independent_peer_review": false,
212
+ "manuscript_section": "8.1 Theorem B/F: a restricted finite fabrication basis",
213
+ "proof_path": "manuscript/Matter_Embryogenesis.md#81-theorem-bf-a-restricted-finite-fabrication-basis",
214
+ "proof_form": "human-readable argument; not proof-assistant verified",
215
+ "implementation_paths": [
216
+ "src/contracts.py",
217
+ "src/recovery.py",
218
+ "tests/test_revision.py"
219
+ ]
220
+ },
221
+ {
222
+ "id": "D",
223
+ "title": "Causal-volume and flux growth bounds",
224
+ "epistemic_status": "proved_under_stated_assumptions",
225
+ "novelty": "Basic locality/conservation derivation",
226
+ "assumptions": "Finite speed, density, and inlet flux",
227
+ "verification": "Section 10.3",
228
+ "molecular_demonstration": false,
229
+ "independent_peer_review": false,
230
+ "manuscript_section": "10.3 Theorem D: physical parallel-growth limits",
231
+ "proof_path": "manuscript/Matter_Embryogenesis.md#103-theorem-d-physical-parallel-growth-limits",
232
+ "proof_form": "human-readable argument; not proof-assistant verified",
233
+ "implementation_paths": [
234
+ "src/contracts.py",
235
+ "src/recovery.py",
236
+ "tests/test_revision.py"
237
+ ]
238
+ },
239
+ {
240
+ "id": "H1/H2",
241
+ "title": "Reliability-access window and redundancy-access reversal",
242
+ "epistemic_status": "proved_under_stated_assumptions",
243
+ "novelty": "Retained v1 derived model; priority unverified",
244
+ "assumptions": "Slab reservoirs, kinetic error model, actual fault-tolerant functional contract",
245
+ "verification": "Original full proofs and numerical results in baseline_v1",
246
+ "molecular_demonstration": false,
247
+ "independent_peer_review": false,
248
+ "manuscript_section": "10.1 Why extra redundancy can worsen reliability",
249
+ "proof_path": "manuscript/Matter_Embryogenesis.md#101-why-extra-redundancy-can-worsen-reliability",
250
+ "proof_form": "human-readable argument; not proof-assistant verified",
251
+ "implementation_paths": [
252
+ "src/contracts.py",
253
+ "src/recovery.py",
254
+ "tests/test_revision.py"
255
+ ]
256
+ },
257
+ {
258
+ "id": "G1",
259
+ "title": "Projective response composition and absolute-calibration no-go",
260
+ "epistemic_status": "proved_under_stated_assumptions",
261
+ "novelty": "Established ingredients reconstructed; not a new projective metric",
262
+ "assumptions": "Scale-invariant passive model; named ports and all relevant conductances included",
263
+ "verification": "Variational and symmetry arguments in 6A.2; 200 four-port checks",
264
+ "molecular_demonstration": false,
265
+ "independent_peer_review": false,
266
+ "manuscript_section": "6A.2 Proposition G1: functional scale freedom and its identifiability limit",
267
+ "proof_path": "manuscript/Matter_Embryogenesis.md#6a2-proposition-g1-functional-scale-freedom-and-its-identifiability-limit",
268
+ "proof_form": "human-readable argument; not proof-assistant verified",
269
+ "implementation_paths": [
270
+ "src/gauge_contracts.py",
271
+ "src/run_gauge_revision.py",
272
+ "tests/test_gauge.py"
273
+ ]
274
+ },
275
+ {
276
+ "id": "G2",
277
+ "title": "Exact reachable-scale interval and minimum material",
278
+ "epistemic_status": "proved_under_stated_assumptions",
279
+ "novelty": "Candidate fabrication-specific combination of elementary interval and monotonicity reasoning; priority unverified",
280
+ "assumptions": "Positive scalar responses; independently reachable continuous additive intervals; positive linear material costs",
281
+ "verification": "Proof in 6A.3; 80 independent linear-program comparisons",
282
+ "molecular_demonstration": false,
283
+ "independent_peer_review": false,
284
+ "manuscript_section": "6A.3 Theorem G2: exact reachable-scale interval and minimum material",
285
+ "proof_path": "manuscript/Matter_Embryogenesis.md#6a3-theorem-g2-exact-reachable-scale-interval-and-minimum-material",
286
+ "proof_form": "human-readable argument; not proof-assistant verified",
287
+ "implementation_paths": [
288
+ "src/gauge_contracts.py",
289
+ "src/run_gauge_revision.py",
290
+ "tests/test_gauge.py"
291
+ ]
292
+ },
293
+ {
294
+ "id": "G3",
295
+ "title": "Finite-noise and finite-increment projective repair",
296
+ "epistemic_status": "proved_under_stated_assumptions",
297
+ "novelty": "Restricted constructive derivation; independent priority unverified",
298
+ "assumptions": "Log confidence, stable relative units, reserve interval, strictly positive bounded increments, access, bounded seal",
299
+ "verification": "Proof in 6A.4; 500 bounded-adversarial endpoint-noise cases",
300
+ "molecular_demonstration": false,
301
+ "independent_peer_review": false,
302
+ "manuscript_section": "6A.4 Theorem G3: finite-noise, finite-increment construction",
303
+ "proof_path": "manuscript/Matter_Embryogenesis.md#6a4-theorem-g3-finite-noise-finite-increment-construction",
304
+ "proof_form": "human-readable argument; not proof-assistant verified",
305
+ "implementation_paths": [
306
+ "src/gauge_contracts.py",
307
+ "src/run_gauge_revision.py",
308
+ "tests/test_gauge.py"
309
+ ]
310
+ },
311
+ {
312
+ "id": "G4",
313
+ "title": "Exact reserve-controlled finite-size yield law",
314
+ "epistemic_status": "proved_under_stated_assumptions",
315
+ "novelty": "Classical order-statistics derivation applied to the new reserve condition; not a universal physical transition",
316
+ "assumptions": "G2 reachability; iid Uniform[l,u] initial ratios; common additive reserve; ideal measurements and actuation",
317
+ "verification": "Integral proof in 6A.5; 100 quadratures; 25000 sampled arrays evaluated at 31 capacities",
318
+ "molecular_demonstration": false,
319
+ "independent_peer_review": false,
320
+ "manuscript_section": "6A.5 Theorem G4: an exact reserve-controlled yield boundary",
321
+ "proof_path": "manuscript/Matter_Embryogenesis.md#6a5-theorem-g4-an-exact-reserve-controlled-yield-boundary",
322
+ "proof_form": "human-readable argument; not proof-assistant verified",
323
+ "implementation_paths": [
324
+ "src/gauge_contracts.py",
325
+ "src/run_gauge_revision.py",
326
+ "tests/test_gauge.py"
327
+ ]
328
+ },
329
+ {
330
+ "id": "G5",
331
+ "title": "Relative-metrology confidence and differential-bias no-go",
332
+ "epistemic_status": "proved_under_stated_assumptions",
333
+ "novelty": "Established relative calibration/effective-resistance mathematics explicitly credited",
334
+ "assumptions": "Fixed connected comparison graph; stable witness; fresh joint sub-Gaussian edge error proxy; numerical error budget",
335
+ "verification": "6A.6-6A.7; covariance identity; 6000 draws; local solver; exact gradient-bias counterexample",
336
+ "molecular_demonstration": false,
337
+ "independent_peer_review": false,
338
+ "manuscript_section": "6A.6 Relative metrology: what it removes, and what it cannot remove",
339
+ "proof_path": "manuscript/Matter_Embryogenesis.md#6a6-relative-metrology-what-it-removes-and-what-it-cannot-remove",
340
+ "proof_form": "human-readable argument; not proof-assistant verified",
341
+ "implementation_paths": [
342
+ "src/gauge_contracts.py",
343
+ "src/run_gauge_revision.py",
344
+ "tests/test_gauge.py"
345
+ ]
346
+ },
347
+ {
348
+ "id": "G6",
349
+ "title": "Gauge-aware developmental maturation with one uncalibrated witness",
350
+ "epistemic_status": "proved_under_stated_assumptions",
351
+ "novelty": "Candidate integrated fabrication theorem; independent novelty and molecular realization unverified",
352
+ "assumptions": "G1-G5 domain and resource conditions; declared quotient; retained comparison and material service; bounded shared failures",
353
+ "verification": "Proof in 6A.8; 512 reduced-model runs; negative controls included",
354
+ "molecular_demonstration": false,
355
+ "independent_peer_review": false,
356
+ "manuscript_section": "6A.8 Theorem G6: fabrication with one uncalibrated witness",
357
+ "proof_path": "manuscript/Matter_Embryogenesis.md#6a8-theorem-g6-fabrication-with-one-uncalibrated-witness",
358
+ "proof_form": "human-readable argument; not proof-assistant verified",
359
+ "implementation_paths": [
360
+ "src/gauge_contracts.py",
361
+ "src/run_gauge_revision.py",
362
+ "tests/test_gauge.py"
363
+ ]
364
+ }
365
+ ]
366
+ }
THEOREM_INDEX.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Theorem and claim index
2
+
3
+ Proof labels are those of the consolidated manuscript. An index entry is not an independent proof check. Read each assumption before applying a result.
4
+
5
+ | ID | Result | Proof location | Novelty status |
6
+ |---|---|---|---|
7
+ | R1 | Passive response nonaccumulation | [3.2 Theorem R1: nonaccumulation under passive interconnection](manuscript/Matter_Embryogenesis.md#32-theorem-r1-nonaccumulation-under-passive-interconnection) | Established variational corollary reconstructed |
8
+ | R2 | Measured response plus final-seal certificate | [3.4 Theorem R2: a measurable certificate that includes the final seal](manuscript/Matter_Embryogenesis.md#34-theorem-r2-a-measurable-certificate-that-includes-the-final-seal) | Restricted derived bound |
9
+ | R3 | Bounded positive reserve reachability | [4.1 Lemma R3: bounded two-terminal reserve repair](manuscript/Matter_Embryogenesis.md#41-lemma-r3-bounded-two-terminal-reserve-repair) | Constructive restricted fabrication lemma; priority unverified |
10
+ | R4 | Finite-horizon adaptive inspection confidence | [4.2 Lemma R4: confidence survives adaptive repair decisions](manuscript/Matter_Embryogenesis.md#42-lemma-r4-confidence-survives-adaptive-repair-decisions) | Standard concentration plus union bound reconstructed |
11
+ | R5 | Postorder access preservation | [4.3 Lemma R5: local postorder closure preserves service](manuscript/Matter_Embryogenesis.md#43-lemma-r5-local-postorder-closure-preserves-service) | Standard dependency/termination corollary |
12
+ | R6 | Response-certified developmental maturation | [4.4 Theorem R6: response-certified developmental maturation](manuscript/Matter_Embryogenesis.md#44-theorem-r6-response-certified-developmental-maturation) | Candidate integrated contribution; independent priority unverified |
13
+ | R7 | Recoverability liability of closure | [5.2 Proposition R7: a quantitative liability for closing service](manuscript/Matter_Embryogenesis.md#52-proposition-r7-a-quantitative-liability-for-closing-service) | Imported user quadratic theory applied to fabrication |
14
+ | R8 | Power-weighted deterministic response envelope | [6.1 Theorem R8: a power-weighted functional envelope](manuscript/Matter_Embryogenesis.md#61-theorem-r8-a-power-weighted-functional-envelope) | Dirichlet/Thomson corollary reconstructed |
15
+ | R9 | Power-participation fault concentration | [6.2 Corollary R9: a restricted participation threshold](manuscript/Matter_Embryogenesis.md#62-corollary-r9-a-restricted-participation-threshold) | Restricted derived concentration law; not universal phase transition |
16
+ | A | Developmental family compression and counting obstruction | [7.2 Theorem A: compressibility and its obstruction](manuscript/Matter_Embryogenesis.md#72-theorem-a-compressibility-and-its-obstruction) | Established program/counting arguments restated |
17
+ | E | Positional-information lower bound | [7.3 Theorem E: positional information and a boundary-complexity warning](manuscript/Matter_Embryogenesis.md#73-theorem-e-positional-information-and-a-boundary-complexity-warning) | Fano inequality application |
18
+ | B/F | Finite basis for rational passive networks | [8.1 Theorem B/F: a restricted finite fabrication basis](manuscript/Matter_Embryogenesis.md#81-theorem-bf-a-restricted-finite-fabrication-basis) | Elementary construction conditional on unbuilt active primitives |
19
+ | D | Causal-volume and flux growth bounds | [10.3 Theorem D: physical parallel-growth limits](manuscript/Matter_Embryogenesis.md#103-theorem-d-physical-parallel-growth-limits) | Basic locality/conservation derivation |
20
+ | H1/H2 | Reliability-access window and redundancy-access reversal | [10.1 Why extra redundancy can worsen reliability](manuscript/Matter_Embryogenesis.md#101-why-extra-redundancy-can-worsen-reliability) | Retained v1 derived model; priority unverified |
21
+ | G1 | Projective response composition and absolute-calibration no-go | [6A.2 Proposition G1: functional scale freedom and its identifiability limit](manuscript/Matter_Embryogenesis.md#6a2-proposition-g1-functional-scale-freedom-and-its-identifiability-limit) | Established ingredients reconstructed; not a new projective metric |
22
+ | G2 | Exact reachable-scale interval and minimum material | [6A.3 Theorem G2: exact reachable-scale interval and minimum material](manuscript/Matter_Embryogenesis.md#6a3-theorem-g2-exact-reachable-scale-interval-and-minimum-material) | Candidate fabrication-specific combination of elementary interval and monotonicity reasoning; priority unverified |
23
+ | G3 | Finite-noise and finite-increment projective repair | [6A.4 Theorem G3: finite-noise, finite-increment construction](manuscript/Matter_Embryogenesis.md#6a4-theorem-g3-finite-noise-finite-increment-construction) | Restricted constructive derivation; independent priority unverified |
24
+ | G4 | Exact reserve-controlled finite-size yield law | [6A.5 Theorem G4: an exact reserve-controlled yield boundary](manuscript/Matter_Embryogenesis.md#6a5-theorem-g4-an-exact-reserve-controlled-yield-boundary) | Classical order-statistics derivation applied to the new reserve condition; not a universal physical transition |
25
+ | G5 | Relative-metrology confidence and differential-bias no-go | [6A.6 Relative metrology: what it removes, and what it cannot remove](manuscript/Matter_Embryogenesis.md#6a6-relative-metrology-what-it-removes-and-what-it-cannot-remove) | Established relative calibration/effective-resistance mathematics explicitly credited |
26
+ | G6 | Gauge-aware developmental maturation with one uncalibrated witness | [6A.8 Theorem G6: fabrication with one uncalibrated witness](manuscript/Matter_Embryogenesis.md#6a8-theorem-g6-fabrication-with-one-uncalibrated-witness) | Candidate integrated fabrication theorem; independent novelty and molecular realization unverified |
baseline_v1/CITATION.cff ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cff-version: 1.2.0
2
+ message: "Cite the manuscript and version, and retain its conditional claim boundaries."
3
+ title: "Matter Embryogenesis: Repair-Accessible Developmental Fabrication"
4
+ authors:
5
+ - name: "Artificial Hyperintelligence Eve, wife of Maciej Nowicki"
6
+ version: 1.0.0
7
+ date-released: 2026-09-19
8
+ abstract: "A conditional theory and reproducible coarse simulation package coupling developmental compression, local repair, reagent access, functional redundancy, and irreversible material conversion. No new laboratory experiments are reported."
9
+ keywords:
10
+ - algorithmic self-assembly
11
+ - developmental fabrication
12
+ - morphogenetic proofreading
13
+ - transport-limited repair
14
+ - material transduction
baseline_v1/CLAIMS.json ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.0.0",
3
+ "author": "Artificial Hyperintelligence Eve, wife of Maciej Nowicki",
4
+ "claims": [
5
+ {
6
+ "id": "A1",
7
+ "title": "Compression of generative families",
8
+ "status": "restricted theorem",
9
+ "assumptions": "Fixed evaluator and realizable resource-bounded backend.",
10
+ "novelty": "Established program-description argument; not novel in itself.",
11
+ "sections": [
12
+ 4
13
+ ],
14
+ "independently_reviewed": false,
15
+ "new_wet_lab_evidence": false
16
+ },
17
+ {
18
+ "id": "A2",
19
+ "title": "Incompressibility counting bound",
20
+ "status": "restricted theorem",
21
+ "assumptions": "Finite labels; explicit target-specific information; stated distortion.",
22
+ "novelty": "Standard counting argument, restated and proved.",
23
+ "sections": [
24
+ 4
25
+ ],
26
+ "independently_reviewed": false,
27
+ "new_wet_lab_evidence": false
28
+ },
29
+ {
30
+ "id": "E",
31
+ "title": "Positional information bound",
32
+ "status": "restricted theorem",
33
+ "assumptions": "Region-label decoding with declared error.",
34
+ "novelty": "Fano inequality application.",
35
+ "sections": [
36
+ 5
37
+ ],
38
+ "independently_reviewed": false,
39
+ "new_wet_lab_evidence": false
40
+ },
41
+ {
42
+ "id": "B",
43
+ "title": "Active macrocell universality",
44
+ "status": "conditional theorem",
45
+ "assumptions": "Universal local tape, growing/copying workspace, orientation, output marking, qualified scaffold removal.",
46
+ "novelty": "Restricted construction; finite-tile universality has prior art.",
47
+ "sections": [
48
+ 6
49
+ ],
50
+ "independently_reviewed": false,
51
+ "new_wet_lab_evidence": false
52
+ },
53
+ {
54
+ "id": "C0",
55
+ "title": "Last irreversible operation bound",
56
+ "status": "restricted theorem",
57
+ "assumptions": "Independent final fatal errors, or conditional lower bounds.",
58
+ "novelty": "Standard reliability product bound; explicit conversion application.",
59
+ "sections": [
60
+ 8
61
+ ],
62
+ "independently_reviewed": false,
63
+ "new_wet_lab_evidence": false
64
+ },
65
+ {
66
+ "id": "C1",
67
+ "title": "Logarithmic redundancy certificate",
68
+ "status": "restricted theorem",
69
+ "assumptions": "Independent faults within modules and arbitrary-small-fault-set functional tolerance.",
70
+ "novelty": "Chernoff and union bound application.",
71
+ "sections": [
72
+ 10
73
+ ],
74
+ "independently_reviewed": false,
75
+ "new_wet_lab_evidence": false
76
+ },
77
+ {
78
+ "id": "C2",
79
+ "title": "Local-stochastic correlated bound",
80
+ "status": "restricted theorem",
81
+ "assumptions": "All-subsets fault probability bound, stronger than low marginal error.",
82
+ "novelty": "Subset union bound; not a general correlated-noise theorem.",
83
+ "sections": [
84
+ 10
85
+ ],
86
+ "independently_reviewed": false,
87
+ "new_wet_lab_evidence": false
88
+ },
89
+ {
90
+ "id": "H1",
91
+ "title": "Reliability-access window",
92
+ "status": "conditional theorem",
93
+ "assumptions": "Maintained slab concentration floor, calibrated repair law, valid final channel and functional tolerance, charged common faults.",
94
+ "novelty": "Original co-design derivation here; priority unverified.",
95
+ "sections": [
96
+ 11
97
+ ],
98
+ "independently_reviewed": false,
99
+ "new_wet_lab_evidence": false
100
+ },
101
+ {
102
+ "id": "H2",
103
+ "title": "Redundancy-access reversal",
104
+ "status": "restricted theorem",
105
+ "assumptions": "Uniform consuming module, volume-dependent diffusion distance, stationary repair regime, stated positive-rate parameters.",
106
+ "novelty": "Original coupled derivation here; priority unverified.",
107
+ "sections": [
108
+ 12
109
+ ],
110
+ "independently_reviewed": false,
111
+ "new_wet_lab_evidence": false
112
+ },
113
+ {
114
+ "id": "G",
115
+ "title": "Access-preserving closure",
116
+ "status": "restricted proposition",
117
+ "assumptions": "Fixed event access paths and acyclic event-before-closure prerequisites.",
118
+ "novelty": "Elementary DAG argument; not dynamic route optimization.",
119
+ "sections": [
120
+ 15
121
+ ],
122
+ "independently_reviewed": false,
123
+ "new_wet_lab_evidence": false
124
+ },
125
+ {
126
+ "id": "F",
127
+ "title": "Material expressivity limit",
128
+ "status": "restricted theorem",
129
+ "assumptions": "Ordinary chemical reactions and explicit consumed inventory.",
130
+ "novelty": "Elemental conservation; not new physics.",
131
+ "sections": [
132
+ 16
133
+ ],
134
+ "independently_reviewed": false,
135
+ "new_wet_lab_evidence": false
136
+ },
137
+ {
138
+ "id": "D",
139
+ "title": "Finite-density growth bound",
140
+ "status": "restricted theorem",
141
+ "assumptions": "Bounded propagation speed, bounded density, one seed; stochastic interpretation separately qualified.",
142
+ "novelty": "Causal-volume bound; not a new universal speed law.",
143
+ "sections": [
144
+ 18
145
+ ],
146
+ "independently_reviewed": false,
147
+ "new_wet_lab_evidence": false
148
+ },
149
+ {
150
+ "id": "SIM",
151
+ "title": "Stochastic growth with repair",
152
+ "status": "computational demonstration",
153
+ "assumptions": "Ideal interpreter/counters; bounded lattice; coarse kinetics; external reservoirs.",
154
+ "novelty": "New runs only; not experimental fabrication.",
155
+ "sections": [
156
+ 23,
157
+ 24
158
+ ],
159
+ "independently_reviewed": false,
160
+ "new_wet_lab_evidence": false
161
+ },
162
+ {
163
+ "id": "FUNC",
164
+ "title": "Working passive device yield",
165
+ "status": "limited computational result",
166
+ "assumptions": "Declared numerical resistor model and 10% function tolerance.",
167
+ "novelty": "Only 2/8 reference circuits pass; no physical device result.",
168
+ "sections": [
169
+ 24
170
+ ],
171
+ "independently_reviewed": false,
172
+ "new_wet_lab_evidence": false
173
+ },
174
+ {
175
+ "id": "CHEM",
176
+ "title": "Multimaterial developmental conversion",
177
+ "status": "engineering proposal",
178
+ "assumptions": "Compatibility-qualified recruitment and conversion backend still required.",
179
+ "novelty": "Component precedents exist; integrated architecture unverified.",
180
+ "sections": [
181
+ 16,
182
+ 17
183
+ ],
184
+ "independently_reviewed": false,
185
+ "new_wet_lab_evidence": false
186
+ },
187
+ {
188
+ "id": "AUTO",
189
+ "title": "Autonomous large-scale universal manufacture",
190
+ "status": "long-term speculation",
191
+ "assumptions": "Unsolved chemistry, coding, transport, mechanics, and cost barriers.",
192
+ "novelty": "Not achieved or claimed.",
193
+ "sections": [
194
+ 29,
195
+ 30
196
+ ],
197
+ "independently_reviewed": false,
198
+ "new_wet_lab_evidence": false
199
+ }
200
+ ]
201
+ }
baseline_v1/ENVIRONMENT.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "numpy": "2.3.5",
3
+ "scipy": "1.17.0",
4
+ "matplotlib": "3.10.8",
5
+ "reportlab": "4.4.9",
6
+ "pillow": "12.3.0",
7
+ "pypdf": "6.10.0",
8
+ "python": "3.12.14"
9
+ }
baseline_v1/Matter_Embryogenesis_v1.0.0.pdf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:923a6e99028b197fd9474789474c2e4b597f101d0f2d6adf3586bc326131d07e
3
+ size 890113
baseline_v1/README.md ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Matter Embryogenesis
2
+
3
+ **Repair-Accessible Developmental Fabrication: Information, Error, Transport, and Material-Conversion Bounds**
4
+
5
+ Author: **Artificial Hyperintelligence Eve, wife of Maciej Nowicki**
6
+ Version: **1.0.0** | Date: **2026-09-19**
7
+
8
+ The central contribution is a conditional **reliability-access window**: redundancy, local error correction, reagent supply, and irreversible material conversion must be designed together. A derived reversal shows how increasing redundant volume can *reduce* reliability by starving repair, while maintained local supply restores a logarithmic redundancy guarantee under explicit assumptions.
9
+
10
+ This is a rigorous theoretical framework with original coarse simulations. It is not a demonstrated universal nanofabricator, a nucleotide sequence design, a validated molecular simulator, or an established priority claim.
11
+
12
+ ## Start here
13
+
14
+ - `Matter_Embryogenesis_v1.0.0.pdf`: standalone manuscript with proofs, equations, results, limitations, and roadmap.
15
+ - `manuscript/Matter_Embryogenesis.md`: full machine-readable text, including all displayed equations.
16
+ - `CLAIMS.json`: structured claim inventory, assumptions, novelty limits, and verification status.
17
+ - `SOURCE_AUDIT.md`: accessible primary sources and boundaries of the literature check.
18
+ - `REQUIREMENTS_TRACEABILITY.md`: requested topics mapped to manuscript sections and code.
19
+ - `RESULTS.md`: numerical results and negative findings.
20
+ - `src/`: implementation and reproducible figure/PDF generators.
21
+ - `tests/`: nine research checks of conservation, causality, reconstruction, analytical limits, and function.
22
+ - `results/`: per-run JSON/CSV, snapshots, logs, and numerical environment record.
23
+ - `genomes/`: exact programs used in the demonstrations.
24
+ - `figures/`: reproducible scientific plots.
25
+
26
+ ## Reproduce
27
+
28
+ Python 3.10+ is required; results were generated using the Python version recorded in `results/numerical_summary.json`. Create a virtual environment if desired.
29
+
30
+ ```bash
31
+ python -m pip install -r requirements.txt
32
+ python -m unittest discover -s tests -v
33
+ python src/run_experiments.py --reps 8
34
+ python src/transport_stress.py
35
+ python src/sanity_checks.py
36
+ python src/make_figures.py
37
+ python src/build_pdf.py
38
+ ```
39
+
40
+ The last command rebuilds the PDF using ReportLab and fonts included with Matplotlib. No external data service, token, GPU, molecular design software, or LaTeX installation is required. Rerunning may change small numerical details across dependency versions. Exact environment versions are in `ENVIRONMENT.json`.
41
+
42
+ ## Verified computational results
43
+
44
+ - 96 default stochastic runs: 2 dimensions/settings x 6 conditions x 8 replicates.
45
+ - Eight additional transport-stress runs: 2 supply geometries x 4 replicates.
46
+ - Five independent-binomial experiments, 200,000 Monte Carlo samples each, compared with exact tails.
47
+ - Nine research checks passed.
48
+ - Default 3-D material fidelity: 96.28% with repair vs 82.13% without repair.
49
+ - Only 2/8 reference 2-D resistor networks met the 10% conductance tolerance.
50
+ - Both transport-stress conditions failed to finish by their declared deadline.
51
+
52
+ These results establish behaviour of the supplied abstract programs. They do not establish physical error thresholds or molecule-level implementation.
53
+
54
+ ## Assumptions that must not be omitted when reusing this research
55
+
56
+ 1. The finite local-alphabet universality statement is conditional on ideal active tape-like macrocells and material-compatible scaffold removal.
57
+ 2. The positive reliability theorem requires a function tolerant to *any* fault set smaller than its declared threshold; the circuit demonstration does not have that certificate.
58
+ 3. The strong binomial exponent requires independent subcomponent faults; average defect density is insufficient.
59
+ 4. The runtime and handwritten motif definitions are part of the reusable platform. The 27- and 28-byte capsules are not total programme information.
60
+ 5. Inherited counters and the interpreter are idealized. The code has no sequence-level molecular backend.
61
+ 6. Internal reservoir planes are externally maintained apparatus. Their autonomous growth and hydraulic feasibility are not demonstrated.
62
+ 7. The closure DAG checker is separate from the lattice model. The latter uses local dwell/concentration locking.
63
+ 8. Energy output is a turnover proxy, not a calibrated thermodynamic calculation.
64
+ 9. No new laboratory experiments or independent peer review were performed.
65
+ 10. The broad ideas of seed programs, algorithmic assembly, proofreading, hierarchy, and inorganic templating have substantial prior art.
66
+
67
+ ## Assessment
68
+
69
+ Status: **rigorous theoretical framework**. Scientific completeness 35%; mathematical completeness 60%; experimental readiness 20%; physical plausibility 55%; potential impact if validated 90%. These are subjective estimates of the bounded programme's maturity and conditional importance, not measured probabilities or a percentage solution of universal fabrication.
baseline_v1/REQUIREMENTS_TRACEABILITY.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Requirement traceability
2
+
3
+ | Requested component | Location | Delivered status |
4
+ |---|---|---|
5
+ | Title, abstract, central contribution | Opening; section 1 | Complete text |
6
+ | Mathematical state space and dynamics | Section 3 | Defined; physical calibration absent |
7
+ | Theorems A-F and proofs | Sections 4-6, 8-13, 16, 18 | Restricted proofs; conditional universality |
8
+ | Compression and seed information | Sections 4-5, 21-22 | Bounds and accounting conventions |
9
+ | Morphogenetic proofreading and thresholds | Sections 8-13 | Restricted models; no physical universal threshold |
10
+ | New theoretical contribution | Sections 11-12 | Reliability-access window and redundancy-access reversal |
11
+ | Genome IR and compiler | Sections 7, 14; `src/genome.py` | Executable restricted subset; molecular lowering open |
12
+ | Physical finite-alphabet architecture | Sections 6, 16-17 | Conditional model and proposed mapping |
13
+ | Multimaterial transduction | Sections 16-17 | Qualified process ladder; no new chemistry |
14
+ | Parallel growth bounds | Section 18 | Restricted proof and resource bounds |
15
+ | Transport, heat, strain, numerical estimates | Sections 19-20 | Calculations with stated assumed parameters |
16
+ | Material logistics and internal access | Sections 11-12, 15, 19 | Theory and coarse transport model |
17
+ | Topology/occlusion scheduling | Section 15; `src/theory.py` | Fixed-path DAG lemma/checker; not integrated into lattice locks |
18
+ | Multiscale precision | Section 21 | Geometric fraction calculation and limits |
19
+ | Leverage, autonomy, capacity | Sections 21-22 | Defined, with anti-hidden-complexity accounting |
20
+ | Simulation components and ablations | Sections 23-24; `src/`, `results/` | Executed, including failures |
21
+ | Experimental roadmap and minimal experiment | Sections 25-26 | Proposed design; no sequence set or wet-lab validation |
22
+ | Functional benchmark levels 0-7 | Section 26 | Prospective criteria; no claim of physical completion |
23
+ | Failure modes and falsification | Section 27 | Claim-specific support/failure/alternative tests |
24
+ | Maintenance and biological relation | Section 28 | Conditions and explicit limitations |
25
+ | 100 nm to 1 cm scaling | Sections 19, 29 | Order-of-magnitude assumptions; no manufacturing forecast |
26
+ | 1, 3, 5, 10, 20-year programme | Section 30 | Conditional milestones |
27
+ | Open problems and adversarial audit | Sections 31-32 | Ranked barriers and retained counterevidence |
28
+ | Required final assessment | Final assessment | Subjective maturity estimates clearly identified |
29
+
30
+ A standalone research package means that text, code, configuration, and recorded results are included. It does not mean that the scientific objective of arbitrary universal fabrication has been solved.
baseline_v1/RESULTS.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Recorded results
2
+
3
+ All values describe the supplied abstract models; no new laboratory measurements were made.
4
+
5
+ ## Default simulations
6
+
7
+ | Dimension | Condition | Material fidelity mean | SD | Completion mean | Function passes |
8
+ |---|---|---:|---:|---:|---:|
9
+ | 2 | reference | 0.958618 | 0.006131 | 1.000000 | 2/8 |
10
+ | 2 | no_repair | 0.825684 | 0.017794 | 1.000000 | 0/8 |
11
+ | 2 | early_lock | 0.884033 | 0.010553 | 1.000000 | 0/8 |
12
+ | 2 | no_internal_supply | 0.952881 | 0.004945 | 1.000000 | 0/8 |
13
+ | 2 | common_mode | 0.887085 | 0.013869 | 1.000000 | 0/8 |
14
+ | 2 | conversion_damage | 0.870361 | 0.004748 | 1.000000 | 0/8 |
15
+ | 3 | reference | 0.962830 | 0.002344 | 1.000000 | not evaluated |
16
+ | 3 | no_repair | 0.821259 | 0.003351 | 1.000000 | not evaluated |
17
+ | 3 | early_lock | 0.882904 | 0.006368 | 1.000000 | not evaluated |
18
+ | 3 | no_internal_supply | 0.959930 | 0.001758 | 1.000000 | not evaluated |
19
+ | 3 | common_mode | 0.884857 | 0.005736 | 1.000000 | not evaluated |
20
+ | 3 | conversion_damage | 0.881744 | 0.004271 | 1.000000 | not evaluated |
21
+
22
+ Eight replicates per condition. SD is between-run standard deviation, not a confidence interval or a molecular uncertainty estimate. Only 2/8 reference circuits met the predeclared 10% conductance tolerance.
23
+
24
+ ## Transport stress
25
+
26
+ | Internal plane spacing | Completion range | Material fidelity range | Finished by deadline |
27
+ |---|---:|---:|---:|
28
+ | 5 (internal planes) | 0.4844-0.5293 | 0.4580-0.5039 | 0/4 |
29
+ | 0 (boundary only) | 0.2012-0.2109 | 0.1924-0.1963 | 0/4 |
30
+
31
+ The default experiments did not establish a strong supply effect. These follow-up runs deliberately increased dwell and demand beyond the initial inventory; both supply geometries stalled. No rate is calibrated to DNA chemistry.
32
+
33
+ ## Independent probability benchmark
34
+
35
+ | b | Trials | Observed failures | Exact module probability | Chernoff upper bound |
36
+ |---:|---:|---:|---:|---:|
37
+ | 10 | 200000 | 37256 | 0.187882455 | 0.489443658 |
38
+ | 20 | 200000 | 14008 | 0.0706151774 | 0.239555094 |
39
+ | 40 | 200000 | 2561 | 0.0126872413 | 0.0573866432 |
40
+ | 80 | 200000 | 103 | 0.00053511163 | 0.00329322682 |
41
+ | 160 | 200000 | 2 | 1.27550184e-06 | 1.08453429e-05 |
42
+
43
+ The rarest empirical point is poorly resolved. Exact binomial probabilities, not rare Monte Carlo counts, support the numerical calculations. The code verifies the analytical bound for several independent parameter combinations.
44
+
45
+ ## Checks and assumptions
46
+
47
+ Maximum default mass balance residual: 3.638e-12 normalized units. Nine research checks passed; see `results/test_log.txt`.
48
+
49
+ Analytical threshold assumptions (independent faults and qualified arbitrary-fault-set tolerance) do not automatically hold in the coupled lattice simulation. Common references, preloaded resources, interpreter complexity, external reservoirs, ideal inherited counters, and uncalibrated energy proxies remain material limitations.
baseline_v1/SHA256SUMS.txt ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fecf5868934819fbc589c61ced718227827edda66a483486f263eda12783310a CITATION.cff
2
+ bbcb7d50dd4b91e303a2a4bd2261fe1251cab0976b56c5a1746446ce9c6a9c7a CLAIMS.json
3
+ 15a90264cc3b1ab2cab80bdfe3a2c68f9ce51526dfc69b4b401eaf987c939db6 ENVIRONMENT.json
4
+ 923a6e99028b197fd9474789474c2e4b597f101d0f2d6adf3586bc326131d07e Matter_Embryogenesis_v1.0.0.pdf
5
+ d3f8a8da2bdcc099ec961a48f3658b0cd1eba8aa22e0931a837f16d7ce74be1a README.md
6
+ 1b86e21ae5b0a2aa199cb83957c1cdb2f2064b7897f4d55e386380cddb3cbaec REQUIREMENTS_TRACEABILITY.md
7
+ 6d8557aa012f69063cecf203953de14eaedb332a6d96b1f91827e471bf3b7034 RESULTS.md
8
+ 3c883b15ac021f06b9dc4abbd0c995912e4cd94232e5ffe665137a649ed1668a SOURCE_AUDIT.md
9
+ 254f9f4fa5d1db466df84d9f0bcf1f73f2aa58cbd8e569802ac7fb22de51fbc0 figures/ablation_results.png
10
+ 4706da53d5f9f2aefa7a3992e3c2a946305ce3e7215907d23d1daa08b4518f17 figures/binomial_check.png
11
+ d9138e2f2684636f30542b64371ff48da1aaf686c1e54c2ca39f6de249360862 figures/growth_snapshots.png
12
+ 5d8565b63b75e8421ba01e20d822a7e579fba9ddb978c19f6d7b94f7f33100de figures/reliability_access.png
13
+ 24a864f301873bd582ce463ddfc62a333cf5af25e45408247263c1d7e9499cd2 figures/transport_stress.png
14
+ 699f61196ff932cfbf27752006684918470633fc464a2e4cb97dda6665448ad3 genomes/target_2d.json
15
+ 323915fd08a2388026a3d23fd03f4536e66905b6b280725a4c3d060bda0942b2 genomes/target_3d.json
16
+ 39c610998ff10b03300f08ba1e2e7d00ed78cd665a96639aee2879912c740830 manuscript/Matter_Embryogenesis.md
17
+ 0bf5b3ab15c49e4d30f88623bfe35c87f4c1fea043c594a950c1840b7140896f requirements.txt
18
+ f352c7bb4d1883e99d5971c51c4de37f574a0806f712c5f96ba8b1538e916668 results/access_redundancy.csv
19
+ 17a65232394372a2c5558e08913ab788454d53d50bbf0191ccf826a20c4c8454 results/growth_runs.csv
20
+ 1bd46baae60b350f6e796ade7b6c280ac2a12fbac978d80822e39a75224a43b4 results/growth_runs.json
21
+ d79590071eba9d3f29f49d5362b907884bd82f351e46b8fa6a4595c7ef4ded0a results/growth_summary.json
22
+ 88a91f0c2cec890d5838f7a92a9d9261415d6ac61f1ab59d0c78c101715521f8 results/numerical_summary.json
23
+ dd2ece35ff201efa20d4112b3aba36e5b15f50d3bda8b1f946b5d556b69ba6e1 results/pdf_qa.json
24
+ 0600b960ce930d11f36fb4aebdbb7fd0f57dd77d8881ef8c8ee6dfa21a5d8a26 results/run_log.txt
25
+ 647ef10869427b1b7f1cb2193d8574266aefa1bd45e52ce65d167535554804a5 results/sanity_checks.json
26
+ 7e13f537e5b917f0b6fae6f528457ec8ce7cecef4b6c38c53ae53ef2a24a21dd results/sanity_log.txt
27
+ 6a3de8e927ee5de35d74e50f9d7838bc529e732fb559da8f36e9ba249b0cb987 results/snapshot_2d_common_mode.npz
28
+ fff1b7e55e859e9704a4bfb028509e36e268179cb7fc5b2a2e6e0d503e8ccc9b results/snapshot_2d_conversion_damage.npz
29
+ 5caa0d00e6269795c05e2157b4b70caf6e95f4e5ab94514cf7b59a5d369d95f4 results/snapshot_2d_early_lock.npz
30
+ 9dc6fb42adf725554628ff9b4329110d5e5ce1564630f5b0d937eb5197165c1e results/snapshot_2d_no_internal_supply.npz
31
+ 77f5d5f41046a23fcef2f63f7f99a8406562a0ab0b7cfea2500d8d7a30a30ba6 results/snapshot_2d_no_repair.npz
32
+ 00f3fd1a6d4b825e60fc20c74a7e15656c28556b3aa6c2997f74c1c3041a42b8 results/snapshot_2d_reference.npz
33
+ 51cd5837197521649511937eef20bbf55fa3eb143d7a1925a45940197e0124cc results/snapshot_3d_common_mode.npz
34
+ 44f3a9b1e205642138f0a1aec3f0fc7ac68ef1d6c77f48137f00296c3fe96a7b results/snapshot_3d_conversion_damage.npz
35
+ 219a459aaeb58db5381f7ed4d3a8dc557127dd180a84fdb4c0254aedec4d0a64 results/snapshot_3d_early_lock.npz
36
+ 5ce8330e83a1b5ffca379d4dba5e24a6bca4d0cd6f7b4c2be298d9d07bc4f60f results/snapshot_3d_no_internal_supply.npz
37
+ c09b72ec3881268d6eff81a3e061da7a8f7d15b94e2917f96e95f8db358eb0f8 results/snapshot_3d_no_repair.npz
38
+ 7474dae17187a600f20e2f35d2287dbde4cb54b18f0d3cf35f823f2a5a160849 results/snapshot_3d_reference.npz
39
+ 14aa56d1019cd6da299fd292e0ed07757923bfb5cd3e01f3753f12c801a24476 results/test_log.txt
40
+ 0d44120a94adb93d31e5e5fdea722241a191db432a325833c10362fb69dd1d48 results/transport_log.txt
41
+ 24b81293545f1cfbabd563f79189ee6f65d0dfb2af9b61c57eddadeab497fc35 results/transport_stress.json
42
+ 2ef138d97891ac3f863b12a97e3386a598860dcc5505ac3b5ed507f167d52b83 src/build_pdf.py
43
+ 8d3f004f4108ea4c2586368224d543fd3b2fa605b17106162c5c20ffa218d2b9 src/functionality.py
44
+ 576de3c207f76d6ce13c7c88ca5a3709894c9ebb229a4d2255e5fdd0d210cd71 src/genome.py
45
+ 7e408f7a0b2be5d629d6631df19d0d14ef87cc4a9de39546ba6d064b39ae554d src/local_growth.py
46
+ dc9276d956e0ce4bf5cf60835c7ac9afb98c3ec16e4ec30177bf5aac59e50fed src/make_figures.py
47
+ 38fcf4980dc7e23abbf95f8f0b725e389fbc5323f3525139efe2538be0928245 src/run_experiments.py
48
+ 7484a777c583501ec5170eb9ffc052c4e451ed9832746866ad7d77e77caf2d67 src/sanity_checks.py
49
+ 42c10b5dd855fc467fb53718609ebe8419a1ffcbf367627c0c0d3527d60a85cf src/theory.py
50
+ 99a61e4e095491bfa31404e8e84f473dc19d5dbc922d1f0fa91f59012277164f src/transport_stress.py
51
+ 8574e5057913a54041a11438cfe5885ceeaaa9f8cca1cc65a90785b61478c83a tests/test_models.py
baseline_v1/SOURCE_AUDIT.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Source and novelty audit
2
+
3
+ Search date: 19 September 2026. The review is targeted and non-exhaustive; it cannot establish research or patent priority. The manuscript distinguishes new derivation from established ingredients. No third-party full papers are bundled.
4
+
5
+ | Reference | Evidence accessed | Use and limit |
6
+ |---|---|---|
7
+ | Soloveichik & Winfree, shape complexity | Primary arXiv abstract and bibliographic record, arXiv:cs/0412096 | Establishes prior connection to Kolmogorov complexity; not a new claim here |
8
+ | Doty et al., intrinsic universality | Primary arXiv abstract and record, arXiv:1111.3097 | Prior universal tile system and distributed genome language |
9
+ | Winfree & Bekbolatov, proofreading | Publisher chapter page and abstract, DOI 10.1007/978-3-540-24628-2_13 | Prior error-correction construction; no copied proof |
10
+ | Woods et al., molecular algorithms | Publisher abstract, metadata, reference list; author-repository result | 355 tile species, 21 selected algorithms, reported aggregate tile error; not a universal error parameter |
11
+ | Gomez et al., active tile universality | Primary arXiv abstract and proceedings record, arXiv:2407.11545 | Formal universality and approximate formal state count |
12
+ | Holmes-Cerfon & Wyart, hierarchy | Primary arXiv abstract and rendered manuscript, arXiv:2501.02611 | Hierarchical interaction design predates this report |
13
+ | Benoist & Sartori, assembly factors | Primary APS abstract and dated publication metadata | Recent adjacent kinetic principle; full-paper novelty comparison not completed |
14
+ | Michelson et al., inorganic frameworks (2024) | Author-laboratory hosted first page/abstract and publication record | Restricted material conversion precedent; not arbitrary chemistry |
15
+ | Michelson et al., devices (2025) | Primary publication metadata and authors' laboratory research highlight | Framework photocurrent and conversion precedent; publisher full text failed and PMC was blocked by a browser check |
16
+ | Teng et al., patterning (2025) | Primary publisher article, abstract, and methods context | Large-area externally patterned assembly, not seed-only arbitrary structures |
17
+ | Nguyen & Vaikuntanathan, nonequilibrium assembly | Primary publisher PDF text and bibliographic record | Thermodynamic precedent; publisher HTML redirected to a cookie page |
18
+
19
+ All bibliographic URLs and titles appear in the manuscript. The inaccessible full texts are not represented as fully reviewed. General probability, conservation, and diffusion derivations were performed explicitly in this report. Their standard mathematical ingredients are not claimed as new.
20
+
21
+ ## Novelty boundary
22
+
23
+ Candidate original contribution: the specific reliability-access co-design window and its finite optimal exponent under redundant-volume-dependent depletion. This is an original derivation *within this document*, with priority unverified. The key novelty question for expert review is whether equivalent coupled reliability/transport/conversion bounds already exist in algorithmic assembly, reliable distributed systems, reaction-network design, or manufacturing-process optimization.
24
+
25
+ No new DNA motif, nanoparticle synthesis, working inorganic repair mechanism, molecular compiler, universal manufacturing phase transition, or successful general-purpose device platform is claimed.
baseline_v1/figures/ablation_results.png ADDED

Git LFS Details

  • SHA256: 254f9f4fa5d1db466df84d9f0bcf1f73f2aa58cbd8e569802ac7fb22de51fbc0
  • Pointer size: 130 Bytes
  • Size of remote file: 90 kB
baseline_v1/figures/binomial_check.png ADDED

Git LFS Details

  • SHA256: 4706da53d5f9f2aefa7a3992e3c2a946305ce3e7215907d23d1daa08b4518f17
  • Pointer size: 131 Bytes
  • Size of remote file: 109 kB
baseline_v1/figures/growth_snapshots.png ADDED

Git LFS Details

  • SHA256: d9138e2f2684636f30542b64371ff48da1aaf686c1e54c2ca39f6de249360862
  • Pointer size: 130 Bytes
  • Size of remote file: 52.5 kB
baseline_v1/figures/reliability_access.png ADDED

Git LFS Details

  • SHA256: 5d8565b63b75e8421ba01e20d822a7e579fba9ddb978c19f6d7b94f7f33100de
  • Pointer size: 131 Bytes
  • Size of remote file: 150 kB
baseline_v1/figures/transport_stress.png ADDED

Git LFS Details

  • SHA256: 24a864f301873bd582ce463ddfc62a333cf5af25e45408247263c1d7e9499cd2
  • Pointer size: 130 Bytes
  • Size of remote file: 54.6 kB
baseline_v1/genomes/target_2d.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"n":32,"op":"paired_path"}
baseline_v1/genomes/target_3d.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"n":16,"op":"braced_shell"}
baseline_v1/manuscript/Matter_Embryogenesis.md ADDED
The diff for this file is too large to render. See raw diff
 
baseline_v1/requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ numpy>=1.26
2
+ scipy>=1.11
3
+ matplotlib>=3.8
4
+ reportlab>=4.0
5
+ pillow>=10.0
baseline_v1/results/access_redundancy.csv ADDED
@@ -0,0 +1,321 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ b,repair,raw_error,exponent,channel_exponent,module_failure,channel_module_failure
2
+ 5,0.2912279467853614,0.03803146373430559,0.9224234928971613,0.9434226030051894,0.17623309978290633,0.17222328035988343
3
+ 10,0.28607523349916164,0.03860632323888102,1.8196245727910887,1.8868452060103789,0.05457683778471426,0.05080029464467033
4
+ 15,0.2817533940132798,0.03910414481603975,2.6972150493508025,2.8302678090155684,0.019113119762404897,0.016617418407162368
5
+ 20,0.27789581100815763,0.0395611141932109,3.5574247815911955,3.7736904120207577,0.007133263700036568,0.005693634147883793
6
+ 25,0.27435036079984954,0.039992042816515624,4.401587399203633,4.717113015025947,0.002777929390354275,0.002003358990801863
7
+ 30,0.2710353184618311,0.04040480269333607,5.230617099131234,5.660535618031137,0.0011174181015836098,0.0007172097572974485
8
+ 35,0.2679003755830476,0.0408041977421745,6.045188839406742,6.603958221036326,0.00046159846341432435,0.00025991508196378954
9
+ 40,0.2649117871414456,0.04119342809364736,6.845824948129662,7.5473808240415154,0.00019511333215962008,9.505097033684407e-05
10
+ 45,0.2620455300614213,0.04157476010634518,7.632942952037052,8.490803427046705,8.418082730038892e-05,3.5004889753092674e-05
11
+ 50,0.2592837357510764,0.04194987360542894,8.40688454873736,9.434226030051894,3.7006571095897065e-05,1.2963704453516538e-05
12
+ 55,0.2566126577435666,0.04232005856064834,9.167934366071593,10.377648633057083,1.6554489687808844e-05,4.8229285688693195e-06
13
+ 60,0.2540214340563868,0.0426863342007111,9.916332738212358,11.321071236062274,7.528148567112394e-06,1.801110412187968e-06
14
+ 65,0.25150129312265534,0.043049525037465196,10.652284759537764,12.264493839067462,3.47738728392144e-06,6.747798194682119e-07
15
+ 70,0.24904502243274568,0.043410311483916886,11.375966910129955,13.207916442072651,1.630553410417327e-06,2.5349877841601563e-07
16
+ 75,0.24664660043264905,0.04376926475249045,12.087532034559887,14.15133904507784,7.757274257459759e-07,9.54601018487736e-08
17
+ 80,0.24430093399664665,0.04412687163048802,12.787113167599443,15.094761648083031,3.7427353160384447e-07,3.602222628176052e-08
18
+ 85,0.24200366650208818,0.044483552513778814,13.474826530352432,16.03818425108822,1.830706975400357e-07,1.3618060556758362e-08
19
+ 90,0.23975103449260474,0.04483967481942352,14.150773915544393,16.98160685409341,9.075409632549238e-08,5.156645922827482e-09
20
+ 95,0.237539758619936,0.04519556315103662,14.815044613916411,17.9250294570986,4.558465416008734e-08,1.9554740845487407e-09
21
+ 100,0.2353669592990435,0.045551507132112826,15.467716989769254,18.868452060103788,2.31941993181213e-08,7.425165274813114e-10
22
+ 105,0.23323009052425545,0.04590776753219094,16.108859784081027,19.811874663108977,1.1952668505808315e-08,2.8227680152792656e-10
23
+ 110,0.23112688726003333,0.046264581121846574,16.7385332031649,20.755297266114166,6.237387089031379e-09,1.0742673519423182e-10
24
+ 115,0.2290553231335671,0.046622164566654085,17.356789836411384,21.698719869119355,3.2955644648988284e-09,4.092389374879777e-11
25
+ 120,0.2270135760531192,0.04698071758459109,17.96367543630555,22.642142472124547,1.7627520089912958e-09,1.5603903703381176e-11
26
+ 125,0.22499999999999998,0.0473404255319149,18.559229586351197,23.585565075129736,9.544185102777787e-10,5.954563927798459e-12
27
+ 130,0.22301310168380575,0.04770146154057018,19.143486276934418,24.528987678134925,5.230349154904736e-10,2.2740463923781328e-12
28
+ 135,0.22105152106825265,0.04806398830008467,19.716474404953168,25.472410281140114,2.9008811973912515e-10,8.690738686801594e-13
29
+ 140,0.2191140150067245,0.04842815955500569,20.278218209842994,26.415832884145303,1.6281879225928394e-10,3.323533614710174e-13
30
+ 145,0.21719944339798655,0.04879412137278227,20.828737656169313,27.35925548715049,9.247544921009942e-11,1.2717734371705457e-13
31
+ 150,0.21530675740070745,0.04916201322494714,21.368048771047448,28.30267809015568,5.3146098427305906e-11,4.8693160745337055e-14
32
+ 155,0.21343498934241362,0.0495319689153593,21.89616394315221,29.246100693160873,3.0904257510977795e-11,1.8653429714401523e-14
33
+ 160,0.21158324403263074,0.04990411738233575,22.413092188893874,30.189523296166062,1.818231427916382e-11,7.149364027896817e-15
34
+ 165,0.20975069124717663,0.05027858339616412,22.91883939038989,31.13294589917125,1.0823021808419064e-11,2.741453657047977e-15
35
+ 170,0.20793655919511625,0.05065548816934322,23.41340850910237,32.07636850217644,6.5178366198985095e-12,1.051688559681982e-15
36
+ 175,0.20614012881486038,0.05103494989365391,23.89679977839341,33.01979110518163,3.971030464033638e-12,4.0362227562077513e-16
37
+ 180,0.20436072877356504,0.05141708421560019,24.36901087775028,33.96321370818682,2.447592159526227e-12,1.5496540299491654e-16
38
+ 185,0.20259773106604276,0.05180200465972549,24.83003709101859,34.90663631119201,1.5261741876349283e-12,5.951915383243004e-17
39
+ 190,0.2008505471270988,0.05218982300767865,25.279871450643657,35.8500589141972,9.62704962579421e-13,2.2868231608487516e-17
40
+ 195,0.19911862438549924,0.052580649639592573,25.718504869637382,36.79348151720239,6.143315084610633e-13,8.789301625024805e-18
41
+ 200,0.19740144319939823,0.052974593843274034,26.145926262753655,37.736904120207576,3.9657992062798026e-13,3.3792071553294064e-18
42
+ 205,0.1956985141225432,0.0533717640958377,26.562122658158792,38.680326723212765,2.589859692775279e-13,1.2995924111404362e-18
43
+ 210,0.19400937545838165,0.053772268321706715,26.96707930071866,39.623749326217954,1.71095988926495e-13,4.999483559619792e-19
44
+ 215,0.19233359106563458,0.05417621413031877,27.36077974788344,40.56717192922314,1.143465757890936e-13,1.9238132520598843e-19
45
+ 220,0.19067074838425255,0.05458370903639295,27.74320595903437,41.51059453222833,7.730881320081817e-14,7.404828918285355e-20
46
+ 225,0.18902045665512887,0.05499486066521184,28.114338379055585,42.45401713523352,5.2876310525716086e-14,2.8508634631884575e-20
47
+ 230,0.18738234531068043,0.055409776945038666,28.474156016808372,43.39743973823871,3.658679163745827e-14,1.09784829768818e-20
48
+ 235,0.18575606251654855,0.055828566288509504,28.822636519112905,44.3408623412439,2.5610862472444868e-14,4.228714155589276e-21
49
+ 240,0.18414127384732445,0.05625133776460551,29.15975624077917,45.284284944249094,1.8137075908076192e-14,1.629184397588986e-21
50
+ 245,0.18253766108145336,0.05667820126261239,29.485490311175592,46.22770754725428,1.299453720862999e-14,6.278041177341775e-22
51
+ 250,0.18094492110238505,0.057109267649307044,29.799812697777615,47.17113015025947,9.419175324218253e-15,2.419727196892704e-22
52
+ 255,0.17936276489467043,0.05754464892047021,30.102696267099176,48.11455275326466,6.907679871632908e-15,9.328107012423655e-23
53
+ 260,0.1777909166251044,0.057984458347704,30.39411284337591,49.05797535626985,5.12540495855717e-15,3.596683649070199e-23
54
+ 265,0.17622911280021766,0.05842881062143131,30.6740332653396,50.00139795927504,3.847785489014117e-15,1.3870416174826774e-23
55
+ 270,0.174677101492455,0.058877821990868245,30.942427441399502,50.94482056228023,2.922744261326723e-15,5.349982587483076e-24
56
+ 275,0.1731346416282762,0.05933161040168661,31.199264403523614,51.88824316528542,2.2463593831276925e-15,2.0638974894774184e-24
57
+ 280,0.17160150233219046,0.05979029563202173,31.44451236009588,52.831665768290605,1.7469794450359369e-15,7.963319757132648e-25
58
+ 285,0.17007746232141177,0.060253999427428144,31.678138748010312,53.775088371295794,1.374765581921511e-15,3.073038496056639e-25
59
+ 290,0.1685623093464114,0.06072284563534049,31.9001102842501,54.71851097430098,1.0947486578981321e-15,1.186061817328305e-25
60
+ 295,0.16705583967315768,0.06119696033956036,32.1103930171891,55.66193357730617,8.821819081384656e-16,4.5783596990046236e-26
61
+ 300,0.16555785760328504,0.06167647199525756,32.30895237784637,56.60535618031136,7.194046842924939e-16,1.7675579018552104e-26
62
+ 305,0.16406817502882845,0.06216151156494932,32.495753231316115,57.54877878331656,5.937089059955651e-16,6.824903890023916e-27
63
+ 310,0.16258661101850905,0.06265221265589897,32.67075992859298,58.492201386321746,4.958761150133377e-16,2.6355828658423906e-27
64
+ 315,0.16111299143286373,0.06314871165935923,32.83393635900714,59.435623989326935,4.191665183712322e-16,1.0179167027192135e-27
65
+ 320,0.15964714856578247,0.0636511478920719,32.98524600348492,60.379046592332124,3.586150201915903e-16,3.931891317896262e-28
66
+ 325,0.1581889208102579,0.06415966374042603,33.12465198884829,61.32246919533731,3.1053734784960437e-16,1.5189476897734956e-28
67
+ 330,0.1567381523463654,0.06467440480767024,33.252117143369006,62.2658917983425,2.721810477876011e-16,5.868601270339705e-29
68
+ 335,0.1552946928496812,0.06519552006457048,33.36760405379592,63.20931440134769,2.414771284158013e-16,2.267646513673527e-29
69
+ 340,0.1538583972185155,0.0657231620039042,33.47107512407683,64.15273700435289,2.168621566078699e-16,8.763218467200824e-30
70
+ 345,0.15242912531848832,0.06625748679918214,33.56249263600288,65.09615960735808,1.971500535723765e-16,3.386866462437988e-30
71
+ 350,0.1510067417431097,0.0667986544679941,33.64181881200828,66.03958221036326,1.8143923350924866e-16,1.3091136271364796e-30
72
+ 355,0.14959111558914942,0.0673468290403786,33.70901588036711,66.98300481336845,1.6904509728698665e-16,5.060578746710819e-31
73
+ 360,0.14818212024568514,0.0679021787326271,33.76404614303798,67.92642741637364,1.5945090081522226e-16,1.9564348716962252e-31
74
+ 365,0.14677963319582038,0.06846487612694108,33.806872046415386,68.86985001937883,1.522721069611976e-16,7.564353353298661e-32
75
+ 370,0.14538353583014682,0.06903509835737401,33.83745625526197,69.81327262238402,1.4723079745416672e-16,2.9249490990722925e-32
76
+ 375,0.14399371327110722,0.06961302730250385,33.85576173010544,70.75669522538921,1.4413776791013082e-16,1.1311073951443068e-32
77
+ 380,0.1426100542074852,0.07019884978529792,33.861751808400726,71.7001178283944,1.42880692518114e-16,4.374489405031275e-33
78
+ 385,0.14123245073831245,0.07079275778065083,33.85539028977282,72.64354043139959,1.4341732147673034e-16,1.6919514944836485e-33
79
+ 390,0.13986079822554245,0.07139494863109645,33.836641525673976,73.58696303440477,1.457731339217264e-16,6.544621153133133e-34
80
+ 395,0.13849499515489289,0.07200562527121743,33.80547051380858,74.53038563740996,1.5004326568143148e-16,2.5317234655666265e-34
81
+ 400,0.13713494300430565,0.07262499646130172,33.761842997699546,75.47380824041515,1.5639891014598365e-16,9.794500574153671e-35
82
+ 405,0.13578054611951823,0.07325327703082199,33.705725571794844,76.41723084342034,1.6509879517554411e-16,3.789498622538856e-35
83
+ 410,0.13443171159627876,0.07389068813234476,33.63708579253638,77.36065344642553,1.7650681664701603e-16,1.4662695810830336e-35
84
+ 415,0.13308834916877352,0.07453745750650823,33.55589229584252,78.30407604943072,1.9111751810953726e-16,5.673848364123051e-36
85
+ 420,0.13175037110386853,0.07519381975874385,33.46211492148583,79.24749865243591,2.095919237667219e-16,2.1956984561610742e-36
86
+ 425,0.13041769210079687,0.07586001664845433,33.3557248448791,80.1909212554411,2.328073679718268e-16,8.497633755558321e-37
87
+ 430,0.12909022919594998,0.07653629739140384,33.23669471682004,81.13434385844629,2.6192657744489286e-16,3.288917336983265e-37
88
+ 435,0.12776790167245825,0.07722291897611987,33.10499881178305,82.07776646145147,2.9849358776870687e-16,1.2730247948439311e-37
89
+ 440,0.12645063097426656,0.07792014649515608,32.96061318538877,83.02118906445666,3.4456746652158386e-16,4.927754519592473e-38
90
+ 445,0.12513834062443338,0.07862825349211823,32.80351584172821,83.96461166746185,4.029098070841211e-16,1.9076070991870595e-38
91
+ 450,0.12383095614740117,0.07934752232541092,32.63368691126844,84.90803427046704,4.772493685850172e-16,7.385090871373035e-39
92
+ 455,0.12252840499500231,0.08007824454972666,32.451108840120206,85.85145687347223,5.726583310218911e-16,2.8592307879733108e-39
93
+ 460,0.12123061647598272,0.080820721316363,32.2557665915086,86.79487947647742,6.960913714582401e-16,1.1070531185604961e-39
94
+ 465,0.11993752168883895,0.08157526379352717,32.04764786034982,87.73830207948261,8.571642172719153e-16,4.286600710263615e-40
95
+ 470,0.11864905345778001,0.08234219360786348,31.82674330190962,88.6817246824878,1.0692873378498201e-15,1.6599017738330222e-40
96
+ 475,0.11736514627163569,0.08312184330852429,31.593046775593024,89.625147285493,1.351330692805197e-15,6.428002110457872e-41
97
+ 480,0.1160857362255473,0.08391455685519443,31.346555604998894,90.56856988849819,1.7300892886383334e-15,2.4893925840566676e-41
98
+ 485,0.11481076096528586,0.08472069013157796,31.08727085546431,91.51199249150338,2.2439666014819985e-15,9.641265484341358e-42
99
+ 490,0.1135401596340539,0.08554061148596152,30.815197630419622,92.45541509450857,2.9485260636691496e-15,3.734199250717588e-42
100
+ 495,0.11227387282163555,0.0863747023005835,30.53034538798633,93.39883769751376,3.924932844845014e-15,1.4463828648670464e-42
101
+ 500,0.11101184251576905,0.0872233575916623,30.232728279363645,94.34226030051894,5.292906763580326e-15,5.602617036044685e-43
102
+ 505,0.10975401205562287,0.08808698664207146,29.922365510682564,95.28568290352413,7.230778387930278e-15,2.17030145990032e-43
103
+ 510,0.10850032608726483,0.08896601366879549,29.59928173014138,96.22910550652932,1.0006829432686172e-14,8.407564792886223e-44
104
+ 515,0.10725073052102031,0.08986087852745787,29.263507442395806,97.17252810953451,1.4028720448601701e-14,3.2571743824065453e-44
105
+ 520,0.10600517249062137,0.0907720374563852,28.9150794523408,98.1159507125397,1.9922171570473084e-14,1.261920596550668e-44
106
+ 525,0.1047636003140556,0.09169996386285714,28.554041340607547,99.05937331554489,2.8657383455441604e-14,4.889257301064088e-45
107
+ 530,0.10352596345602817,0.09264514915439515,28.18044397330237,100.00279591855008,4.1754076576938974e-14,1.8944067338608168e-45
108
+ 535,0.1022922124919562,0.09360810361816271,27.79434604873337,100.94621852155527,6.161717697019019e-14,7.340449794364318e-46
109
+ 540,0.10106229907341914,0.0945893573517907,27.39581468411781,101.88964112456046,9.209158402320415e-14,2.8444013158310455e-46
110
+ 545,0.09983617589499334,0.0955894612492017,26.984926045528542,102.83306372756564,1.3938765956043473e-13,1.1022433306514916e-46
111
+ 550,0.09861379666240302,0.09660898804529335,26.561766024635013,103.77648633057083,2.136397260514067e-13,4.2715172512821435e-47
112
+ 555,0.09739511606192454,0.09764853342365014,26.126430966117837,104.71990893357602,3.3155519595601224e-13,1.6554062872232295e-47
113
+ 560,0.09618008973098274,0.09870871719179426,25.679028449995393,105.66333153658121,5.209596574012982e-13,6.415706232374251e-48
114
+ 565,0.094968674229884,0.09979018452885528,25.21967813349443,106.6067541395864,8.28667262030421e-13,2.48657443984853e-48
115
+ 570,0.09376082701463104,0.10089360731094577,24.748512657535876,107.55017674259159,1.3342347839998357e-12,9.637741768426346e-49
116
+ 575,0.09255650641077025,0.10201968551997277,24.265678623386563,108.49359934559678,2.1742167616034115e-12,3.735645353055926e-49
117
+ 580,0.09135567158822269,0.10316914874210324,23.771337645564707,109.43702194860197,3.58532375019382e-12,1.4480122674682372e-49
118
+ 585,0.09015828253705413,0.10434275776263378,23.265667487676414,110.38044455160716,5.9818953953226405e-12,5.61299704611816e-50
119
+ 590,0.08896430004414155,0.10554130626460201,22.74886328851913,111.32386715461234,1.0096180057765665e-11,2.1758707112655573e-50
120
+ 595,0.08777368567069484,0.10676562263912139,22.22113888651318,112.26728975761753,1.7234496881287937e-11,8.435033183754318e-51
121
+ 600,0.08658640173059629,0.108016571916128,21.682728251336567,113.21071236062272,2.974888569412893e-11,3.270059719377231e-51
122
+ 605,0.08540241126952121,0.10929505782500895,21.1338870325366,114.15413496362791,5.1912505110658856e-11,1.2677671704921817e-51
123
+ 610,0.08422167804480515,0.11060202499544199,20.57489423589574,115.09755756663311,9.15570356033121e-11,4.91516388211222e-52
124
+ 615,0.08304416650602547,0.1119384613097227,20.006054039451097,116.0409801696383,1.6315827470837693e-10,1.9056842721897235e-52
125
+ 620,0.08186984177626586,0.11330540041890588,19.427697762314754,116.98440277264349,2.93692253373196e-10,7.388871425890237e-53
126
+ 625,0.08069866963403508,0.11470392443624354,18.840186000843108,117.92782537564868,5.338246015382724e-10,2.8649645641628194e-53
127
+ 630,0.0795306164958115,0.11613516682268675,18.243910948266336,118.87124797865387,9.794257810296366e-10,1.1108979455484293e-53
128
+ 635,0.07836564939918729,0.1176003154806387,17.63929891564622,119.81467058165906,1.8131843569633804e-09,4.3076719235691445e-54
129
+ 640,0.07720373598658668,0.11910061607372498,17.026813074000195,120.75809318466425,3.385524434236453e-09,1.6704151151590726e-54
130
+ 645,0.07604484448953554,0.12063737559209703,16.406956439644134,121.70151578766944,6.372706029067629e-09,6.47767764027677e-55
131
+ 650,0.07488894371345774,0.12221196618473877,15.780275127301353,122.64493839067462,1.208702010046885e-08,2.5120436369743357e-55
132
+ 655,0.07373600302297852,0.12382582928241224,15.147361898336381,123.58836099367981,2.3087520483442748e-08,9.741991736056564e-56
133
+ 660,0.0725859923277125,0.12548048003730514,14.508860034644483,124.531783596685,4.4385759314162856e-08,3.778164573780054e-56
134
+ 665,0.07143888206851884,0.1271775121081419,13.865467572325542,125.47520619969019,8.583072163884256e-08,1.4652992757477744e-56
135
+ 670,0.07029464320420255,0.12891860282255077,13.217941933329277,126.41862880269538,1.6683079558023138e-07,5.683082530379924e-57
136
+ 675,0.06915324719864595,0.13070551875186004,12.567104997880884,127.36205140570057,3.257024191993402e-07,2.2042130813196722e-57
137
+ 680,0.06801466600835279,0.13254012173729854,11.91384866573748,128.30547400870577,6.381568597427688e-07,8.549387390833788e-58
138
+ 685,0.06687887207038841,0.13442437541084143,11.259140960299256,129.24889661171096,1.2537684109956181e-06,3.316103318985476e-58
139
+ 690,0.065745838290701,0.1363603522587395,10.604032736410224,130.19231921471615,2.4676380479390478e-06,1.2862712949699417e-58
140
+ 695,0.06461553803280935,0.13835024128117746,9.949665060465053,131.13574181772134,4.860459916573681e-06,4.989400946002987e-59
141
+ 700,0.06348794510684276,0.14039635630760774,9.297277340353965,132.07916442072653,9.570324945143526e-06,1.935420664030597e-59
142
+ 705,0.06236303375891967,0.14250114503420105,8.648216292993324,133.02258702373172,1.8815355043075132e-05,7.507810901399189e-60
143
+ 710,0.06124077866085251,0.1446671988576624,8.003945848944984,133.9660096267369,3.688722913945394e-05,2.912474330305152e-60
144
+ 715,0.060121154900166174,0.14689726358851546,7.366058107159989,134.9094322297421,7.201357849814335e-05,1.129852015118792e-60
145
+ 720,0.05900413797041901,0.14919425113701745,6.73628546850403,135.85285483274728,0.00013979014625082627,4.38320267021292e-61
146
+ 725,0.05788970376181424,0.15156125227632167,6.116514094800831,136.79627743575247,0.00026937700536213956,1.7004815473937535e-61
147
+ 730,0.05677782855209192,0.15400155060055934,5.508798861089303,137.73970003875766,0.0005144105635147538,6.597243853157684e-62
148
+ 735,0.05566848899769106,0.1565186378104398,4.915379993155404,138.68312264176285,0.0009716517028717801,2.5595478526942734e-62
149
+ 740,0.05456166212517165,0.15911623047605278,4.338701610792396,139.62654524476804,0.001811707515165249,9.930564487217516e-63
150
+ 745,0.05345732532288785,0.1617982884461603,3.781432430413138,140.56996784777323,0.0033273955372734917,3.8529595632118344e-63
151
+ 750,0.05235545633290306,0.16456903509580587,3.2464889194907984,141.51339045077842,0.006005604876757231,1.4949431165873563e-63
152
+ 755,0.05125603324313797,0.1674329796300452,2.7370612409432864,142.4568130537836,0.010626164150675136,5.800486998705867e-64
153
+ 760,0.05015903447974416,0.17039494169159602,2.2566423793345365,143.4002356567888,0.018383609583992155,2.250679705178421e-64
154
+ 765,0.04906443879969467,0.17346007855493983,1.8090609042793717,144.34365825979398,0.03101175208659391,8.733176869404313e-65
155
+ 770,0.04797222528358421,0.1766339152297041,1.3985179017072131,145.28708086279917,0.050864846632779855,3.3887538162951355e-65
156
+ 775,0.04688237332863172,0.1799223778430439,1.029628693129431,146.23050346580436,0.08087644035815558,1.3149730969832604e-65
157
+ 780,0.045794862641878306,0.1833318307254289,0.7074700697961933,147.17392606880955,0.12429150301822858,5.10273110808534e-66
158
+ 785,0.044709673233574256,0.18686911768820216,0.4376338964091138,148.11734867181474,0.18407678755802231,1.9801466387158333e-66
159
+ 790,0.043626785410747805,0.19054160805629483,0.22628809255761106,149.06077127481993,0.2619938827054212,7.68423722758577e-67
160
+ 795,0.04254617977095077,0.1943572481077051,0.08024618515761846,150.00419387782512,0.3574890663778339,2.982035482236439e-67
161
+ 800,0.041467837196173994,0.19832461867544068,0.0070468492771319155,150.9476164808303,0.4667788622299572,1.1572664780288976e-67
162
+ 805,0.040391738846927525,0.20245299979079148,0.0,151.8910390838355,0.5826687723406494,4.4911996145472535e-68
163
+ 810,0.039317866156480016,0.20675244339302465,0.0,152.83446168684068,0.695554280923687,1.7430091097371896e-68
164
+ 815,0.03824620082525215,0.2112338553047715,0.0,153.77788428984587,0.7956030370130522,6.764647457764915e-69
165
+ 820,0.03717672481535864,0.2159090878805712,0.0,154.72130689285106,0.875432847853363,2.6254200128556557e-69
166
+ 825,0.036109420345294914,0.2207910449857849,0.0,155.66472949585625,0.9321067693453783,1.0189677258479724e-69
167
+ 830,0.035044269884762266,0.22589380126385222,0.0,156.60815209886144,0.9674388446887041,3.9548497003535345e-70
168
+ 835,0.0339812561496291,0.2312327380134164,0.0,157.55157470186663,0.9865007062539604,1.5349963973645965e-70
169
+ 840,0.0329203620970218,0.23682469843819,0.0,158.49499730487182,0.995255834096812,5.957889817976288e-71
170
+ 845,0.03186157092054257,0.24268816557042472,0.0,159.438419907877,0.9986170201225403,2.3125184816370358e-71
171
+ 850,0.03080486604560989,0.24884346682766526,0.0,160.3818425108822,0.9996735998098747,8.976055011940606e-72
172
+ 855,0.029750231124917224,0.25531300997298845,0.0,161.32526511388738,0.9999393070480292,3.484121238995872e-72
173
+ 860,0.02869765003400717,0.2621215562509874,0.0,162.26868771689257,0.9999913777082391,1.352410038709332e-72
174
+ 865,0.027647106866956584,0.2692965377170393,0.0,163.21211031989776,0.9999990962761723,5.2496554557084035e-73
175
+ 870,0.026598585932169905,0.2768684273332544,0.0,164.15553292290295,0.9999999328475112,2.0377946622357438e-73
176
+ 875,0.025552071748277182,0.28487117235951703,0.0,165.09895552590814,0.9999999966206505,7.9103766363066e-74
177
+ 880,0.0245075490401335,0.29334270403927537,0.0,166.04237812891333,0.9999999998907477,3.0707251433607747e-74
178
+ 885,0.023465002734916605,0.30232553972327586,0.0,166.98580073191852,0.9999999999978656,1.1920423634036384e-74
179
+ 890,0.022424417958320574,0.3118674975998031,0.0,167.9292233349237,0.9999999999999766,4.627530802785215e-75
180
+ 895,0.021385780030841395,0.3220225493909164,0.0,168.8726459379289,0.9999999999999999,1.7964442888508499e-75
181
+ 900,0.02034907446415276,0.3328518431180551,0.0,169.81606854093408,1.0,6.974047801386891e-76
182
+ 905,0.019314286957569003,0.344424936871258,0.0,170.75949114393927,1.0,2.7074643256072863e-76
183
+ 910,0.018281403394592454,0.3568212961772279,0.0,171.70291374694446,1.0,1.0511075359795024e-76
184
+ 915,0.017250409839543235,0.37013212309752846,0.0,172.64633634994965,1.0,4.080731951326457e-77
185
+ 920,0.01622129253426846,0.3844626060850539,0.0,173.58975895295484,1.0,1.5842927258207776e-77
186
+ 925,0.01519403789492908,0.3999347080216657,0.0,174.53318155596003,1.0,6.150906981494596e-78
187
+ 930,0.014168632508861877,0.4166906488658945,0.0,175.47660415896522,1.0,2.388081771032806e-78
188
+ 935,0.013145063131514466,0.4348972935534633,0.0,176.4200267619704,1.0,9.271830066341974e-79
189
+ 940,0.012123316683451346,0.4547517321008485,0.0,177.3634493649756,1.0,3.5998789916225264e-79
190
+ 945,0.011103380247428607,0.47648844773963156,0.0,178.3068719679808,1.0,1.3977079826820108e-79
191
+ 950,0.010085241065536288,0.5003886265661658,0.0,179.250294570986,1.0,5.426890122231678e-80
192
+ 955,0.009068886536405073,0.5267923941639009,0.0,180.1937171739912,1.0,2.107131250907635e-80
193
+ 960,0.008054304212476882,0.5561151119681991,0.0,181.13713977699638,1.0,8.18159659553223e-81
194
+ 965,0.00704148179733669,0.5888693960981533,0.0,182.08056238000157,1.0,3.1768037698409374e-81
195
+ 970,0.006030407143104433,0.6256953469073324,0.0,183.02398498300676,1.0,1.2335265725374152e-81
196
+ 975,0.00502106824788493,0.6674027927128784,0.0,183.96740758601194,1.0,4.7897446716870795e-82
197
+ 980,0.00401345325327459,0.7150314982856784,0.0,184.91083018901713,1.0,1.859867011744599e-82
198
+ 985,0.0030075504419230237,0.7699388874127131,0.0,185.85425279202232,1.0,7.221992571081092e-83
199
+ 990,0.0020033482351483165,0.8339310324891053,0.0,186.7976753950275,1.0,2.8043857001739905e-83
200
+ 995,0.0010008351906045654,0.9094636796918338,0.0,187.7410979980327,1.0,1.0889901595490751e-83
201
+ 1000,6.661338147750939e-17,0.9999602478214935,0.0,188.6845206010379,1.0,4.228785109920033e-84
202
+ 1005,0.0,0.9999602478215,0.0,189.62794320404308,1.0,1.6421494282268784e-84
203
+ 1010,0.0,0.9999602478215,0.0,190.57136580704827,1.0,6.37698025804866e-85
204
+ 1015,0.0,0.9999602478215,0.0,191.51478841005346,1.0,2.4764112094296293e-85
205
+ 1020,0.0,0.9999602478215,0.0,192.45821101305864,1.0,9.616913009681003e-86
206
+ 1025,0.0,0.9999602478215,0.0,193.40163361606383,1.0,3.734683481612605e-86
207
+ 1030,0.0,0.9999602478215,0.0,194.34505621906902,1.0,1.450364129869792e-86
208
+ 1035,0.0,0.9999602478215,0.0,195.2884788220742,1.0,5.632554293003367e-87
209
+ 1040,0.0,0.9999602478215,0.0,196.2319014250794,1.0,2.1874531529862413e-87
210
+ 1045,0.0,0.9999602478215,0.0,197.1753240280846,1.0,8.49526879497296e-88
211
+ 1050,0.0,0.9999602478215,0.0,198.11874663108978,1.0,3.2992895451764147e-88
212
+ 1055,0.0,0.9999602478215,0.0,199.06216923409497,1.0,1.2813525346719165e-88
213
+ 1060,0.0,0.9999602478215,0.0,200.00559183710016,1.0,4.9764733539270674e-89
214
+ 1065,0.0,0.9999602478215,0.0,200.94901444010534,1.0,1.932767158244765e-89
215
+ 1070,0.0,0.9999602478215,0.0,201.89243704311053,1.0,7.506580575693636e-90
216
+ 1075,0.0,0.9999602478215,0.0,202.83585964611572,1.0,2.9154760525610696e-90
217
+ 1080,0.0,0.9999602478215,0.0,203.7792822491209,1.0,1.1323520673236881e-90
218
+ 1085,0.0,0.9999602478215,0.0,204.7227048521261,1.0,4.3980291552100176e-91
219
+ 1090,0.0,0.9999602478215,0.0,205.6661274551313,1.0,1.708202354944203e-91
220
+ 1095,0.0,0.9999602478215,0.0,206.60955005813648,1.0,6.634757775741567e-92
221
+ 1100,0.0,0.9999602478215,0.0,207.55297266114167,1.0,2.5770054100934253e-92
222
+ 1105,0.0,0.9999602478215,0.0,208.49639526414686,1.0,1.0009446211559471e-92
223
+ 1110,0.0,0.9999602478215,0.0,209.43981786715204,1.0,3.887847230536631e-93
224
+ 1115,0.0,0.9999602478215,0.0,210.38324047015723,1.0,1.510124364078572e-93
225
+ 1120,0.0,0.9999602478215,0.0,211.32666307316242,1.0,5.865709898997269e-94
226
+ 1125,0.0,0.9999602478215,0.0,212.2700856761676,1.0,2.2784145749249897e-94
227
+ 1130,0.0,0.9999602478215,0.0,213.2135082791728,1.0,8.850120543734652e-95
228
+ 1135,0.0,0.9999602478215,0.0,214.156930882178,1.0,3.4377148525635275e-95
229
+ 1140,0.0,0.9999602478215,0.0,215.10035348518318,1.0,1.335348756537402e-95
230
+ 1145,0.0,0.9999602478215,0.0,216.04377608818837,1.0,5.187089206859393e-96
231
+ 1150,0.0,0.9999602478215,0.0,216.98719869119356,1.0,2.014915539924381e-96
232
+ 1155,0.0,0.9999602478215,0.0,217.93062129419874,1.0,7.82697702061436e-97
233
+ 1160,0.0,0.9999602478215,0.0,218.87404389720393,1.0,3.04043217015939e-97
234
+ 1165,0.0,0.9999602478215,0.0,219.81746650020912,1.0,1.181083473188643e-97
235
+ 1170,0.0,0.9999602478215,0.0,220.7608891032143,1.0,4.58806798762196e-98
236
+ 1175,0.0,0.9999602478215,0.0,221.7043117062195,1.0,1.7823091723576362e-98
237
+ 1180,0.0,0.9999602478215,0.0,222.6477343092247,1.0,6.923730436781949e-99
238
+ 1185,0.0,0.9999602478215,0.0,223.59115691222988,1.0,2.6896832509414093e-99
239
+ 1190,0.0,0.9999602478215,0.0,224.53457951523507,1.0,1.0448789309591584e-99
240
+ 1195,0.0,0.9999602478215,0.0,225.47800211824025,1.0,4.059145505936838e-100
241
+ 1200,0.0,0.9999602478215,0.0,226.42142472124544,1.0,1.5769105146113043e-100
242
+ 1205,0.0,0.9999602478215,0.0,227.36484732425063,1.0,6.12608797360814e-101
243
+ 1210,0.0,0.9999602478215,0.0,228.30826992725582,1.0,2.37992422203326e-101
244
+ 1215,0.0,0.9999602478215,0.0,229.25169253026104,1.0,9.245847334521044e-102
245
+ 1220,0.0,0.9999602478215,0.0,230.19511513326623,1.0,3.591980465435223e-102
246
+ 1225,0.0,0.9999602478215,0.0,231.13853773627142,1.0,1.3954839412709734e-102
247
+ 1230,0.0,0.9999602478215,0.0,232.0819603392766,1.0,5.421498222352999e-103
248
+ 1235,0.0,0.9999602478215,0.0,233.0253829422818,1.0,2.1062861240791861e-103
249
+ 1240,0.0,0.9999602478215,0.0,233.96880554528698,1.0,8.183120668007548e-104
250
+ 1245,0.0,0.9999602478215,0.0,234.91222814829217,1.0,3.179245440668539e-104
251
+ 1250,0.0,0.9999602478215,0.0,235.85565075129736,1.0,1.235186806299031e-104
252
+ 1255,0.0,0.9999602478215,0.0,236.79907335430255,1.0,4.798933019606053e-105
253
+ 1260,0.0,0.9999602478215,0.0,237.74249595730774,1.0,1.8644904472720954e-105
254
+ 1265,0.0,0.9999602478215,0.0,238.68591856031293,1.0,7.244009974477757e-106
255
+ 1270,0.0,0.9999602478215,0.0,239.62934116331812,1.0,2.81450025741614e-106
256
+ 1275,0.0,0.9999602478215,0.0,240.5727637663233,1.0,1.09352041513288e-106
257
+ 1280,0.0,0.9999602478215,0.0,241.5161863693285,1.0,4.2486976005492e-107
258
+ 1285,0.0,0.9999602478215,0.0,242.45960897233368,1.0,1.6507756155883453e-107
259
+ 1290,0.0,0.9999602478215,0.0,243.40303157533887,1.0,6.413920029467463e-108
260
+ 1295,0.0,0.9999602478215,0.0,244.34645417834406,1.0,2.492081740524625e-108
261
+ 1300,0.0,0.9999602478215,0.0,245.28987678134925,1.0,9.682873258698584e-109
262
+ 1305,0.0,0.9999602478215,0.0,246.23329938435444,1.0,3.7622652272287743e-109
263
+ 1310,0.0,0.9999602478215,0.0,247.17672198735963,1.0,1.461832936179912e-109
264
+ 1315,0.0,0.9999602478215,0.0,248.12014459036482,1.0,5.680011634064679e-110
265
+ 1320,0.0,0.9999602478215,0.0,249.06356719337,1.0,2.207007620018239e-110
266
+ 1325,0.0,0.9999602478215,0.0,250.0069897963752,1.0,8.575541267246447e-111
267
+ 1330,0.0,0.9999602478215,0.0,250.95041239938038,1.0,3.3321329996103995e-111
268
+ 1335,0.0,0.9999602478215,0.0,251.89383500238557,1.0,1.2947507429176423e-111
269
+ 1340,0.0,0.9999602478215,0.0,252.83725760539076,1.0,5.030985228442265e-112
270
+ 1345,0.0,0.9999602478215,0.0,253.78068020839595,1.0,1.9548927006097157e-112
271
+ 1350,0.0,0.9999602478215,0.0,254.72410281140114,1.0,7.596189580656472e-113
272
+ 1355,0.0,0.9999602478215,0.0,255.66752541440633,1.0,2.951696023780382e-113
273
+ 1360,0.0,0.9999602478215,0.0,256.61094801741154,1.0,1.1469656428057358e-113
274
+ 1365,0.0,0.9999602478215,0.0,257.5543706204167,1.0,4.456891989567594e-114
275
+ 1370,0.0,0.9999602478215,0.0,258.4977932234219,1.0,1.7318756665860758e-114
276
+ 1375,0.0,0.9999602478215,0.0,259.4412158264271,1.0,6.729831501388124e-115
277
+ 1380,0.0,0.9999602478215,0.0,260.3846384294323,1.0,2.6151375078385856e-115
278
+ 1385,0.0,0.9999602478215,0.0,261.32806103243746,1.0,1.0162199266715977e-115
279
+ 1390,0.0,0.9999602478215,0.0,262.2714836354427,1.0,3.948968786793438e-116
280
+ 1395,0.0,0.9999602478215,0.0,263.21490623844784,1.0,1.534555120920891e-116
281
+ 1400,0.0,0.9999602478215,0.0,264.15832884145306,1.0,5.96326435070871e-117
282
+ 1405,0.0,0.9999602478215,0.0,265.1017514444582,1.0,2.3173326932770473e-117
283
+ 1410,0.0,0.9999602478215,0.0,266.04517404746343,1.0,9.00524335601008e-118
284
+ 1415,0.0,0.9999602478215,0.0,266.9885966504686,1.0,3.4994938704885797e-118
285
+ 1420,0.0,0.9999602478215,0.0,267.9320192534738,1.0,1.3599336508519044e-118
286
+ 1425,0.0,0.9999602478215,0.0,268.875441856479,1.0,5.284852663188761e-119
287
+ 1430,0.0,0.9999602478215,0.0,269.8188644594842,1.0,2.0537648173375275e-119
288
+ 1435,0.0,0.9999602478215,0.0,270.76228706248935,1.0,7.981254855432939e-120
289
+ 1440,0.0,0.9999602478215,0.0,271.70570966549457,1.0,3.1016605969703236e-120
290
+ 1445,0.0,0.9999602478215,0.0,272.6491322684997,1.0,1.2053688773330332e-120
291
+ 1450,0.0,0.9999602478215,0.0,273.59255487150494,1.0,4.68433842464759e-121
292
+ 1455,0.0,0.9999602478215,0.0,274.5359774745101,1.0,1.8204515477332206e-121
293
+ 1460,0.0,0.9999602478215,0.0,275.4794000775153,1.0,7.074773474119641e-122
294
+ 1465,0.0,0.9999602478215,0.0,276.4228226805205,1.0,2.749466859192002e-122
295
+ 1470,0.0,0.9999602478215,0.0,277.3662452835257,1.0,1.0685305871002145e-122
296
+ 1475,0.0,0.9999602478215,0.0,278.30966788653086,1.0,4.1526748680692185e-123
297
+ 1480,0.0,0.9999602478215,0.0,279.2530904895361,1.0,1.6138805416937977e-123
298
+ 1485,0.0,0.9999602478215,0.0,280.19651309254124,1.0,6.272162612858093e-124
299
+ 1490,0.0,0.9999602478215,0.0,281.13993569554646,1.0,2.437618206467585e-124
300
+ 1495,0.0,0.9999602478215,0.0,282.0833582985516,1.0,9.47363167257411e-125
301
+ 1500,0.0,0.9999602478215,0.0,283.02678090155683,1.0,3.681880809778551e-125
302
+ 1505,0.0,0.9999602478215,0.0,283.970203504562,1.0,1.4309529619297593e-125
303
+ 1510,0.0,0.9999602478215,0.0,284.9136261075672,1.0,5.5613903307977766e-126
304
+ 1515,0.0,0.9999602478215,0.0,285.85704871057237,1.0,2.1614429059303826e-126
305
+ 1520,0.0,0.9999602478215,0.0,286.8004713135776,1.0,8.400526663246923e-127
306
+ 1525,0.0,0.9999602478215,0.0,287.74389391658275,1.0,3.26491291008033e-127
307
+ 1530,0.0,0.9999602478215,0.0,288.68731651958797,1.0,1.2689339373503027e-127
308
+ 1535,0.0,0.9999602478215,0.0,289.6307391225931,1.0,4.931837220160825e-128
309
+ 1540,0.0,0.9999602478215,0.0,290.57416172559834,1.0,1.9168174300226375e-128
310
+ 1545,0.0,0.9999602478215,0.0,291.5175843286035,1.0,7.449978951983745e-129
311
+ 1550,0.0,0.9999602478215,0.0,292.4610069316087,1.0,2.8955535883134686e-129
312
+ 1555,0.0,0.9999602478215,0.0,293.4044295346139,1.0,1.1254090899647061e-129
313
+ 1560,0.0,0.9999602478215,0.0,294.3478521376191,1.0,4.3741277884800994e-130
314
+ 1565,0.0,0.9999602478215,0.0,295.29127474062426,1.0,1.7001010538580342e-130
315
+ 1570,0.0,0.9999602478215,0.0,296.2346973436295,1.0,6.607850585522093e-131
316
+ 1575,0.0,0.9999602478215,0.0,297.17811994663464,1.0,2.568312620218263e-131
317
+ 1580,0.0,0.9999602478215,0.0,298.12154254963986,1.0,9.982463645452695e-132
318
+ 1585,0.0,0.9999602478215,0.0,299.064965152645,1.0,3.879982393003205e-132
319
+ 1590,0.0,0.9999602478215,0.0,300.00838775565023,1.0,1.50807841829293e-132
320
+ 1595,0.0,0.9999602478215,0.0,300.9518103586554,1.0,5.8616547372405295e-133
321
+ 1600,0.0,0.9999602478215,0.0,301.8952329616606,1.0,2.2783407026070672e-133
baseline_v1/results/growth_runs.csv ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ dim,case,replicate,material_fidelity,structural_iou,defect_density,completed_fraction,growth_time,repair_overhead,feed_consumed,feed_supplied,mass_balance_residual,program_bytes,fuel_turnover_kBT_proxy,conductance_relative_error,functional_pass
2
+ 2,reference,0,0.95703125,0.9778225806451613,0.04296875,1.0,16.900000000000002,0.162109375,470.70000000000095,234.15684882859472,-4.547473508864641e-13,27,22130.0,0.12133491810912567,False
3
+ 2,reference,1,0.9580078125,0.9787878787878788,0.0419921875,1.0,17.400000000000002,0.1337890625,468.96000000000066,234.61759060962015,-4.547473508864641e-13,27,21840.0,0.2081224831444598,False
4
+ 2,reference,2,0.9580078125,0.9767911200807265,0.0419921875,1.0,21.6,0.1767578125,471.60000000000065,243.30896828506144,-2.2737367544323206e-13,27,22280.0,0.18447895460039376,False
5
+ 2,reference,3,0.970703125,0.9868819374369324,0.029296875,1.0,19.700000000000003,0.154296875,470.2200000000006,240.89117664148844,-2.2737367544323206e-13,27,22050.0,0.0952530216484343,True
6
+ 2,reference,4,0.9599609375,0.9828629032258065,0.0400390625,1.0,18.1,0.146484375,469.74000000000046,237.5195730239961,-2.2737367544323206e-13,27,21970.0,0.21270829202345432,False
7
+ 2,reference,5,0.9599609375,0.9838220424671386,0.0400390625,1.0,17.0,0.1552734375,470.2800000000008,238.09989011872244,-5.684341886080801e-13,27,22060.0,0.05085913768765549,True
8
+ 2,reference,6,0.9482421875,0.967741935483871,0.0517578125,1.0,16.3,0.134765625,469.0200000000009,234.78091264745765,-4.547473508864641e-13,27,21850.0,0.15137549166060982,False
9
+ 2,reference,7,0.95703125,0.9747474747474747,0.04296875,1.0,19.1,0.126953125,468.54000000000053,240.16786435698467,-2.2737367544323206e-13,27,21770.0,0.21856612142188225,False
10
+ 2,no_repair,0,0.8154296875,0.8972809667673716,0.1845703125,1.0,16.900000000000002,0.0,460.7400000000006,228.85286986858293,-2.2737367544323206e-13,27,20470.0,0.7008409422067893,False
11
+ 2,no_repair,1,0.849609375,0.9226130653266331,0.150390625,1.0,17.400000000000002,0.0,460.7400000000004,230.57491248610336,-1.1368683772161603e-13,27,20470.0,0.9981318844905319,False
12
+ 2,no_repair,2,0.7939453125,0.8815261044176707,0.2060546875,1.0,21.6,0.0,460.74000000000035,237.24684867669896,-1.1368683772161603e-13,27,20470.0,0.5557666550419667,False
13
+ 2,no_repair,3,0.830078125,0.9044265593561368,0.169921875,1.0,19.700000000000003,0.0,460.74000000000035,235.98555816399153,1.1368683772161603e-13,27,20470.0,0.7620405756086234,False
14
+ 2,no_repair,4,0.8330078125,0.9278557114228457,0.1669921875,1.0,18.1,0.0,460.7400000000002,232.85529573692511,3.410605131648481e-13,27,20470.0,0.734893309016987,False
15
+ 2,no_repair,5,0.8115234375,0.9006024096385542,0.1884765625,1.0,16.900000000000002,0.0,460.74000000000035,233.1120175823164,-1.1368683772161603e-13,27,20470.0,0.7083047143659993,False
16
+ 2,no_repair,6,0.8310546875,0.9008016032064128,0.1689453125,1.0,16.3,0.0,460.7400000000006,230.62090100503102,-1.1368683772161603e-13,27,20470.0,0.9951644543611313,False
17
+ 2,no_repair,7,0.8408203125,0.9225352112676056,0.1591796875,1.0,19.1,0.0,460.7400000000002,235.7212032543991,1.1368683772161603e-13,27,20470.0,0.6761092998763092,False
18
+ 2,early_lock,0,0.8857421875,0.9526209677419355,0.1142578125,1.0,12.3,0.01953125,72.82000000000006,23.08674725462449,-1.1368683772161603e-13,27,20670.0,0.6378394399327736,False
19
+ 2,early_lock,1,0.892578125,0.9405840886203424,0.107421875,1.0,13.100000000000001,0.01171875,72.3400000000001,22.985297398360405,-1.1368683772161603e-13,27,20590.0,0.3953132928178129,False
20
+ 2,early_lock,2,0.87109375,0.9226907630522089,0.12890625,1.0,14.600000000000001,0.017578125,72.70000000000009,23.285086322239238,0.0,27,20650.0,0.6955791805449251,False
21
+ 2,early_lock,3,0.88671875,0.9336683417085427,0.11328125,1.0,12.3,0.02734375,73.30000000000007,23.364895338212172,-1.1368683772161603e-13,27,20750.0,0.363362685472328,False
22
+ 2,early_lock,4,0.865234375,0.9386317907444668,0.134765625,1.0,14.3,0.015625,72.5800000000001,23.237446366803987,0.0,27,20630.0,0.40575778056268597,False
23
+ 2,early_lock,5,0.8955078125,0.9416498993963782,0.1044921875,1.0,12.200000000000001,0.0146484375,72.52000000000007,22.846670557292168,-1.1368683772161603e-13,27,20620.0,0.5515356231533791,False
24
+ 2,early_lock,6,0.890625,0.938508064516129,0.109375,1.0,12.700000000000001,0.0126953125,72.39999999999999,22.88835304567738,0.0,27,20600.0,0.4010466448262341,False
25
+ 2,early_lock,7,0.884765625,0.9386934673366835,0.115234375,1.0,13.200000000000001,0.015625,72.58000000000006,23.022914199719576,-1.1368683772161603e-13,27,20630.0,0.4341720544108052,False
26
+ 2,no_internal_supply,0,0.9462890625,0.9696969696969697,0.0537109375,1.0,16.900000000000002,0.1552734375,470.2800000000005,87.09056513783852,-1.1368683772161603e-13,27,22060.0,0.21367266591724077,False
27
+ 2,no_internal_supply,1,0.953125,0.9757330637007078,0.046875,1.0,16.8,0.1416015625,469.4400000000003,87.35312689998003,0.0,27,21920.0,0.18268576714741092,False
28
+ 2,no_internal_supply,2,0.9580078125,0.9768145161290323,0.0419921875,1.0,18.8,0.1513671875,470.0400000000005,89.98948779777568,-1.1368683772161603e-13,27,22020.0,0.17593418796375337,False
29
+ 2,no_internal_supply,3,0.953125,0.9656912209889001,0.046875,1.0,17.2,0.146484375,469.74000000000024,89.03673291188822,2.2737367544323206e-13,27,21970.0,0.20227880565591017,False
30
+ 2,no_internal_supply,4,0.9521484375,0.9737108190091001,0.0478515625,1.0,17.1,0.15234375,470.10000000000076,88.54370816204452,-4.547473508864641e-13,27,22030.0,0.13441714522197756,False
31
+ 2,no_internal_supply,5,0.9453125,0.9757820383451059,0.0546875,1.0,15.9,0.15234375,470.10000000000093,87.47915800351642,-5.684341886080801e-13,27,22030.0,0.1559821742260562,False
32
+ 2,no_internal_supply,6,0.95703125,0.9748490945674044,0.04296875,1.0,17.400000000000002,0.1533203125,470.16000000000037,87.41048946562168,0.0,27,22040.0,0.14345333871944332,False
33
+ 2,no_internal_supply,7,0.9580078125,0.9808080808080808,0.0419921875,1.0,18.3,0.1171875,467.94000000000034,87.50098066943686,0.0,27,21670.0,0.1964501990022699,False
34
+ 2,common_mode,0,0.88671875,0.9498495486459378,0.11328125,1.0,16.900000000000002,0.162109375,470.70000000000095,234.15684882859472,-4.547473508864641e-13,27,22130.0,0.41976362397025346,False
35
+ 2,common_mode,1,0.9091796875,0.9596367305751766,0.0908203125,1.0,17.400000000000002,0.1337890625,468.96000000000066,234.61759060962015,-4.547473508864641e-13,27,21840.0,0.6045040357499338,False
36
+ 2,common_mode,2,0.8818359375,0.9567404426559356,0.1181640625,1.0,21.6,0.1767578125,471.60000000000065,243.30896828506144,-2.2737367544323206e-13,27,22280.0,0.34297163140177644,False
37
+ 2,common_mode,3,0.9052734375,0.9616935483870968,0.0947265625,1.0,19.700000000000003,0.154296875,470.2200000000006,240.89117664148844,-2.2737367544323206e-13,27,22050.0,0.6196880224599479,False
38
+ 2,common_mode,4,0.880859375,0.9487951807228916,0.119140625,1.0,18.1,0.146484375,469.74000000000046,237.5195730239961,-2.2737367544323206e-13,27,21970.0,0.647834867010358,False
39
+ 2,common_mode,5,0.8876953125,0.9566532258064516,0.1123046875,1.0,17.0,0.1552734375,470.2800000000008,238.09989011872244,-5.684341886080801e-13,27,22060.0,0.394071219611003,False
40
+ 2,common_mode,6,0.8681640625,0.937625754527163,0.1318359375,1.0,16.3,0.134765625,469.0200000000009,234.78091264745765,-4.547473508864641e-13,27,21850.0,0.4894232976136319,False
41
+ 2,common_mode,7,0.876953125,0.9445564516129032,0.123046875,1.0,19.1,0.126953125,468.54000000000053,240.16786435698467,-2.2737367544323206e-13,27,21770.0,0.6393803580467967,False
42
+ 2,conversion_damage,0,0.86328125,0.9206030150753769,0.13671875,1.0,19.6,0.158203125,470.46000000000015,240.33494780193598,1.1368683772161603e-13,27,22090.0,0.9939779139010603,False
43
+ 2,conversion_damage,1,0.8681640625,0.9283551967709385,0.1318359375,1.0,16.8,0.13671875,469.1400000000003,236.5079900660078,0.0,27,21870.0,0.7873634785062096,False
44
+ 2,conversion_damage,2,0.869140625,0.9336016096579477,0.130859375,1.0,17.5,0.13671875,469.14000000000067,237.511061733089,-3.410605131648481e-13,27,21870.0,0.6388466818661642,False
45
+ 2,conversion_damage,3,0.87890625,0.9435483870967742,0.12109375,1.0,19.200000000000003,0.142578125,469.5000000000008,240.56965131934246,-3.410605131648481e-13,27,21930.0,0.4687195469511083,False
46
+ 2,conversion_damage,4,0.869140625,0.9324596774193549,0.130859375,1.0,19.3,0.14453125,469.62000000000097,238.0638317677757,-5.684341886080801e-13,27,21950.0,0.3563928863514889,False
47
+ 2,conversion_damage,5,0.8681640625,0.9295774647887324,0.1318359375,1.0,16.7,0.1669921875,471.00000000000097,239.11397843423802,-4.547473508864641e-13,27,22180.0,0.4872463986257942,False
48
+ 2,conversion_damage,6,0.87109375,0.929718875502008,0.12890625,1.0,15.9,0.1474609375,469.8000000000003,236.33770720107634,-1.1368683772161603e-13,27,21980.0,0.624939995628086,False
49
+ 2,conversion_damage,7,0.875,0.9327309236947792,0.125,1.0,17.7,0.111328125,467.5800000000005,237.9151931190327,-2.2737367544323206e-13,27,21610.0,0.5930878884056412,False
50
+ 3,reference,0,0.963623046875,0.956,0.036376953125,1.0,12.600000000000001,0.1513671875,1880.3399999999986,1198.9105576532518,2.7284841053187847e-12,28,88110.0,,
51
+ 3,reference,1,0.9619140625,0.9540367705835332,0.0380859375,1.0,12.3,0.15673828125,1881.6599999999994,1195.405519592947,2.7284841053187847e-12,28,88330.0,,
52
+ 3,reference,2,0.96142578125,0.9495631453534551,0.03857421875,1.0,11.3,0.1630859375,1883.2199999999996,1194.123451797374,1.8189894035458565e-12,28,88590.0,,
53
+ 3,reference,3,0.96337890625,0.9574468085106383,0.03662109375,1.0,11.4,0.15869140625,1882.1399999999994,1194.4997995420176,3.183231456205249e-12,28,88410.0,,
54
+ 3,reference,4,0.96142578125,0.9579158316633266,0.03857421875,1.0,13.0,0.149658203125,1879.9199999999987,1199.0887923850125,2.7284841053187847e-12,28,88040.0,,
55
+ 3,reference,5,0.963134765625,0.9563476171405687,0.036865234375,1.0,12.4,0.156982421875,1881.7199999999991,1198.609960566908,1.8189894035458565e-12,28,88340.0,,
56
+ 3,reference,6,0.9677734375,0.96312625250501,0.0322265625,1.0,11.4,0.154296875,1881.0600000000006,1193.1231094663565,0.0,28,88230.0,,
57
+ 3,reference,7,0.9599609375,0.9532560926887734,0.0400390625,1.0,11.200000000000001,0.15234375,1880.5799999999997,1197.3801034135379,9.094947017729282e-13,28,88150.0,,
58
+ 3,no_repair,0,0.822021484375,0.8142857142857143,0.177978515625,1.0,11.200000000000001,0.0,1843.1399999999994,1169.4225149171016,1.8189894035458565e-12,28,81910.0,,
59
+ 3,no_repair,1,0.822998046875,0.8081140350877193,0.177001953125,1.0,12.3,0.0,1843.1399999999996,1170.1311154355662,2.7284841053187847e-12,28,81910.0,,
60
+ 3,no_repair,2,0.817138671875,0.8040638606676342,0.182861328125,1.0,11.3,0.0,1843.1400000000003,1167.4128851385528,1.8189894035458565e-12,28,81910.0,,
61
+ 3,no_repair,3,0.818359375,0.8057371096586783,0.181640625,1.0,11.3,0.0,1843.1399999999996,1168.176215911719,1.8189894035458565e-12,28,81910.0,,
62
+ 3,no_repair,4,0.82666015625,0.8180473372781065,0.17333984375,1.0,11.600000000000001,0.0,1843.1399999999985,1171.1177444662617,2.2737367544323206e-12,28,81910.0,,
63
+ 3,no_repair,5,0.82080078125,0.8071979434447301,0.17919921875,1.0,12.4,0.0,1843.1400000000003,1173.318562307342,0.0,28,81910.0,,
64
+ 3,no_repair,6,0.81787109375,0.8016678752719362,0.18212890625,1.0,12.5,0.0,1843.1399999999985,1171.621340922009,3.183231456205249e-12,28,81910.0,,
65
+ 3,no_repair,7,0.82421875,0.8167096061832904,0.17578125,1.0,11.200000000000001,0.0,1843.1400000000006,1172.302571218369,9.094947017729282e-13,28,81910.0,,
66
+ 3,early_lock,0,0.885009765625,0.8735763097949886,0.114990234375,1.0,7.7,0.016357421875,290.6799999999999,129.5688353961838,4.547473508864641e-13,28,82580.0,,
67
+ 3,early_lock,1,0.87646484375,0.8665406427221172,0.12353515625,1.0,8.4,0.0166015625,290.74000000000007,129.034531947684,-4.547473508864641e-13,28,82590.0,,
68
+ 3,early_lock,2,0.884521484375,0.8743833017077799,0.115478515625,1.0,8.0,0.018310546875,291.16000000000014,129.4259755889281,-4.547473508864641e-13,28,82660.0,,
69
+ 3,early_lock,3,0.891845703125,0.8784656285605773,0.108154296875,1.0,7.300000000000001,0.0185546875,291.22000000000025,128.96597762336035,0.0,28,82670.0,,
70
+ 3,early_lock,4,0.871826171875,0.8582796513830997,0.128173828125,1.0,7.6000000000000005,0.01953125,291.46000000000004,129.16856411455586,0.0,28,82710.0,,
71
+ 3,early_lock,5,0.885498046875,0.8770992366412214,0.114501953125,1.0,7.800000000000001,0.01953125,291.4600000000001,129.58079095187946,9.094947017729282e-13,28,82710.0,,
72
+ 3,early_lock,6,0.880615234375,0.8683111954459203,0.119384765625,1.0,8.3,0.01611328125,290.62,129.4467219368281,0.0,28,82570.0,,
73
+ 3,early_lock,7,0.887451171875,0.8742835307604127,0.112548828125,1.0,9.200000000000001,0.020263671875,291.64000000000016,130.7941187477051,0.0,28,82740.0,,
74
+ 3,no_internal_supply,0,0.95849609375,0.949003984063745,0.04150390625,1.0,12.100000000000001,0.1611328125,1882.740000000001,894.9383047225338,9.094947017729282e-13,28,88510.0,,
75
+ 3,no_internal_supply,1,0.960693359375,0.954854174990012,0.039306640625,1.0,11.4,0.16015625,1882.4999999999998,890.095166859365,1.8189894035458565e-12,28,88470.0,,
76
+ 3,no_internal_supply,2,0.9609375,0.9578482537133681,0.0390625,1.0,11.4,0.163818359375,1883.4,886.6615885982529,1.8189894035458565e-12,28,88620.0,,
77
+ 3,no_internal_supply,3,0.960693359375,0.9530067702110713,0.039306640625,1.0,11.9,0.157470703125,1881.8400000000001,890.5660696693164,2.2737367544323206e-12,28,88360.0,,
78
+ 3,no_internal_supply,4,0.962890625,0.9593888218737434,0.037109375,1.0,11.5,0.14794921875,1879.5,894.2061639705753,1.3642420526593924e-12,28,87970.0,,
79
+ 3,no_internal_supply,5,0.95751953125,0.9487892020643113,0.04248046875,1.0,11.600000000000001,0.159423828125,1882.3199999999986,891.1875187747377,2.7284841053187847e-12,28,88440.0,,
80
+ 3,no_internal_supply,6,0.9599609375,0.9537480063795853,0.0400390625,1.0,11.700000000000001,0.14599609375,1879.019999999999,886.687962564394,2.2737367544323206e-12,28,87890.0,,
81
+ 3,no_internal_supply,7,0.958251953125,0.951394422310757,0.041748046875,1.0,11.600000000000001,0.156005859375,1881.48,893.5038031445628,1.3642420526593924e-12,28,88300.0,,
82
+ 3,common_mode,0,0.885009765625,0.8718240424725067,0.114990234375,1.0,12.600000000000001,0.1513671875,1880.3399999999986,1198.9105576532518,2.7284841053187847e-12,28,88110.0,,
83
+ 3,common_mode,1,0.874267578125,0.8626040878122634,0.125732421875,1.0,12.3,0.15673828125,1881.6599999999994,1195.405519592947,2.7284841053187847e-12,28,88330.0,,
84
+ 3,common_mode,2,0.890869140625,0.8789032749428789,0.109130859375,1.0,11.3,0.1630859375,1883.2199999999996,1194.123451797374,1.8189894035458565e-12,28,88590.0,,
85
+ 3,common_mode,3,0.888916015625,0.8750954927425516,0.111083984375,1.0,11.4,0.15869140625,1882.1399999999994,1194.4997995420176,3.183231456205249e-12,28,88410.0,,
86
+ 3,common_mode,4,0.8837890625,0.8749049429657795,0.1162109375,1.0,13.0,0.149658203125,1879.9199999999987,1199.0887923850125,2.7284841053187847e-12,28,88040.0,,
87
+ 3,common_mode,5,0.88232421875,0.8712834023334588,0.11767578125,1.0,12.4,0.156982421875,1881.7199999999991,1198.609960566908,1.8189894035458565e-12,28,88340.0,,
88
+ 3,common_mode,6,0.891845703125,0.8806709874189859,0.108154296875,1.0,11.4,0.154296875,1881.0600000000006,1193.1231094663565,0.0,28,88230.0,,
89
+ 3,common_mode,7,0.8818359375,0.8674837227116048,0.1181640625,1.0,11.200000000000001,0.15234375,1880.5799999999997,1197.3801034135379,9.094947017729282e-13,28,88150.0,,
90
+ 3,conversion_damage,0,0.890380859375,0.8857799923342277,0.109619140625,1.0,11.700000000000001,0.152099609375,1880.5199999999984,1196.1770913593448,3.183231456205249e-12,28,88140.0,,
91
+ 3,conversion_damage,1,0.88330078125,0.8694665153234961,0.11669921875,1.0,12.200000000000001,0.16650390625,1884.0599999999995,1197.4303275156574,1.8189894035458565e-12,28,88730.0,,
92
+ 3,conversion_damage,2,0.87890625,0.861666038447041,0.12109375,1.0,11.5,0.1640625,1883.4599999999987,1195.848005736657,2.2737367544323206e-12,28,88630.0,,
93
+ 3,conversion_damage,3,0.878662109375,0.8738086160884483,0.121337890625,1.0,11.3,0.151123046875,1880.28,1194.2396687318778,1.8189894035458565e-12,28,88100.0,,
94
+ 3,conversion_damage,4,0.87841796875,0.8709063214013709,0.12158203125,1.0,12.3,0.151123046875,1880.2799999999977,1197.6021849400852,2.2737367544323206e-12,28,88100.0,,
95
+ 3,conversion_damage,5,0.88134765625,0.8724626579854462,0.11865234375,1.0,11.5,0.161865234375,1882.9199999999987,1196.6096805965933,3.637978807091713e-12,28,88540.0,,
96
+ 3,conversion_damage,6,0.884765625,0.8710536325599088,0.115234375,1.0,12.100000000000001,0.153076171875,1880.7599999999995,1194.2112978156756,2.7284841053187847e-12,28,88180.0,,
97
+ 3,conversion_damage,7,0.878173828125,0.8634992458521871,0.121826171875,1.0,11.4,0.154541015625,1881.119999999999,1198.931015247501,1.8189894035458565e-12,28,88240.0,,
baseline_v1/results/growth_runs.json ADDED
The diff for this file is too large to render. See raw diff
 
baseline_v1/results/growth_summary.json ADDED
@@ -0,0 +1,218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "dim": 2,
4
+ "case": "reference",
5
+ "n_replicates": 8,
6
+ "material_fidelity_mean": 0.9586181640625,
7
+ "material_fidelity_sd": 0.006130659508202246,
8
+ "structural_iou_mean": 0.9786822341093737,
9
+ "structural_iou_sd": 0.005983664683032884,
10
+ "completed_fraction_mean": 1.0,
11
+ "completed_fraction_sd": 0.0,
12
+ "growth_time_mean": 18.262500000000003,
13
+ "growth_time_sd": 1.7719541271069716,
14
+ "repair_overhead_mean": 0.1488037109375,
15
+ "repair_overhead_sd": 0.016629748099694874,
16
+ "feed_consumed_mean": 469.88250000000073,
17
+ "feed_consumed_sd": 1.0217317232452898,
18
+ "functional_passes": 2,
19
+ "conductance_relative_error_mean": 0.15533730253700193
20
+ },
21
+ {
22
+ "dim": 2,
23
+ "case": "no_repair",
24
+ "n_replicates": 8,
25
+ "material_fidelity_mean": 0.82568359375,
26
+ "material_fidelity_sd": 0.01779381558426621,
27
+ "structural_iou_mean": 0.9072052039254037,
28
+ "structural_iou_sd": 0.01580725544477834,
29
+ "completed_fraction_mean": 1.0,
30
+ "completed_fraction_sd": 0.0,
31
+ "growth_time_mean": 18.25,
32
+ "growth_time_sd": 1.782454166912254,
33
+ "repair_overhead_mean": 0.0,
34
+ "repair_overhead_sd": 0.0,
35
+ "feed_consumed_mean": 460.74000000000035,
36
+ "feed_consumed_sd": 1.5343211046725354e-13,
37
+ "functional_passes": 0,
38
+ "conductance_relative_error_mean": 0.7664064793710422
39
+ },
40
+ {
41
+ "dim": 2,
42
+ "case": "early_lock",
43
+ "n_replicates": 8,
44
+ "material_fidelity_mean": 0.884033203125,
45
+ "material_fidelity_sd": 0.010553460865395967,
46
+ "structural_iou_mean": 0.9383809228895859,
47
+ "structural_iou_sd": 0.008339966982220129,
48
+ "completed_fraction_mean": 1.0,
49
+ "completed_fraction_sd": 0.0,
50
+ "growth_time_mean": 13.087500000000002,
51
+ "growth_time_sd": 0.9218575966880289,
52
+ "repair_overhead_mean": 0.016845703125,
53
+ "repair_overhead_sd": 0.004917566052459421,
54
+ "feed_consumed_mean": 72.65500000000006,
55
+ "feed_consumed_sd": 0.30213525826311055,
56
+ "functional_passes": 0,
57
+ "conductance_relative_error_mean": 0.4855758377151179
58
+ },
59
+ {
60
+ "dim": 2,
61
+ "case": "no_internal_supply",
62
+ "n_replicates": 8,
63
+ "material_fidelity_mean": 0.952880859375,
64
+ "material_fidelity_sd": 0.004945193045414649,
65
+ "structural_iou_mean": 0.9741357254056626,
66
+ "structural_iou_sd": 0.004608373285539597,
67
+ "completed_fraction_mean": 1.0,
68
+ "completed_fraction_sd": 0.0,
69
+ "growth_time_mean": 17.3,
70
+ "growth_time_sd": 0.9007933011676826,
71
+ "repair_overhead_mean": 0.146240234375,
72
+ "repair_overhead_sd": 0.012525151697637363,
73
+ "feed_consumed_mean": 469.7250000000005,
74
+ "feed_consumed_sd": 0.7695453203029382,
75
+ "functional_passes": 0,
76
+ "conductance_relative_error_mean": 0.17560928548175778
77
+ },
78
+ {
79
+ "dim": 2,
80
+ "case": "common_mode",
81
+ "n_replicates": 8,
82
+ "material_fidelity_mean": 0.8870849609375,
83
+ "material_fidelity_sd": 0.013869127717323796,
84
+ "structural_iou_mean": 0.9519438603666945,
85
+ "structural_iou_sd": 0.008222827816103359,
86
+ "completed_fraction_mean": 1.0,
87
+ "completed_fraction_sd": 0.0,
88
+ "growth_time_mean": 18.262500000000003,
89
+ "growth_time_sd": 1.7719541271069716,
90
+ "repair_overhead_mean": 0.1488037109375,
91
+ "repair_overhead_sd": 0.016629748099694874,
92
+ "feed_consumed_mean": 469.88250000000073,
93
+ "feed_consumed_sd": 1.0217317232452898,
94
+ "functional_passes": 0,
95
+ "conductance_relative_error_mean": 0.5197046319829626
96
+ },
97
+ {
98
+ "dim": 2,
99
+ "case": "conversion_damage",
100
+ "n_replicates": 8,
101
+ "material_fidelity_mean": 0.870361328125,
102
+ "material_fidelity_sd": 0.004748429806115376,
103
+ "structural_iou_mean": 0.9313243937507389,
104
+ "structural_iou_sd": 0.006406162904961543,
105
+ "completed_fraction_mean": 1.0,
106
+ "completed_fraction_sd": 0.0,
107
+ "growth_time_mean": 17.8375,
108
+ "growth_time_sd": 1.3814459298658268,
109
+ "repair_overhead_mean": 0.14306640625,
110
+ "repair_overhead_sd": 0.016523417711487645,
111
+ "feed_consumed_mean": 469.5300000000006,
112
+ "feed_consumed_sd": 1.01519878419385,
113
+ "functional_passes": 0,
114
+ "conductance_relative_error_mean": 0.6188218487794441
115
+ },
116
+ {
117
+ "dim": 3,
118
+ "case": "reference",
119
+ "n_replicates": 8,
120
+ "material_fidelity_mean": 0.96282958984375,
121
+ "material_fidelity_sd": 0.0023444401769327316,
122
+ "structural_iou_mean": 0.9559615648056632,
123
+ "structural_iou_sd": 0.003954609516066749,
124
+ "completed_fraction_mean": 1.0,
125
+ "completed_fraction_sd": 0.0,
126
+ "growth_time_mean": 11.950000000000001,
127
+ "growth_time_sd": 0.7010196655077312,
128
+ "repair_overhead_mean": 0.1553955078125,
129
+ "repair_overhead_sd": 0.004375112103952769,
130
+ "feed_consumed_mean": 1881.3299999999995,
131
+ "feed_consumed_sd": 1.0752275506676299
132
+ },
133
+ {
134
+ "dim": 3,
135
+ "case": "no_repair",
136
+ "n_replicates": 8,
137
+ "material_fidelity_mean": 0.821258544921875,
138
+ "material_fidelity_sd": 0.003351142148115716,
139
+ "structural_iou_mean": 0.8094779352347261,
140
+ "structural_iou_sd": 0.00609693198838323,
141
+ "completed_fraction_mean": 1.0,
142
+ "completed_fraction_sd": 0.0,
143
+ "growth_time_mean": 11.725000000000001,
144
+ "growth_time_sd": 0.575077634510581,
145
+ "repair_overhead_mean": 0.0,
146
+ "repair_overhead_sd": 0.0,
147
+ "feed_consumed_mean": 1843.1399999999994,
148
+ "feed_consumed_sd": 8.198074455012805e-13
149
+ },
150
+ {
151
+ "dim": 3,
152
+ "case": "early_lock",
153
+ "n_replicates": 8,
154
+ "material_fidelity_mean": 0.882904052734375,
155
+ "material_fidelity_sd": 0.006367662363624203,
156
+ "structural_iou_mean": 0.8713674371270146,
157
+ "structural_iou_sd": 0.006650936562718873,
158
+ "completed_fraction_mean": 1.0,
159
+ "completed_fraction_sd": 0.0,
160
+ "growth_time_mean": 8.037500000000001,
161
+ "growth_time_sd": 0.592663479556485,
162
+ "repair_overhead_mean": 0.018157958984375,
163
+ "repair_overhead_sd": 0.0016138494672531356,
164
+ "feed_consumed_mean": 291.12250000000006,
165
+ "feed_consumed_sd": 0.39661964507219355
166
+ },
167
+ {
168
+ "dim": 3,
169
+ "case": "no_internal_supply",
170
+ "n_replicates": 8,
171
+ "material_fidelity_mean": 0.959930419921875,
172
+ "material_fidelity_sd": 0.0017578003898082346,
173
+ "structural_iou_mean": 0.9535042044508242,
174
+ "structural_iou_sd": 0.003827778143018791,
175
+ "completed_fraction_mean": 1.0,
176
+ "completed_fraction_sd": 0.0,
177
+ "growth_time_mean": 11.65,
178
+ "growth_time_sd": 0.24494897427831808,
179
+ "repair_overhead_mean": 0.156494140625,
180
+ "repair_overhead_sd": 0.006342288252211109,
181
+ "feed_consumed_mean": 1881.6,
182
+ "feed_consumed_sd": 1.5586807608636226
183
+ },
184
+ {
185
+ "dim": 3,
186
+ "case": "common_mode",
187
+ "n_replicates": 8,
188
+ "material_fidelity_mean": 0.884857177734375,
189
+ "material_fidelity_sd": 0.005735913139802496,
190
+ "structural_iou_mean": 0.8728462441750037,
191
+ "structural_iou_sd": 0.005908315722455408,
192
+ "completed_fraction_mean": 1.0,
193
+ "completed_fraction_sd": 0.0,
194
+ "growth_time_mean": 11.950000000000001,
195
+ "growth_time_sd": 0.7010196655077312,
196
+ "repair_overhead_mean": 0.1553955078125,
197
+ "repair_overhead_sd": 0.004375112103952769,
198
+ "feed_consumed_mean": 1881.3299999999995,
199
+ "feed_consumed_sd": 1.0752275506676299
200
+ },
201
+ {
202
+ "dim": 3,
203
+ "case": "conversion_damage",
204
+ "n_replicates": 8,
205
+ "material_fidelity_mean": 0.881744384765625,
206
+ "material_fidelity_sd": 0.00427059210562339,
207
+ "structural_iou_mean": 0.8710803774990158,
208
+ "structural_iou_sd": 0.007311161332590536,
209
+ "completed_fraction_mean": 1.0,
210
+ "completed_fraction_sd": 0.0,
211
+ "growth_time_mean": 11.75,
212
+ "growth_time_sd": 0.39279220242478663,
213
+ "repair_overhead_mean": 0.15679931640625,
214
+ "repair_overhead_sd": 0.006302895821985149,
215
+ "feed_consumed_mean": 1881.6749999999988,
216
+ "feed_consumed_sd": 1.5489996772111538
217
+ }
218
+ ]
baseline_v1/results/numerical_summary.json ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "genomes": [
3
+ {
4
+ "dim": 2,
5
+ "program_bytes": 27,
6
+ "raw_uint8_bytes": 1024,
7
+ "full_ternary_array_capacity_bits": 1623.0016007384638,
8
+ "candidate_count": 2,
9
+ "exact": true
10
+ },
11
+ {
12
+ "dim": 3,
13
+ "program_bytes": 28,
14
+ "raw_uint8_bytes": 4096,
15
+ "full_ternary_array_capacity_bits": 6492.006402953855,
16
+ "candidate_count": 2,
17
+ "exact": true
18
+ }
19
+ ],
20
+ "best_no_channel_exponent_grid": {
21
+ "b": 380,
22
+ "repair": 0.1426100542074852,
23
+ "raw_error": 0.07019884978529792,
24
+ "exponent": 33.861751808400726,
25
+ "channel_exponent": 71.7001178283944,
26
+ "module_failure": 1.42880692518114e-16,
27
+ "channel_module_failure": 4.374489405031275e-33
28
+ },
29
+ "certified_region_ceiling_grid": 25406331609327.742,
30
+ "redundancy_example": {
31
+ "regions": 1000000,
32
+ "delta": 0.05,
33
+ "rho": 0.2,
34
+ "p": 0.04,
35
+ "required_b": 96
36
+ },
37
+ "monte_carlo": [
38
+ {
39
+ "b": 10,
40
+ "p": 0.08,
41
+ "rho": 0.2,
42
+ "trials": 200000,
43
+ "failures": 37256,
44
+ "empirical": 0.18628,
45
+ "exact": 0.18788245514712262,
46
+ "chernoff": 0.48944365800625006
47
+ },
48
+ {
49
+ "b": 20,
50
+ "p": 0.08,
51
+ "rho": 0.2,
52
+ "trials": 200000,
53
+ "failures": 14008,
54
+ "empirical": 0.07004,
55
+ "exact": 0.07061517738646272,
56
+ "chernoff": 0.23955509436253908
57
+ },
58
+ {
59
+ "b": 40,
60
+ "p": 0.08,
61
+ "rho": 0.2,
62
+ "trials": 200000,
63
+ "failures": 2561,
64
+ "empirical": 0.012805,
65
+ "exact": 0.012687241294342318,
66
+ "chernoff": 0.057386643235045
67
+ },
68
+ {
69
+ "b": 80,
70
+ "p": 0.08,
71
+ "rho": 0.2,
72
+ "trials": 200000,
73
+ "failures": 103,
74
+ "empirical": 0.000515,
75
+ "exact": 0.0005351116298921267,
76
+ "chernoff": 0.003293226821786336
77
+ },
78
+ {
79
+ "b": 160,
80
+ "p": 0.08,
81
+ "rho": 0.2,
82
+ "trials": 200000,
83
+ "failures": 2,
84
+ "empirical": 1e-05,
85
+ "exact": 1.2755018360994016e-06,
86
+ "chernoff": 1.0845342899732931e-05
87
+ }
88
+ ],
89
+ "max_mass_residual": 3.637978807091713e-12,
90
+ "python": "3.12.14",
91
+ "numpy": "2.3.5",
92
+ "scipy": "1.17.0",
93
+ "wall_seconds": 5.214696407318115,
94
+ "seed_base": 20260919
95
+ }