The Hidden Highway: How Generalist Super PACs Launder Single-Issue Intent
Adelson $330M to SLF + CLF. Singer $75M. Marcus $22M. The same names show up on the explicit Israel-lobby donor list.
The Hidden Highway: How Generalist Super PACs Launder Single-Issue Intent
Two of the most important committees in American politics are not household names. Senate Leadership Fund (SLF) and Congressional Leadership Fund (CLF) — the two aligned super PACs that anchor Republican Senate and House campaigns — describe themselves in generalist terms: they elect Republicans, hold the majority, defeat Democrats. Their donor disclosures tell a more specific story.
Who funds the leadership-aligned super PACs
Summing all cycles in our warehouse, these are the top individual donors to SLF and CLF combined:
| Donor | Lifetime to SLF + CLF ($) |
|---|---|
| Miriam & Sheldon Adelson | 330,000,000 |
| Kenneth Griffin | 150,600,000 |
| Stephen Schwarzman | 97,120,087 |
| Timothy Mellon | 90,000,000 |
| Paul Singer | 75,650,000 |
| Bernard Marcus | 21,597,200 |
Source: stg_contributions_keyed joined to stg_committees, filtered to the two committee names.
The top donor to SLF and CLF, by a factor of more than two, is a single household whose disclosed federal giving has one and only one policy theme: support for pro-Israel-lobby candidates. Paul Singer, Bernard Marcus, and other top-tier names on this list also appear as major donors to explicit Israel-lobby super PACs like United Democracy Project.
This is not a claim that SLF or CLF are "Israel lobby" organizations. They are generalist party-leadership super PACs with a broad Republican agenda. The narrower point: a donor who wants pro-Israel-lobby outcomes can write one very large check to SLF or CLF and receive influence over which Senate and House candidates survive primaries and get general-election air cover — candidates chosen for overall viability, but whose Israel stance was almost certainly a threshold condition for the donor.
The laundering mechanic
Disclosure treats the incoming check and the outgoing check as separate events. Adelson gives $50M to SLF. SLF spends $5M on a Senate candidate. The reported transaction is "SLF → Senator X," not "Adelson → Senator X." Donor intent is one layer removed from outcome.
For single-issue donors, that is a feature. A $50M Adelson check to United Democracy Project is legible as Israel-lobby money. A $50M Adelson check to Senate Leadership Fund reads as generic party support — even if, given the donor's entire federal footprint, every dollar tracks the same policy preference.
Cross-reference: the same names appear in the single-issue super PACs
The donor overlap is not accidental. The top 2024 donors to United Democracy Project — AIPAC's super PAC — include Bernard Marcus ($3,000,000) and Paul Singer ($2,000,000), both of whom also appear on the SLF/CLF list above. Jan Koum ($5M), the Jacobson household ($4.575M), Helaine Lerner ($2M), Haim Saban ($2M), and David Zalik ($2M) round out the top tier.
A donor who wants Israel-lobby-aligned Senate outcomes can fund the explicit vehicle (UDP) and the generalist vehicle (SLF) with the same intent. The generalist vehicle buys reach; the explicit vehicle buys surgical strikes in specific primaries.
What the data cannot yet show
We can see the top of the funnel (donor to super PAC) and the bottom of the funnel (super PAC to candidate). We cannot see, inside the super PAC, how its allocation decisions map back to specific donor interests. That is the exact opacity that makes the structure useful to single-issue donors.
| Layer | Visible in FEC data | Legible intent |
|---|---|---|
| Donor → generalist super PAC | Yes | Often "general party support" |
| Super PAC → candidate | Yes | Usually "hold the majority" |
| Donor policy preference → candidate outcome | No | Hidden |
That missing middle is where single-issue money loses its fingerprint. The FEC sees two clean transactions. The voter sees one cable ad. The donor got what they paid for.
The takeaway
Disclosure was designed on the assumption that a donation to a party committee is diffuse support for the party. With five-to-ten donors writing $100M+ checks, that assumption no longer holds. When a donor's disclosed federal giving concentrates around one policy axis, their checks to generalist super PACs aren't diffuse. They're targeted, through a layer of indirection that current disclosure rules do not illuminate.
The generalist super PAC is the mechanism by which the funders' specific preferences get relabeled as the party's general ones.
Methodology
-- Top lifetime individual donors to SLF + CLF combined
SELECT canonical_name, SUM(x.transaction_amt) amt
FROM `goodvote-466412.fec_staging_fec_staging.stg_contributions_keyed` x
JOIN `goodvote-466412.fec_staging_fec_staging.stg_committees` c USING(cmte_id)
WHERE c.cmte_nm IN ('SENATE LEADERSHIP FUND','CONGRESSIONAL LEADERSHIP FUND')
AND canonical_name IS NOT NULL
GROUP BY canonical_name
ORDER BY amt DESC
LIMIT 15;
-- Split by committee for Adelson, Marcus, Singer
SELECT c.cmte_nm, x.canonical_name, SUM(x.transaction_amt) amt
FROM `goodvote-466412.fec_staging_fec_staging.stg_contributions_keyed` x
JOIN `goodvote-466412.fec_staging_fec_staging.stg_committees` c USING(cmte_id)
WHERE c.cmte_nm IN ('SENATE LEADERSHIP FUND','CONGRESSIONAL LEADERSHIP FUND')
AND canonical_name IN ('ADELSON, MIRIAM & SHELDON','MARCUS, BERNARD','SINGER, PAUL')
GROUP BY c.cmte_nm, x.canonical_name
ORDER BY amt DESC;
-- UDP 2024 top donors (cross-reference)
SELECT canonical_name, SUM(transaction_amt) amt
FROM `goodvote-466412.fec_staging_fec_staging.stg_contributions_keyed` x
JOIN `goodvote-466412.fec_staging_fec_staging.stg_committees` c USING(cmte_id)
WHERE c.cmte_nm = "UNITED DEMOCRACY PROJECT ('UDP')" AND cycle = 2024
AND canonical_name IS NOT NULL
GROUP BY canonical_name ORDER BY amt DESC LIMIT 10;
Donor canonicalization via stg_donors_normalized. All dollar amounts are disclosed federal
contributions only; dark-money (501(c)(4)) flows are not in this dataset.