-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshadowgraph.html
More file actions
2407 lines (2292 loc) · 133 KB
/
shadowgraph.html
File metadata and controls
2407 lines (2292 loc) · 133 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SHADOWGRAPH v1.3 // 6°NASA</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Rajdhani:wght@300;400;500;600;700&family=Orbitron:wght@400;700;900&display=swap" rel="stylesheet">
<style>
/* Font fallbacks if Google Fonts is blocked */
:root {
--font-mono-stack: 'Share Tech Mono', 'Courier New', 'Lucida Console', monospace;
--font-body-stack: 'Rajdhani', 'Trebuchet MS', Arial, sans-serif;
--font-title-stack: 'Orbitron', 'Courier New', monospace;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.min.css"/>
<style>
:root {
--bg-deep: #000b14;
--bg-mid: #041220;
--bg-panel: #071928;
--bg-card: #0a1f30;
--accent: #859900;
--accent-dim: #4a5500;
--accent-glow:#b8cc00;
--slate: #2e4a5e;
--slate-light:#3d6280;
--text-pri: #c8d8e0;
--text-sec: #7a9db5;
--text-dim: #3a5a70;
--deceased: #dc322f;
--missing: #b58900;
--active: #268bd2;
--edge-work: #268bd2;
--edge-acq: #6c71c4;
--edge-inst: #2aa198;
--border: #1a3a50;
--mono: 'Share Tech Mono', 'Courier New', monospace;
--title: 'Orbitron', 'Courier New', monospace;
--body: 'Rajdhani', 'Trebuchet MS', Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: var(--bg-deep);
color: var(--text-pri);
font-family: var(--body);
font-size: 14px;
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
}
/* ── HEADER ── */
header {
background: var(--bg-panel);
border-bottom: 1px solid var(--accent-dim);
padding: 0 20px;
height: 52px;
display: flex;
align-items: center;
justify-content: space-between;
flex-shrink: 0;
position: relative;
z-index: 1000;
}
.hdr-left { display: flex; align-items: center; gap: 16px; }
.logo {
font-family: var(--title);
font-size: 16px;
font-weight: 900;
color: var(--accent-glow);
letter-spacing: 4px;
text-transform: uppercase;
line-height: 1;
}
.logo span { color: var(--text-sec); font-size: 10px; letter-spacing: 2px; display: block; margin-top: 2px; }
.hdr-sep { width: 1px; height: 30px; background: var(--border); }
.hdr-stat {
font-family: var(--mono);
font-size: 10px;
color: var(--text-sec);
line-height: 1.8;
}
.hdr-stat .val { color: var(--accent); }
.pulse-dot {
width: 6px; height: 6px; border-radius: 50%;
background: var(--accent);
display: inline-block;
animation: pulse-anim 2s ease-in-out infinite;
margin-right: 6px;
}
@keyframes pulse-anim {
0%,100% { opacity: 1; box-shadow: 0 0 4px var(--accent); }
50% { opacity: 0.3; box-shadow: none; }
}
.hdr-right { display: flex; align-items: center; gap: 12px; }
.hdr-btn {
background: transparent;
border: 1px solid var(--border);
color: var(--text-sec);
font-family: var(--mono);
font-size: 10px;
padding: 5px 12px;
cursor: pointer;
letter-spacing: 1px;
text-transform: uppercase;
transition: all 0.2s;
}
.hdr-btn:hover { border-color: var(--accent); color: var(--accent); }
.hdr-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(133,153,0,0.08); }
.classify-badge {
font-family: var(--mono);
font-size: 9px;
color: var(--deceased);
border: 1px solid var(--deceased);
padding: 3px 8px;
letter-spacing: 2px;
animation: blink 3s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.4} }
/* ── MAIN LAYOUT ── */
.main { display: flex; flex: 1; overflow: hidden; }
/* ── LEFT PANEL ── */
.left-panel {
width: 280px;
background: var(--bg-panel);
border-right: 1px solid var(--border);
display: flex;
flex-direction: column;
flex-shrink: 0;
overflow: hidden;
}
.panel-section {
border-bottom: 1px solid var(--border);
padding: 12px 16px;
}
.panel-title {
font-family: var(--mono);
font-size: 9px;
color: var(--text-dim);
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 8px;
}
.panel-title::after {
content: '';
flex: 1;
height: 1px;
background: var(--border);
}
/* Filter controls */
.filter-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 6px; }
.filter-btn {
font-family: var(--mono);
font-size: 9px;
padding: 4px 8px;
border: 1px solid var(--border);
background: transparent;
color: var(--text-sec);
cursor: pointer;
letter-spacing: 1px;
transition: all 0.2s;
text-transform: uppercase;
}
.filter-btn:hover { border-color: var(--slate-light); color: var(--text-pri); }
.filter-btn.on { background: rgba(133,153,0,0.1); border-color: var(--accent); color: var(--accent); }
.filter-btn.deceased { border-color: var(--deceased); color: var(--deceased); }
.filter-btn.deceased.on { background: rgba(220,50,47,0.12); }
.filter-btn.missing { border-color: var(--missing); color: var(--missing); }
.filter-btn.missing.on { background: rgba(181,137,0,0.12); }
/* Node list */
.node-list { flex: 1; overflow-y: auto; padding: 4px 0; }
.node-list::-webkit-scrollbar { width: 4px; }
.node-list::-webkit-scrollbar-track { background: transparent; }
.node-list::-webkit-scrollbar-thumb { background: var(--border); }
.node-item {
padding: 10px 16px;
cursor: pointer;
border-left: 2px solid transparent;
transition: all 0.15s;
display: flex;
align-items: flex-start;
gap: 10px;
}
.node-item:hover { background: rgba(255,255,255,0.03); }
.node-item.selected { background: rgba(133,153,0,0.07); border-left-color: var(--accent); }
.node-item.deceased { border-left-color: var(--deceased); }
.node-item.missing { border-left-color: var(--missing); }
.node-status-dot {
width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 3px;
}
.node-item .name {
font-family: var(--body);
font-weight: 600;
font-size: 13px;
color: var(--text-pri);
line-height: 1.3;
}
.node-item .org {
font-family: var(--mono);
font-size: 9px;
color: var(--text-sec);
margin-top: 2px;
letter-spacing: 0.5px;
}
.node-item .status-tag {
font-family: var(--mono);
font-size: 8px;
padding: 1px 5px;
margin-top: 3px;
display: inline-block;
letter-spacing: 1px;
}
.status-tag.DECEASED { border: 1px solid var(--deceased); color: var(--deceased); }
.status-tag.MISSING { border: 1px solid var(--missing); color: var(--missing); }
.status-tag.ACTIVE { border: 1px solid var(--active); color: var(--active); }
/* Legend */
.legend-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.legend-line { width: 20px; height: 2px; }
.legend-label { font-family: var(--mono); font-size: 9px; color: var(--text-sec); letter-spacing: 1px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
/* ── MAP CENTER ── */
#map-container {
flex: 1;
position: relative;
background: var(--bg-deep);
}
#map { width: 100%; height: 100%; }
/* Leaflet overrides */
.leaflet-container { background: #000b14 !important; }
.leaflet-control-zoom a {
background: var(--bg-panel) !important;
border: 1px solid var(--border) !important;
color: var(--text-sec) !important;
}
.leaflet-control-zoom a:hover { color: var(--accent) !important; border-color: var(--accent) !important; }
.leaflet-control-attribution { display: none; }
/* Map overlay */
.map-overlay {
position: absolute;
pointer-events: none;
z-index: 500;
}
.map-hud-tl {
top: 16px; left: 16px;
font-family: var(--mono);
font-size: 9px;
color: var(--text-dim);
line-height: 2;
letter-spacing: 1px;
}
.map-hud-tr {
top: 16px; right: 16px;
font-family: var(--mono);
font-size: 9px;
color: var(--text-dim);
line-height: 2;
letter-spacing: 1px;
text-align: right;
}
.hud-accent { color: var(--accent); }
.scanline {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.04) 2px, rgba(0,0,0,0.04) 4px);
pointer-events: none;
z-index: 400;
}
/* Custom markers */
.custom-marker {
display: flex; align-items: center; justify-content: center;
border-radius: 50%;
border: 2px solid;
font-family: var(--mono);
font-size: 9px;
font-weight: bold;
cursor: pointer;
transition: transform 0.2s;
box-shadow: 0 0 12px rgba(0,0,0,0.6);
}
.custom-marker:hover { transform: scale(1.15); }
.marker-DECEASED {
background: rgba(220,50,47,0.25);
border-color: var(--deceased);
color: var(--deceased);
box-shadow: 0 0 10px rgba(220,50,47,0.4);
}
.marker-MISSING {
background: rgba(181,137,0,0.25);
border-color: var(--missing);
color: var(--missing);
box-shadow: 0 0 10px rgba(181,137,0,0.4);
animation: pulse-missing 2.5s ease-in-out infinite;
}
.marker-ACTIVE {
background: rgba(38,139,210,0.25);
border-color: var(--active);
color: var(--active);
box-shadow: 0 0 8px rgba(38,139,210,0.3);
}
@keyframes pulse-missing {
0%,100% { box-shadow: 0 0 10px rgba(181,137,0,0.4); }
50% { box-shadow: 0 0 20px rgba(181,137,0,0.8), 0 0 40px rgba(181,137,0,0.2); }
}
/* ── RIGHT PANEL ── */
.right-panel {
width: 320px;
background: var(--bg-panel);
border-left: 1px solid var(--border);
display: flex;
flex-direction: column;
flex-shrink: 0;
overflow: hidden;
}
.detail-empty {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 12px;
color: var(--text-dim);
font-family: var(--mono);
font-size: 10px;
letter-spacing: 2px;
text-align: center;
}
.detail-empty .crosshair {
width: 40px; height: 40px;
border: 1px solid var(--border);
border-radius: 50%;
position: relative;
}
.detail-empty .crosshair::before,
.detail-empty .crosshair::after {
content: '';
position: absolute;
background: var(--border);
}
.detail-empty .crosshair::before { width: 1px; height: 100%; left: 50%; top: 0; }
.detail-empty .crosshair::after { width: 100%; height: 1px; top: 50%; left: 0; }
.detail-panel { flex: 1; overflow-y: auto; }
.detail-panel::-webkit-scrollbar { width: 4px; }
.detail-panel::-webkit-scrollbar-thumb { background: var(--border); }
.detail-header {
padding: 16px;
border-bottom: 1px solid var(--border);
position: relative;
}
.detail-status-bar {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 8px;
}
.detail-name {
font-family: var(--body);
font-size: 20px;
font-weight: 700;
color: var(--text-pri);
letter-spacing: 0.5px;
margin-bottom: 4px;
}
.detail-id {
font-family: var(--mono);
font-size: 9px;
color: var(--text-dim);
letter-spacing: 2px;
}
.detail-field {
padding: 10px 16px;
border-bottom: 1px solid rgba(26,58,80,0.4);
display: flex;
gap: 12px;
}
.detail-field .key {
font-family: var(--mono);
font-size: 9px;
color: var(--text-dim);
letter-spacing: 1px;
text-transform: uppercase;
min-width: 90px;
flex-shrink: 0;
padding-top: 1px;
}
.detail-field .value {
font-family: var(--body);
font-size: 13px;
color: var(--text-pri);
line-height: 1.4;
}
.detail-field .value a {
color: var(--accent);
text-decoration: none;
font-family: var(--mono);
font-size: 10px;
display: block;
margin-bottom: 4px;
transition: color 0.15s;
}
.detail-field .value a:hover { color: var(--accent-glow); }
.connections-section { padding: 12px 16px; }
.conn-item {
padding: 10px 12px;
border: 1px solid var(--border);
margin-bottom: 8px;
background: rgba(0,0,0,0.2);
cursor: pointer;
transition: border-color 0.15s;
}
.conn-item:hover { border-color: var(--slate-light); }
.conn-header { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.conn-type-badge {
font-family: var(--mono);
font-size: 8px;
padding: 2px 6px;
letter-spacing: 1px;
text-transform: uppercase;
}
.badge-WORK { border: 1px solid var(--edge-work); color: var(--edge-work); }
.badge-ACQUAINTANCE { border: 1px solid var(--edge-acq); color: var(--edge-acq); }
.badge-INSTITUTIONAL { border: 1px solid var(--edge-inst); color: var(--edge-inst); }
.conn-name { font-size: 13px; font-weight: 600; color: var(--text-pri); }
.conn-label { font-family: var(--mono); font-size: 9px; color: var(--text-sec); letter-spacing: 0.5px; }
/* Timeline section */
.timeline { padding: 12px 16px; }
.timeline-item {
display: flex;
gap: 12px;
padding-bottom: 16px;
position: relative;
}
.timeline-item::before {
content: '';
position: absolute;
left: 7px;
top: 14px;
bottom: 0;
width: 1px;
background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.tl-dot {
width: 14px; height: 14px;
border-radius: 50%;
border: 2px solid;
flex-shrink: 0;
margin-top: 1px;
background: var(--bg-panel);
z-index: 1;
}
.tl-content {}
.tl-date { font-family: var(--mono); font-size: 9px; color: var(--text-dim); letter-spacing: 1px; }
.tl-event { font-size: 12px; color: var(--text-pri); margin-top: 2px; line-height: 1.4; }
/* Graph mode */
#graph-container {
flex: 1;
background: var(--bg-deep);
display: none;
position: relative;
}
#graph-svg { width: 100%; height: 100%; }
/* Mode switcher */
.mode-tabs {
display: flex;
background: var(--bg-mid);
border-bottom: 1px solid var(--border);
flex-shrink: 0;
}
.mode-tab {
flex: 1;
padding: 10px;
text-align: center;
font-family: var(--mono);
font-size: 9px;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--text-dim);
cursor: pointer;
border-bottom: 2px solid transparent;
transition: all 0.2s;
}
.mode-tab:hover { color: var(--text-sec); }
.mode-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
/* Popup overrides */
.leaflet-popup-content-wrapper {
background: var(--bg-card) !important;
border: 1px solid var(--border) !important;
border-radius: 0 !important;
box-shadow: 0 8px 30px rgba(0,0,0,0.8) !important;
color: var(--text-pri) !important;
}
.leaflet-popup-tip { background: var(--bg-card) !important; }
.leaflet-popup-content { margin: 12px 16px !important; }
.popup-name { font-family: var(--body); font-size: 15px; font-weight: 700; color: var(--text-pri); }
.popup-org { font-family: var(--mono); font-size: 9px; color: var(--text-sec); letter-spacing: 1px; margin: 4px 0; }
.popup-status { font-family: var(--mono); font-size: 9px; margin: 6px 0; }
.popup-btn {
display: block;
width: 100%;
margin-top: 10px;
padding: 6px;
background: rgba(133,153,0,0.1);
border: 1px solid var(--accent-dim);
color: var(--accent);
font-family: var(--mono);
font-size: 9px;
letter-spacing: 2px;
text-transform: uppercase;
cursor: pointer;
text-align: center;
transition: all 0.2s;
}
.popup-btn:hover { background: rgba(133,153,0,0.2); border-color: var(--accent); }
/* Tooltip */
.leaflet-tooltip {
background: var(--bg-card) !important;
border: 1px solid var(--border) !important;
border-radius: 0 !important;
color: var(--text-sec) !important;
font-family: var(--mono) !important;
font-size: 10px !important;
box-shadow: none !important;
}
/* D3 graph styles */
.graph-node circle { cursor: pointer; transition: r 0.2s; }
.graph-node circle:hover { stroke-width: 3; }
.graph-node text { font-family: 'Share Tech Mono', monospace; font-size: 10px; fill: #c8d8e0; pointer-events: none; }
.graph-link { fill: none; }
.graph-link-label { font-family: 'Share Tech Mono', monospace; font-size: 8px; fill: #3a5a70; pointer-events: none; }
/* Status bar */
.status-bar {
background: var(--bg-mid);
border-top: 1px solid var(--border);
padding: 4px 16px;
display: flex;
align-items: center;
gap: 20px;
flex-shrink: 0;
height: 26px;
}
.status-item {
font-family: var(--mono);
font-size: 9px;
color: var(--text-dim);
letter-spacing: 1px;
}
.status-item .v { color: var(--text-sec); margin-left: 4px; }
.status-item .v.red { color: var(--deceased); }
.status-item .v.amber { color: var(--missing); }
.status-item .v.green { color: var(--accent); }
/* Degree badge */
.degree-badge {
font-family: var(--mono);
font-size: 8px;
padding: 1px 5px;
border-radius: 2px;
display: inline-block;
letter-spacing: 1px;
margin-left: 6px;
vertical-align: middle;
}
.deg-0 { background: rgba(220,50,47,0.15); border: 1px solid var(--deceased); color: var(--deceased); }
.deg-1 { background: rgba(42,161,152,0.15); border: 1px solid #2aa198; color: #2aa198; }
.deg-2 { background: rgba(108,113,196,0.15); border: 1px solid #6c71c4; color: #6c71c4; }
.deg-3 { background: rgba(101,123,131,0.15); border: 1px solid #657b83; color: #657b83; }
.deg-4 { background: rgba(181,137,0,0.15); border: 1px solid #b58900; color: #b58900; }
.deg-5 { background: rgba(38,139,210,0.15); border: 1px solid #268bd2; color: #268bd2; }
.deg-6 { background: rgba(133,153,0,0.15); border: 1px solid #859900; color: #b8cc00; }
/* Pattern list */
.pattern-item {
padding: 7px 10px;
margin-bottom: 5px;
border-left: 3px solid;
background: rgba(0,0,0,0.2);
cursor: pointer;
transition: all 0.15s;
}
.pattern-item:hover { background: rgba(255,255,255,0.04); }
.pattern-item.active { background: rgba(133,153,0,0.08); }
.pattern-name { font-family: var(--mono); font-size: 9px; letter-spacing: 1px; color: var(--text-pri); text-transform: uppercase; }
.pattern-count { font-family: var(--mono); font-size: 8px; color: var(--text-dim); margin-top: 2px; }
/* Pattern tag in detail panel */
.pattern-tag {
font-family: var(--mono);
font-size: 8px;
padding: 2px 6px;
border: 1px solid;
letter-spacing: 1px;
display: inline-block;
margin: 2px 3px 2px 0;
cursor: pointer;
transition: opacity 0.15s;
text-transform: uppercase;
}
.pattern-tag:hover { opacity: 0.7; }
/* Cluster indicator dot in map */
.marker-ext1 { border-color: #2aa198; color: #2aa198; background: rgba(42,161,152,0.2); box-shadow: 0 0 8px rgba(42,161,152,0.3); }
.marker-ext2 { border-color: #6c71c4; color: #6c71c4; background: rgba(108,113,196,0.2); box-shadow: 0 0 8px rgba(108,113,196,0.25); }
.marker-ext3 { border-color: #657b83; color: #657b83; background: rgba(101,123,131,0.2); }
/* Scrollbar */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); }
</style>
</head>
<body>
<!-- HEADER -->
<header>
<div class="hdr-left">
<div class="logo">
SHADOWGRAPH
<span>6 DEGREES OF NASA // v1.3</span>
</div>
<div class="hdr-sep"></div>
<div class="hdr-stat">
<div><span class="pulse-dot"></span>NODES: <span class="val">31</span></div>
<div>CONNECTIONS: <span class="val">73</span></div>
</div>
<div class="hdr-sep"></div>
<div class="hdr-stat">
<div>DECEASED: <span class="val" style="color:var(--deceased)">5</span></div>
<div>MISSING: <span class="val" style="color:var(--missing)">4</span></div>
</div>
</div>
<div class="hdr-right">
<div class="classify-badge">// UNCLASSIFIED //</div>
<button class="hdr-btn active" id="btn-map" onclick="switchMode('map')">MAP</button>
<button class="hdr-btn" id="btn-graph" onclick="switchMode('graph')">GRAPH</button>
<button class="hdr-btn" onclick="resetView()">RESET</button>
</div>
</header>
<!-- MAIN -->
<div class="main">
<!-- LEFT PANEL -->
<div class="left-panel">
<div class="panel-section">
<div class="panel-title">FILTERS</div>
<div class="filter-row">
<button class="filter-btn on" id="f-all" onclick="filterNodes('all')">ALL</button>
<button class="filter-btn deceased" id="f-deceased" onclick="filterNodes('deceased')">DECEASED</button>
<button class="filter-btn missing" id="f-missing" onclick="filterNodes('missing')">MISSING</button>
</div>
<div class="filter-row">
<button class="filter-btn on" id="f-work" onclick="toggleEdge('WORK')">WORK</button>
<button class="filter-btn on" id="f-acq" onclick="toggleEdge('ACQUAINTANCE')">ACQUAINTANCE</button>
<button class="filter-btn on" id="f-inst" onclick="toggleEdge('INSTITUTIONAL')">INSTITUTIONAL</button>
</div>
<div class="filter-row">
<button class="filter-btn on" id="f-deg-all" onclick="filterDegree('all')">ALL DEG</button>
<button class="filter-btn" id="f-deg-0" onclick="filterDegree(0)" style="border-color:var(--deceased);color:var(--deceased)">CORE</button>
<button class="filter-btn" id="f-deg-1" onclick="filterDegree(1)" style="border-color:#2aa198;color:#2aa198">1°</button>
<button class="filter-btn" id="f-deg-2" onclick="filterDegree(2)" style="border-color:#6c71c4;color:#6c71c4">2°</button>
<button class="filter-btn" id="f-deg-3" onclick="filterDegree(3)" style="border-color:#657b83;color:#657b83">3°</button>
<button class="filter-btn" id="f-deg-4" onclick="filterDegree(4)" style="border-color:#b58900;color:#b58900">4°</button>
<button class="filter-btn" id="f-deg-5" onclick="filterDegree(5)" style="border-color:#268bd2;color:#268bd2">5°</button>
<button class="filter-btn" id="f-deg-6" onclick="filterDegree(6)" style="border-color:#859900;color:#b8cc00">6°</button>
</div>
</div>
<div class="panel-section" style="flex:1; overflow:hidden; display:flex; flex-direction:column;">
<div class="panel-title">SUBJECTS</div>
<div class="node-list" id="node-list"></div>
</div>
<div class="panel-section" style="max-height:220px;overflow-y:auto;">
<div class="panel-title">PATTERN CLUSTERS</div>
<div id="pattern-list"><!-- populated by JS --></div>
</div>
<div class="panel-section">
<div class="panel-title">LEGEND</div>
<div style="margin-bottom:10px;">
<div class="legend-row"><div class="legend-dot" style="background:var(--deceased);box-shadow:0 0 6px var(--deceased)"></div><div class="legend-label">DECEASED — CONFIRMED</div></div>
<div class="legend-row"><div class="legend-dot" style="background:var(--missing);box-shadow:0 0 6px var(--missing)"></div><div class="legend-label">MISSING — UNRESOLVED</div></div>
<div class="legend-row"><div class="legend-dot" style="background:var(--active)"></div><div class="legend-label">STATUS — UNCONFIRMED</div></div>
</div>
<div>
<div class="legend-row"><div class="legend-line" style="background:var(--edge-work)"></div><div class="legend-label">WORK CONNECTION</div></div>
<div class="legend-row"><div class="legend-line" style="background:var(--edge-acq);height:1px;border-top:1px dashed var(--edge-acq)"></div><div class="legend-label">ACQUAINTANCE LINK</div></div>
<div class="legend-row"><div class="legend-line" style="background:var(--edge-inst);height:1px;border-top:1px dotted var(--edge-inst)"></div><div class="legend-label">INSTITUTIONAL</div></div>
</div>
</div>
</div>
<!-- MAP + GRAPH CENTER -->
<div id="map-container">
<div id="map"></div>
<div class="scanline"></div>
<div class="map-overlay map-hud-tl">
<div>SYS: <span class="hud-accent">NOMINAL</span></div>
<div>PROJ: <span class="hud-accent">6°NASA</span></div>
<div>EPOCH: <span class="hud-accent" id="hud-time">--:--:--</span></div>
</div>
<div class="map-overlay map-hud-tr">
<div>ZOOM: <span class="hud-accent" id="hud-zoom">5</span></div>
<div>NODES VIS: <span class="hud-accent" id="hud-vis">7</span></div>
</div>
</div>
<div id="graph-container">
<svg id="graph-svg"></svg>
</div>
<!-- RIGHT PANEL -->
<div class="right-panel">
<div class="mode-tabs">
<div class="mode-tab active" id="tab-intel">INTEL</div>
<div class="mode-tab" id="tab-timeline" onclick="switchTab('timeline')">TIMELINE</div>
<div class="mode-tab" id="tab-links" onclick="switchTab('links')">LINKS</div>
</div>
<div id="panel-empty" class="detail-empty">
<div class="crosshair"></div>
<div>SELECT A NODE<br>TO VIEW INTELLIGENCE</div>
</div>
<div id="panel-detail" style="display:none; flex:1; overflow-y:auto; min-height:0;">
<!-- populated by JS -->
</div>
</div>
</div>
<!-- STATUS BAR -->
<div class="status-bar">
<div class="status-item">SYSTEM<span class="v green">ONLINE</span></div>
<div class="status-item">BACKEND<span class="v green">LOCAL</span></div>
<div class="status-item">MAP<span class="v">LEAFLET 1.9</span></div>
<div class="status-item">LAST UPDT<span class="v" id="sb-date">2026-04-17</span></div>
<div class="status-item" style="margin-left:auto;">INTEL SRC<span class="v green">OSINT</span></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.8.5/d3.min.js"></script>
<script>
// ═══════════════════════════════════════
// DATA
// ═══════════════════════════════════════
const NODES = [
{
id: 'GRILLMAIR',
name: 'Carl Grillmair',
lat: 34.475, lng: -117.828,
status: 'DECEASED',
field: 'Astrophysics / Galactic Astronomy',
org: 'Caltech / IPAC',
location: 'Llano, CA (Antelope Valley)',
date: 'Feb 16, 2026',
summary: 'Research scientist at Caltech\'s Infrared Processing and Analysis Center (IPAC) for 30 years. Led projects on Hubble and Spitzer Space Telescopes. Discovered water on multiple exoplanets. NASA Exceptional Scientific Achievement Medal (2011).',
cause: 'Fatally shot on front porch of rural home. Suspect: Freddy Snyder (29), charged with murder and carjacking. Snyder had trespassed on property with a rifle 2 months prior; charges were dismissed.',
links: [
{ label: 'Caltech Obituary', url: 'https://www.caltech.edu/about/news/caltech-mourns-the-passing-of-carl-grillmair-19592026' },
{ label: 'LA Mag — Killing Raises Questions', url: 'https://lamag.com/crimeinla/the-killing-of-caltech-astrophysicist-carl-grillmair-and-a-string-of-unanswered-cases/' },
{ label: 'Wikipedia', url: 'https://en.wikipedia.org/wiki/Carl_Grillmair' },
{ label: 'ABC7 — Suspect Charged', url: 'https://abc7.com/post/man-charged-killing-caltech-astrophysicist-carl-grillmair-llano-carjacking-own-relative-burglarizing-home/18626990/' },
],
timeline: [
{ date: '1997', event: 'Joins Caltech\'s IPAC / Spitzer Science Center' },
{ date: '2007', event: 'Publishes landmark paper on exoplanet water detection' },
{ date: '2011', event: 'Awarded NASA Exceptional Scientific Achievement Medal' },
{ date: 'Dec 20, 2025', event: 'Reports armed trespasser (Snyder) to police; charges later dismissed' },
{ date: 'Feb 16, 2026', event: 'Found fatally shot on front porch in Llano, CA' },
{ date: 'Feb 18, 2026', event: 'Freddy Snyder charged with murder' },
]
},
{
id: 'LOUREIRO',
name: 'Nuno Loureiro',
lat: 42.335, lng: -71.133,
status: 'DECEASED',
field: 'Plasma Physics / Nuclear Fusion',
org: 'MIT — Plasma Science & Fusion Center',
location: 'Brookline, MA',
date: 'Dec 16, 2025',
summary: 'Herman Feshbach Professor of Physics at MIT. Director of the Plasma Science and Fusion Center (2024–2025). Expert in magnetic reconnection and fusion plasma dynamics. Presidential Early Career Award for Scientists and Engineers (2025). LANL Stanisław Ulam Distinguished Scholar (2023).',
cause: 'Shot at foyer of apartment building. Perpetrator identified as Cláudio Manuel Neves Valente — Portuguese national who attended IST Lisbon with Loureiro (1995–2000). Same suspect linked to Brown University mass shooting 2 days prior. Suspect died by suicide. Motive: personal grievance.',
links: [
{ label: 'MIT News — Obituary', url: 'https://news.mit.edu/2025/nuno-loureiro-professor-director-plasma-science-and-fusion-center-dies-1216' },
{ label: 'Wikipedia', url: 'https://en.wikipedia.org/wiki/Nuno_Loureiro' },
{ label: 'CNN Report', url: 'https://www.cnn.com/2025/12/16/us/nuno-loureiro-mit-professor-shot' },
{ label: 'NBC News', url: 'https://www.nbcnews.com/news/us-news/mit-professor-killed-shooting-home-rcna249582' },
],
timeline: [
{ date: '2016', event: 'Joins MIT faculty' },
{ date: '2021', event: 'Promoted to full professor' },
{ date: '2023', event: 'LANL Stanisław Ulam Distinguished Scholar' },
{ date: 'May 2024', event: 'Named Director of MIT Plasma Science & Fusion Center' },
{ date: 'Dec 15, 2025', event: 'Shot at residence in Brookline, MA' },
{ date: 'Dec 16, 2025', event: 'Pronounced dead at Beth Israel Deaconess Medical Center' },
{ date: 'Dec 18, 2025', event: 'Suspect linked to Brown University shooting; dies by suicide' },
]
},
{
id: 'REZA',
name: 'Monica Reza',
lat: 34.354, lng: -117.931,
status: 'MISSING',
field: 'Materials Science / Advanced Propulsion',
org: 'NASA JPL (formerly Aerojet Rocketdyne)',
location: 'Mt. Waterman, Angeles National Forest, CA',
date: 'Jun 22, 2025',
summary: 'Technical Fellow at Aerojet Rocketdyne (to 2023), then Director of Materials & Processing Group at NASA JPL. Co-inventor of Mondaloy, a nickel-based superalloy now used in U.S. national security rocket engines replacing Russian-made RD-180. AIAA Associate Fellow.',
cause: 'Vanished while hiking Mount Waterman trail in Angeles National Forest. Last seen waving to companion ~30 ft away at 9:10 AM. Extensive search: helicopters, K-9 units, drones, SAR teams over multiple months. No trace found. Case transferred to LACSO Homicide Bureau – Missing Persons Unit. No body recovered.',
links: [
{ label: 'NY Post — Rocket Scientist Connection', url: 'https://www.aol.com/articles/rocket-scientist-ties-missing-air-121500316.html' },
{ label: 'Solve the Case — Official Missing Alert', url: 'https://www.solvethecase.org/case/2025-56/monica-reza' },
{ label: 'Daily Mail — Full Investigation', url: 'https://tuzarapost.substack.com/p/mystery-of-five-missing-scientists' },
{ label: 'Sentinel Network — Deep Dive', url: 'https://thesentinel.network/p/the-green-burial-she-was-declared' },
],
timeline: [
{ date: '1990s', event: 'Co-invents Mondaloy superalloy at Rocketdyne' },
{ date: '2016', event: 'Aerojet Rocketdyne achieves AR1 engine milestone using Mondaloy' },
{ date: '2023', event: 'Aerojet Rocketdyne acquired by L3Harris for $4.7B; Reza moves to NASA JPL' },
{ date: 'Jun 22, 2025 9:10AM', event: 'Last seen on Mt. Waterman trail; waves to companion, vanishes' },
{ date: 'Jun 26, 2025', event: 'Find-a-Grave memorial page created — while search still active' },
{ date: 'Jun 30, 2025', event: 'Initial search phase suspended; case transferred to Homicide Bureau' },
{ date: 'Aug 8, 2025', event: 'Additional search conducted; no trace found' },
]
},
{
id: 'MCCASLAND',
name: 'William McCasland',
lat: 35.084, lng: -106.650,
status: 'MISSING',
field: 'Aerospace Engineering / Space Programs',
org: 'USAF (Ret.) — Former AFRL Commander',
location: 'Albuquerque, NM / Sandia Foothills',
date: 'Feb 27, 2026',
summary: 'Retired Air Force Major General. Former Commander of the Air Force Research Laboratory (AFRL) at Wright-Patterson AFB — overseeing ~$2.2B in S&T programs. Ph.D. in aerospace engineering from MIT. Harvard Kennedy School. Led GPS program, Space Based Laser Project, Director of Special Programs at the Pentagon. Post-retirement: consultant to Tom DeLonge\'s UAP research company (To The Stars).',
cause: 'Vanished from Albuquerque home in a one-hour window while wife was at appointment. Left behind: phone, prescription glasses, wearable devices. Missing: hiking boots, wallet, .38-caliber revolver, leather holster. Silver Alert issued. FBI Albuquerque Field Office joined search. Investigators found USAF sweatshirt 1.25 miles east of home. Boots found at Pagosa Springs vacation home. No confirmed sightings. No evidence of foul play confirmed — but no scenarios ruled out.',
links: [
{ label: 'CNN — FBI Search', url: 'https://www.cnn.com/2026/03/11/us/retired-air-force-general-fbi-search' },
{ label: 'CNN — Week 3', url: 'https://www.cnn.com/2026/03/17/us/fbi-search-william-mccasland-general-missing' },
{ label: 'Military.com — FBI & Conspiracy Theories', url: 'https://www.military.com/daily-news/air-force/2026/03/15/missing-air-force-general-case-draws-fbi-and-online-conspiracy-theories.html' },
{ label: 'Fox News — Disappearance Timeline', url: 'https://www.foxnews.com/us/retired-air-force-general-vanishes-1-hour-window-from-home-gun-wallet-missing' },
],
timeline: [
{ date: '2009–2013', event: 'Commander, Air Force Research Laboratory, Wright-Patterson AFB' },
{ date: '2013', event: 'Retires from Air Force after 30+ years service' },
{ date: 'Post-2013', event: 'Consults for Tom DeLonge\'s "To The Stars" UAP initiative' },
{ date: 'Feb 21, 2026', event: 'Trump announces UFO/UAP file declassification order' },
{ date: 'Feb 27, 2026', event: 'Leaves home on foot at ~11AM; never returns' },
{ date: 'Mar 3, 2026', event: 'FBI Albuquerque joins active search' },
{ date: 'Mar 7, 2026', event: 'USAF sweatshirt found 1.25 miles east of home' },
]
},
{
id: 'CASIAS',
name: 'Melissa Casias',
lat: 35.881, lng: -106.403,
status: 'ACTIVE',
field: 'Administrative / Facility Operations',
org: 'Los Alamos National Laboratory',
location: 'Los Alamos, NM',
date: 'N/A',
summary: 'Employee at Los Alamos National Laboratory. The specific details of her work and role are not fully publicly documented. LANL is a DOE national security laboratory with classified nuclear research programs, conducting ~$4B/year in federally funded R&D.',
cause: 'No confirmed incident. Listed for connection mapping purposes based on Los Alamos affiliation.',
links: [],
timeline: [
{ date: 'Ongoing', event: 'Employee at Los Alamos National Laboratory' },
]
},
{
id: 'CHAVEZ',
name: 'Anthony Chavez',
lat: 35.891, lng: -106.303,
status: 'ACTIVE',
field: 'R&D Engineering',
org: 'Los Alamos National Laboratory',
location: 'Los Alamos, NM',
date: 'N/A',
summary: 'R&D Engineer at Los Alamos National Laboratory. LANL conducts research in nuclear weapons, national security, and energy science. The lab employs ~13,000 people and is managed by Triad National Security for the DOE/NNSA.',
cause: 'No confirmed incident. Listed for connection mapping purposes based on Los Alamos affiliation.',
links: [],
timeline: [
{ date: 'Ongoing', event: 'R&D Engineer at Los Alamos National Laboratory' },
]
},
{
id: 'MAIWALD',
name: 'Frank Maiwald',
lat: 34.201, lng: -118.171,
status: 'DECEASED',
field: 'Remote Sensing / Satellite Instrumentation',
org: 'NASA JPL — Technical Group Supervisor',
location: 'Los Angeles, CA',
date: 'Jul 4, 2024',
summary: 'Technical Group Supervisor at NASA\'s Jet Propulsion Laboratory. Born June 24, 1963 in Ratingen, Germany. Educated at University of Cologne. Managed development of the SBG-VSWIR instrument (visible shortwave infrared spectrometer for the Surface Biology and Geology mission) and previously oversaw delivery of instruments for the AMR-C program. Contributed to AMR/SWOT, COWVR, AMR/Jason 3, and HIFI. JPL Principal — an award reserved for scientists making outstanding individual contributions. 13 months before his death, led a breakthrough study on detecting biosignatures from orbit relevant to Europa, Enceladus, and Ceres. Held a long-standing coworker relationship with Michael David Hicks at JPL.',
cause: 'Died July 4, 2024 in Los Angeles at age 61. Cause of death never made public. No autopsy was performed. NASA issued no public statement. Only public record is a single online obituary. No news coverage at time of death. The first chronological event in the current pattern — nearly a year before the next incident.',
links: [
{ label: 'Legacy.com Obituary', url: 'https://www.legacy.com/us/obituaries/legacyremembers/frank-maiwald-obituary?id=55630404' },
{ label: 'Daily Mail — Eight Scientists', url: 'https://www.sott.net/article/505504-Mystery-of-scientists-dead-or-missing-rises-to-EIGHT-as-two-more-men-tied-to-Americas-most-coveted-secrets-join-the-list' },
{ label: 'Sentinel Network — The Blind Spot', url: 'https://thesentinel.network/p/the-blind-spot-rocks-are-falling' },
],
timeline: [
{ date: '1999', event: 'Joins NASA JPL as researcher' },
{ date: 'Jun 2023', event: 'Lead researcher on biosignature detection breakthrough (Europa / Enceladus / Ceres)' },
{ date: 'Jul 4, 2024', event: 'Dies in Los Angeles at age 61. Cause undisclosed. No autopsy. No NASA statement.' },
{ date: 'Jul 17, 2024', event: 'Single online obituary posted — only public record of his death' },
]
},
{
id: 'HICKS',
name: 'Michael David Hicks',
lat: 34.260, lng: -118.051,
status: 'DECEASED',
field: 'Planetary Science / Asteroid & Comet Research',
org: 'NASA JPL — Research Scientist',
location: 'Sunland, CA',
date: 'Jul 30, 2023',
patterns: ['PASADENA_TRIANGLE', 'JPL_LEADERSHIP'],
summary: 'Research Scientist at NASA\'s Jet Propulsion Laboratory from 1998 to 2022. Born 1964 in Dayton, Ohio. Ph.D. in Lunar and Planetary Science from the University of Arizona (1997). Specialty in physical properties of comets and asteroids. Science team member on the DART Project (asteroid deflection), Near Earth Asteroid Tracking (NEAT), Dawn Mission, and Deep Space 1 Mission (comet flyby 2001). Author of over 80 peer-reviewed scientific papers. Long-standing JPL coworker of Frank Maiwald. Regular observing runs at Mount Palomar Observatory. Died one year after departing JPL.',
cause: 'Died July 30, 2023 in Sunland, CA at age 59. Cause of death never made public. No record of an autopsy being performed. No institutional acknowledgment from NASA or JPL. Series of online obituaries noted no prior health issues — death appeared sudden, approximately one year after leaving JPL in 2022. Earliest-dated death in the current pattern.',
links: [
{ label: 'University of Arizona — In Memoriam', url: 'https://www.lpl.arizona.edu/about/memoriam/michael-hicks' },
{ label: 'LPL News — 1964–2023', url: 'https://www.lpl.arizona.edu/news/2023/fall/michael-david-hicks-1964-2023' },
{ label: 'Daily Mail — Ninth Scientist', url: 'https://www.dailymail.co.uk/sciencetech/article-15709875/nasa-jet-propulsion-lab-scientists-deaths.html' },
{ label: 'AAS DPS Obituary', url: 'https://dps.aas.org/tag/obituary/' },
],
timeline: [
{ date: '1997', event: 'Earns Ph.D. in Lunar and Planetary Science, University of Arizona' },
{ date: '1998', event: 'Joins NASA JPL as postdoctoral research associate' },
{ date: '2001', event: 'Deep Space 1 Mission comet flyby — Hicks on science team' },
{ date: '2022', event: 'Departs NASA JPL after 24 years' },
{ date: 'Jul 30, 2023', event: 'Dies suddenly in Sunland, CA at age 59. Cause undisclosed. No autopsy.' },
]
},
{
id: 'THOMAS',
name: 'Jason Thomas',
lat: 42.505, lng: -71.075,
status: 'DECEASED',
field: 'Chemical Biology / Cancer Research',
org: 'Novartis — Assistant Director, Chemical Biology',
location: 'Wakefield, MA',
date: 'Dec 12, 2025',
patterns: ['FEDERAL_SCIENCE_POLICY'],
summary: 'Assistant Director of Chemical Biology at Novartis, a global pharmaceutical company with active Department of Defense contracts. Age 45 at time of disappearance. Research focused on chemogenetic approaches, small-molecule drug discovery, targeted protein degradation, and pre-mRNA processing inhibitors targeting AML, Ewing\'s sarcoma, breast cancer, and ovarian cancer. Married to Kristen Bartoli. Described by colleagues as "one of the kindest people." Novartis has held active contracts with the US Department of War (Defense) and previously worked with HHS. Disappeared the night of December 12, 2025 after returning from a social outing — the first such outing after the deaths of both of his parents weeks prior.',
cause: 'Disappeared night of December 12, 2025 from Wakefield, MA. Left behind keys, wallet, phone, and Apple Watch in the mailbox — described as completely out of character. Never returned from late-night walk. Wakefield Police launched search including K-9 units, drones, and multiple agencies. Lake Quannapowitt had been frozen most of the winter. Body recovered from Lake Quannapowitt on March 17, 2026 after spring thaw. Medical examiner has not released final cause of death. No foul play currently suspected. Independent investigators note his DoD contract work and left-behind devices as anomalous.',
links: [
{ label: 'Boston.com — Body Recovered', url: 'https://www.boston.com/news/local-news/2026/03/17/body-pulled-from-wakefield-lake-believed-to-be-that-of-missing-man/' },
{ label: 'NBC Dateline — Missing in America', url: 'https://www.nbcnews.com/dateline/missing-in-america/jason-thomas-missing-wakefield-massachusetts-rcna263785' },
{ label: 'Daily Voice — Wakefield', url: 'https://dailyvoice.com/ma/wakefield/body-of-jason-thomas-found-in-wakefield-lake-3-months-later/' },
],
timeline: [
{ date: 'Nov 2025', event: 'Both parents die within hours of each other — Thomas\'s first major personal loss' },
{ date: 'Dec 12, 2025', event: 'Returns home from first social outing since parents\' deaths; leaves on foot for a walk, never returns. Leaves keys, wallet, phone, Apple Watch in mailbox.' },
{ date: 'Dec 13, 2025', event: 'Wife reports him missing to Wakefield PD. Large-scale search launched.' },
{ date: 'Winter 2026', event: 'Lake Quannapowitt freezes over; search suspended pending thaw' },
{ date: 'Mar 17, 2026', event: 'Body recovered from Lake Quannapowitt after spring thaw. Cause of death pending.' },
]
},
{
id: 'GARCIA',
name: 'Steven Garcia',
lat: 35.048, lng: -106.741,
status: 'MISSING',
field: 'Nuclear Weapons / Asset Security / Property Management',
org: 'Kansas City National Security Campus (KCNSC) — Government Contractor',
location: 'Albuquerque, NM',
date: 'Aug 28, 2025',
patterns: ['NM_CORRIDOR','NUCLEAR_WEAPONS_COMPLEX','INCIDENT_TIMELINE'],
summary: 'Government contractor, age 48, at the Kansas City National Security Campus (KCNSC) Albuquerque (New Mexico Operations) facility. KCNSC is managed by Honeywell Federal Manufacturing and Technologies for DOE/NNSA and manufactures over 80% of all non-nuclear components for the entire U.S. nuclear weapons stockpile. Garcia served as a property custodian with top secret clearance and broad access across the entire facility, overseeing tens to hundreds of millions of dollars in classified and unclassified nuclear weapons component assets. KCNSC Albuquerque works directly with LANL, Sandia National Laboratories, and Kirtland Air Force Base — the same New Mexico nuclear defense nexus as CASIAS, CHAVEZ, and MCCASLAND. Behavioral signature of disappearance is identical to MCCASLAND: both walked out of Albuquerque homes on foot carrying only a handgun, leaving all electronics and identification behind.',