-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathfunding_network_timeline.html
More file actions
1077 lines (996 loc) · 59.5 KB
/
funding_network_timeline.html
File metadata and controls
1077 lines (996 loc) · 59.5 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>DCA / Dark Money / Lobbying Network Timeline</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #0d1117;
color: #c9d1d9;
line-height: 1.6;
padding: 2rem;
}
h1 {
font-size: 1.8rem;
margin-bottom: 0.3rem;
color: #f0f6fc;
}
h2 {
font-size: 1.3rem;
margin: 2rem 0 1rem;
color: #f0f6fc;
border-bottom: 1px solid #30363d;
padding-bottom: 0.4rem;
}
.subtitle {
color: #8b949e;
font-size: 0.95rem;
margin-bottom: 1.5rem;
}
.stats-row {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
margin-bottom: 2rem;
}
.stat-card {
background: #161b22;
border: 1px solid #30363d;
border-radius: 8px;
padding: 0.8rem 1.2rem;
min-width: 140px;
}
.stat-card .label {
font-size: 0.75rem;
color: #8b949e;
text-transform: uppercase;
letter-spacing: 0.06em;
}
.stat-card .value {
font-size: 1.5rem;
font-weight: 700;
color: #f0f6fc;
}
.stat-card .value.money { color: #3fb950; }
.stat-card .value.alert { color: #f85149; }
/* Legend */
.legend {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
margin-bottom: 1.5rem;
padding: 1rem;
background: #161b22;
border: 1px solid #30363d;
border-radius: 8px;
}
.legend-item {
display: flex;
align-items: center;
gap: 0.4rem;
font-size: 0.82rem;
color: #c9d1d9;
cursor: pointer;
padding: 0.2rem 0.5rem;
border-radius: 4px;
transition: background 0.15s;
user-select: none;
}
.legend-item:hover { background: #21262d; }
.legend-item.inactive { opacity: 0.35; }
.legend-dot {
width: 11px;
height: 11px;
border-radius: 50%;
display: inline-block;
flex-shrink: 0;
}
/* Filter */
.filter-bar {
display: flex;
flex-wrap: wrap;
gap: 1rem;
align-items: center;
margin-bottom: 1.5rem;
}
.filter-bar label { font-size: 0.85rem; color: #8b949e; }
.filter-bar select, .filter-bar input {
padding: 0.35rem 0.6rem;
border-radius: 6px;
border: 1px solid #30363d;
background: #0d1117;
color: #c9d1d9;
font-size: 0.85rem;
}
.search-box {
flex: 1;
min-width: 180px;
max-width: 320px;
}
/* Timeline */
.timeline {
position: relative;
padding-left: 32px;
}
.timeline::before {
content: '';
position: absolute;
left: 9px;
top: 0;
bottom: 0;
width: 2px;
background: #21262d;
}
.year-marker {
position: relative;
margin: 2rem 0 1rem;
padding-left: 20px;
}
.year-marker span {
font-size: 1.1rem;
font-weight: 700;
color: #58a6ff;
background: #0d1117;
padding: 0 0.5rem;
position: relative;
}
.year-marker::before {
content: '';
position: absolute;
left: 3px;
top: 50%;
width: 14px;
height: 14px;
border-radius: 50%;
background: #58a6ff;
transform: translateY(-50%);
border: 3px solid #0d1117;
}
.timeline-entry {
position: relative;
margin-bottom: 1rem;
padding-left: 20px;
transition: opacity 0.2s;
}
.timeline-entry.dimmed { opacity: 0.15; pointer-events: none; }
.timeline-entry.search-miss { opacity: 0.08; }
.timeline-dot {
position: absolute;
left: -27px;
top: 8px;
width: 12px;
height: 12px;
border-radius: 50%;
border: 2px solid #0d1117;
box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.timeline-content {
background: #161b22;
border: 1px solid #30363d;
padding: 0.9rem 1rem;
border-radius: 8px;
transition: border-color 0.15s;
}
.timeline-content:hover { border-color: #484f58; }
.timeline-date {
font-weight: 600;
font-size: 0.85rem;
color: #8b949e;
}
.timeline-type {
font-size: 0.72rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
margin-bottom: 0.25rem;
}
.timeline-title {
font-size: 0.95rem;
font-weight: 600;
color: #f0f6fc;
margin-bottom: 0.3rem;
}
.timeline-desc {
font-size: 0.88rem;
color: #8b949e;
line-height: 1.5;
}
.timeline-desc strong { color: #c9d1d9; }
.entity-tag {
display: inline-block;
margin-top: 0.5rem;
margin-right: 0.3rem;
font-size: 0.72rem;
padding: 0.15rem 0.5rem;
border-radius: 10px;
background: #21262d;
color: #8b949e;
border: 1px solid #30363d;
}
.source-link {
font-size: 0.78rem;
color: #58a6ff;
text-decoration: none;
}
.source-link:hover { text-decoration: underline; }
.money { color: #3fb950; font-weight: 600; }
.alert-text { color: #f85149; }
/* Network diagram */
.network-section {
margin: 2rem 0;
padding: 1.5rem;
background: #161b22;
border: 1px solid #30363d;
border-radius: 8px;
}
.network-section h3 {
font-size: 1rem;
color: #f0f6fc;
margin-bottom: 1rem;
}
.flow-diagram {
font-family: "Courier New", monospace;
font-size: 0.82rem;
line-height: 1.4;
color: #c9d1d9;
white-space: pre;
overflow-x: auto;
padding: 1rem;
background: #0d1117;
border-radius: 6px;
border: 1px solid #21262d;
}
.flow-diagram .node-corp { color: #f85149; }
.flow-diagram .node-lobby { color: #d2a8ff; }
.flow-diagram .node-dark { color: #f0883e; }
.flow-diagram .node-front { color: #ffa657; }
.flow-diagram .node-leg { color: #58a6ff; }
.flow-diagram .node-money { color: #3fb950; }
/* Connections table */
.conn-table {
width: 100%;
border-collapse: collapse;
font-size: 0.83rem;
margin-top: 0.5rem;
}
.conn-table th, .conn-table td {
padding: 0.6rem 0.8rem;
text-align: left;
border-bottom: 1px solid #21262d;
}
.conn-table th {
background: #21262d;
font-weight: 600;
color: #f0f6fc;
position: sticky;
top: 0;
}
.conn-table tr:hover { background: #161b22; }
.conn-table td.money { color: #3fb950; }
@media (max-width: 700px) {
body { padding: 1rem; }
.stats-row { gap: 0.4rem; }
.stat-card { min-width: 100px; padding: 0.5rem 0.8rem; }
.flow-diagram { font-size: 0.7rem; }
}
</style>
</head>
<body>
<h1>Funding Network Timeline</h1>
<p class="subtitle">DCA · Arabella / Dark Money · Koch Lobbyist · Meta Lobbying · Shadow Group Infrastructure</p>
<p style="color:#484f58;font-size:0.8rem;margin-bottom:1.5rem;">Compiled 2026-03-12 · Sources: CO SOS SODA API, ProPublica Nonprofit Explorer, IRS 990s, WHOIS, investigative reporting</p>
<!-- Summary Stats -->
<div class="stats-row">
<div class="stat-card"><div class="label">Meta → Headwaters (CO)</div><div class="value money">$338,500</div></div>
<div class="stat-card"><div class="label">Meta CA Lobbying (2025)</div><div class="value money">$1.04M</div></div>
<div class="stat-card"><div class="label">Meta Federal Lobbying (2024)</div><div class="value money">$24.4M</div></div>
<div class="stat-card"><div class="label">Meta Super PACs (2025)</div><div class="value money">$65M</div></div>
<div class="stat-card"><div class="label">Arabella Network Revenue (2023)</div><div class="value money">$1.22B</div></div>
<div class="stat-card"><div class="label">NVF Grants (2023)</div><div class="value money">$593M</div></div>
<div class="stat-card"><div class="label">Timeline Events</div><div class="value">58</div></div>
<div class="stat-card"><div class="label">DCA: Days from Domain to Testimony</div><div class="value alert">~150</div></div>
</div>
<!-- Network Diagram -->
<div class="network-section">
<h3>Funding & Influence Flow Diagram</h3>
<div class="flow-diagram"><span class="node-corp">META PLATFORMS INC</span>
|
|--- <span class="node-money">$338,500</span> ----> <span class="node-lobby">HEADWATERS STRATEGIES</span> (Denver, CO lobbying)
| |--- Co-founder: <span class="node-dark">Adam Eichberg</span>
| | |--- Board Chair: <span class="node-dark">NEW VENTURE FUND</span> ($669M rev)
| | |--- Founding Board: <span class="node-dark">WINDWARD FUND</span> ($311M rev)
| | |--- Incoming Chair: <span class="node-dark">SUNFLOWER SERVICES</span> (fka Arabella)
| |--- Co-founder: Will Coyne
| |--- Lobbyist: Amber Burkhart
| |--- Lobbyist: Alyson Schmidt
| |--- Also represents: Apple, Airbnb, Tesla, Everytown
|
|--- <span class="node-money">"helping to fund"</span> -> <span class="node-front">DIGITAL CHILDHOOD ALLIANCE</span> (501(c)(4), DC)
| (Bloomberg, 3 sources) |--- Exec Dir: Casey Stefanski (ex-NCOSE)
| |--- Founder: Melissa McKay
| |--- Sr Policy: John Read (ex-DOJ 30yr)
| |--- Lobbyist (LA): <span class="node-lobby">Koch</span>
| |--- Domain: registered 2024-12-18
| |--- Pushed ASAA in 20+ states
| |--- <span class="node-front">DIGITAL CHILDHOOD INSTITUTE</span> (501(c)(3) arm)
| |--- EIN: 39-3684798
| |--- Incorporated: Wilmington, DE
| |--- IRS ruling: Nov 2025
|
|--- <span class="node-money">$1.04M (2025)</span> -> <span class="node-lobby">CALIFORNIA STATE LOBBYING</span>
|--- <span class="node-money">$65M</span> ----------> <span class="node-lobby">SUPER PACs</span> (ATEP + META California)
|--- <span class="node-money">funding</span> -------> <span class="node-front">CONNECTSAFELY</span> (Larry Magid on Meta Safety Council)
|--- <span class="node-money">$24.4M (2024)</span> -> <span class="node-lobby">FEDERAL LOBBYING</span> (87 lobbyists, 24 firms)
|
|--- Nicole Lopez (Dir Global Litigation Strategy - Youth)
testified FOR LA HB-570 at Senate Commerce
<span class="node-dark">ARABELLA ADVISORS NETWORK</span> (1828 L St NW, Washington DC)
|--- Suite 300-A: <span class="node-dark">NEW VENTURE FUND</span> (c)(3) $669M rev 1,020 grants
|--- Suite 300-B: <span class="node-dark">SIXTEEN THIRTY FUND</span> (c)(4) $282M rev 318 grants
|--- Suite 300-C: <span class="node-dark">WINDWARD FUND</span> (c)(3) $311M rev
|--- Suite 300-D: <span class="node-dark">HOPEWELL FUND</span> (c)(3) $114M grants
|
|--- All founded/managed by Eric Kessler / Arabella Advisors
|--- Combined 2023 revenue: <span class="node-money">~$1.22 BILLION</span>
|--- Arabella dissolved 2025, rebranded <span class="node-dark">SUNFLOWER SERVICES</span>
|--- <span class="node-dark">Adam Eichberg</span>: Board Chair NVF + Co-founder Headwaters
| (simultaneous dark money leadership + corporate lobbying)
|
|--- <span class="node-leg">POTENTIAL PASS-THROUGH ROLE:</span>
Sixteen Thirty Fund (c)(4) does NOT disclose donors.
Could receive corporate funds and route to advocacy groups.
No direct evidence found connecting Arabella → DCA.
Full Schedule I analysis of 823 NVF grant recipients pending.</div>
</div>
<!-- Legend -->
<h2>Legend</h2>
<div class="legend" id="legend">
<span class="legend-item" data-cat="dark-money" onclick="toggleCat(this)"><span class="legend-dot" style="background:#f0883e;"></span>Dark Money Infrastructure</span>
<span class="legend-item" data-cat="lobbying" onclick="toggleCat(this)"><span class="legend-dot" style="background:#d2a8ff;"></span>Lobbying Payments</span>
<span class="legend-item" data-cat="dca" onclick="toggleCat(this)"><span class="legend-dot" style="background:#ffa657;"></span>DCA Operations</span>
<span class="legend-item" data-cat="legislation" onclick="toggleCat(this)"><span class="legend-dot" style="background:#58a6ff;"></span>Legislation</span>
<span class="legend-item" data-cat="investigation" onclick="toggleCat(this)"><span class="legend-dot" style="background:#f85149;"></span>Investigative Revelations</span>
<span class="legend-item" data-cat="meta-strategy" onclick="toggleCat(this)"><span class="legend-dot" style="background:#3fb950;"></span>Meta Political Strategy</span>
<span class="legend-item" data-cat="financial" onclick="toggleCat(this)"><span class="legend-dot" style="background:#e3b341;"></span>Financial Milestones</span>
<span class="legend-item" data-cat="connectsafely" onclick="toggleCat(this)"><span class="legend-dot" style="background:#39d2c0;"></span>ConnectSafely / Counter-Narrative</span>
</div>
<!-- Filter -->
<div class="filter-bar">
<label for="cat-filter">Category:</label>
<select id="cat-filter" onchange="filterTimeline()">
<option value="all">All categories</option>
<option value="dark-money">Dark Money Infrastructure</option>
<option value="lobbying">Lobbying Payments</option>
<option value="dca">DCA Operations</option>
<option value="legislation">Legislation</option>
<option value="investigation">Investigative Revelations</option>
<option value="meta-strategy">Meta Political Strategy</option>
<option value="financial">Financial Milestones</option>
<option value="connectsafely">ConnectSafely / Counter-Narrative</option>
</select>
<label for="search-box">Search:</label>
<input type="text" id="search-box" class="search-box" placeholder="e.g. Koch, Eichberg, DCA, Louisiana..." oninput="searchTimeline(this.value)">
</div>
<h2>Timeline</h2>
<div class="timeline" id="timeline">
<!-- ═══════════════ 2005 ═══════════════ -->
<div class="year-marker"><span>2005</span></div>
<div class="timeline-entry" data-cat="connectsafely">
<div class="timeline-dot" style="background:#39d2c0;"></div>
<div class="timeline-content">
<div class="timeline-date">2005</div>
<div class="timeline-type" style="color:#39d2c0;">ConnectSafely</div>
<div class="timeline-title">ConnectSafely founded</div>
<div class="timeline-desc">Larry Magid and Anne Collier found ConnectSafely in Palo Alto, CA. It will later become a key recipient of Meta and tech industry funding for "internet safety" messaging, with Magid serving on <strong>Meta's Safety Advisory Council</strong>.</div>
<span class="entity-tag">ConnectSafely</span>
</div>
</div>
<!-- ═══════════════ 2006 ═══════════════ -->
<div class="year-marker"><span>2006</span></div>
<div class="timeline-entry" data-cat="dark-money">
<div class="timeline-dot" style="background:#f0883e;"></div>
<div class="timeline-content">
<div class="timeline-date">2006</div>
<div class="timeline-type" style="color:#f0883e;">Dark Money Infrastructure</div>
<div class="timeline-title">Arabella Legacy Fund created</div>
<div class="timeline-desc">Eric Kessler founds the <strong>Arabella Legacy Fund</strong>, which will be renamed the <strong>New Venture Fund</strong> in 2009. This becomes the anchor of a billion-dollar dark money network operating from 1828 L Street NW, Washington, DC.</div>
<span class="entity-tag">Arabella Advisors</span><span class="entity-tag">New Venture Fund</span>
</div>
</div>
<!-- ═══════════════ 2009 ═══════════════ -->
<div class="year-marker"><span>2009</span></div>
<div class="timeline-entry" data-cat="dark-money">
<div class="timeline-dot" style="background:#f0883e;"></div>
<div class="timeline-content">
<div class="timeline-date">2009</div>
<div class="timeline-type" style="color:#f0883e;">Dark Money Infrastructure</div>
<div class="timeline-title">Arabella Legacy Fund renamed to New Venture Fund</div>
<div class="timeline-desc">Renamed to <strong>New Venture Fund (NVF)</strong>. EIN 20-5806345. Located at 1828 L Street NW, Suite 300-A, Washington, DC 20036. Will grow to $669M revenue and $593M in grants (1,020 awards) by 2023.</div>
<span class="entity-tag">New Venture Fund</span>
</div>
</div>
<div class="timeline-entry" data-cat="dark-money">
<div class="timeline-dot" style="background:#f0883e;"></div>
<div class="timeline-content">
<div class="timeline-date">2009-08</div>
<div class="timeline-type" style="color:#f0883e;">Dark Money Infrastructure</div>
<div class="timeline-title">Sixteen Thirty Fund established</div>
<div class="timeline-desc">501(c)(4) social welfare organization. IRS ruling August 2009. EIN 26-4486735. Suite 300-B at the same 1828 L St NW address. As a <strong>501(c)(4), it does NOT disclose donors</strong>. Will reach $282M revenue by 2024. Eric Kessler is founding president.</div>
<span class="entity-tag">Sixteen Thirty Fund</span><span class="entity-tag">Arabella Advisors</span>
</div>
</div>
<div class="timeline-entry" data-cat="lobbying">
<div class="timeline-dot" style="background:#d2a8ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2009</div>
<div class="timeline-type" style="color:#d2a8ff;">Lobbying</div>
<div class="timeline-title">Headwaters Strategies founded in Denver</div>
<div class="timeline-desc">Co-founded by <strong>Adam Eichberg</strong> and <strong>Will Coyne</strong>. 1660 Lincoln St, Suite 2910, Denver, CO 80264. Strategic political counsel and state legislative lobbying. Eichberg was formerly Deputy Legislative Director for Governor Bill Ritter.</div>
<span class="entity-tag">Headwaters Strategies</span><span class="entity-tag">Adam Eichberg</span>
</div>
</div>
<!-- ═══════════════ 2015 ═══════════════ -->
<div class="year-marker"><span>2015</span></div>
<div class="timeline-entry" data-cat="dark-money">
<div class="timeline-dot" style="background:#f0883e;"></div>
<div class="timeline-content">
<div class="timeline-date">2015-06</div>
<div class="timeline-type" style="color:#f0883e;">Dark Money Infrastructure</div>
<div class="timeline-title">Windward Fund established</div>
<div class="timeline-desc">501(c)(3), Suite 300-C, 1828 L St NW. EIN 47-3522162. IRS ruling June 2015. <strong>Adam Eichberg is a founding board member.</strong> Eric Kessler serves as first president. Will reach $311M revenue by 2024.</div>
<span class="entity-tag">Windward Fund</span><span class="entity-tag">Adam Eichberg</span><span class="entity-tag">Arabella Advisors</span>
</div>
</div>
<div class="timeline-entry" data-cat="dark-money">
<div class="timeline-dot" style="background:#f0883e;"></div>
<div class="timeline-content">
<div class="timeline-date">2015-09</div>
<div class="timeline-type" style="color:#f0883e;">Dark Money Infrastructure</div>
<div class="timeline-title">Hopewell Fund established</div>
<div class="timeline-desc">501(c)(3), Suite 300-D, 1828 L St NW. EIN 47-3681860. IRS ruling September 2015. All four Arabella entities now occupy contiguous suites at the same address. Combined network will exceed $1 billion annually.</div>
<span class="entity-tag">Hopewell Fund</span><span class="entity-tag">Arabella Advisors</span>
</div>
</div>
<div class="timeline-entry" data-cat="connectsafely">
<div class="timeline-dot" style="background:#39d2c0;"></div>
<div class="timeline-content">
<div class="timeline-date">2015-10</div>
<div class="timeline-type" style="color:#39d2c0;">ConnectSafely</div>
<div class="timeline-title">ConnectSafely receives 501(c)(3) status</div>
<div class="timeline-desc">EIN 47-3168168. Palo Alto, CA. Revenue will grow from $316K (2015) to $784K (2024), funded by Meta, Google, Amazon, TikTok, Snapchat, Discord, Roblox, and others. CEO Larry Magid serves on safety advisory boards for Facebook, Google, Twitter, Comcast, Roblox, Snapchat. <strong>Executive compensation = 57.5% of total expenses.</strong></div>
<span class="entity-tag">ConnectSafely</span><span class="entity-tag">Larry Magid</span>
</div>
</div>
<!-- ═══════════════ 2017 ═══════════════ -->
<div class="year-marker"><span>2017</span></div>
<div class="timeline-entry" data-cat="financial">
<div class="timeline-dot" style="background:#e3b341;"></div>
<div class="timeline-content">
<div class="timeline-date">2017</div>
<div class="timeline-type" style="color:#e3b341;">Financial</div>
<div class="timeline-title">Arabella network begins rapid growth</div>
<div class="timeline-desc">NVF revenue: $359M. Sixteen Thirty: $79.5M. Hopewell: $130.6M. Combined network approaches <span class="money">$570M</span>. This is before the explosive growth of 2020-2021.</div>
<span class="entity-tag">Arabella Advisors</span>
</div>
</div>
<!-- ═══════════════ 2020 ═══════════════ -->
<div class="year-marker"><span>2020</span></div>
<div class="timeline-entry" data-cat="lobbying">
<div class="timeline-dot" style="background:#d2a8ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2020-03</div>
<div class="timeline-type" style="color:#d2a8ff;">Lobbying Payment</div>
<div class="timeline-title">First recorded Facebook → Headwaters payment</div>
<div class="timeline-desc">Facebook begins paying Headwaters Strategies <span class="money">$5,000/month</span> for Colorado state lobbying. FY 2019-2020 total: <span class="money">$10,000</span>. Meta's registered Colorado address IS the Headwaters office: 1660 Lincoln St, Suite 2910.</div>
<span class="entity-tag">Meta/Facebook</span><span class="entity-tag">Headwaters Strategies</span>
</div>
</div>
<div class="timeline-entry" data-cat="financial">
<div class="timeline-dot" style="background:#e3b341;"></div>
<div class="timeline-content">
<div class="timeline-date">2020</div>
<div class="timeline-type" style="color:#e3b341;">Financial</div>
<div class="timeline-title">Arabella network peaks at combined ~$1.7 billion</div>
<div class="timeline-desc">NVF: <span class="money">$975M</span> revenue. Sixteen Thirty: <span class="money">$390M</span>. Windward: $158M. Hopewell: $152M. The Arabella network is now one of the largest dark money operations in the United States.</div>
<span class="entity-tag">Arabella Advisors</span>
</div>
</div>
<div class="timeline-entry" data-cat="lobbying">
<div class="timeline-dot" style="background:#d2a8ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2020-07 to 2021-06</div>
<div class="timeline-type" style="color:#d2a8ff;">Lobbying Payment</div>
<div class="timeline-title">Facebook payments to Headwaters escalate</div>
<div class="timeline-desc">FY 2020-2021: <span class="money">$45,000</span>. Notable spike to $15,000 in March 2021. Payments shift from sporadic to consistent monthly engagement.</div>
<span class="entity-tag">Meta/Facebook</span><span class="entity-tag">Headwaters Strategies</span>
</div>
</div>
<!-- ═══════════════ 2021 ═══════════════ -->
<div class="year-marker"><span>2021</span></div>
<div class="timeline-entry" data-cat="lobbying">
<div class="timeline-dot" style="background:#d2a8ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2021-07 to 2022-06</div>
<div class="timeline-type" style="color:#d2a8ff;">Lobbying Payment</div>
<div class="timeline-title">Meta Platforms payments to Headwaters: $60,000</div>
<div class="timeline-desc">Rebranded from Facebook to Meta. FY 2021-2022: <span class="money">$60,000</span>. Payments now reach $10,000-$15,000/month. May-June 2022 spike: $15,000 each month.</div>
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">Headwaters Strategies</span>
</div>
</div>
<!-- ═══════════════ 2023 ═══════════════ -->
<div class="year-marker"><span>2023</span></div>
<div class="timeline-entry" data-cat="lobbying">
<div class="timeline-dot" style="background:#d2a8ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2023-07</div>
<div class="timeline-type" style="color:#d2a8ff;">Lobbying Payment</div>
<div class="timeline-title">Meta → Headwaters: record $30,000 single month</div>
<div class="timeline-desc">The <strong>largest single monthly payment</strong> from Meta to Headwaters: <span class="money">$30,000 in July 2023</span>. Coincides with growing national momentum on children's online safety legislation and Meta's strategic pivot to app-store-level age verification. FY 2023-2024 total: <span class="money">$107,000</span> — Meta becomes Headwaters' <strong>3rd largest client</strong>.</div>
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">Headwaters Strategies</span>
</div>
</div>
<div class="timeline-entry" data-cat="financial">
<div class="timeline-dot" style="background:#e3b341;"></div>
<div class="timeline-content">
<div class="timeline-date">2023</div>
<div class="timeline-type" style="color:#e3b341;">Financial</div>
<div class="timeline-title">NVF distributes $593M in grants to 823 organizations</div>
<div class="timeline-desc">New Venture Fund (chaired by <strong>Adam Eichberg</strong>) revenue: <span class="money">$669M</span>. Distributes <span class="money">$592,958,696</span> across 1,020 grant awards to 823 domestic organizations. $103.4M for "Youth Development and Education." Full Schedule I with all 823 recipients has not yet been fully analyzed.</div>
<span class="entity-tag">New Venture Fund</span><span class="entity-tag">Adam Eichberg</span>
</div>
</div>
<div class="timeline-entry" data-cat="financial">
<div class="timeline-dot" style="background:#e3b341;"></div>
<div class="timeline-content">
<div class="timeline-date">2023</div>
<div class="timeline-type" style="color:#e3b341;">Financial</div>
<div class="timeline-title">Arabella network combined revenue: $1.22 billion</div>
<div class="timeline-desc">NVF: $669M. Sixteen Thirty: $181M. Windward: $212M. Hopewell: $158M. Combined: <span class="money">~$1.22 billion</span>. NVF lobbying expenditures: $36.7M, including $31.2M in grants to other orgs for lobbying.</div>
<span class="entity-tag">Arabella Advisors</span>
</div>
</div>
<div class="timeline-entry" data-cat="meta-strategy">
<div class="timeline-dot" style="background:#3fb950;"></div>
<div class="timeline-content">
<div class="timeline-date">2023</div>
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
<div class="timeline-title">Meta federal lobbying: $19.3M</div>
<div class="timeline-desc">Meta spends <span class="money">$19.3 million</span> on federal lobbying. The company begins formulating its strategy to shift age verification responsibility from platforms to app stores and OS providers.</div>
<span class="entity-tag">Meta Platforms</span>
</div>
</div>
<!-- ═══════════════ 2024 ═══════════════ -->
<div class="year-marker"><span>2024</span></div>
<div class="timeline-entry" data-cat="meta-strategy">
<div class="timeline-dot" style="background:#3fb950;"></div>
<div class="timeline-content">
<div class="timeline-date">2024</div>
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
<div class="timeline-title">Meta federal lobbying hits $24.4M</div>
<div class="timeline-desc">Record federal lobbying spend: <span class="money">$24.4 million</span>. Retains 24 lobbying firms and employs 87 lobbyists, 85% of whom are "revolving door" former government officials.</div>
<span class="entity-tag">Meta Platforms</span>
</div>
</div>
<div class="timeline-entry" data-cat="financial">
<div class="timeline-dot" style="background:#e3b341;"></div>
<div class="timeline-content">
<div class="timeline-date">2024</div>
<div class="timeline-type" style="color:#e3b341;">Financial</div>
<div class="timeline-title">Sixteen Thirty Fund: $282M revenue, 318 grants</div>
<div class="timeline-desc">Revenue: <span class="money">$282.2M</span> (97.5% from contributions). Distributes <span class="money">$236.5M</span> across 318 grants. As a 501(c)(4), <strong class="alert-text">donor identities are NOT disclosed</strong>. President: Amy Kurtz.</div>
<span class="entity-tag">Sixteen Thirty Fund</span>
</div>
</div>
<div class="timeline-entry" data-cat="lobbying">
<div class="timeline-dot" style="background:#d2a8ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2024-08 to 2025-05</div>
<div class="timeline-type" style="color:#d2a8ff;">Lobbying Payment</div>
<div class="timeline-title">Meta → Headwaters FY 2024-2025: $57,500</div>
<div class="timeline-desc">Sustained high-level engagement at <span class="money">$7,000-$14,000/month</span>. FY total: <span class="money">$57,500</span>. Headwaters' total firm revenue estimated at $1.6-1.8M, making Meta ~3-4% of revenue.</div>
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">Headwaters Strategies</span>
</div>
</div>
<div class="timeline-entry" data-cat="dca">
<div class="timeline-dot" style="background:#ffa657;"></div>
<div class="timeline-content">
<div class="timeline-date">2024-12-18</div>
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
<div class="timeline-title">DCA domain registered</div>
<div class="timeline-desc"><strong>digitalchildhoodalliance.org</strong> registered via GoDaddy with privacy protection. <strong>4-year registration</strong> through 2028 (suggesting significant pre-committed funding). Cloudflare CDN. Wayback Machine first snapshot: December 19, 2024 — one day later.</div>
<span class="entity-tag">DCA</span>
</div>
</div>
<!-- ═══════════════ 2025 ═══════════════ -->
<div class="year-marker"><span>2025</span></div>
<div class="timeline-entry" data-cat="dca">
<div class="timeline-dot" style="background:#ffa657;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-02-25</div>
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
<div class="timeline-title">DCA public launch</div>
<div class="timeline-desc">Press release: "Over 50 Child Advocacy Groups Unite to Demand App Store Accountability." <strong>Casey Stefanski</strong> named Executive Director (previously Senior Director at NCOSE for 10 years). Claims 501(c)(4) status. Washington, DC based but describes itself as "remote." <strong>69 days from domain registration to national launch.</strong></div>
<span class="entity-tag">DCA</span><span class="entity-tag">Casey Stefanski</span>
</div>
</div>
<div class="timeline-entry" data-cat="legislation">
<div class="timeline-dot" style="background:#58a6ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-02-19</div>
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
<div class="timeline-title">CO SB25-086: Senate Judiciary hearing</div>
<div class="timeline-desc">Protections for Users of Social Media. Requires platforms to cooperate with law enforcement. <strong>TechNet and NetChoice testify in opposition.</strong> Chamber of Progress opposes at House hearing. Katie Paul (Tech Transparency Project) testifies as neutral. Referred 6-1.</div>
<span class="entity-tag">Colorado</span><span class="entity-tag">SB25-086</span>
</div>
</div>
<div class="timeline-entry" data-cat="legislation">
<div class="timeline-dot" style="background:#58a6ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-04-02</div>
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
<div class="timeline-title">CO HB25-1287: Social Media Tools for Minors hearing</div>
<div class="timeline-desc">House Health & Human Services Committee. Would require platforms to determine if users are minors, disable algorithmic recommendations, provide parental tools. Later dies in Appropriations (amendments failed).</div>
<span class="entity-tag">Colorado</span><span class="entity-tag">HB25-1287</span>
</div>
</div>
<div class="timeline-entry" data-cat="legislation">
<div class="timeline-dot" style="background:#58a6ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-04-22</div>
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
<div class="timeline-title">CA AB-1043 (Digital Age Assurance Act): first hearing</div>
<div class="timeline-desc">Assembly Privacy Committee hearing. Authored by Assemblymember Buffy Wicks and Sen. Tom Umberg. Requires OS providers to collect age during device setup and transmit age bracket signals to apps via API.</div>
<span class="entity-tag">California</span><span class="entity-tag">AB-1043</span>
</div>
</div>
<div class="timeline-entry" data-cat="meta-strategy">
<div class="timeline-dot" style="background:#3fb950;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-04</div>
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
<div class="timeline-title">Meta + Spotify + Match Group launch age verification coalition</div>
<div class="timeline-desc">Meta teams with Spotify and Match Group to pressure Apple and Google on app-store age verification. This formalizes Meta's strategy of shifting compliance costs to competitors (OS/app store providers).</div>
<span class="entity-tag">Meta Platforms</span>
</div>
</div>
<div class="timeline-entry" data-cat="legislation">
<div class="timeline-dot" style="background:#58a6ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-04-24</div>
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
<div class="timeline-title">CO SB25-086 vetoed by Governor Polis</div>
<div class="timeline-desc">Governor Polis vetoes SB25-086 (social media platform obligations). This bill would have placed obligations directly on platforms like Meta. Its failure benefits Meta's preferred approach of OS/app-store-level regulation.</div>
<span class="entity-tag">Colorado</span><span class="entity-tag">SB25-086</span>
</div>
</div>
<div class="timeline-entry" data-cat="dca">
<div class="timeline-dot" style="background:#ffa657;"></div>
<div class="timeline-content">
<div class="timeline-date">~2025-05</div>
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
<div class="timeline-title">DCA retains lobbyist "Koch" in Louisiana</div>
<div class="timeline-desc">DCA registers a paid lobbyist named <strong>Koch</strong> in Louisiana to support HB-570 (App Store Accountability Act). This is notable: an organization that registered its domain barely 5 months earlier already has paid lobbyists in multiple state capitols.</div>
<span class="entity-tag">DCA</span><span class="entity-tag">Koch (lobbyist)</span><span class="entity-tag">Louisiana</span>
</div>
</div>
<div class="timeline-entry" data-cat="legislation">
<div class="timeline-dot" style="background:#58a6ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-05-12</div>
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
<div class="timeline-title">LA HB-570 passes House 99-0</div>
<div class="timeline-desc">Louisiana App Store Accountability Act, authored by Rep. Kim Carver. Passes House unanimously. <strong>49 co-sponsors.</strong> Requires app stores to verify ages and obtain parental consent for minors. Student Brinkley Bennett testifies it's "a digital seatbelt."</div>
<span class="entity-tag">Louisiana</span><span class="entity-tag">HB-570</span><span class="entity-tag">Kim Carver</span>
</div>
</div>
<div class="timeline-entry" data-cat="investigation">
<div class="timeline-dot" style="background:#f85149;"></div>
<div class="timeline-content">
<div class="timeline-date">~2025-05</div>
<div class="timeline-type" style="color:#f85149;">Investigative</div>
<div class="timeline-title">Sen. Jay Morris confronts Stefanski on DCA funding</div>
<div class="timeline-desc">At Louisiana Senate Commerce Committee hearing on HB-570, <strong>Sen. Jay Morris (R)</strong> presses Casey Stefanski on DCA's funding. Stefanski says she "didn't feel comfortable answering." Under sustained questioning, she <strong>admits tech companies fund DCA but refuses to name them</strong>. Names "the founder's father" as largest donor. Confirms DCA is a <strong>501(c)(4)</strong> — donors never disclosed.</div>
<span class="entity-tag">Casey Stefanski</span><span class="entity-tag">DCA</span><span class="entity-tag">Jay Morris</span>
</div>
</div>
<div class="timeline-entry" data-cat="meta-strategy">
<div class="timeline-dot" style="background:#3fb950;"></div>
<div class="timeline-content">
<div class="timeline-date">~2025-05</div>
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
<div class="timeline-title">Meta's Nicole Lopez testifies FOR HB-570</div>
<div class="timeline-desc"><strong>Nicole Lopez</strong>, Meta's Director of Global Litigation Strategy for Youth, testifies in support of LA HB-570 at Senate Commerce, calling it a "privacy-protective solution." Notably, <strong>Apple and Google filed opposition but sent no representatives</strong>. Meta's trade association <strong>NetChoice opposes</strong> the same bill.</div>
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">Nicole Lopez</span><span class="entity-tag">Louisiana</span>
</div>
</div>
<div class="timeline-entry" data-cat="legislation">
<div class="timeline-dot" style="background:#58a6ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-06-02</div>
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
<div class="timeline-title">LA HB-570 passes Senate 39-0</div>
<div class="timeline-desc">Unanimous passage. <strong>Not one "NO" vote at any stage.</strong> Conference committee later adopts report 98-0 (House) and 38-0 (Senate).</div>
<span class="entity-tag">Louisiana</span><span class="entity-tag">HB-570</span>
</div>
</div>
<div class="timeline-entry" data-cat="dca">
<div class="timeline-dot" style="background:#ffa657;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-06-13</div>
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
<div class="timeline-title">DCI domain registered</div>
<div class="timeline-desc"><strong>digitalchildhoodinstitute.org</strong> registered (GoDaddy, Cloudflare). Only <strong>1-year registration</strong> (vs DCA's 4-year), suggesting less funding. Same shared infrastructure: GoDaddy registrar, Cloudflare CDN, Microsoft 365 email, <strong>Elastic Email</strong> marketing platform. DCA registered 6 months before its supposed "research arm."</div>
<span class="entity-tag">DCI</span><span class="entity-tag">DCA</span>
</div>
</div>
<div class="timeline-entry" data-cat="legislation">
<div class="timeline-dot" style="background:#58a6ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-06-30</div>
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
<div class="timeline-title">LA HB-570 signed into law (Act 481)</div>
<div class="timeline-desc">Governor Jeff Landry signs HB-570 (App Store Accountability Act). Effective July 1, 2026. Defines child/younger teen/older teen/adult age brackets. Requires app stores to verify ages and obtain parental consent. <strong>DCA model legislation succeeds in Louisiana.</strong></div>
<span class="entity-tag">Louisiana</span><span class="entity-tag">HB-570</span><span class="entity-tag">DCA</span>
</div>
</div>
<div class="timeline-entry" data-cat="meta-strategy">
<div class="timeline-dot" style="background:#3fb950;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-Q2</div>
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
<div class="timeline-title">Meta California lobbying: record $518,605 in single quarter</div>
<div class="timeline-desc">Q2 2025 is the <strong>highest single-quarter California state lobbying spend</strong> in Meta's history. On pace for record annual spend driven by 50+ AI bills in the legislature. Also pays California Chamber of Commerce <span class="money">$3.1 million</span>.</div>
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">California</span>
</div>
</div>
<div class="timeline-entry" data-cat="investigation">
<div class="timeline-dot" style="background:#f85149;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-07-25</div>
<div class="timeline-type" style="color:#f85149;">Investigative</div>
<div class="timeline-title">Bloomberg: "Meta is helping to fund" DCA</div>
<div class="timeline-desc">Insurance Journal / Bloomberg reports that <strong>Meta is helping to fund the Digital Childhood Alliance</strong>, citing <strong>three people familiar with the funding</strong>. Describes DCA as "a coalition of conservative groups leading efforts to pass app-store age verification." This is the first major investigative confirmation of the Meta→DCA funding link.</div>
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">DCA</span>
<br><a href="https://www.insurancejournal.com/news/national/2025/07/25/833246.htm" target="_blank" class="source-link">[Insurance Journal/Bloomberg]</a>
</div>
</div>
<div class="timeline-entry" data-cat="meta-strategy">
<div class="timeline-dot" style="background:#3fb950;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-09</div>
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
<div class="timeline-title">Meta launches $65M in super PACs</div>
<div class="timeline-desc"><strong>ATEP (American Technology Excellence Project):</strong> <span class="money">$45M</span> multi-state PAC. <strong>META California:</strong> <span class="money">$20M</span> state-specific PAC led by Brian Rice (Meta VP of Public Policy). Focus: electing candidates supportive of minimal tech/AI regulation.</div>
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">ATEP</span><span class="entity-tag">META California PAC</span>
</div>
</div>
<div class="timeline-entry" data-cat="meta-strategy">
<div class="timeline-dot" style="background:#3fb950;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-09-09</div>
<div class="timeline-type" style="color:#3fb950;">Meta Strategy</div>
<div class="timeline-title">Meta publicly supports CA AB-1043</div>
<div class="timeline-desc">Meta endorses AB-1043 (Digital Age Assurance Act), stating it "would centralize age verification within app stores and operating systems, which Meta supports." <strong>Breaks ranks with its own trade associations</strong> (TechNet and Chamber of Progress oppose the bill). Apple remains silent.</div>
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">California</span><span class="entity-tag">AB-1043</span>
</div>
</div>
<div class="timeline-entry" data-cat="dca">
<div class="timeline-dot" style="background:#ffa657;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-10</div>
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
<div class="timeline-title">DCA registers on Idealist; claims 140+ member orgs</div>
<div class="timeline-desc">Idealist.org profile registered October 2025 with generic DC coordinates (38.907, -77.037). Listed as "hidden/remote" organization. Coalition claims grow from 50+ at launch to 140+, later 170+. <strong>No incorporation record, EIN, or Form 990 found in any public database.</strong></div>
<span class="entity-tag">DCA</span>
</div>
</div>
<div class="timeline-entry" data-cat="legislation">
<div class="timeline-dot" style="background:#58a6ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-10-13</div>
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
<div class="timeline-title">CA AB-1043 signed by Governor Newsom</div>
<div class="timeline-desc">Digital Age Assurance Act signed. Effective January 1, 2027. Requires OS providers (Apple, Google, Microsoft) to collect user age during device setup and transmit age bracket signals via API. Supported by Meta, Google, Snap, OpenAI, Pinterest. <strong>DCA opposed this version</strong> (preferring app-store-level, not OS-level).</div>
<span class="entity-tag">California</span><span class="entity-tag">AB-1043</span>
</div>
</div>
<div class="timeline-entry" data-cat="dca">
<div class="timeline-dot" style="background:#ffa657;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-11</div>
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
<div class="timeline-title">Digital Childhood Institute receives 501(c)(3) status</div>
<div class="timeline-desc">DCI (EIN 39-3684798) receives IRS tax-exempt ruling. Incorporated in <strong>Wilmington, DE</strong> (213 N Market St) with operations in Utah. Founded by Melissa McKay. Claims it "does not accept funding from major tech platforms." Filed FTC complaints against Apple and Google.</div>
<span class="entity-tag">DCI</span><span class="entity-tag">Melissa McKay</span>
</div>
</div>
<div class="timeline-entry" data-cat="investigation">
<div class="timeline-dot" style="background:#f85149;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-12-07</div>
<div class="timeline-type" style="color:#f85149;">Investigative</div>
<div class="timeline-title">Deseret News: Meta "quietly funded" DCA</div>
<div class="timeline-desc">Deseret News investigative reporting calls DCA an <strong>"astroturf operation" where "corporate money creates the illusion of grassroots activism."</strong> Reports that Meta "quietly funded" the Digital Childhood Alliance. This is the second major confirmation of the Meta→DCA funding link.</div>
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">DCA</span>
<br><a href="https://www.deseret.com/opinion/2025/12/07/child-safety-bill-backed-by-meta/" target="_blank" class="source-link">[Deseret News]</a>
</div>
</div>
<div class="timeline-entry" data-cat="dark-money">
<div class="timeline-dot" style="background:#f0883e;"></div>
<div class="timeline-content">
<div class="timeline-date">2025</div>
<div class="timeline-type" style="color:#f0883e;">Dark Money Infrastructure</div>
<div class="timeline-title">Arabella Advisors dissolves; rebrands as Sunflower Services</div>
<div class="timeline-desc">Following years of congressional investigations, Arabella Advisors reportedly dissolves and rebrands as <strong>Sunflower Services</strong>. The four funds (NVF, Sixteen Thirty, Windward, Hopewell) continue operating. Adam Eichberg becomes incoming Board Chair of Sunflower Services.</div>
<span class="entity-tag">Arabella Advisors</span><span class="entity-tag">Sunflower Services</span><span class="entity-tag">Adam Eichberg</span>
</div>
</div>
<div class="timeline-entry" data-cat="lobbying">
<div class="timeline-dot" style="background:#d2a8ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2025-07 to 2026-01</div>
<div class="timeline-type" style="color:#d2a8ff;">Lobbying Payment</div>
<div class="timeline-title">Meta → Headwaters FY 2025-2026: $34,000 (partial)</div>
<div class="timeline-desc">Ongoing payments at <span class="money">$8,500/month</span>. FY partial total (through Jan 2026): <span class="money">$34,000</span>. <strong>Cumulative all-time Meta → Headwaters total: ~$338,500.</strong></div>
<span class="entity-tag">Meta Platforms</span><span class="entity-tag">Headwaters Strategies</span>
</div>
</div>
<!-- ═══════════════ 2026 ═══════════════ -->
<div class="year-marker"><span>2026</span></div>
<div class="timeline-entry" data-cat="legislation">
<div class="timeline-dot" style="background:#58a6ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2026-02-24</div>
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
<div class="timeline-title">CO SB26-051: Age Attestation hearing</div>
<div class="timeline-desc">Senate Business, Labor & Technology Committee hearing on OS-level age attestation. Sponsors: Sen. Matt Ball (D), Rep. Amy Paschal (D). Kim Osterman testifies about her son Max (died from fentanyl via Snapchat). Amendment adopted, referred 5-0. <strong>Neither DCA nor Headwaters appeared on extracted witness lists.</strong></div>
<span class="entity-tag">Colorado</span><span class="entity-tag">SB26-051</span>
</div>
</div>
<div class="timeline-entry" data-cat="legislation">
<div class="timeline-dot" style="background:#58a6ff;"></div>
<div class="timeline-content">
<div class="timeline-date">2026-03-03</div>
<div class="timeline-type" style="color:#58a6ff;">Legislation</div>
<div class="timeline-title">CO SB26-051 passes Senate (3rd reading)</div>
<div class="timeline-desc">Colorado's age attestation bill advances. Requires OS providers to expose age signal API with brackets: under 13, 13-16, 16-18, 18+. Mirrors the approach Meta CEO Zuckerberg has publicly endorsed.</div>
<span class="entity-tag">Colorado</span><span class="entity-tag">SB26-051</span>
</div>
</div>
<div class="timeline-entry" data-cat="investigation">
<div class="timeline-dot" style="background:#f85149;"></div>
<div class="timeline-content">
<div class="timeline-date">2026-03-05</div>
<div class="timeline-type" style="color:#f85149;">Investigative</div>
<div class="timeline-title">Kansas Reflector: tech companies vie for influence over ASAA</div>
<div class="timeline-desc">Reporting on how tech companies compete to shape Kansas app-store age verification legislation, further documenting the DCA/Meta coordination pattern across states. DCA's ASAA model now introduced in <strong>20+ states</strong>.</div>
<span class="entity-tag">DCA</span><span class="entity-tag">Kansas</span>
<br><a href="https://kansasreflector.com/2026/03/05/tech-companies-vie-for-influence-over-kansas-app-store-age-verification-legislation/" target="_blank" class="source-link">[Kansas Reflector]</a>
</div>
</div>
<div class="timeline-entry" data-cat="dca">
<div class="timeline-dot" style="background:#ffa657;"></div>
<div class="timeline-content">
<div class="timeline-date">2026-03-12</div>
<div class="timeline-type" style="color:#ffa657;">DCA Operations</div>
<div class="timeline-title">OSINT investigation: no incorporation record found for DCA</div>
<div class="timeline-desc">Extensive search across OpenCorporates, ProPublica, IRS TEOS, DC DCRA, CO SOS, VA SCC, and Delaware. <strong>No state incorporation record, EIN, or Form 990 found for Digital Childhood Alliance, Inc.</strong> Despite claiming 501(c)(4) status and operating in 20+ state legislatures. All infrastructure is behind privacy shields (GoDaddy, Cloudflare).</div>
<span class="entity-tag">DCA</span>
</div>
</div>
</div><!-- end timeline -->
<!-- Key Connections Table -->
<h2>Key Personnel & Entity Connections</h2>
<table class="conn-table">
<thead>
<tr><th>Person</th><th>Role A</th><th>Role B</th><th>Significance</th></tr>
</thead>
<tbody>
<tr><td>Adam Eichberg</td><td>Co-founder, Headwaters Strategies (Meta's CO lobbyist)</td><td>Board Chair, New Venture Fund ($669M/yr)</td><td class="alert-text">Simultaneous corporate lobbying + dark money board leadership</td></tr>
<tr><td>Adam Eichberg</td><td>Founding Board, Windward Fund ($311M/yr)</td><td>Incoming Chair, Sunflower Services (fka Arabella)</td><td>Deep integration across Arabella network entities</td></tr>
<tr><td>Eric Kessler</td><td>Founding President: NVF, Sixteen Thirty, Windward, Hopewell</td><td>Founder, Arabella Advisors</td><td>Architect of the entire dark money network</td></tr>
<tr><td>Casey Stefanski</td><td>Executive Director, DCA</td><td>Former Sr Director, NCOSE (10 years)</td><td>Rapid pivot from anti-exploitation org to Meta-funded advocacy</td></tr>
<tr><td>Melissa McKay</td><td>Founder, DCA (c)(4)</td><td>Founder/President, DCI (c)(3)</td><td>Controls both advocacy and research arms; father is largest DCA donor</td></tr>
<tr><td>Larry Magid</td><td>CEO, ConnectSafely</td><td>Member, Meta Safety Advisory Council</td><td>Receives Meta funding while opposing child safety legislation</td></tr>
<tr><td>Nicole Lopez</td><td>Meta Dir of Global Litigation Strategy - Youth</td><td>Testified FOR LA HB-570</td><td>Meta sends executive to support DCA-promoted legislation</td></tr>
<tr><td>Koch (lobbyist)</td><td>Registered lobbyist, Louisiana</td><td>Retained by DCA</td><td>DCA had paid Louisiana lobbyist within months of domain registration</td></tr>
</tbody>
</table>
<!-- Financial Flow Summary -->
<h2>Meta Lobbying Expenditure Summary</h2>
<table class="conn-table">
<thead>
<tr><th>Channel</th><th>Amount</th><th>Period</th><th>Notes</th></tr>
</thead>
<tbody>
<tr><td>Headwaters Strategies (CO)</td><td class="money">$338,500</td><td>2020-2026</td><td>Co-founded by NVF Board Chair Eichberg</td></tr>
<tr><td>California state lobbying</td><td class="money">$1,036,728</td><td>2025 Q1-Q3</td><td>Record pace; Q2 alone was $518,605</td></tr>
<tr><td>CA Chamber of Commerce</td><td class="money">$3,100,000</td><td>~2025</td><td>Bulk of Chamber lobbying payments</td></tr>
<tr><td>Federal lobbying</td><td class="money">$24,430,000</td><td>2024</td><td>24 firms, 87 lobbyists</td></tr>
<tr><td>Super PACs (ATEP + META CA)</td><td class="money">$65,000,000</td><td>2025</td><td>Electing tech-friendly state candidates</td></tr>
<tr><td>DCA funding</td><td class="money">Undisclosed</td><td>2024-present</td><td>Confirmed by Bloomberg (3 sources) + Deseret News</td></tr>
<tr><td>ConnectSafely</td><td class="money">Undisclosed</td><td>2017-present</td><td>Magid on Meta Safety Advisory Council</td></tr>
<tr><td style="font-weight:700;">KNOWN TOTAL (excl DCA/ConnectSafely)</td><td class="money" style="font-weight:700;">~$93.9M+</td><td>2020-2026</td><td></td></tr>
</tbody>
</table>
<!-- Arabella Network Financials -->
<h2>Arabella Network Financial Scale (2024)</h2>
<table class="conn-table">
<thead>
<tr><th>Entity</th><th>Type</th><th>Revenue</th><th>Assets</th><th>Grants</th><th>Donors Disclosed?</th></tr>
</thead>