Fix Space contrast and dark-mode readability
Browse filesForces a readable light evidence surface across Gradio theme, cards, markdown, tabs, tables, and inputs to prevent white-on-white text in inherited dark-mode contexts.
- app.py +68 -2
- data/artifact_manifest.json +31 -31
- data/event_explanatory_features.csv.gz +1 -1
- data/summary_metrics.json +1 -1
- run_manifest.json +34 -34
- space_release_manifest.json +34 -34
app.py
CHANGED
|
@@ -347,7 +347,63 @@ def download_files():
|
|
| 347 |
|
| 348 |
|
| 349 |
css = """
|
| 350 |
-
.gradio-container {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 351 |
.hero-panel { border: 1px solid #d7dde8; border-radius: 6px; padding: 24px; background: #f7fbfd; margin-bottom: 18px; }
|
| 352 |
.eyebrow { color: #48606f; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
|
| 353 |
.hero-panel h1 { font-size: 32px; line-height: 1.14; margin: 8px 0 10px; color: #18232f; }
|
|
@@ -384,11 +440,21 @@ css = """
|
|
| 384 |
.claim-grid div { background: white; border: 1px solid #d7dde8; border-radius: 6px; padding: 12px; }
|
| 385 |
.claim-grid strong { display: block; color: #18232f; margin-bottom: 5px; }
|
| 386 |
.claim-grid span { color: #40515f; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 387 |
@media (max-width: 760px) { .visual-grid { grid-template-columns: 1fr; } .hero-panel h1 { font-size: 26px; } }
|
| 388 |
"""
|
| 389 |
|
| 390 |
|
| 391 |
-
with gr.Blocks(css=css, title="Nuclear UAP Evidence Surface") as demo:
|
| 392 |
gr.HTML(visual_story_html())
|
| 393 |
gr.HTML(score_cards())
|
| 394 |
with gr.Tabs():
|
|
|
|
| 347 |
|
| 348 |
|
| 349 |
css = """
|
| 350 |
+
.gradio-container {
|
| 351 |
+
max-width: 1180px !important;
|
| 352 |
+
color-scheme: light;
|
| 353 |
+
background: #f3f6fa !important;
|
| 354 |
+
color: #18232f !important;
|
| 355 |
+
--body-background-fill: #f3f6fa;
|
| 356 |
+
--body-text-color: #18232f;
|
| 357 |
+
--block-background-fill: #ffffff;
|
| 358 |
+
--block-border-color: #d7dde8;
|
| 359 |
+
--block-label-text-color: #24324a;
|
| 360 |
+
--input-background-fill: #ffffff;
|
| 361 |
+
--input-border-color: #c8d2de;
|
| 362 |
+
--button-secondary-background-fill: #ffffff;
|
| 363 |
+
--button-secondary-text-color: #18232f;
|
| 364 |
+
}
|
| 365 |
+
.gradio-container,
|
| 366 |
+
.gradio-container h1,
|
| 367 |
+
.gradio-container h2,
|
| 368 |
+
.gradio-container h3,
|
| 369 |
+
.gradio-container h4,
|
| 370 |
+
.gradio-container p,
|
| 371 |
+
.gradio-container li,
|
| 372 |
+
.gradio-container label,
|
| 373 |
+
.gradio-container td,
|
| 374 |
+
.gradio-container th,
|
| 375 |
+
.gradio-container input,
|
| 376 |
+
.gradio-container textarea,
|
| 377 |
+
.gradio-container select {
|
| 378 |
+
color: #18232f !important;
|
| 379 |
+
}
|
| 380 |
+
.gradio-container .prose,
|
| 381 |
+
.gradio-container .markdown,
|
| 382 |
+
.gradio-container [data-testid="markdown"],
|
| 383 |
+
.gradio-container [data-testid="block-label"],
|
| 384 |
+
.gradio-container .dataframe,
|
| 385 |
+
.gradio-container .wrap {
|
| 386 |
+
color: #18232f !important;
|
| 387 |
+
background: transparent;
|
| 388 |
+
}
|
| 389 |
+
.gradio-container button,
|
| 390 |
+
.gradio-container [role="tab"],
|
| 391 |
+
.gradio-container [role="button"] {
|
| 392 |
+
color: #18232f !important;
|
| 393 |
+
}
|
| 394 |
+
.gradio-container table,
|
| 395 |
+
.gradio-container thead,
|
| 396 |
+
.gradio-container tbody,
|
| 397 |
+
.gradio-container tr,
|
| 398 |
+
.gradio-container td,
|
| 399 |
+
.gradio-container th {
|
| 400 |
+
background-color: #ffffff !important;
|
| 401 |
+
}
|
| 402 |
+
.gradio-container code {
|
| 403 |
+
color: #18232f !important;
|
| 404 |
+
background: #eef2f6 !important;
|
| 405 |
+
border: 1px solid #d7dde8;
|
| 406 |
+
}
|
| 407 |
.hero-panel { border: 1px solid #d7dde8; border-radius: 6px; padding: 24px; background: #f7fbfd; margin-bottom: 18px; }
|
| 408 |
.eyebrow { color: #48606f; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
|
| 409 |
.hero-panel h1 { font-size: 32px; line-height: 1.14; margin: 8px 0 10px; color: #18232f; }
|
|
|
|
| 440 |
.claim-grid div { background: white; border: 1px solid #d7dde8; border-radius: 6px; padding: 12px; }
|
| 441 |
.claim-grid strong { display: block; color: #18232f; margin-bottom: 5px; }
|
| 442 |
.claim-grid span { color: #40515f; }
|
| 443 |
+
@media (prefers-color-scheme: dark) {
|
| 444 |
+
.gradio-container {
|
| 445 |
+
background: #f3f6fa !important;
|
| 446 |
+
color: #18232f !important;
|
| 447 |
+
}
|
| 448 |
+
.hero-panel, .score-card, .viz-card, .claim-box, .claim-grid div {
|
| 449 |
+
background-color: #ffffff !important;
|
| 450 |
+
color: #18232f !important;
|
| 451 |
+
}
|
| 452 |
+
}
|
| 453 |
@media (max-width: 760px) { .visual-grid { grid-template-columns: 1fr; } .hero-panel h1 { font-size: 26px; } }
|
| 454 |
"""
|
| 455 |
|
| 456 |
|
| 457 |
+
with gr.Blocks(css=css, title="Nuclear UAP Evidence Surface", theme=gr.themes.Soft()) as demo:
|
| 458 |
gr.HTML(visual_story_html())
|
| 459 |
gr.HTML(score_cards())
|
| 460 |
with gr.Tabs():
|
data/artifact_manifest.json
CHANGED
|
@@ -2,154 +2,154 @@
|
|
| 2 |
"manifest_version": "nuclear_uap_hf_space_package_v0",
|
| 3 |
"repo_id": "cjc0013/nuclear-uap-evidence-surface",
|
| 4 |
"space_url": "https://huggingface.co/spaces/cjc0013/nuclear-uap-evidence-surface",
|
| 5 |
-
"generated_utc": "2026-04-29T02:
|
| 6 |
"source_correlation_run_dir": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_correlation_index_private_preview_final_20260429T010304Z",
|
| 7 |
"source_explanatory_run_dir": "C:\\scraper\\runs\\nuclear_uap_explanatory_index\\nuclear_uap_explanatory_index_private_preview_20260429T011500Z",
|
| 8 |
"artifact_count": 24,
|
| 9 |
"artifacts": [
|
| 10 |
{
|
| 11 |
"artifact_key": "README.md",
|
| 12 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 13 |
"byte_count": 3613,
|
| 14 |
"content_sha256": "ec6afe2acb6d83dfbf6481c46837ae272ceaa3e77f849c302335cf5455278b22"
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"artifact_key": "app.py",
|
| 18 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 19 |
-
"byte_count":
|
| 20 |
-
"content_sha256": "
|
| 21 |
},
|
| 22 |
{
|
| 23 |
"artifact_key": "requirements.txt",
|
| 24 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 25 |
"byte_count": 31,
|
| 26 |
"content_sha256": "76e73ec284b0b0b250edd3b0593e32a1eb40f57d3ce90363852f709e9ad06071"
|
| 27 |
},
|
| 28 |
{
|
| 29 |
"artifact_key": ".gitattributes",
|
| 30 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 31 |
"byte_count": 89,
|
| 32 |
"content_sha256": "d373b7b67c20d2de0d62bdfeb2f2ee4f135c4264d53b4204bd4d974eaaff5f29"
|
| 33 |
},
|
| 34 |
{
|
| 35 |
"artifact_key": "data/correlation_artifact_integrity_report.json",
|
| 36 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 37 |
"byte_count": 5376,
|
| 38 |
"content_sha256": "7fd391b173d736a7ca1e136a6f990e1d18acd7cb3d374985e377aaf2bbcb4f1a"
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"artifact_key": "data/correlation_dataset_schema.json",
|
| 42 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 43 |
"byte_count": 4487,
|
| 44 |
"content_sha256": "a096a96c7b1a7931616184799de15fd7312e0d59a508d1ee4cf15902502f7a88"
|
| 45 |
},
|
| 46 |
{
|
| 47 |
"artifact_key": "data/correlation_source_gaps.csv",
|
| 48 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 49 |
"byte_count": 413,
|
| 50 |
"content_sha256": "abc0d9ad89889db0b3ee1a2efd94a9ec8d34449ee83b267ceeae9875ea82ee73"
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"artifact_key": "data/event_explanatory_features.csv.gz",
|
| 54 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 55 |
"byte_count": 12282175,
|
| 56 |
-
"content_sha256": "
|
| 57 |
},
|
| 58 |
{
|
| 59 |
"artifact_key": "data/event_explanatory_sample.csv",
|
| 60 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 61 |
"byte_count": 2051319,
|
| 62 |
"content_sha256": "b80b1737b91f25ab0998bb55ee3117b819e3b976367afe8f09f1987e8860f1b2"
|
| 63 |
},
|
| 64 |
{
|
| 65 |
"artifact_key": "data/explanatory_artifact_integrity_report.json",
|
| 66 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 67 |
"byte_count": 4333,
|
| 68 |
"content_sha256": "ff244c0e37a0499b78f5646decf0da6482ca9966d44a3b37f9dfcd245e612aa0"
|
| 69 |
},
|
| 70 |
{
|
| 71 |
"artifact_key": "data/explanatory_assessment.json",
|
| 72 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 73 |
"byte_count": 2294,
|
| 74 |
"content_sha256": "734a29f84bcdc7746a59453e71aa21e44284c098875e42e5872f8fcf9bb952ed"
|
| 75 |
},
|
| 76 |
{
|
| 77 |
"artifact_key": "data/explanatory_case_cards.md",
|
| 78 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 79 |
"byte_count": 1672,
|
| 80 |
"content_sha256": "c921969440bb9d97cd3e3d02301bb4f023479ca914d8378b0d61bdeb95c89e0a"
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"artifact_key": "data/explanatory_dataset_schema.json",
|
| 84 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 85 |
"byte_count": 2249,
|
| 86 |
"content_sha256": "ed2d3facd26dbae8a73cc3a8a69f3dff15480d0fc311e9028d8d1322d15b9676"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
"artifact_key": "data/explanatory_report.md",
|
| 90 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 91 |
"byte_count": 2353,
|
| 92 |
"content_sha256": "3dd5466d80360c57f3919a00a837414eb16d2b86f3e878ee8c5a45c4a3c63db9"
|
| 93 |
},
|
| 94 |
{
|
| 95 |
"artifact_key": "data/explanatory_source_gaps.csv",
|
| 96 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 97 |
"byte_count": 55,
|
| 98 |
"content_sha256": "fb835199159230f17d31c74e58e1e20107715208fc2521a5be2c9881a07361bb"
|
| 99 |
},
|
| 100 |
{
|
| 101 |
"artifact_key": "data/matched_controls.csv",
|
| 102 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 103 |
"byte_count": 134142,
|
| 104 |
"content_sha256": "9f87f5ddc9c5936fdf05611a7d797684f28e069d1bcf5fd0e822521d87a2996a"
|
| 105 |
},
|
| 106 |
{
|
| 107 |
"artifact_key": "data/missing_geocode_examples.csv",
|
| 108 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 109 |
"byte_count": 17522,
|
| 110 |
"content_sha256": "dae4c6f5b2c83ca7becb5a9ec6665098279629a0c6ca0af3d77eb295b83b65ed"
|
| 111 |
},
|
| 112 |
{
|
| 113 |
"artifact_key": "data/nuclear_sites.csv",
|
| 114 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 115 |
"byte_count": 36391,
|
| 116 |
"content_sha256": "5d445f24ff57e46b4d49a662ea2b5f4c000e61eac69811c91ac9261494030318"
|
| 117 |
},
|
| 118 |
{
|
| 119 |
"artifact_key": "data/place_exposure.csv",
|
| 120 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 121 |
"byte_count": 6560269,
|
| 122 |
"content_sha256": "dddb488eb9b1c6cfece46e4ba1523888bec1b772b63ded3a784d37f32dbe07f0"
|
| 123 |
},
|
| 124 |
{
|
| 125 |
"artifact_key": "data/place_exposure_top.csv",
|
| 126 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 127 |
"byte_count": 210112,
|
| 128 |
"content_sha256": "57c2643e4d8b4ca91dea2d8a0800bdc70b6017fd8ea383b25985a3b76ae3f7d9"
|
| 129 |
},
|
| 130 |
{
|
| 131 |
"artifact_key": "data/site_proximity_summary.csv",
|
| 132 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 133 |
"byte_count": 88157,
|
| 134 |
"content_sha256": "743fcf07734af9ec45ce536a7db0ea22a792afdfca176d8dd588a91eb9148513"
|
| 135 |
},
|
| 136 |
{
|
| 137 |
"artifact_key": "data/source_receipts_combined.csv",
|
| 138 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 139 |
"byte_count": 5058,
|
| 140 |
"content_sha256": "c40cf680675a165732a3caa0ba941a774648dec8e16bb4b4c20f88b1c80440bb"
|
| 141 |
},
|
| 142 |
{
|
| 143 |
"artifact_key": "data/statistical_tests.json",
|
| 144 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 145 |
"byte_count": 3072,
|
| 146 |
"content_sha256": "3dabf22b92e41bd0cdd7541354f0fa2b696ea0ddbd3ee62c59fd5ef3b6dc8bea"
|
| 147 |
},
|
| 148 |
{
|
| 149 |
"artifact_key": "data/summary_metrics.json",
|
| 150 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 151 |
"byte_count": 18579,
|
| 152 |
-
"content_sha256": "
|
| 153 |
}
|
| 154 |
],
|
| 155 |
"public_claim_contract": {
|
|
@@ -161,7 +161,7 @@
|
|
| 161 |
"user_explicit_publish_request": true
|
| 162 |
},
|
| 163 |
"metrics": {
|
| 164 |
-
"generated_utc": "2026-04-29T02:
|
| 165 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 166 |
"assessment": {
|
| 167 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
@@ -701,5 +701,5 @@
|
|
| 701 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
| 702 |
}
|
| 703 |
},
|
| 704 |
-
"manifest_hash": "
|
| 705 |
}
|
|
|
|
| 2 |
"manifest_version": "nuclear_uap_hf_space_package_v0",
|
| 3 |
"repo_id": "cjc0013/nuclear-uap-evidence-surface",
|
| 4 |
"space_url": "https://huggingface.co/spaces/cjc0013/nuclear-uap-evidence-surface",
|
| 5 |
+
"generated_utc": "2026-04-29T02:13:05+00:00",
|
| 6 |
"source_correlation_run_dir": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_correlation_index_private_preview_final_20260429T010304Z",
|
| 7 |
"source_explanatory_run_dir": "C:\\scraper\\runs\\nuclear_uap_explanatory_index\\nuclear_uap_explanatory_index_private_preview_20260429T011500Z",
|
| 8 |
"artifact_count": 24,
|
| 9 |
"artifacts": [
|
| 10 |
{
|
| 11 |
"artifact_key": "README.md",
|
| 12 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\README.md",
|
| 13 |
"byte_count": 3613,
|
| 14 |
"content_sha256": "ec6afe2acb6d83dfbf6481c46837ae272ceaa3e77f849c302335cf5455278b22"
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"artifact_key": "app.py",
|
| 18 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\app.py",
|
| 19 |
+
"byte_count": 21756,
|
| 20 |
+
"content_sha256": "dc4cd7d48dfcfca1263b12091cfb3dfd050400e311909c9202ba5221844c861a"
|
| 21 |
},
|
| 22 |
{
|
| 23 |
"artifact_key": "requirements.txt",
|
| 24 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\requirements.txt",
|
| 25 |
"byte_count": 31,
|
| 26 |
"content_sha256": "76e73ec284b0b0b250edd3b0593e32a1eb40f57d3ce90363852f709e9ad06071"
|
| 27 |
},
|
| 28 |
{
|
| 29 |
"artifact_key": ".gitattributes",
|
| 30 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\.gitattributes",
|
| 31 |
"byte_count": 89,
|
| 32 |
"content_sha256": "d373b7b67c20d2de0d62bdfeb2f2ee4f135c4264d53b4204bd4d974eaaff5f29"
|
| 33 |
},
|
| 34 |
{
|
| 35 |
"artifact_key": "data/correlation_artifact_integrity_report.json",
|
| 36 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\correlation_artifact_integrity_report.json",
|
| 37 |
"byte_count": 5376,
|
| 38 |
"content_sha256": "7fd391b173d736a7ca1e136a6f990e1d18acd7cb3d374985e377aaf2bbcb4f1a"
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"artifact_key": "data/correlation_dataset_schema.json",
|
| 42 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\correlation_dataset_schema.json",
|
| 43 |
"byte_count": 4487,
|
| 44 |
"content_sha256": "a096a96c7b1a7931616184799de15fd7312e0d59a508d1ee4cf15902502f7a88"
|
| 45 |
},
|
| 46 |
{
|
| 47 |
"artifact_key": "data/correlation_source_gaps.csv",
|
| 48 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\correlation_source_gaps.csv",
|
| 49 |
"byte_count": 413,
|
| 50 |
"content_sha256": "abc0d9ad89889db0b3ee1a2efd94a9ec8d34449ee83b267ceeae9875ea82ee73"
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"artifact_key": "data/event_explanatory_features.csv.gz",
|
| 54 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\event_explanatory_features.csv.gz",
|
| 55 |
"byte_count": 12282175,
|
| 56 |
+
"content_sha256": "345c1ac3d94ae69dc3ce865462439a264a1b699e6449cc876069380b10507d27"
|
| 57 |
},
|
| 58 |
{
|
| 59 |
"artifact_key": "data/event_explanatory_sample.csv",
|
| 60 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\event_explanatory_sample.csv",
|
| 61 |
"byte_count": 2051319,
|
| 62 |
"content_sha256": "b80b1737b91f25ab0998bb55ee3117b819e3b976367afe8f09f1987e8860f1b2"
|
| 63 |
},
|
| 64 |
{
|
| 65 |
"artifact_key": "data/explanatory_artifact_integrity_report.json",
|
| 66 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_artifact_integrity_report.json",
|
| 67 |
"byte_count": 4333,
|
| 68 |
"content_sha256": "ff244c0e37a0499b78f5646decf0da6482ca9966d44a3b37f9dfcd245e612aa0"
|
| 69 |
},
|
| 70 |
{
|
| 71 |
"artifact_key": "data/explanatory_assessment.json",
|
| 72 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_assessment.json",
|
| 73 |
"byte_count": 2294,
|
| 74 |
"content_sha256": "734a29f84bcdc7746a59453e71aa21e44284c098875e42e5872f8fcf9bb952ed"
|
| 75 |
},
|
| 76 |
{
|
| 77 |
"artifact_key": "data/explanatory_case_cards.md",
|
| 78 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_case_cards.md",
|
| 79 |
"byte_count": 1672,
|
| 80 |
"content_sha256": "c921969440bb9d97cd3e3d02301bb4f023479ca914d8378b0d61bdeb95c89e0a"
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"artifact_key": "data/explanatory_dataset_schema.json",
|
| 84 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_dataset_schema.json",
|
| 85 |
"byte_count": 2249,
|
| 86 |
"content_sha256": "ed2d3facd26dbae8a73cc3a8a69f3dff15480d0fc311e9028d8d1322d15b9676"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
"artifact_key": "data/explanatory_report.md",
|
| 90 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_report.md",
|
| 91 |
"byte_count": 2353,
|
| 92 |
"content_sha256": "3dd5466d80360c57f3919a00a837414eb16d2b86f3e878ee8c5a45c4a3c63db9"
|
| 93 |
},
|
| 94 |
{
|
| 95 |
"artifact_key": "data/explanatory_source_gaps.csv",
|
| 96 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_source_gaps.csv",
|
| 97 |
"byte_count": 55,
|
| 98 |
"content_sha256": "fb835199159230f17d31c74e58e1e20107715208fc2521a5be2c9881a07361bb"
|
| 99 |
},
|
| 100 |
{
|
| 101 |
"artifact_key": "data/matched_controls.csv",
|
| 102 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\matched_controls.csv",
|
| 103 |
"byte_count": 134142,
|
| 104 |
"content_sha256": "9f87f5ddc9c5936fdf05611a7d797684f28e069d1bcf5fd0e822521d87a2996a"
|
| 105 |
},
|
| 106 |
{
|
| 107 |
"artifact_key": "data/missing_geocode_examples.csv",
|
| 108 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\missing_geocode_examples.csv",
|
| 109 |
"byte_count": 17522,
|
| 110 |
"content_sha256": "dae4c6f5b2c83ca7becb5a9ec6665098279629a0c6ca0af3d77eb295b83b65ed"
|
| 111 |
},
|
| 112 |
{
|
| 113 |
"artifact_key": "data/nuclear_sites.csv",
|
| 114 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\nuclear_sites.csv",
|
| 115 |
"byte_count": 36391,
|
| 116 |
"content_sha256": "5d445f24ff57e46b4d49a662ea2b5f4c000e61eac69811c91ac9261494030318"
|
| 117 |
},
|
| 118 |
{
|
| 119 |
"artifact_key": "data/place_exposure.csv",
|
| 120 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\place_exposure.csv",
|
| 121 |
"byte_count": 6560269,
|
| 122 |
"content_sha256": "dddb488eb9b1c6cfece46e4ba1523888bec1b772b63ded3a784d37f32dbe07f0"
|
| 123 |
},
|
| 124 |
{
|
| 125 |
"artifact_key": "data/place_exposure_top.csv",
|
| 126 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\place_exposure_top.csv",
|
| 127 |
"byte_count": 210112,
|
| 128 |
"content_sha256": "57c2643e4d8b4ca91dea2d8a0800bdc70b6017fd8ea383b25985a3b76ae3f7d9"
|
| 129 |
},
|
| 130 |
{
|
| 131 |
"artifact_key": "data/site_proximity_summary.csv",
|
| 132 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\site_proximity_summary.csv",
|
| 133 |
"byte_count": 88157,
|
| 134 |
"content_sha256": "743fcf07734af9ec45ce536a7db0ea22a792afdfca176d8dd588a91eb9148513"
|
| 135 |
},
|
| 136 |
{
|
| 137 |
"artifact_key": "data/source_receipts_combined.csv",
|
| 138 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\source_receipts_combined.csv",
|
| 139 |
"byte_count": 5058,
|
| 140 |
"content_sha256": "c40cf680675a165732a3caa0ba941a774648dec8e16bb4b4c20f88b1c80440bb"
|
| 141 |
},
|
| 142 |
{
|
| 143 |
"artifact_key": "data/statistical_tests.json",
|
| 144 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\statistical_tests.json",
|
| 145 |
"byte_count": 3072,
|
| 146 |
"content_sha256": "3dabf22b92e41bd0cdd7541354f0fa2b696ea0ddbd3ee62c59fd5ef3b6dc8bea"
|
| 147 |
},
|
| 148 |
{
|
| 149 |
"artifact_key": "data/summary_metrics.json",
|
| 150 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\summary_metrics.json",
|
| 151 |
"byte_count": 18579,
|
| 152 |
+
"content_sha256": "7ab17bf50b24473f4068943b4e08d9d75c7aebdf5a915b01d3ed6abccc146fcb"
|
| 153 |
}
|
| 154 |
],
|
| 155 |
"public_claim_contract": {
|
|
|
|
| 161 |
"user_explicit_publish_request": true
|
| 162 |
},
|
| 163 |
"metrics": {
|
| 164 |
+
"generated_utc": "2026-04-29T02:13:05+00:00",
|
| 165 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 166 |
"assessment": {
|
| 167 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
|
|
| 701 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
| 702 |
}
|
| 703 |
},
|
| 704 |
+
"manifest_hash": "cea67b3483ad43594fbf98ef8f19d6dee54d2cbe66cf667176d3267359f0f7b8"
|
| 705 |
}
|
data/event_explanatory_features.csv.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 12282175
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:345c1ac3d94ae69dc3ce865462439a264a1b699e6449cc876069380b10507d27
|
| 3 |
size 12282175
|
data/summary_metrics.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
{
|
| 2 |
-
"generated_utc": "2026-04-29T02:
|
| 3 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 4 |
"assessment": {
|
| 5 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
|
|
| 1 |
{
|
| 2 |
+
"generated_utc": "2026-04-29T02:13:05+00:00",
|
| 3 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 4 |
"assessment": {
|
| 5 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
run_manifest.json
CHANGED
|
@@ -2,158 +2,158 @@
|
|
| 2 |
"manifest_version": "nuclear_uap_hf_space_package_v0",
|
| 3 |
"repo_id": "cjc0013/nuclear-uap-evidence-surface",
|
| 4 |
"space_url": "https://huggingface.co/spaces/cjc0013/nuclear-uap-evidence-surface",
|
| 5 |
-
"generated_utc": "2026-04-29T02:
|
| 6 |
"source_correlation_run_dir": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_correlation_index_private_preview_final_20260429T010304Z",
|
| 7 |
"source_explanatory_run_dir": "C:\\scraper\\runs\\nuclear_uap_explanatory_index\\nuclear_uap_explanatory_index_private_preview_20260429T011500Z",
|
| 8 |
"artifact_count": 25,
|
| 9 |
"artifacts": [
|
| 10 |
{
|
| 11 |
"artifact_key": ".gitattributes",
|
| 12 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 13 |
"byte_count": 89,
|
| 14 |
"content_sha256": "d373b7b67c20d2de0d62bdfeb2f2ee4f135c4264d53b4204bd4d974eaaff5f29"
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"artifact_key": "app.py",
|
| 18 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 19 |
-
"byte_count":
|
| 20 |
-
"content_sha256": "
|
| 21 |
},
|
| 22 |
{
|
| 23 |
"artifact_key": "data/artifact_manifest.json",
|
| 24 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 25 |
-
"byte_count":
|
| 26 |
-
"content_sha256": "
|
| 27 |
},
|
| 28 |
{
|
| 29 |
"artifact_key": "data/correlation_artifact_integrity_report.json",
|
| 30 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 31 |
"byte_count": 5376,
|
| 32 |
"content_sha256": "7fd391b173d736a7ca1e136a6f990e1d18acd7cb3d374985e377aaf2bbcb4f1a"
|
| 33 |
},
|
| 34 |
{
|
| 35 |
"artifact_key": "data/correlation_dataset_schema.json",
|
| 36 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 37 |
"byte_count": 4487,
|
| 38 |
"content_sha256": "a096a96c7b1a7931616184799de15fd7312e0d59a508d1ee4cf15902502f7a88"
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"artifact_key": "data/correlation_source_gaps.csv",
|
| 42 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 43 |
"byte_count": 413,
|
| 44 |
"content_sha256": "abc0d9ad89889db0b3ee1a2efd94a9ec8d34449ee83b267ceeae9875ea82ee73"
|
| 45 |
},
|
| 46 |
{
|
| 47 |
"artifact_key": "data/event_explanatory_features.csv.gz",
|
| 48 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 49 |
"byte_count": 12282175,
|
| 50 |
-
"content_sha256": "
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"artifact_key": "data/event_explanatory_sample.csv",
|
| 54 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 55 |
"byte_count": 2051319,
|
| 56 |
"content_sha256": "b80b1737b91f25ab0998bb55ee3117b819e3b976367afe8f09f1987e8860f1b2"
|
| 57 |
},
|
| 58 |
{
|
| 59 |
"artifact_key": "data/explanatory_artifact_integrity_report.json",
|
| 60 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 61 |
"byte_count": 4333,
|
| 62 |
"content_sha256": "ff244c0e37a0499b78f5646decf0da6482ca9966d44a3b37f9dfcd245e612aa0"
|
| 63 |
},
|
| 64 |
{
|
| 65 |
"artifact_key": "data/explanatory_assessment.json",
|
| 66 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 67 |
"byte_count": 2294,
|
| 68 |
"content_sha256": "734a29f84bcdc7746a59453e71aa21e44284c098875e42e5872f8fcf9bb952ed"
|
| 69 |
},
|
| 70 |
{
|
| 71 |
"artifact_key": "data/explanatory_case_cards.md",
|
| 72 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 73 |
"byte_count": 1672,
|
| 74 |
"content_sha256": "c921969440bb9d97cd3e3d02301bb4f023479ca914d8378b0d61bdeb95c89e0a"
|
| 75 |
},
|
| 76 |
{
|
| 77 |
"artifact_key": "data/explanatory_dataset_schema.json",
|
| 78 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 79 |
"byte_count": 2249,
|
| 80 |
"content_sha256": "ed2d3facd26dbae8a73cc3a8a69f3dff15480d0fc311e9028d8d1322d15b9676"
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"artifact_key": "data/explanatory_report.md",
|
| 84 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 85 |
"byte_count": 2353,
|
| 86 |
"content_sha256": "3dd5466d80360c57f3919a00a837414eb16d2b86f3e878ee8c5a45c4a3c63db9"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
"artifact_key": "data/explanatory_source_gaps.csv",
|
| 90 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 91 |
"byte_count": 55,
|
| 92 |
"content_sha256": "fb835199159230f17d31c74e58e1e20107715208fc2521a5be2c9881a07361bb"
|
| 93 |
},
|
| 94 |
{
|
| 95 |
"artifact_key": "data/matched_controls.csv",
|
| 96 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 97 |
"byte_count": 134142,
|
| 98 |
"content_sha256": "9f87f5ddc9c5936fdf05611a7d797684f28e069d1bcf5fd0e822521d87a2996a"
|
| 99 |
},
|
| 100 |
{
|
| 101 |
"artifact_key": "data/missing_geocode_examples.csv",
|
| 102 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 103 |
"byte_count": 17522,
|
| 104 |
"content_sha256": "dae4c6f5b2c83ca7becb5a9ec6665098279629a0c6ca0af3d77eb295b83b65ed"
|
| 105 |
},
|
| 106 |
{
|
| 107 |
"artifact_key": "data/nuclear_sites.csv",
|
| 108 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 109 |
"byte_count": 36391,
|
| 110 |
"content_sha256": "5d445f24ff57e46b4d49a662ea2b5f4c000e61eac69811c91ac9261494030318"
|
| 111 |
},
|
| 112 |
{
|
| 113 |
"artifact_key": "data/place_exposure.csv",
|
| 114 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 115 |
"byte_count": 6560269,
|
| 116 |
"content_sha256": "dddb488eb9b1c6cfece46e4ba1523888bec1b772b63ded3a784d37f32dbe07f0"
|
| 117 |
},
|
| 118 |
{
|
| 119 |
"artifact_key": "data/place_exposure_top.csv",
|
| 120 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 121 |
"byte_count": 210112,
|
| 122 |
"content_sha256": "57c2643e4d8b4ca91dea2d8a0800bdc70b6017fd8ea383b25985a3b76ae3f7d9"
|
| 123 |
},
|
| 124 |
{
|
| 125 |
"artifact_key": "data/site_proximity_summary.csv",
|
| 126 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 127 |
"byte_count": 88157,
|
| 128 |
"content_sha256": "743fcf07734af9ec45ce536a7db0ea22a792afdfca176d8dd588a91eb9148513"
|
| 129 |
},
|
| 130 |
{
|
| 131 |
"artifact_key": "data/source_receipts_combined.csv",
|
| 132 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 133 |
"byte_count": 5058,
|
| 134 |
"content_sha256": "c40cf680675a165732a3caa0ba941a774648dec8e16bb4b4c20f88b1c80440bb"
|
| 135 |
},
|
| 136 |
{
|
| 137 |
"artifact_key": "data/statistical_tests.json",
|
| 138 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 139 |
"byte_count": 3072,
|
| 140 |
"content_sha256": "3dabf22b92e41bd0cdd7541354f0fa2b696ea0ddbd3ee62c59fd5ef3b6dc8bea"
|
| 141 |
},
|
| 142 |
{
|
| 143 |
"artifact_key": "data/summary_metrics.json",
|
| 144 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 145 |
"byte_count": 18579,
|
| 146 |
-
"content_sha256": "
|
| 147 |
},
|
| 148 |
{
|
| 149 |
"artifact_key": "README.md",
|
| 150 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 151 |
"byte_count": 3613,
|
| 152 |
"content_sha256": "ec6afe2acb6d83dfbf6481c46837ae272ceaa3e77f849c302335cf5455278b22"
|
| 153 |
},
|
| 154 |
{
|
| 155 |
"artifact_key": "requirements.txt",
|
| 156 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 157 |
"byte_count": 31,
|
| 158 |
"content_sha256": "76e73ec284b0b0b250edd3b0593e32a1eb40f57d3ce90363852f709e9ad06071"
|
| 159 |
}
|
|
@@ -167,7 +167,7 @@
|
|
| 167 |
"user_explicit_publish_request": true
|
| 168 |
},
|
| 169 |
"metrics": {
|
| 170 |
-
"generated_utc": "2026-04-29T02:
|
| 171 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 172 |
"assessment": {
|
| 173 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
@@ -707,5 +707,5 @@
|
|
| 707 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
| 708 |
}
|
| 709 |
},
|
| 710 |
-
"manifest_hash": "
|
| 711 |
}
|
|
|
|
| 2 |
"manifest_version": "nuclear_uap_hf_space_package_v0",
|
| 3 |
"repo_id": "cjc0013/nuclear-uap-evidence-surface",
|
| 4 |
"space_url": "https://huggingface.co/spaces/cjc0013/nuclear-uap-evidence-surface",
|
| 5 |
+
"generated_utc": "2026-04-29T02:13:05+00:00",
|
| 6 |
"source_correlation_run_dir": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_correlation_index_private_preview_final_20260429T010304Z",
|
| 7 |
"source_explanatory_run_dir": "C:\\scraper\\runs\\nuclear_uap_explanatory_index\\nuclear_uap_explanatory_index_private_preview_20260429T011500Z",
|
| 8 |
"artifact_count": 25,
|
| 9 |
"artifacts": [
|
| 10 |
{
|
| 11 |
"artifact_key": ".gitattributes",
|
| 12 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\.gitattributes",
|
| 13 |
"byte_count": 89,
|
| 14 |
"content_sha256": "d373b7b67c20d2de0d62bdfeb2f2ee4f135c4264d53b4204bd4d974eaaff5f29"
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"artifact_key": "app.py",
|
| 18 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\app.py",
|
| 19 |
+
"byte_count": 21756,
|
| 20 |
+
"content_sha256": "dc4cd7d48dfcfca1263b12091cfb3dfd050400e311909c9202ba5221844c861a"
|
| 21 |
},
|
| 22 |
{
|
| 23 |
"artifact_key": "data/artifact_manifest.json",
|
| 24 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\artifact_manifest.json",
|
| 25 |
+
"byte_count": 28643,
|
| 26 |
+
"content_sha256": "cd1ab7cbb2300cca8777a382a6d05e016e01900f9319e689b54294c804dacc15"
|
| 27 |
},
|
| 28 |
{
|
| 29 |
"artifact_key": "data/correlation_artifact_integrity_report.json",
|
| 30 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\correlation_artifact_integrity_report.json",
|
| 31 |
"byte_count": 5376,
|
| 32 |
"content_sha256": "7fd391b173d736a7ca1e136a6f990e1d18acd7cb3d374985e377aaf2bbcb4f1a"
|
| 33 |
},
|
| 34 |
{
|
| 35 |
"artifact_key": "data/correlation_dataset_schema.json",
|
| 36 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\correlation_dataset_schema.json",
|
| 37 |
"byte_count": 4487,
|
| 38 |
"content_sha256": "a096a96c7b1a7931616184799de15fd7312e0d59a508d1ee4cf15902502f7a88"
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"artifact_key": "data/correlation_source_gaps.csv",
|
| 42 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\correlation_source_gaps.csv",
|
| 43 |
"byte_count": 413,
|
| 44 |
"content_sha256": "abc0d9ad89889db0b3ee1a2efd94a9ec8d34449ee83b267ceeae9875ea82ee73"
|
| 45 |
},
|
| 46 |
{
|
| 47 |
"artifact_key": "data/event_explanatory_features.csv.gz",
|
| 48 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\event_explanatory_features.csv.gz",
|
| 49 |
"byte_count": 12282175,
|
| 50 |
+
"content_sha256": "345c1ac3d94ae69dc3ce865462439a264a1b699e6449cc876069380b10507d27"
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"artifact_key": "data/event_explanatory_sample.csv",
|
| 54 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\event_explanatory_sample.csv",
|
| 55 |
"byte_count": 2051319,
|
| 56 |
"content_sha256": "b80b1737b91f25ab0998bb55ee3117b819e3b976367afe8f09f1987e8860f1b2"
|
| 57 |
},
|
| 58 |
{
|
| 59 |
"artifact_key": "data/explanatory_artifact_integrity_report.json",
|
| 60 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_artifact_integrity_report.json",
|
| 61 |
"byte_count": 4333,
|
| 62 |
"content_sha256": "ff244c0e37a0499b78f5646decf0da6482ca9966d44a3b37f9dfcd245e612aa0"
|
| 63 |
},
|
| 64 |
{
|
| 65 |
"artifact_key": "data/explanatory_assessment.json",
|
| 66 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_assessment.json",
|
| 67 |
"byte_count": 2294,
|
| 68 |
"content_sha256": "734a29f84bcdc7746a59453e71aa21e44284c098875e42e5872f8fcf9bb952ed"
|
| 69 |
},
|
| 70 |
{
|
| 71 |
"artifact_key": "data/explanatory_case_cards.md",
|
| 72 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_case_cards.md",
|
| 73 |
"byte_count": 1672,
|
| 74 |
"content_sha256": "c921969440bb9d97cd3e3d02301bb4f023479ca914d8378b0d61bdeb95c89e0a"
|
| 75 |
},
|
| 76 |
{
|
| 77 |
"artifact_key": "data/explanatory_dataset_schema.json",
|
| 78 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_dataset_schema.json",
|
| 79 |
"byte_count": 2249,
|
| 80 |
"content_sha256": "ed2d3facd26dbae8a73cc3a8a69f3dff15480d0fc311e9028d8d1322d15b9676"
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"artifact_key": "data/explanatory_report.md",
|
| 84 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_report.md",
|
| 85 |
"byte_count": 2353,
|
| 86 |
"content_sha256": "3dd5466d80360c57f3919a00a837414eb16d2b86f3e878ee8c5a45c4a3c63db9"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
"artifact_key": "data/explanatory_source_gaps.csv",
|
| 90 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_source_gaps.csv",
|
| 91 |
"byte_count": 55,
|
| 92 |
"content_sha256": "fb835199159230f17d31c74e58e1e20107715208fc2521a5be2c9881a07361bb"
|
| 93 |
},
|
| 94 |
{
|
| 95 |
"artifact_key": "data/matched_controls.csv",
|
| 96 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\matched_controls.csv",
|
| 97 |
"byte_count": 134142,
|
| 98 |
"content_sha256": "9f87f5ddc9c5936fdf05611a7d797684f28e069d1bcf5fd0e822521d87a2996a"
|
| 99 |
},
|
| 100 |
{
|
| 101 |
"artifact_key": "data/missing_geocode_examples.csv",
|
| 102 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\missing_geocode_examples.csv",
|
| 103 |
"byte_count": 17522,
|
| 104 |
"content_sha256": "dae4c6f5b2c83ca7becb5a9ec6665098279629a0c6ca0af3d77eb295b83b65ed"
|
| 105 |
},
|
| 106 |
{
|
| 107 |
"artifact_key": "data/nuclear_sites.csv",
|
| 108 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\nuclear_sites.csv",
|
| 109 |
"byte_count": 36391,
|
| 110 |
"content_sha256": "5d445f24ff57e46b4d49a662ea2b5f4c000e61eac69811c91ac9261494030318"
|
| 111 |
},
|
| 112 |
{
|
| 113 |
"artifact_key": "data/place_exposure.csv",
|
| 114 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\place_exposure.csv",
|
| 115 |
"byte_count": 6560269,
|
| 116 |
"content_sha256": "dddb488eb9b1c6cfece46e4ba1523888bec1b772b63ded3a784d37f32dbe07f0"
|
| 117 |
},
|
| 118 |
{
|
| 119 |
"artifact_key": "data/place_exposure_top.csv",
|
| 120 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\place_exposure_top.csv",
|
| 121 |
"byte_count": 210112,
|
| 122 |
"content_sha256": "57c2643e4d8b4ca91dea2d8a0800bdc70b6017fd8ea383b25985a3b76ae3f7d9"
|
| 123 |
},
|
| 124 |
{
|
| 125 |
"artifact_key": "data/site_proximity_summary.csv",
|
| 126 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\site_proximity_summary.csv",
|
| 127 |
"byte_count": 88157,
|
| 128 |
"content_sha256": "743fcf07734af9ec45ce536a7db0ea22a792afdfca176d8dd588a91eb9148513"
|
| 129 |
},
|
| 130 |
{
|
| 131 |
"artifact_key": "data/source_receipts_combined.csv",
|
| 132 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\source_receipts_combined.csv",
|
| 133 |
"byte_count": 5058,
|
| 134 |
"content_sha256": "c40cf680675a165732a3caa0ba941a774648dec8e16bb4b4c20f88b1c80440bb"
|
| 135 |
},
|
| 136 |
{
|
| 137 |
"artifact_key": "data/statistical_tests.json",
|
| 138 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\statistical_tests.json",
|
| 139 |
"byte_count": 3072,
|
| 140 |
"content_sha256": "3dabf22b92e41bd0cdd7541354f0fa2b696ea0ddbd3ee62c59fd5ef3b6dc8bea"
|
| 141 |
},
|
| 142 |
{
|
| 143 |
"artifact_key": "data/summary_metrics.json",
|
| 144 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\summary_metrics.json",
|
| 145 |
"byte_count": 18579,
|
| 146 |
+
"content_sha256": "7ab17bf50b24473f4068943b4e08d9d75c7aebdf5a915b01d3ed6abccc146fcb"
|
| 147 |
},
|
| 148 |
{
|
| 149 |
"artifact_key": "README.md",
|
| 150 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\README.md",
|
| 151 |
"byte_count": 3613,
|
| 152 |
"content_sha256": "ec6afe2acb6d83dfbf6481c46837ae272ceaa3e77f849c302335cf5455278b22"
|
| 153 |
},
|
| 154 |
{
|
| 155 |
"artifact_key": "requirements.txt",
|
| 156 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\requirements.txt",
|
| 157 |
"byte_count": 31,
|
| 158 |
"content_sha256": "76e73ec284b0b0b250edd3b0593e32a1eb40f57d3ce90363852f709e9ad06071"
|
| 159 |
}
|
|
|
|
| 167 |
"user_explicit_publish_request": true
|
| 168 |
},
|
| 169 |
"metrics": {
|
| 170 |
+
"generated_utc": "2026-04-29T02:13:05+00:00",
|
| 171 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 172 |
"assessment": {
|
| 173 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
|
|
| 707 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
| 708 |
}
|
| 709 |
},
|
| 710 |
+
"manifest_hash": "9c4d6ad2d4117794702450d1d2c9a450ca55c01739246fa857997243825cabc8"
|
| 711 |
}
|
space_release_manifest.json
CHANGED
|
@@ -2,158 +2,158 @@
|
|
| 2 |
"manifest_version": "nuclear_uap_hf_space_package_v0",
|
| 3 |
"repo_id": "cjc0013/nuclear-uap-evidence-surface",
|
| 4 |
"space_url": "https://huggingface.co/spaces/cjc0013/nuclear-uap-evidence-surface",
|
| 5 |
-
"generated_utc": "2026-04-29T02:
|
| 6 |
"source_correlation_run_dir": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_correlation_index_private_preview_final_20260429T010304Z",
|
| 7 |
"source_explanatory_run_dir": "C:\\scraper\\runs\\nuclear_uap_explanatory_index\\nuclear_uap_explanatory_index_private_preview_20260429T011500Z",
|
| 8 |
"artifact_count": 25,
|
| 9 |
"artifacts": [
|
| 10 |
{
|
| 11 |
"artifact_key": ".gitattributes",
|
| 12 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 13 |
"byte_count": 89,
|
| 14 |
"content_sha256": "d373b7b67c20d2de0d62bdfeb2f2ee4f135c4264d53b4204bd4d974eaaff5f29"
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"artifact_key": "app.py",
|
| 18 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 19 |
-
"byte_count":
|
| 20 |
-
"content_sha256": "
|
| 21 |
},
|
| 22 |
{
|
| 23 |
"artifact_key": "data/artifact_manifest.json",
|
| 24 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 25 |
-
"byte_count":
|
| 26 |
-
"content_sha256": "
|
| 27 |
},
|
| 28 |
{
|
| 29 |
"artifact_key": "data/correlation_artifact_integrity_report.json",
|
| 30 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 31 |
"byte_count": 5376,
|
| 32 |
"content_sha256": "7fd391b173d736a7ca1e136a6f990e1d18acd7cb3d374985e377aaf2bbcb4f1a"
|
| 33 |
},
|
| 34 |
{
|
| 35 |
"artifact_key": "data/correlation_dataset_schema.json",
|
| 36 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 37 |
"byte_count": 4487,
|
| 38 |
"content_sha256": "a096a96c7b1a7931616184799de15fd7312e0d59a508d1ee4cf15902502f7a88"
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"artifact_key": "data/correlation_source_gaps.csv",
|
| 42 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 43 |
"byte_count": 413,
|
| 44 |
"content_sha256": "abc0d9ad89889db0b3ee1a2efd94a9ec8d34449ee83b267ceeae9875ea82ee73"
|
| 45 |
},
|
| 46 |
{
|
| 47 |
"artifact_key": "data/event_explanatory_features.csv.gz",
|
| 48 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 49 |
"byte_count": 12282175,
|
| 50 |
-
"content_sha256": "
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"artifact_key": "data/event_explanatory_sample.csv",
|
| 54 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 55 |
"byte_count": 2051319,
|
| 56 |
"content_sha256": "b80b1737b91f25ab0998bb55ee3117b819e3b976367afe8f09f1987e8860f1b2"
|
| 57 |
},
|
| 58 |
{
|
| 59 |
"artifact_key": "data/explanatory_artifact_integrity_report.json",
|
| 60 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 61 |
"byte_count": 4333,
|
| 62 |
"content_sha256": "ff244c0e37a0499b78f5646decf0da6482ca9966d44a3b37f9dfcd245e612aa0"
|
| 63 |
},
|
| 64 |
{
|
| 65 |
"artifact_key": "data/explanatory_assessment.json",
|
| 66 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 67 |
"byte_count": 2294,
|
| 68 |
"content_sha256": "734a29f84bcdc7746a59453e71aa21e44284c098875e42e5872f8fcf9bb952ed"
|
| 69 |
},
|
| 70 |
{
|
| 71 |
"artifact_key": "data/explanatory_case_cards.md",
|
| 72 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 73 |
"byte_count": 1672,
|
| 74 |
"content_sha256": "c921969440bb9d97cd3e3d02301bb4f023479ca914d8378b0d61bdeb95c89e0a"
|
| 75 |
},
|
| 76 |
{
|
| 77 |
"artifact_key": "data/explanatory_dataset_schema.json",
|
| 78 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 79 |
"byte_count": 2249,
|
| 80 |
"content_sha256": "ed2d3facd26dbae8a73cc3a8a69f3dff15480d0fc311e9028d8d1322d15b9676"
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"artifact_key": "data/explanatory_report.md",
|
| 84 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 85 |
"byte_count": 2353,
|
| 86 |
"content_sha256": "3dd5466d80360c57f3919a00a837414eb16d2b86f3e878ee8c5a45c4a3c63db9"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
"artifact_key": "data/explanatory_source_gaps.csv",
|
| 90 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 91 |
"byte_count": 55,
|
| 92 |
"content_sha256": "fb835199159230f17d31c74e58e1e20107715208fc2521a5be2c9881a07361bb"
|
| 93 |
},
|
| 94 |
{
|
| 95 |
"artifact_key": "data/matched_controls.csv",
|
| 96 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 97 |
"byte_count": 134142,
|
| 98 |
"content_sha256": "9f87f5ddc9c5936fdf05611a7d797684f28e069d1bcf5fd0e822521d87a2996a"
|
| 99 |
},
|
| 100 |
{
|
| 101 |
"artifact_key": "data/missing_geocode_examples.csv",
|
| 102 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 103 |
"byte_count": 17522,
|
| 104 |
"content_sha256": "dae4c6f5b2c83ca7becb5a9ec6665098279629a0c6ca0af3d77eb295b83b65ed"
|
| 105 |
},
|
| 106 |
{
|
| 107 |
"artifact_key": "data/nuclear_sites.csv",
|
| 108 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 109 |
"byte_count": 36391,
|
| 110 |
"content_sha256": "5d445f24ff57e46b4d49a662ea2b5f4c000e61eac69811c91ac9261494030318"
|
| 111 |
},
|
| 112 |
{
|
| 113 |
"artifact_key": "data/place_exposure.csv",
|
| 114 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 115 |
"byte_count": 6560269,
|
| 116 |
"content_sha256": "dddb488eb9b1c6cfece46e4ba1523888bec1b772b63ded3a784d37f32dbe07f0"
|
| 117 |
},
|
| 118 |
{
|
| 119 |
"artifact_key": "data/place_exposure_top.csv",
|
| 120 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 121 |
"byte_count": 210112,
|
| 122 |
"content_sha256": "57c2643e4d8b4ca91dea2d8a0800bdc70b6017fd8ea383b25985a3b76ae3f7d9"
|
| 123 |
},
|
| 124 |
{
|
| 125 |
"artifact_key": "data/site_proximity_summary.csv",
|
| 126 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 127 |
"byte_count": 88157,
|
| 128 |
"content_sha256": "743fcf07734af9ec45ce536a7db0ea22a792afdfca176d8dd588a91eb9148513"
|
| 129 |
},
|
| 130 |
{
|
| 131 |
"artifact_key": "data/source_receipts_combined.csv",
|
| 132 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 133 |
"byte_count": 5058,
|
| 134 |
"content_sha256": "c40cf680675a165732a3caa0ba941a774648dec8e16bb4b4c20f88b1c80440bb"
|
| 135 |
},
|
| 136 |
{
|
| 137 |
"artifact_key": "data/statistical_tests.json",
|
| 138 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 139 |
"byte_count": 3072,
|
| 140 |
"content_sha256": "3dabf22b92e41bd0cdd7541354f0fa2b696ea0ddbd3ee62c59fd5ef3b6dc8bea"
|
| 141 |
},
|
| 142 |
{
|
| 143 |
"artifact_key": "data/summary_metrics.json",
|
| 144 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 145 |
"byte_count": 18579,
|
| 146 |
-
"content_sha256": "
|
| 147 |
},
|
| 148 |
{
|
| 149 |
"artifact_key": "README.md",
|
| 150 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 151 |
"byte_count": 3613,
|
| 152 |
"content_sha256": "ec6afe2acb6d83dfbf6481c46837ae272ceaa3e77f849c302335cf5455278b22"
|
| 153 |
},
|
| 154 |
{
|
| 155 |
"artifact_key": "requirements.txt",
|
| 156 |
-
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-
|
| 157 |
"byte_count": 31,
|
| 158 |
"content_sha256": "76e73ec284b0b0b250edd3b0593e32a1eb40f57d3ce90363852f709e9ad06071"
|
| 159 |
}
|
|
@@ -167,7 +167,7 @@
|
|
| 167 |
"user_explicit_publish_request": true
|
| 168 |
},
|
| 169 |
"metrics": {
|
| 170 |
-
"generated_utc": "2026-04-29T02:
|
| 171 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 172 |
"assessment": {
|
| 173 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
@@ -707,5 +707,5 @@
|
|
| 707 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
| 708 |
}
|
| 709 |
},
|
| 710 |
-
"manifest_hash": "
|
| 711 |
}
|
|
|
|
| 2 |
"manifest_version": "nuclear_uap_hf_space_package_v0",
|
| 3 |
"repo_id": "cjc0013/nuclear-uap-evidence-surface",
|
| 4 |
"space_url": "https://huggingface.co/spaces/cjc0013/nuclear-uap-evidence-surface",
|
| 5 |
+
"generated_utc": "2026-04-29T02:13:05+00:00",
|
| 6 |
"source_correlation_run_dir": "C:\\scraper\\runs\\nuclear_uap_correlation_index\\nuclear_uap_correlation_index_private_preview_final_20260429T010304Z",
|
| 7 |
"source_explanatory_run_dir": "C:\\scraper\\runs\\nuclear_uap_explanatory_index\\nuclear_uap_explanatory_index_private_preview_20260429T011500Z",
|
| 8 |
"artifact_count": 25,
|
| 9 |
"artifacts": [
|
| 10 |
{
|
| 11 |
"artifact_key": ".gitattributes",
|
| 12 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\.gitattributes",
|
| 13 |
"byte_count": 89,
|
| 14 |
"content_sha256": "d373b7b67c20d2de0d62bdfeb2f2ee4f135c4264d53b4204bd4d974eaaff5f29"
|
| 15 |
},
|
| 16 |
{
|
| 17 |
"artifact_key": "app.py",
|
| 18 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\app.py",
|
| 19 |
+
"byte_count": 21756,
|
| 20 |
+
"content_sha256": "dc4cd7d48dfcfca1263b12091cfb3dfd050400e311909c9202ba5221844c861a"
|
| 21 |
},
|
| 22 |
{
|
| 23 |
"artifact_key": "data/artifact_manifest.json",
|
| 24 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\artifact_manifest.json",
|
| 25 |
+
"byte_count": 28643,
|
| 26 |
+
"content_sha256": "cd1ab7cbb2300cca8777a382a6d05e016e01900f9319e689b54294c804dacc15"
|
| 27 |
},
|
| 28 |
{
|
| 29 |
"artifact_key": "data/correlation_artifact_integrity_report.json",
|
| 30 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\correlation_artifact_integrity_report.json",
|
| 31 |
"byte_count": 5376,
|
| 32 |
"content_sha256": "7fd391b173d736a7ca1e136a6f990e1d18acd7cb3d374985e377aaf2bbcb4f1a"
|
| 33 |
},
|
| 34 |
{
|
| 35 |
"artifact_key": "data/correlation_dataset_schema.json",
|
| 36 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\correlation_dataset_schema.json",
|
| 37 |
"byte_count": 4487,
|
| 38 |
"content_sha256": "a096a96c7b1a7931616184799de15fd7312e0d59a508d1ee4cf15902502f7a88"
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"artifact_key": "data/correlation_source_gaps.csv",
|
| 42 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\correlation_source_gaps.csv",
|
| 43 |
"byte_count": 413,
|
| 44 |
"content_sha256": "abc0d9ad89889db0b3ee1a2efd94a9ec8d34449ee83b267ceeae9875ea82ee73"
|
| 45 |
},
|
| 46 |
{
|
| 47 |
"artifact_key": "data/event_explanatory_features.csv.gz",
|
| 48 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\event_explanatory_features.csv.gz",
|
| 49 |
"byte_count": 12282175,
|
| 50 |
+
"content_sha256": "345c1ac3d94ae69dc3ce865462439a264a1b699e6449cc876069380b10507d27"
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"artifact_key": "data/event_explanatory_sample.csv",
|
| 54 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\event_explanatory_sample.csv",
|
| 55 |
"byte_count": 2051319,
|
| 56 |
"content_sha256": "b80b1737b91f25ab0998bb55ee3117b819e3b976367afe8f09f1987e8860f1b2"
|
| 57 |
},
|
| 58 |
{
|
| 59 |
"artifact_key": "data/explanatory_artifact_integrity_report.json",
|
| 60 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_artifact_integrity_report.json",
|
| 61 |
"byte_count": 4333,
|
| 62 |
"content_sha256": "ff244c0e37a0499b78f5646decf0da6482ca9966d44a3b37f9dfcd245e612aa0"
|
| 63 |
},
|
| 64 |
{
|
| 65 |
"artifact_key": "data/explanatory_assessment.json",
|
| 66 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_assessment.json",
|
| 67 |
"byte_count": 2294,
|
| 68 |
"content_sha256": "734a29f84bcdc7746a59453e71aa21e44284c098875e42e5872f8fcf9bb952ed"
|
| 69 |
},
|
| 70 |
{
|
| 71 |
"artifact_key": "data/explanatory_case_cards.md",
|
| 72 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_case_cards.md",
|
| 73 |
"byte_count": 1672,
|
| 74 |
"content_sha256": "c921969440bb9d97cd3e3d02301bb4f023479ca914d8378b0d61bdeb95c89e0a"
|
| 75 |
},
|
| 76 |
{
|
| 77 |
"artifact_key": "data/explanatory_dataset_schema.json",
|
| 78 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_dataset_schema.json",
|
| 79 |
"byte_count": 2249,
|
| 80 |
"content_sha256": "ed2d3facd26dbae8a73cc3a8a69f3dff15480d0fc311e9028d8d1322d15b9676"
|
| 81 |
},
|
| 82 |
{
|
| 83 |
"artifact_key": "data/explanatory_report.md",
|
| 84 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_report.md",
|
| 85 |
"byte_count": 2353,
|
| 86 |
"content_sha256": "3dd5466d80360c57f3919a00a837414eb16d2b86f3e878ee8c5a45c4a3c63db9"
|
| 87 |
},
|
| 88 |
{
|
| 89 |
"artifact_key": "data/explanatory_source_gaps.csv",
|
| 90 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\explanatory_source_gaps.csv",
|
| 91 |
"byte_count": 55,
|
| 92 |
"content_sha256": "fb835199159230f17d31c74e58e1e20107715208fc2521a5be2c9881a07361bb"
|
| 93 |
},
|
| 94 |
{
|
| 95 |
"artifact_key": "data/matched_controls.csv",
|
| 96 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\matched_controls.csv",
|
| 97 |
"byte_count": 134142,
|
| 98 |
"content_sha256": "9f87f5ddc9c5936fdf05611a7d797684f28e069d1bcf5fd0e822521d87a2996a"
|
| 99 |
},
|
| 100 |
{
|
| 101 |
"artifact_key": "data/missing_geocode_examples.csv",
|
| 102 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\missing_geocode_examples.csv",
|
| 103 |
"byte_count": 17522,
|
| 104 |
"content_sha256": "dae4c6f5b2c83ca7becb5a9ec6665098279629a0c6ca0af3d77eb295b83b65ed"
|
| 105 |
},
|
| 106 |
{
|
| 107 |
"artifact_key": "data/nuclear_sites.csv",
|
| 108 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\nuclear_sites.csv",
|
| 109 |
"byte_count": 36391,
|
| 110 |
"content_sha256": "5d445f24ff57e46b4d49a662ea2b5f4c000e61eac69811c91ac9261494030318"
|
| 111 |
},
|
| 112 |
{
|
| 113 |
"artifact_key": "data/place_exposure.csv",
|
| 114 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\place_exposure.csv",
|
| 115 |
"byte_count": 6560269,
|
| 116 |
"content_sha256": "dddb488eb9b1c6cfece46e4ba1523888bec1b772b63ded3a784d37f32dbe07f0"
|
| 117 |
},
|
| 118 |
{
|
| 119 |
"artifact_key": "data/place_exposure_top.csv",
|
| 120 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\place_exposure_top.csv",
|
| 121 |
"byte_count": 210112,
|
| 122 |
"content_sha256": "57c2643e4d8b4ca91dea2d8a0800bdc70b6017fd8ea383b25985a3b76ae3f7d9"
|
| 123 |
},
|
| 124 |
{
|
| 125 |
"artifact_key": "data/site_proximity_summary.csv",
|
| 126 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\site_proximity_summary.csv",
|
| 127 |
"byte_count": 88157,
|
| 128 |
"content_sha256": "743fcf07734af9ec45ce536a7db0ea22a792afdfca176d8dd588a91eb9148513"
|
| 129 |
},
|
| 130 |
{
|
| 131 |
"artifact_key": "data/source_receipts_combined.csv",
|
| 132 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\source_receipts_combined.csv",
|
| 133 |
"byte_count": 5058,
|
| 134 |
"content_sha256": "c40cf680675a165732a3caa0ba941a774648dec8e16bb4b4c20f88b1c80440bb"
|
| 135 |
},
|
| 136 |
{
|
| 137 |
"artifact_key": "data/statistical_tests.json",
|
| 138 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\statistical_tests.json",
|
| 139 |
"byte_count": 3072,
|
| 140 |
"content_sha256": "3dabf22b92e41bd0cdd7541354f0fa2b696ea0ddbd3ee62c59fd5ef3b6dc8bea"
|
| 141 |
},
|
| 142 |
{
|
| 143 |
"artifact_key": "data/summary_metrics.json",
|
| 144 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\data\\summary_metrics.json",
|
| 145 |
"byte_count": 18579,
|
| 146 |
+
"content_sha256": "7ab17bf50b24473f4068943b4e08d9d75c7aebdf5a915b01d3ed6abccc146fcb"
|
| 147 |
},
|
| 148 |
{
|
| 149 |
"artifact_key": "README.md",
|
| 150 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\README.md",
|
| 151 |
"byte_count": 3613,
|
| 152 |
"content_sha256": "ec6afe2acb6d83dfbf6481c46837ae272ceaa3e77f849c302335cf5455278b22"
|
| 153 |
},
|
| 154 |
{
|
| 155 |
"artifact_key": "requirements.txt",
|
| 156 |
+
"path": "C:\\scraper\\runs\\huggingface_spaces\\nuclear-uap-evidence-surface_contrast_20260429T022500Z\\requirements.txt",
|
| 157 |
"byte_count": 31,
|
| 158 |
"content_sha256": "76e73ec284b0b0b250edd3b0593e32a1eb40f57d3ce90363852f709e9ad06071"
|
| 159 |
}
|
|
|
|
| 167 |
"user_explicit_publish_request": true
|
| 168 |
},
|
| 169 |
"metrics": {
|
| 170 |
+
"generated_utc": "2026-04-29T02:13:05+00:00",
|
| 171 |
"package_version": "nuclear_uap_hf_space_package_v0",
|
| 172 |
"assessment": {
|
| 173 |
"assessment_version": "nuclear_uap_explanatory_private_preview_v1",
|
|
|
|
| 707 |
"best_supported_explanation": "Population/reporting geography is a strong observable factor; major-airport proximity appears mostly consistent with where people live."
|
| 708 |
}
|
| 709 |
},
|
| 710 |
+
"manifest_hash": "9c4d6ad2d4117794702450d1d2c9a450ca55c01739246fa857997243825cabc8"
|
| 711 |
}
|