main 930ca58409d5 cached
30 files
8.7 MB
2.3M tokens
72 symbols
4 requests
Download .txt
Showing preview only (9,172K chars total). Download the full file or copy to clipboard to get everything.
Repository: pcctradinginc-alt/SEC-QUATERLY
Branch: main
Commit: 930ca58409d5
Files: 30
Total size: 8.7 MB

Directory structure:
gitextract_wakc4r5b/

├── .github/
│   └── workflows/
│       └── quarterly_run.yml
├── README.md
├── data/
│   └── holdings/
│       ├── 2026-04-08_claude_round1.json
│       ├── 2026-04-08_final_analysis.json
│       ├── 2026-04-08_holdings_parsed.json
│       ├── 2026-04-08_options.json
│       ├── 2026-04-08_raw_holdings.json
│       ├── 2026-04-08_scores.json
│       ├── 2026-05-18_backtest.json
│       ├── 2026-05-18_claude_round1.json
│       ├── 2026-05-18_final_analysis.json
│       ├── 2026-05-18_holdings_parsed.json
│       ├── 2026-05-18_options.json
│       ├── 2026-05-18_raw_holdings.json
│       └── 2026-05-18_scores.json
├── reports/
│   ├── 2026-04-08_report.html
│   └── 2026-05-18_report.html
├── requirements.txt
└── src/
    ├── analyze_claude_round1.py
    ├── analyze_claude_round2.py
    ├── backtest.py
    ├── config.py
    ├── date_check.py
    ├── fetch_filings.py
    ├── multi_quarter.py
    ├── notify.py
    ├── options_lookup.py
    ├── parse_13f.py
    ├── scoring.py
    └── send_report.py

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/workflows/quarterly_run.yml
================================================
name: SEC 13F Quarterly Analysis

on:
  schedule:
    # Run daily at 14:00 UTC (= 15:00 CET / 16:00 CEST)
    # The Python script itself decides if today is the right date
    - cron: '0 14 14-20 2,5,8,11 *'
  workflow_dispatch:
    inputs:
      force_run:
        description: 'Force run regardless of date'
        required: false
        default: 'false'
      target_date:
        description: 'Override target date (YYYY-MM-DD)'
        required: false
        default: ''

jobs:
  analyze:
    runs-on: ubuntu-latest
    timeout-minutes: 30

    steps:
      - name: Checkout repository
        uses: actions/checkout@v4

      - name: Set up Python 3.11
        uses: actions/setup-python@v5
        with:
          python-version: '3.11'
          cache: 'pip'

      - name: Install dependencies
        run: pip install -r requirements.txt

      - name: Check if today is a run date
        id: date_check
        env:
          FORCE_RUN: ${{ github.event.inputs.force_run }}
          TARGET_DATE: ${{ github.event.inputs.target_date }}
          TZ: Europe/Berlin
        run: |
          python src/date_check.py
        continue-on-error: false

      - name: Fetch SEC 13F Filings
        if: steps.date_check.outputs.should_run == 'true'
        env:
          TZ: Europe/Berlin
          OPENFIGI_API_KEY: ${{ secrets.OPENFIGI_API_KEY }}
        run: python src/fetch_filings.py

      - name: Parse Holdings & Calculate Deltas
        if: steps.date_check.outputs.should_run == 'true'
        run: python src/parse_13f.py

      - name: Calculate Conviction Scores
        if: steps.date_check.outputs.should_run == 'true'
        run: python src/scoring.py

      - name: Claude Analysis Round 1 - Identify Top 5 (Haiku)
        if: steps.date_check.outputs.should_run == 'true'
        env:
          ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
        run: python src/analyze_claude_round1.py

      - name: Fetch Options Data via Tradier
        if: steps.date_check.outputs.should_run == 'true'
        env:
          TRADIER_API_KEY: ${{ secrets.TRADIER_API_KEY }}
        run: python src/options_lookup.py

      - name: Claude Analysis Round 2 - Select Best Options (Sonnet)
        if: steps.date_check.outputs.should_run == 'true'
        env:
          ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
        run: python src/analyze_claude_round2.py

      - name: Backtest - Track Historical Signal Performance
        if: steps.date_check.outputs.should_run == 'true'
        run: python src/backtest.py

      - name: Generate & Send Report via Gmail
        if: steps.date_check.outputs.should_run == 'true'
        env:
          GMAIL_ADDRESS: ${{ secrets.GMAIL_ADDRESS }}
          GMAIL_APP_PASSWORD: ${{ secrets.GMAIL_APP_PASSWORD }}
        run: python src/send_report.py

      - name: Commit updated holdings data
        if: steps.date_check.outputs.should_run == 'true'
        run: |
          git config --local user.email "action@github.com"
          git config --local user.name "GitHub Action"
          git add data/holdings/ reports/
          git diff --staged --quiet || git commit -m "📊 Quarterly 13F analysis $(date +%Y-%m-%d)"
          git push

      # ── Failure notification ──────────────────────────────────────────────────
      # Runs only when the workflow fails AND the main pipeline was supposed to run.
      # Uses the existing Gmail credentials so no extra services are needed.
      - name: Send failure alert
        if: failure() && steps.date_check.outputs.should_run == 'true'
        env:
          GMAIL_ADDRESS: ${{ secrets.GMAIL_ADDRESS }}
          GMAIL_APP_PASSWORD: ${{ secrets.GMAIL_APP_PASSWORD }}
        run: |
          python src/notify.py \
            "GitHub Actions – SEC 13F Pipeline" \
            "Workflow run ${{ github.run_id }} failed. Check: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"


================================================
FILE: README.md
================================================
# SEC 13F Smart Money Analyzer

Automated quarterly analysis of 13F filings from 13 top institutional investors.
Runs automatically on **16 May / 16 Aug / 16 Nov / 16 Feb** (next business day if weekend).
Delivers a **Top 5 stock picks + specific option trades** report via Gmail.

---

## Monitored Institutions

| Institution | CIK |
|---|---|
| Situational Awareness LP | 0002045724 |
| Yale University | 0000938582 |
| Gates Foundation Trust | 0001166559 |
| Harvard Management Co | 0001082621 |
| Brown University | 0001664741 |
| Duke University | 0001439873 |
| TCI Fund (Chris Hohn) | 0001649339 |
| Pershing Square (Ackman) | 0001336528 |
| Tiger Global (Coleman) | 0001167483 |
| Coatue (Laffont) | 0001766502 |
| D1 Capital (Sundheim) | 0001747057 |
| Viking Global (Halvorsen) | 0001103804 |
| AQR Capital (Asness) | 0001167557 |

---

## Pipeline

```
GitHub Actions Trigger (14:00 UTC, 14th-20th of target months)
    │
    ├─ date_check.py        → Is today the right run date?
    ├─ fetch_filings.py     → SEC EDGAR: fetch 13F XMLs for all 13 CIKs
    │                          + CUSIP→Ticker mapping (OpenFIGI)
    │                          + Stock split detection (yfinance)
    ├─ parse_13f.py         → Delta vs. prior quarter, portfolio weights
    ├─ scoring.py           → Conviction scores, clustering detection
    ├─ analyze_claude_round1.py → Claude: Top 5 stocks + investment theses
    ├─ options_lookup.py    → Tradier: Real option chains for Top 5
    ├─ analyze_claude_round2.py → Claude: Select best specific option per stock
    └─ send_report.py       → HTML report → Gmail
```

---

## Setup

### 1. Fork / Clone this repo

```bash
git clone https://github.com/YOUR_USERNAME/sec-smart-money.git
cd sec-smart-money
```

### 2. Add GitHub Secrets

Go to **Settings → Secrets and variables → Actions → New repository secret**:

| Secret Name | Value |
|---|---|
| `ANTHROPIC_API_KEY` | Your Anthropic API key |
| `TRADIER_API_KEY` | Your Tradier API key (live or sandbox) |
| `GMAIL_ADDRESS` | Your Gmail address (e.g. `you@gmail.com`) |
| `GMAIL_APP_PASSWORD` | Gmail App Password (not your login password) |

**How to create a Gmail App Password:**
1. Go to [myaccount.google.com/security](https://myaccount.google.com/security)
2. Enable 2-Factor Authentication if not already
3. Search for "App passwords"
4. Create a new app password → select "Mail" and "Other (custom)"
5. Copy the 16-character password into the `GMAIL_APP_PASSWORD` secret

**Tradier API:**
- Live account: use `https://api.tradier.com/v1` (default in config.py)
- Paper account: change `TRADIER_BASE_URL` in `src/config.py` to `https://sandbox.tradier.com/v1`

### 3. Configure Tradier Account Type

Edit `src/config.py`:
```python
TRADIER_BASE_URL = "https://api.tradier.com/v1"   # Live (default)
# TRADIER_BASE_URL = "https://sandbox.tradier.com/v1"  # Paper
```

### 4. Test a Manual Run

Go to **Actions → SEC 13F Quarterly Analysis → Run workflow**
Set `force_run = true` to bypass the date check.

---

## Local Development

```bash
pip install -r requirements.txt

# Set environment variables
export ANTHROPIC_API_KEY="your_key"
export TRADIER_API_KEY="your_key"
export GMAIL_ADDRESS="you@gmail.com"
export GMAIL_APP_PASSWORD="your_app_password"

# Run individual steps
python src/fetch_filings.py
python src/parse_13f.py
python src/scoring.py
python src/analyze_claude_round1.py
python src/options_lookup.py
python src/analyze_claude_round2.py
python src/send_report.py
```

---

## Data Architecture

```
data/holdings/
  YYYY-MM-DD_raw_holdings.json      ← Raw SEC XML data + CUSIP mapping
  YYYY-MM-DD_holdings_parsed.json   ← Delta-enriched positions
  YYYY-MM-DD_scores.json            ← Conviction scores
  YYYY-MM-DD_claude_round1.json     ← Top 5 stocks from Claude
  YYYY-MM-DD_options.json           ← Tradier options data
  YYYY-MM-DD_final_analysis.json    ← Combined analysis
reports/
  YYYY-MM-DD_report.html            ← Final HTML report (committed to repo)
```

---

## Known Limitations (by design)

| Limitation | Impact | Mitigation |
|---|---|---|
| 13F data is 45 days old | Positions may have changed | Use as idea generator only |
| Long-only AUM denominator | Portfolio weights overstated | Disclaimer in report |
| No shorts/hedges visible | Incomplete picture | Noted in report |
| Stock splits adjusted | High accuracy, not perfect | yfinance split check |
| Options prices at analysis time | Change constantly | Always verify before trading |

---

## Conviction Score Formula

```
Raw Score = (0.40 × portfolio_weight%) + (0.30 × |delta%|)
Cluster Bonus: ×1.5 if 3+ funds buy same ticker
Normalized: min-max scaled to [0, 100]
```

**Flags:**
- `HIGH_CONVICTION`: New position ≥3% of portfolio
- `NEW_POSITION`: Not in prior quarter's filing
- `AGGRESSIVE_ADD`: Position increased >20% by share count
- `CLUSTER`: 3+ monitored funds buying same ticker simultaneously
- `TOP10_ENTRY`: New position entered directly in top 10 holdings

---

## Disclaimer

This tool is for educational and informational purposes only. 13F data is publicly
available but delayed. Nothing in this repository constitutes investment advice.
Options trading involves significant risk of loss. Always conduct your own research
before making any investment decisions.


================================================
FILE: data/holdings/2026-04-08_claude_round1.json
================================================
{
  "analysis_date": "2026-04-08",
  "market_context": "The market appears to be experiencing significant institutional repositioning into AI infrastructure, defensive value plays, and alternative assets including crypto ETFs. Notable convergence among elite funds on mega-cap tech suggests consensus building around AI beneficiaries despite potential valuation concerns.",
  "top5": [
    {
      "rank": 1,
      "ticker": "PLTR",
      "company_name": "PALANTIR TECHNOLOGIES INC",
      "conviction_score": 100.0,
      "thesis": "TCI Fund's massive 66% portfolio allocation signals extraordinary conviction in Palantir's AI/data analytics platform amid government and enterprise adoption acceleration. Chris Hohn's concentrated bet suggests transformational growth expectations in the AI infrastructure space.",
      "key_buyers": [
        "TCI Fund (Chris Hohn)"
      ],
      "cluster_signal": false,
      "primary_flag": "HIGH_CONVICTION",
      "risk_factors": "Extreme concentration risk given 66% portfolio weight; government contract dependency and competitive AI landscape present execution risks.",
      "direction": "BULLISH"
    },
    {
      "rank": 2,
      "ticker": "AMZN",
      "company_name": "AMAZON COM INC",
      "conviction_score": 21.0,
      "thesis": "Six elite institutions simultaneously initiated positions including Pershing Square, Harvard, and Tiger Global, suggesting broad consensus on Amazon's AI cloud dominance and retail resilience. The coordinated buying pattern indicates institutional recognition of Amazon's multiple growth vectors.",
      "key_buyers": [
        "Harvard Management Co",
        "Pershing Square (Ackman)",
        "Tiger Global (Coleman)",
        "D1 Capital (Sundheim)",
        "Viking Global (Halvorsen)",
        "AQR Capital (Asness)"
      ],
      "cluster_signal": true,
      "primary_flag": "CLUSTER",
      "risk_factors": "Regulatory scrutiny and competitive pressures in cloud computing; mature e-commerce growth may limit upside.",
      "direction": "BULLISH"
    },
    {
      "rank": 3,
      "ticker": "NVDA",
      "company_name": "NVIDIA CORPORATION",
      "conviction_score": 19.8,
      "thesis": "Five top-tier funds including TCI and Harvard established new positions, signaling continued institutional confidence in NVIDIA's AI chip monopoly despite valuation concerns. The broad-based buying suggests institutions view current levels as attractive entry points.",
      "key_buyers": [
        "Harvard Management Co",
        "TCI Fund (Chris Hohn)",
        "Tiger Global (Coleman)",
        "D1 Capital (Sundheim)",
        "AQR Capital (Asness)"
      ],
      "cluster_signal": true,
      "primary_flag": "CLUSTER",
      "risk_factors": "High valuation multiples and potential AI bubble concerns; semiconductor cyclicality and geopolitical tensions around China markets.",
      "direction": "BULLISH"
    },
    {
      "rank": 4,
      "ticker": "BRK/A",
      "company_name": "BERKSHIRE HATHAWAY INC DEL",
      "conviction_score": 41.3,
      "thesis": "Gates Foundation's substantial 27.6% allocation to Berkshire signals flight to defensive value and Buffett's crisis-tested investment acumen. This concentrated bet suggests institutional preparation for market volatility while maintaining equity exposure.",
      "key_buyers": [
        "Gates Foundation Trust"
      ],
      "cluster_signal": false,
      "primary_flag": "HIGH_CONVICTION",
      "risk_factors": "Succession concerns post-Buffett era; large cash position may drag returns in bull markets; concentrated exposure to specific sectors.",
      "direction": "BULLISH"
    },
    {
      "rank": 5,
      "ticker": "IBIT",
      "company_name": "ISHARES BITCOIN TRUST ETF",
      "conviction_score": 18.7,
      "thesis": "Harvard and Brown's simultaneous crypto ETF adoption marks institutional acceptance of Bitcoin as a legitimate asset class. The 12.8% Harvard allocation suggests endowments are diversifying into digital assets for long-term portfolio protection.",
      "key_buyers": [
        "Harvard Management Co",
        "Brown University"
      ],
      "cluster_signal": true,
      "primary_flag": "CLUSTER",
      "risk_factors": "Extreme Bitcoin volatility and regulatory uncertainty; ETF structure risks and potential crypto market manipulation concerns.",
      "direction": "BULLISH"
    }
  ],
  "disclaimer": "This analysis is based on delayed 13F data and is for informational purposes only, not investment advice."
}

================================================
FILE: data/holdings/2026-04-08_final_analysis.json
================================================
{
  "date": "2026-04-08",
  "round1_top5": [
    {
      "rank": 1,
      "ticker": "PLTR",
      "company_name": "PALANTIR TECHNOLOGIES INC",
      "conviction_score": 100.0,
      "thesis": "TCI Fund's massive 66% portfolio allocation signals extraordinary conviction in Palantir's AI/data analytics platform amid government and enterprise adoption acceleration. Chris Hohn's concentrated bet suggests transformational growth expectations in the AI infrastructure space.",
      "key_buyers": [
        "TCI Fund (Chris Hohn)"
      ],
      "cluster_signal": false,
      "primary_flag": "HIGH_CONVICTION",
      "risk_factors": "Extreme concentration risk given 66% portfolio weight; government contract dependency and competitive AI landscape present execution risks.",
      "direction": "BULLISH"
    },
    {
      "rank": 2,
      "ticker": "AMZN",
      "company_name": "AMAZON COM INC",
      "conviction_score": 21.0,
      "thesis": "Six elite institutions simultaneously initiated positions including Pershing Square, Harvard, and Tiger Global, suggesting broad consensus on Amazon's AI cloud dominance and retail resilience. The coordinated buying pattern indicates institutional recognition of Amazon's multiple growth vectors.",
      "key_buyers": [
        "Harvard Management Co",
        "Pershing Square (Ackman)",
        "Tiger Global (Coleman)",
        "D1 Capital (Sundheim)",
        "Viking Global (Halvorsen)",
        "AQR Capital (Asness)"
      ],
      "cluster_signal": true,
      "primary_flag": "CLUSTER",
      "risk_factors": "Regulatory scrutiny and competitive pressures in cloud computing; mature e-commerce growth may limit upside.",
      "direction": "BULLISH"
    },
    {
      "rank": 3,
      "ticker": "NVDA",
      "company_name": "NVIDIA CORPORATION",
      "conviction_score": 19.8,
      "thesis": "Five top-tier funds including TCI and Harvard established new positions, signaling continued institutional confidence in NVIDIA's AI chip monopoly despite valuation concerns. The broad-based buying suggests institutions view current levels as attractive entry points.",
      "key_buyers": [
        "Harvard Management Co",
        "TCI Fund (Chris Hohn)",
        "Tiger Global (Coleman)",
        "D1 Capital (Sundheim)",
        "AQR Capital (Asness)"
      ],
      "cluster_signal": true,
      "primary_flag": "CLUSTER",
      "risk_factors": "High valuation multiples and potential AI bubble concerns; semiconductor cyclicality and geopolitical tensions around China markets.",
      "direction": "BULLISH"
    },
    {
      "rank": 4,
      "ticker": "BRK/A",
      "company_name": "BERKSHIRE HATHAWAY INC DEL",
      "conviction_score": 41.3,
      "thesis": "Gates Foundation's substantial 27.6% allocation to Berkshire signals flight to defensive value and Buffett's crisis-tested investment acumen. This concentrated bet suggests institutional preparation for market volatility while maintaining equity exposure.",
      "key_buyers": [
        "Gates Foundation Trust"
      ],
      "cluster_signal": false,
      "primary_flag": "HIGH_CONVICTION",
      "risk_factors": "Succession concerns post-Buffett era; large cash position may drag returns in bull markets; concentrated exposure to specific sectors.",
      "direction": "BULLISH"
    },
    {
      "rank": 5,
      "ticker": "IBIT",
      "company_name": "ISHARES BITCOIN TRUST ETF",
      "conviction_score": 18.7,
      "thesis": "Harvard and Brown's simultaneous crypto ETF adoption marks institutional acceptance of Bitcoin as a legitimate asset class. The 12.8% Harvard allocation suggests endowments are diversifying into digital assets for long-term portfolio protection.",
      "key_buyers": [
        "Harvard Management Co",
        "Brown University"
      ],
      "cluster_signal": true,
      "primary_flag": "CLUSTER",
      "risk_factors": "Extreme Bitcoin volatility and regulatory uncertainty; ETF structure risks and potential crypto market manipulation concerns.",
      "direction": "BULLISH"
    }
  ],
  "market_context": "The market appears to be experiencing significant institutional repositioning into AI infrastructure, defensive value plays, and alternative assets including crypto ETFs. Notable convergence among elite funds on mega-cap tech suggests consensus building around AI beneficiaries despite potential valuation concerns.",
  "options_recs": [
    {
      "rank": 1,
      "stock_ticker": "AMZN",
      "company_name": "Amazon Com Inc",
      "option_symbol": "AMZN260821C00250000",
      "option_type": "CALL",
      "strike": 250.0,
      "expiration": "2026-08-21",
      "entry_price_mid": 9.7,
      "max_risk_per_contract": 970.0,
      "investment_thesis_link": "Six elite institutions' coordinated buying signals broad consensus on Amazon's AI cloud dominance, creating strong institutional momentum.",
      "option_rationale": "Delta 0.35 provides optimal risk-reward leverage for 4+ month time horizon, while 34.4% IV is reasonable for tech. Exceptional liquidity with 29,781 OI.",
      "profit_target": "+75-100% on option premium if stock moves +12-18%",
      "stop_loss": "-50% on option premium",
      "key_risk": "Regulatory scrutiny and intense cloud competition could limit upside momentum despite institutional support.",
      "greeks_note": "Available"
    },
    {
      "rank": 2,
      "stock_ticker": "NVDA",
      "company_name": "Nvidia Corporation",
      "option_symbol": "NVDA260918C00200000",
      "option_type": "CALL",
      "strike": 200.0,
      "expiration": "2026-09-18",
      "entry_price_mid": 12.73,
      "max_risk_per_contract": 1273.0,
      "investment_thesis_link": "Five top-tier funds including TCI and Harvard view current levels as attractive entry points for AI chip monopoly play.",
      "option_rationale": "Delta 0.43 offers strong directional exposure with 5+ month runway for AI thesis to materialize. High liquidity with 33,190 OI provides excellent execution.",
      "profit_target": "+60-80% on option premium if stock moves +15-20%",
      "Stop_loss": "-50% on option premium",
      "key_risk": "High valuation multiples vulnerable to AI sentiment shifts and geopolitical semiconductor tensions.",
      "greeks_note": "Available"
    },
    {
      "rank": 3,
      "stock_ticker": "PLTR",
      "company_name": "Palantir Technologies Inc",
      "option_symbol": "PLTR260821C00150000",
      "option_type": "CALL",
      "strike": 150.0,
      "expiration": "2026-08-21",
      "entry_price_mid": 17.18,
      "max_risk_per_contract": 1718.0,
      "investment_thesis_link": "TCI Fund's extraordinary 66% portfolio allocation demonstrates unprecedented conviction in Palantir's AI platform transformation potential.",
      "option_rationale": "Delta 0.55 provides strong directional exposure matching highest conviction thesis. 4+ month expiry allows government/enterprise adoption cycles to develop.",
      "profit_target": "+80-120% on option premium if stock moves +20-25%",
      "stop_loss": "-50% on option premium",
      "key_risk": "Extreme concentration risk from TCI's 66% allocation creates vulnerability to any execution disappointments.",
      "greeks_note": "Available"
    },
    {
      "rank": 4,
      "stock_ticker": "IBIT",
      "company_name": "iShares Bitcoin Trust ETF",
      "option_symbol": "IBIT260918C00045000",
      "option_type": "CALL",
      "strike": 45.0,
      "expiration": "2026-09-18",
      "entry_price_mid": 3.63,
      "max_risk_per_contract": 363.0,
      "investment_thesis_link": "Harvard and Brown's simultaneous crypto ETF adoption marks institutional legitimization of Bitcoin as asset class diversifier.",
      "option_rationale": "Delta 0.44 provides balanced risk-reward with 5+ month horizon for crypto institutional adoption trend. Excellent OI at 25,501 ensures liquidity.",
      "profit_target": "+100-150% on option premium if Bitcoin rallies +25-35%",
      "stop_loss": "-60% on option premium due to crypto volatility",
      "key_risk": "Extreme Bitcoin volatility and regulatory uncertainty could trigger sharp reversals despite institutional adoption.",
      "greeks_note": "Available"
    },
    {
      "rank": 5,
      "stock_ticker": "BRK/A",
      "company_name": "Berkshire Hathaway Inc Del",
      "option_symbol": "N/A",
      "option_type": "N/A",
      "strike": 0,
      "expiration": "N/A",
      "entry_price_mid": 0,
      "max_risk_per_contract": 0,
      "investment_thesis_link": "Gates Foundation's 27.6% allocation signals defensive value play, but no options available for leveraged exposure.",
      "option_rationale": "No options data available for BRK/A - would require direct equity exposure to capture Gates Foundation's flight-to-quality thesis.",
      "profit_target": "N/A - Direct equity purchase required",
      "stop_loss": "N/A",
      "key_risk": "Unable to implement leveraged strategy without available options market.",
      "greeks_note": "N/A"
    }
  ],
  "portfolio_note": "Weight AMZN and NVDA highest given broad institutional consensus, moderate allocation to PLTR despite high conviction given concentration risk, small speculative allocation to IBIT.",
  "disclaimer": "Options involve significant risk. This is based on delayed 13F data and real-time option prices may differ. Not investment advice."
}

================================================
FILE: data/holdings/2026-04-08_holdings_parsed.json
================================================
{
  "date": "2026-04-08",
  "prior_date": null,
  "is_first_run": true,
  "recent_splits": {},
  "filers": {
    "Situational Awareness LP": {
      "cik": "0002045724",
      "reported_aum_k": 5516758345,
      "filing_date": "2026-02-11",
      "is_amendment": false,
      "position_count": 25,
      "positions": [
        {
          "ticker": "",
          "cusip": "21873S108",
          "name": "COREWEAVE INC",
          "value_usd_k": 1211162272,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 21.954,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 1
        },
        {
          "ticker": "",
          "cusip": "093712107",
          "name": "BLOOM ENERGY CORP",
          "value_usd_k": 911000117,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 16.513,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 2
        },
        {
          "ticker": "",
          "cusip": "458140100",
          "name": "INTEL CORP",
          "value_usd_k": 746760097,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 13.536,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 3
        },
        {
          "ticker": "",
          "cusip": "55024U109",
          "name": "LUMENTUM HLDGS INC",
          "value_usd_k": 478577256,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 8.675,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 4
        },
        {
          "ticker": "",
          "cusip": "21874A106",
          "name": "CORE SCIENTIFIC INC NEW",
          "value_usd_k": 418694320,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 7.589,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 5
        },
        {
          "ticker": "",
          "cusip": "Q4982L109",
          "name": "IREN LIMITED",
          "value_usd_k": 328622455,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 5.957,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 6
        },
        {
          "ticker": "",
          "cusip": "038169207",
          "name": "APPLIED DIGITAL CORP",
          "value_usd_k": 278033751,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 5.04,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 7
        },
        {
          "ticker": "",
          "cusip": "80004C200",
          "name": "SANDISK CORP",
          "value_usd_k": 250245996,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 4.536,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 8
        },
        {
          "ticker": "",
          "cusip": "26884L109",
          "name": "EQT CORP",
          "value_usd_k": 170567260,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.092,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 9
        },
        {
          "ticker": "",
          "cusip": "17253J106",
          "name": "CIPHER MINING INC",
          "value_usd_k": 154523813,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.801,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 10
        },
        {
          "ticker": "",
          "cusip": "19247G107",
          "name": "COHERENT CORP",
          "value_usd_k": 88648971,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.607,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 11
        },
        {
          "ticker": "",
          "cusip": "83418M103",
          "name": "SOLARIS ENERGY INFRAS INC",
          "value_usd_k": 85803005,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.555,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 12
        },
        {
          "ticker": "",
          "cusip": "M87915274",
          "name": "TOWER SEMICONDUCTOR LTD",
          "value_usd_k": 84895130,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.539,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 13
        },
        {
          "ticker": "",
          "cusip": "767292105",
          "name": "RIOT PLATFORMS INC",
          "value_usd_k": 78144759,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.416,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 14
        },
        {
          "ticker": "",
          "cusip": "49427F108",
          "name": "KILROY RLTY CORP",
          "value_usd_k": 49616149,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.899,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 15
        },
        {
          "ticker": "",
          "cusip": "44812J104",
          "name": "HUT 8 CORP",
          "value_usd_k": 39517588,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.716,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 16
        },
        {
          "ticker": "",
          "cusip": "G96115103",
          "name": "WHITEFIBER INC",
          "value_usd_k": 27770080,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.503,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 17
        },
        {
          "ticker": "",
          "cusip": "73933G202",
          "name": "POWER SOLUTIONS INTL INC",
          "value_usd_k": 24701622,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.448,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 18
        },
        {
          "ticker": "",
          "cusip": "G11448100",
          "name": "BITDEER TECHNOLOGIES GROUP",
          "value_usd_k": 20043480,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.363,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 19
        },
        {
          "ticker": "",
          "cusip": "18452B209",
          "name": "CLEANSPARK INC",
          "value_usd_k": 16600848,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.301,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 20
        },
        {
          "ticker": "",
          "cusip": "09173B107",
          "name": "BITFARMS LTD",
          "value_usd_k": 16208185,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.294,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 21
        },
        {
          "ticker": "",
          "cusip": "53115L104",
          "name": "LIBERTY ENERGY INC",
          "value_usd_k": 10470512,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.19,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 22
        },
        {
          "ticker": "",
          "cusip": "456788108",
          "name": "INFOSYS LTD",
          "value_usd_k": 8910000,
          "shares": 0,
          "putCall": "Put",
          "port_weight_pct": 0.162,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 23
        },
        {
          "ticker": "",
          "cusip": "74347M108",
          "name": "PROPETRO HLDG CORP",
          "value_usd_k": 8656953,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.157,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 24
        },
        {
          "ticker": "",
          "cusip": "05614L209",
          "name": "BABCOCK & WILCOX ENTERPRISES",
          "value_usd_k": 8583726,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.156,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 25
        }
      ]
    },
    "Yale University": {
      "cik": "0000938582",
      "reported_aum_k": 2054861,
      "filing_date": "2025-11-14",
      "is_amendment": false,
      "position_count": 4,
      "positions": [
        {
          "ticker": "",
          "cusip": "046428715",
          "name": "ISHARES TR CORE S&P TTL STK",
          "value_usd_k": 911769,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 44.371,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 1
        },
        {
          "ticker": "",
          "cusip": "092337R10",
          "name": "VERA THERAPEUTICS INC",
          "value_usd_k": 662859,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 32.258,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 2
        },
        {
          "ticker": "",
          "cusip": "005577W20",
          "name": "BRP INC",
          "value_usd_k": 466426,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 22.699,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 3
        },
        {
          "ticker": "",
          "cusip": "076680V10",
          "name": "RING ENERGY INC",
          "value_usd_k": 13807,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.672,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 4
        }
      ]
    },
    "Gates Foundation Trust": {
      "cik": "0001166559",
      "reported_aum_k": 35360093535,
      "filing_date": "2026-02-17",
      "is_amendment": false,
      "position_count": 23,
      "positions": [
        {
          "ticker": "",
          "cusip": "084670702",
          "name": "BERKSHIRE HATHAWAY INC DEL",
          "value_usd_k": 9754809925,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 27.587,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 1
        },
        {
          "ticker": "",
          "cusip": "94106L109",
          "name": "WASTE MGMT INC DEL",
          "value_usd_k": 6357164720,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 17.978,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 2
        },
        {
          "ticker": "",
          "cusip": "136375102",
          "name": "CANADIAN NATL RY CO",
          "value_usd_k": 5123077796,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 14.488,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 3
        },
        {
          "ticker": "",
          "cusip": "594918104",
          "name": "MICROSOFT CORP",
          "value_usd_k": 3719621529,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 10.519,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 4
        },
        {
          "ticker": "",
          "cusip": "149123101",
          "name": "CATERPILLAR INC",
          "value_usd_k": 3639794852,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 10.294,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 5
        },
        {
          "ticker": "",
          "cusip": "244199105",
          "name": "DEERE & CO",
          "value_usd_k": 1656208475,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 4.684,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 6
        },
        {
          "ticker": "",
          "cusip": "278865100",
          "name": "ECOLAB INC",
          "value_usd_k": 1369840911,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.874,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 7
        },
        {
          "ticker": "",
          "cusip": "931142103",
          "name": "WALMART INC",
          "value_usd_k": 934783043,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.644,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 8
        },
        {
          "ticker": "",
          "cusip": "31428X106",
          "name": "FEDEX CORP",
          "value_usd_k": 688746807,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.948,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 9
        },
        {
          "ticker": "",
          "cusip": "191241108",
          "name": "COCA-COLA FEMSA SAB DE CV",
          "value_usd_k": 588596036,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.665,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 10
        },
        {
          "ticker": "",
          "cusip": "94106B101",
          "name": "WASTE CONNECTIONS INC",
          "value_usd_k": 357589728,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.011,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 11
        },
        {
          "ticker": "",
          "cusip": "22266T109",
          "name": "COUPANG INC",
          "value_usd_k": 218161382,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.617,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 12
        },
        {
          "ticker": "",
          "cusip": "55825T103",
          "name": "MADISON SQUARE GRDN SPRT COR",
          "value_usd_k": 153225812,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.433,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 13
        },
        {
          "ticker": "",
          "cusip": "80810D103",
          "name": "SCHRODINGER INC",
          "value_usd_k": 124832152,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.353,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 14
        },
        {
          "ticker": "",
          "cusip": "955306105",
          "name": "WEST PHARMACEUTICAL SVSC INC",
          "value_usd_k": 122299730,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.346,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 15
        },
        {
          "ticker": "",
          "cusip": "693718108",
          "name": "PACCAR INC",
          "value_usd_k": 109510000,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.31,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 16
        },
        {
          "ticker": "",
          "cusip": "03524A108",
          "name": "ANHEUSER BUSCH INBEV SA/NV",
          "value_usd_k": 109060120,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.308,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 17
        },
        {
          "ticker": "",
          "cusip": "580135101",
          "name": "MCDONALDS CORP",
          "value_usd_k": 102355487,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.289,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 18
        },
        {
          "ticker": "",
          "cusip": "235851102",
          "name": "DANAHER CORPORATION",
          "value_usd_k": 85387160,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.241,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 19
        },
        {
          "ticker": "",
          "cusip": "500754106",
          "name": "KRAFT HEINZ CO",
          "value_usd_k": 59960550,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.17,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 20
        },
        {
          "ticker": "",
          "cusip": "440452100",
          "name": "HORMEL FOODS CORP",
          "value_usd_k": 49421373,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.14,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 21
        },
        {
          "ticker": "",
          "cusip": "H5919C104",
          "name": "ON HLDG AG",
          "value_usd_k": 23240000,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.066,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 22
        },
        {
          "ticker": "",
          "cusip": "92338C103",
          "name": "VERALTO CORP",
          "value_usd_k": 12405947,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.035,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 23
        }
      ]
    },
    "Harvard Management Co": {
      "cik": "0001082621",
      "reported_aum_k": 2079274080,
      "filing_date": "2026-02-13",
      "is_amendment": false,
      "position_count": 19,
      "positions": [
        {
          "ticker": "",
          "cusip": "46438F101",
          "name": "ISHARES BITCOIN TRUST ETF",
          "value_usd_k": 265806836,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 12.784,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 1
        },
        {
          "ticker": "",
          "cusip": "02079K305",
          "name": "ALPHABET INC",
          "value_usd_k": 252872700,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 12.162,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 2
        },
        {
          "ticker": "",
          "cusip": "78463V107",
          "name": "SPDR GOLD TR",
          "value_usd_k": 248268400,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 11.94,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 3
        },
        {
          "ticker": "",
          "cusip": "594918104",
          "name": "MICROSOFT CORP",
          "value_usd_k": 236818074,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 11.389,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 4
        },
        {
          "ticker": "",
          "cusip": "09857L108",
          "name": "BOOKING HOLDINGS INC",
          "value_usd_k": 180249697,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 8.669,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 5
        },
        {
          "ticker": "",
          "cusip": "023135106",
          "name": "AMAZON COM INC",
          "value_usd_k": 156921823,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 7.547,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 6
        },
        {
          "ticker": "",
          "cusip": "907818108",
          "name": "UNION PAC CORP",
          "value_usd_k": 141390418,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 6.8,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 7
        },
        {
          "ticker": "",
          "cusip": "30303M102",
          "name": "META PLATFORMS INC",
          "value_usd_k": 119981259,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 5.77,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 8
        },
        {
          "ticker": "",
          "cusip": "11135F101",
          "name": "BROADCOM INC",
          "value_usd_k": 111363213,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 5.356,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 9
        },
        {
          "ticker": "",
          "cusip": "874039100",
          "name": "TAIWAN SEMICONDUCTOR MFG LTD",
          "value_usd_k": 93232236,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 4.484,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 10
        },
        {
          "ticker": "",
          "cusip": "46438R105",
          "name": "ISHARES ETHEREUM TR",
          "value_usd_k": 86824287,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 4.176,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 11
        },
        {
          "ticker": "",
          "cusip": "67066G104",
          "name": "NVIDIA CORPORATION",
          "value_usd_k": 76519272,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.68,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 12
        },
        {
          "ticker": "",
          "cusip": "98954M200",
          "name": "ZILLOW GROUP INC",
          "value_usd_k": 45164710,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.172,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 13
        },
        {
          "ticker": "",
          "cusip": "G3643J108",
          "name": "FLUTTER ENTMT PLC",
          "value_usd_k": 24833034,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.194,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 14
        },
        {
          "ticker": "",
          "cusip": "98954M101",
          "name": "ZILLOW GROUP INC",
          "value_usd_k": 20545554,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.988,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 15
        },
        {
          "ticker": "",
          "cusip": "G5279N105",
          "name": "KLARNA GROUP PLC",
          "value_usd_k": 13274402,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.638,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 16
        },
        {
          "ticker": "",
          "cusip": "88025U109",
          "name": "10X GENOMICS INC",
          "value_usd_k": 2772700,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.133,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 17
        },
        {
          "ticker": "",
          "cusip": "316841105",
          "name": "FIGMA INC",
          "value_usd_k": 1885466,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.091,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 18
        },
        {
          "ticker": "",
          "cusip": "74623V111",
          "name": "PURECYCLE TECHNOLOGIES INC",
          "value_usd_k": 549999,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.026,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 19
        }
      ]
    },
    "Brown University": {
      "cik": "0001664741",
      "reported_aum_k": 142564226,
      "filing_date": "2026-01-30",
      "is_amendment": false,
      "position_count": 10,
      "positions": [
        {
          "ticker": "",
          "cusip": "69121K104",
          "name": "Blue Owl Capital Corporation",
          "value_usd_k": 40085047,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 28.117,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 1
        },
        {
          "ticker": "",
          "cusip": "09581B103",
          "name": "Blue Owl Capital Inc.",
          "value_usd_k": 38393051,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 26.93,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 2
        },
        {
          "ticker": "",
          "cusip": "86384P109",
          "name": "StubHub Hldgs Inc.",
          "value_usd_k": 27904610,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 19.573,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 3
        },
        {
          "ticker": "",
          "cusip": "78463V107",
          "name": "SPDR GOLD TR",
          "value_usd_k": 15654245,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 10.98,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 4
        },
        {
          "ticker": "",
          "cusip": "46438F101",
          "name": "ISHARES Bitcoin Trust ETF",
          "value_usd_k": 10550625,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 7.401,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 5
        },
        {
          "ticker": "",
          "cusip": "N0731H103",
          "name": "ATAI Beckley N.V.",
          "value_usd_k": 2938665,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.061,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 6
        },
        {
          "ticker": "",
          "cusip": "16935C109",
          "name": "Chime Financial Inc.",
          "value_usd_k": 2587602,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.815,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 7
        },
        {
          "ticker": "",
          "cusip": "G7S53R104",
          "name": "ProKidney Corp.",
          "value_usd_k": 2240000,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.571,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 8
        },
        {
          "ticker": "",
          "cusip": "20451W101",
          "name": "Compass Pathways PLC",
          "value_usd_k": 1477980,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.037,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 9
        },
        {
          "ticker": "",
          "cusip": "74743L100",
          "name": "Qnity Electronics Inc.",
          "value_usd_k": 732401,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.514,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 10
        }
      ]
    },
    "Duke University": {
      "error": "no_filing",
      "positions": []
    },
    "TCI Fund (Chris Hohn)": {
      "cik": "0001649339",
      "reported_aum_k": 1381198076,
      "filing_date": "2025-11-03",
      "is_amendment": false,
      "position_count": 8,
      "positions": [
        {
          "ticker": "",
          "cusip": "69608A108",
          "name": "PALANTIR TECHNOLOGIES INC",
          "value_usd_k": 912100000,
          "shares": 0,
          "putCall": "Put",
          "port_weight_pct": 66.037,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 1
        },
        {
          "ticker": "",
          "cusip": "67066G104",
          "name": "NVIDIA CORPORATION",
          "value_usd_k": 186580000,
          "shares": 0,
          "putCall": "Put",
          "port_weight_pct": 13.509,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 2
        },
        {
          "ticker": "",
          "cusip": "717081103",
          "name": "PFIZER INC",
          "value_usd_k": 152880000,
          "shares": 0,
          "putCall": "Call",
          "port_weight_pct": 11.069,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 3
        },
        {
          "ticker": "",
          "cusip": "406216101",
          "name": "HALLIBURTON CO",
          "value_usd_k": 61500000,
          "shares": 0,
          "putCall": "Call",
          "port_weight_pct": 4.453,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 4
        },
        {
          "ticker": "",
          "cusip": "60855R100",
          "name": "MOLINA HEALTHCARE INC",
          "value_usd_k": 23920000,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.732,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 5
        },
        {
          "ticker": "",
          "cusip": "550021109",
          "name": "LULULEMON ATHLETICA INC",
          "value_usd_k": 17793000,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.288,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 6
        },
        {
          "ticker": "",
          "cusip": "78442P106",
          "name": "SLM CORP",
          "value_usd_k": 13287895,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.962,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 7
        },
        {
          "ticker": "",
          "cusip": "116794207",
          "name": "BRUKER CORP",
          "value_usd_k": 13137181,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.951,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 8
        }
      ]
    },
    "Pershing Square (Ackman)": {
      "cik": "0001336528",
      "reported_aum_k": 15526737802,
      "filing_date": "2026-02-17",
      "is_amendment": false,
      "position_count": 11,
      "positions": [
        {
          "ticker": "",
          "cusip": "11271J107",
          "name": "BROOKFIELD CORP",
          "value_usd_k": 2817787754,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 18.148,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 1
        },
        {
          "ticker": "",
          "cusip": "90353T100",
          "name": "UBER TECHNOLOGIES INC",
          "value_usd_k": 2468273945,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 15.897,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 2
        },
        {
          "ticker": "",
          "cusip": "023135106",
          "name": "AMAZON COM INC",
          "value_usd_k": 2217677936,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 14.283,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 3
        },
        {
          "ticker": "",
          "cusip": "02079K107",
          "name": "ALPHABET INC",
          "value_usd_k": 1934222720,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 12.457,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 4
        },
        {
          "ticker": "",
          "cusip": "30303M102",
          "name": "META PLATFORMS INC",
          "value_usd_k": 1764796161,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 11.366,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 5
        },
        {
          "ticker": "",
          "cusip": "76131D103",
          "name": "RESTAURANT BRANDS INTL INC",
          "value_usd_k": 1560199922,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 10.048,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 6
        },
        {
          "ticker": "",
          "cusip": "44267T102",
          "name": "HOWARD HUGHES HOLDINGS INC",
          "value_usd_k": 1503829145,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 9.685,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 7
        },
        {
          "ticker": "",
          "cusip": "43300A203",
          "name": "HILTON WORLDWIDE HLDGS INC",
          "value_usd_k": 869983734,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 5.603,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 8
        },
        {
          "ticker": "",
          "cusip": "02079K305",
          "name": "ALPHABET INC",
          "value_usd_k": 212306961,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.367,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 9
        },
        {
          "ticker": "",
          "cusip": "812215200",
          "name": "SEAPORT ENTMT GROUP INC",
          "value_usd_k": 99320131,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.64,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 10
        },
        {
          "ticker": "",
          "cusip": "42806J700",
          "name": "HERTZ GLOBAL HLDGS INC",
          "value_usd_k": 78339393,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.505,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 11
        }
      ]
    },
    "Tiger Global (Coleman)": {
      "cik": "0001167483",
      "reported_aum_k": 29714313270,
      "filing_date": "2026-02-17",
      "is_amendment": false,
      "position_count": 54,
      "positions": [
        {
          "ticker": "",
          "cusip": "02079K305",
          "name": "ALPHABET INC",
          "value_usd_k": 3327628826,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 11.199,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 1
        },
        {
          "ticker": "",
          "cusip": "594918104",
          "name": "MICROSOFT CORP",
          "value_usd_k": 2649148004,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 8.915,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 2
        },
        {
          "ticker": "",
          "cusip": "023135106",
          "name": "AMAZON COM INC",
          "value_usd_k": 2310826501,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 7.777,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 3
        },
        {
          "ticker": "",
          "cusip": "67066G104",
          "name": "NVIDIA CORPORATION",
          "value_usd_k": 2053691748,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 6.911,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 4
        },
        {
          "ticker": "",
          "cusip": "81141R100",
          "name": "SEA LTD",
          "value_usd_k": 1966598071,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 6.618,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 5
        },
        {
          "ticker": "",
          "cusip": "30303M102",
          "name": "META PLATFORMS INC",
          "value_usd_k": 1815653455,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 6.11,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 6
        },
        {
          "ticker": "",
          "cusip": "874054109",
          "name": "TAKE-TWO INTERACTIVE SOFTWAR",
          "value_usd_k": 1495024714,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 5.031,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 7
        },
        {
          "ticker": "",
          "cusip": "874039100",
          "name": "TAIWAN SEMICONDUCTOR MFG LTD",
          "value_usd_k": 1132134294,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.81,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 8
        },
        {
          "ticker": "",
          "cusip": "11135F101",
          "name": "BROADCOM INC",
          "value_usd_k": 995250005,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.349,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 9
        },
        {
          "ticker": "",
          "cusip": "03769M106",
          "name": "APOLLO GLOBAL MGMT INC",
          "value_usd_k": 898886641,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.025,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 10
        },
        {
          "ticker": "",
          "cusip": "75734B100",
          "name": "REDDIT INC",
          "value_usd_k": 883600741,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.974,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 11
        },
        {
          "ticker": "",
          "cusip": "03831W108",
          "name": "APPLOVIN CORP",
          "value_usd_k": 871238479,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.932,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 12
        },
        {
          "ticker": "",
          "cusip": "G3643J108",
          "name": "FLUTTER ENTMT PLC",
          "value_usd_k": 860921672,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.897,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 13
        },
        {
          "ticker": "",
          "cusip": "L8681T102",
          "name": "SPOTIFY TECHNOLOGY S A",
          "value_usd_k": 732543017,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.465,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 14
        },
        {
          "ticker": "",
          "cusip": "512807306",
          "name": "LAM RESEARCH CORP",
          "value_usd_k": 667677148,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.247,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 15
        },
        {
          "ticker": "",
          "cusip": "36828A101",
          "name": "GE VERNOVA INC",
          "value_usd_k": 635919689,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.14,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 16
        },
        {
          "ticker": "",
          "cusip": "22266T109",
          "name": "COUPANG INC",
          "value_usd_k": 619644640,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.085,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 17
        },
        {
          "ticker": "",
          "cusip": "922475108",
          "name": "VEEVA SYS INC",
          "value_usd_k": 540328215,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.818,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 18
        },
        {
          "ticker": "",
          "cusip": "219948106",
          "name": "CORPAY INC",
          "value_usd_k": 527273296,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.774,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 19
        },
        {
          "ticker": "",
          "cusip": "G4124C109",
          "name": "GRAB HOLDINGS LIMITED",
          "value_usd_k": 463689702,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.56,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 20
        },
        {
          "ticker": "",
          "cusip": "852234103",
          "name": "BLOCK INC",
          "value_usd_k": 414287436,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.394,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 21
        },
        {
          "ticker": "",
          "cusip": "98954M200",
          "name": "ZILLOW GROUP INC",
          "value_usd_k": 413205607,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.391,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 22
        },
        {
          "ticker": "",
          "cusip": "16935C109",
          "name": "CHIME FINL INC",
          "value_usd_k": 357225199,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.202,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 23
        },
        {
          "ticker": "",
          "cusip": "98980G102",
          "name": "ZSCALER INC",
          "value_usd_k": 355320969,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.196,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 24
        },
        {
          "ticker": "",
          "cusip": "81762P102",
          "name": "SERVICENOW INC",
          "value_usd_k": 325818279,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.097,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 25
        },
        {
          "ticker": "",
          "cusip": "531229755",
          "name": "LIBERTY MEDIA CORP DEL",
          "value_usd_k": 264203820,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.889,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 26
        },
        {
          "ticker": "",
          "cusip": "038222105",
          "name": "APPLIED MATLS INC",
          "value_usd_k": 230057448,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.774,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 27
        },
        {
          "ticker": "",
          "cusip": "64110L106",
          "name": "NETFLIX INC",
          "value_usd_k": 228680640,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.77,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 28
        },
        {
          "ticker": "",
          "cusip": "98138H101",
          "name": "WORKDAY INC",
          "value_usd_k": 214780000,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.723,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 29
        },
        {
          "ticker": "",
          "cusip": "947002101",
          "name": "WEALTHFRONT CORP",
          "value_usd_k": 205981958,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.693,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 30
        },
        {
          "ticker": "",
          "cusip": "G6683N103",
          "name": "NU HLDGS LTD",
          "value_usd_k": 184684970,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.622,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 31
        },
        {
          "ticker": "",
          "cusip": "74275K108",
          "name": "PROCORE TECHNOLOGIES INC",
          "value_usd_k": 170175230,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.573,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 32
        },
        {
          "ticker": "",
          "cusip": "22160N109",
          "name": "COSTAR GROUP INC",
          "value_usd_k": 151902489,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.511,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 33
        },
        {
          "ticker": "",
          "cusip": "91324P102",
          "name": "UNITEDHEALTH GROUP INC",
          "value_usd_k": 138713873,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.467,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 34
        },
        {
          "ticker": "",
          "cusip": "N14506104",
          "name": "ELASTIC N V",
          "value_usd_k": 127546408,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.429,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 35
        },
        {
          "ticker": "",
          "cusip": "433313103",
          "name": "HINGE HEALTH INC",
          "value_usd_k": 83877134,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.282,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 36
        },
        {
          "ticker": "",
          "cusip": "824348106",
          "name": "SHERWIN WILLIAMS CO",
          "value_usd_k": 83302604,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.28,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 37
        },
        {
          "ticker": "",
          "cusip": "98954M101",
          "name": "ZILLOW GROUP INC",
          "value_usd_k": 69849303,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.235,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 38
        },
        {
          "ticker": "",
          "cusip": "G9572D103",
          "name": "WEBULL CORP",
          "value_usd_k": 52246544,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.176,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 39
        },
        {
          "ticker": "",
          "cusip": "00138L108",
          "name": "ATRENEW INC",
          "value_usd_k": 52105455,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.175,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 40
        },
        {
          "ticker": "",
          "cusip": "732908108",
          "name": "PONY AI INC",
          "value_usd_k": 42050000,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.142,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 41
        },
        {
          "ticker": "",
          "cusip": "172573107",
          "name": "CIRCLE INTERNET GROUP INC",
          "value_usd_k": 39650000,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.133,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 42
        },
        {
          "ticker": "",
          "cusip": "90353T100",
          "name": "UBER TECHNOLOGIES INC",
          "value_usd_k": 12352754,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.042,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 43
        },
        {
          "ticker": "",
          "cusip": "47215P106",
          "name": "JD.COM INC",
          "value_usd_k": 9881668,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.033,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 44
        },
        {
          "ticker": "",
          "cusip": "64119N608",
          "name": "NETSKOPE INC",
          "value_usd_k": 8770000,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.03,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 45
        },
        {
          "ticker": "",
          "cusip": "349381103",
          "name": "FIGURE TECHNOLOGY SOLUTIO",
          "value_usd_k": 8168000,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.027,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 46
        },
        {
          "ticker": "",
          "cusip": "25809K105",
          "name": "DOORDASH INC",
          "value_usd_k": 5738324,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.019,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 47
        },
        {
          "ticker": "",
          "cusip": "G5279N105",
          "name": "KLARNA GROUP PLC",
          "value_usd_k": 5059250,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.017,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 48
        },
        {
          "ticker": "",
          "cusip": "G16910120",
          "name": "BULLISH",
          "value_usd_k": 3787000,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.013,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 49
        },
        {
          "ticker": "",
          "cusip": "G32089107",
          "name": "ETORO GROUP LTD",
          "value_usd_k": 2810400,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.009,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 50
        },
        {
          "ticker": "",
          "cusip": "316841105",
          "name": "FIGMA INC",
          "value_usd_k": 2242200,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.008,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 51
        },
        {
          "ticker": "",
          "cusip": "G00894108",
          "name": "ACCELERANT HOLDINGS",
          "value_usd_k": 1226250,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.004,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 52
        },
        {
          "ticker": "",
          "cusip": "36866J105",
          "name": "GEMINI SPACE STA INC",
          "value_usd_k": 694400,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.002,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 53
        },
        {
          "ticker": "",
          "cusip": "55318A108",
          "name": "MNTN INC",
          "value_usd_k": 238800,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.001,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 54
        }
      ]
    },
    "Coatue (Laffont)": {
      "error": "no_filing",
      "positions": []
    },
    "D1 Capital (Sundheim)": {
      "cik": "0001747057",
      "reported_aum_k": 10702130196,
      "filing_date": "2026-02-17",
      "is_amendment": false,
      "position_count": 42,
      "positions": [
        {
          "ticker": "",
          "cusip": "565394103",
          "name": "MAPLEBEAR INC",
          "value_usd_k": 1014670310,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 9.481,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 1
        },
        {
          "ticker": "",
          "cusip": "184496107",
          "name": "CLEAN HARBORS INC",
          "value_usd_k": 652295691,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 6.095,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 2
        },
        {
          "ticker": "",
          "cusip": "34354P105",
          "name": "FLOWSERVE CORP",
          "value_usd_k": 531284427,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 4.964,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 3
        },
        {
          "ticker": "",
          "cusip": "G4253H101",
          "name": "JAMES HARDIE INDS PLC",
          "value_usd_k": 506356295,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 4.731,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 4
        },
        {
          "ticker": "",
          "cusip": "75734B100",
          "name": "REDDIT INC",
          "value_usd_k": 487001892,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 4.551,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 5
        },
        {
          "ticker": "",
          "cusip": "58733R102",
          "name": "MERCADOLIBRE INC",
          "value_usd_k": 452163099,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 4.225,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 6
        },
        {
          "ticker": "",
          "cusip": "03831W108",
          "name": "APPLOVIN CORP",
          "value_usd_k": 450975597,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 4.214,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 7
        },
        {
          "ticker": "",
          "cusip": "81141R100",
          "name": "SEA LTD",
          "value_usd_k": 444586936,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 4.154,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 8
        },
        {
          "ticker": "",
          "cusip": "499049104",
          "name": "KNIGHT-SWIFT TRANSN HLDGS IN",
          "value_usd_k": 403512672,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.77,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 9
        },
        {
          "ticker": "",
          "cusip": "49427F108",
          "name": "KILROY RLTY CORP",
          "value_usd_k": 388655922,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.632,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 10
        },
        {
          "ticker": "",
          "cusip": "912008109",
          "name": "US FOODS HLDG CORP",
          "value_usd_k": 322631262,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.015,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 11
        },
        {
          "ticker": "",
          "cusip": "808513105",
          "name": "SCHWAB CHARLES CORP",
          "value_usd_k": 315195069,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.945,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 12
        },
        {
          "ticker": "",
          "cusip": "824348106",
          "name": "SHERWIN WILLIAMS CO",
          "value_usd_k": 311757040,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.913,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 13
        },
        {
          "ticker": "",
          "cusip": "023135106",
          "name": "AMAZON COM INC",
          "value_usd_k": 309419519,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.891,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 14
        },
        {
          "ticker": "",
          "cusip": "983793100",
          "name": "XPO INC",
          "value_usd_k": 276582558,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.584,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 15
        },
        {
          "ticker": "",
          "cusip": "53566V106",
          "name": "LINEAGE INC",
          "value_usd_k": 259078015,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.421,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 16
        },
        {
          "ticker": "",
          "cusip": "254687106",
          "name": "DISNEY WALT CO",
          "value_usd_k": 252000550,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.355,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 17
        },
        {
          "ticker": "",
          "cusip": "30303M102",
          "name": "META PLATFORMS INC",
          "value_usd_k": 248300775,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.32,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 18
        },
        {
          "ticker": "",
          "cusip": "L8681T102",
          "name": "SPOTIFY TECHNOLOGY S A",
          "value_usd_k": 229903089,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.148,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 19
        },
        {
          "ticker": "",
          "cusip": "67066G104",
          "name": "NVIDIA CORPORATION",
          "value_usd_k": 214421102,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.004,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 20
        },
        {
          "ticker": "",
          "cusip": "29362U104",
          "name": "ENTEGRIS INC",
          "value_usd_k": 210070298,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.963,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 21
        },
        {
          "ticker": "",
          "cusip": "G54950103",
          "name": "LINDE PLC",
          "value_usd_k": 206290893,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.928,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 22
        },
        {
          "ticker": "",
          "cusip": "278768106",
          "name": "ECHOSTAR CORP",
          "value_usd_k": 201725460,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.885,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 23
        },
        {
          "ticker": "",
          "cusip": "14040H105",
          "name": "CAPITAL ONE FINL CORP",
          "value_usd_k": 200724976,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.876,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 24
        },
        {
          "ticker": "",
          "cusip": "871607107",
          "name": "SYNOPSYS INC",
          "value_usd_k": 177718562,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.661,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 25
        },
        {
          "ticker": "",
          "cusip": "03769M106",
          "name": "APOLLO GLOBAL MGMT INC",
          "value_usd_k": 167776840,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.568,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 26
        },
        {
          "ticker": "",
          "cusip": "G51502105",
          "name": "JOHNSON CTLS INTL PLC",
          "value_usd_k": 162199699,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.516,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 27
        },
        {
          "ticker": "",
          "cusip": "36266G107",
          "name": "GE HEALTHCARE TECHNOLOGIES I",
          "value_usd_k": 144624554,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.351,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 28
        },
        {
          "ticker": "",
          "cusip": "21874C102",
          "name": "CORE & MAIN INC",
          "value_usd_k": 137605594,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.286,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 29
        },
        {
          "ticker": "",
          "cusip": "052769106",
          "name": "AUTODESK INC",
          "value_usd_k": 134879325,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.26,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 30
        },
        {
          "ticker": "",
          "cusip": "235851102",
          "name": "DANAHER CORPORATION",
          "value_usd_k": 128132705,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.197,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 31
        },
        {
          "ticker": "",
          "cusip": "040413205",
          "name": "ARISTA NETWORKS INC",
          "value_usd_k": 126107072,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.178,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 32
        },
        {
          "ticker": "",
          "cusip": "11135F101",
          "name": "BROADCOM INC",
          "value_usd_k": 124093463,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.16,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 33
        },
        {
          "ticker": "",
          "cusip": "00187Y100",
          "name": "API GROUP CORP",
          "value_usd_k": 84347996,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.788,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 34
        },
        {
          "ticker": "",
          "cusip": "882508104",
          "name": "TEXAS INSTRS INC",
          "value_usd_k": 84284565,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.788,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 35
        },
        {
          "ticker": "",
          "cusip": "74743L100",
          "name": "QNITY ELECTRONICS INC",
          "value_usd_k": 76517073,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.715,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 36
        },
        {
          "ticker": "",
          "cusip": "060505104",
          "name": "BANK AMERICA CORP",
          "value_usd_k": 68488585,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.64,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 37
        },
        {
          "ticker": "",
          "cusip": "00827B106",
          "name": "AFFIRM HLDGS INC",
          "value_usd_k": 61032600,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.57,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 38
        },
        {
          "ticker": "",
          "cusip": "65473P105",
          "name": "NISOURCE INC",
          "value_usd_k": 50720443,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.474,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 39
        },
        {
          "ticker": "",
          "cusip": "025537101",
          "name": "AMERICAN ELEC PWR CO INC",
          "value_usd_k": 39678171,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.371,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 40
        },
        {
          "ticker": "",
          "cusip": "44916Y106",
          "name": "HYPERLIQUID STRATEGIES INC",
          "value_usd_k": 28480000,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.266,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 41
        },
        {
          "ticker": "",
          "cusip": "58507V107",
          "name": "MEDLINE INC",
          "value_usd_k": 15839502,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.148,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 42
        }
      ]
    },
    "Viking Global (Halvorsen)": {
      "cik": "0001103804",
      "reported_aum_k": 37677848898,
      "filing_date": "2026-02-17",
      "is_amendment": false,
      "position_count": 76,
      "positions": [
        {
          "ticker": "",
          "cusip": "594918104",
          "name": "MICROSOFT CORP",
          "value_usd_k": 1556116024,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 4.13,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 1
        },
        {
          "ticker": "",
          "cusip": "693475105",
          "name": "PNC FINL SVCS GROUP INC",
          "value_usd_k": 1521029704,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 4.037,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 2
        },
        {
          "ticker": "",
          "cusip": "874039100",
          "name": "TAIWAN SEMICONDUCTOR MFG LTD",
          "value_usd_k": 1493587745,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.964,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 3
        },
        {
          "ticker": "",
          "cusip": "92826C839",
          "name": "VISA INC",
          "value_usd_k": 1397300536,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.709,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 4
        },
        {
          "ticker": "",
          "cusip": "808513105",
          "name": "SCHWAB CHARLES CORP",
          "value_usd_k": 1386041939,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.679,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 5
        },
        {
          "ticker": "",
          "cusip": "254687106",
          "name": "DISNEY WALT CO",
          "value_usd_k": 1273484950,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.38,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 6
        },
        {
          "ticker": "",
          "cusip": "009158106",
          "name": "AIR PRODS & CHEMS INC",
          "value_usd_k": 1181381549,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 3.135,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 7
        },
        {
          "ticker": "",
          "cusip": "580135101",
          "name": "MCDONALDS CORP",
          "value_usd_k": 1106140680,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.936,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 8
        },
        {
          "ticker": "",
          "cusip": "10806X102",
          "name": "BRIDGEBIO PHARMA INC",
          "value_usd_k": 1100992012,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.922,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 9
        },
        {
          "ticker": "",
          "cusip": "34959J108",
          "name": "FORTIVE CORP",
          "value_usd_k": 1061592511,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.818,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 10
        },
        {
          "ticker": "",
          "cusip": "824348106",
          "name": "SHERWIN WILLIAMS CO",
          "value_usd_k": 1027922961,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.728,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 11
        },
        {
          "ticker": "",
          "cusip": "097023105",
          "name": "BOEING CO",
          "value_usd_k": 858294249,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.278,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 12
        },
        {
          "ticker": "",
          "cusip": "02079K305",
          "name": "ALPHABET INC",
          "value_usd_k": 834543136,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.215,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 13
        },
        {
          "ticker": "",
          "cusip": "007903107",
          "name": "ADVANCED MICRO DEVICES INC",
          "value_usd_k": 801427625,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.127,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 14
        },
        {
          "ticker": "",
          "cusip": "45866F104",
          "name": "INTERCONTINENTAL EXCHANGE IN",
          "value_usd_k": 777925786,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.065,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 15
        },
        {
          "ticker": "",
          "cusip": "88160R101",
          "name": "TESLA INC",
          "value_usd_k": 764407523,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.029,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 16
        },
        {
          "ticker": "",
          "cusip": "872590104",
          "name": "T-MOBILE US INC",
          "value_usd_k": 762256423,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.023,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 17
        },
        {
          "ticker": "",
          "cusip": "023135106",
          "name": "AMAZON COM INC",
          "value_usd_k": 721731669,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.916,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 18
        },
        {
          "ticker": "",
          "cusip": "14040H105",
          "name": "CAPITAL ONE FINL CORP",
          "value_usd_k": 715523548,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.899,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 19
        },
        {
          "ticker": "",
          "cusip": "G51502105",
          "name": "JOHNSON CTLS INTL PLC",
          "value_usd_k": 708765163,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.881,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 20
        },
        {
          "ticker": "",
          "cusip": "26142V105",
          "name": "DRAFTKINGS INC NEW",
          "value_usd_k": 658872168,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.749,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 21
        },
        {
          "ticker": "",
          "cusip": "46625H100",
          "name": "JPMORGAN CHASE & CO.",
          "value_usd_k": 614145520,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.63,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 22
        },
        {
          "ticker": "",
          "cusip": "778296103",
          "name": "ROSS STORES INC",
          "value_usd_k": 570589667,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.514,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 23
        },
        {
          "ticker": "",
          "cusip": "37045V100",
          "name": "GENERAL MTRS CO",
          "value_usd_k": 553471645,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.469,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 24
        },
        {
          "ticker": "",
          "cusip": "59522J103",
          "name": "MID-AMER APT CMNTYS INC",
          "value_usd_k": 538977468,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.43,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 25
        },
        {
          "ticker": "",
          "cusip": "133131102",
          "name": "CAMDEN PPTY TR",
          "value_usd_k": 524475610,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.392,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 26
        },
        {
          "ticker": "",
          "cusip": "253393102",
          "name": "DICKS SPORTING GOODS INC",
          "value_usd_k": 509370673,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.352,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 27
        },
        {
          "ticker": "",
          "cusip": "15101Q207",
          "name": "CELESTICA INC",
          "value_usd_k": 502311154,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.333,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 28
        },
        {
          "ticker": "",
          "cusip": "126408103",
          "name": "CSX CORP",
          "value_usd_k": 500885789,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.329,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 29
        },
        {
          "ticker": "",
          "cusip": "00650F109",
          "name": "ADAPTIVE BIOTECHNOLOGIES COR",
          "value_usd_k": 487097818,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.293,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 30
        },
        {
          "ticker": "",
          "cusip": "81141R100",
          "name": "SEA LTD",
          "value_usd_k": 468378996,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.243,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 31
        },
        {
          "ticker": "",
          "cusip": "40412C101",
          "name": "HCA HEALTHCARE INC",
          "value_usd_k": 466477175,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.238,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 32
        },
        {
          "ticker": "",
          "cusip": "883556102",
          "name": "THERMO FISHER SCIENTIFIC INC",
          "value_usd_k": 459612207,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.22,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 33
        },
        {
          "ticker": "",
          "cusip": "758750103",
          "name": "REGAL REXNORD CORPORATION",
          "value_usd_k": 452383261,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.201,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 34
        },
        {
          "ticker": "",
          "cusip": "146869102",
          "name": "CARVANA CO",
          "value_usd_k": 447988157,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.189,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 35
        },
        {
          "ticker": "",
          "cusip": "16679L109",
          "name": "CHEWY INC",
          "value_usd_k": 447386117,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.187,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 36
        },
        {
          "ticker": "",
          "cusip": "00187Y100",
          "name": "API GROUP CORP",
          "value_usd_k": 441425439,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.172,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 37
        },
        {
          "ticker": "",
          "cusip": "N82405106",
          "name": "STELLANTIS N.V",
          "value_usd_k": 434319598,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.153,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 38
        },
        {
          "ticker": "",
          "cusip": "143658300",
          "name": "CARNIVAL CORP",
          "value_usd_k": 429448197,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.14,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 39
        },
        {
          "ticker": "",
          "cusip": "H42097107",
          "name": "UBS GROUP AG",
          "value_usd_k": 425957677,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.131,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 40
        },
        {
          "ticker": "",
          "cusip": "91324P102",
          "name": "UNITEDHEALTH GROUP INC",
          "value_usd_k": 395231790,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.049,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 41
        },
        {
          "ticker": "",
          "cusip": "09061G101",
          "name": "BIOMARIN PHARMACEUTICAL INC",
          "value_usd_k": 358775106,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.952,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 42
        },
        {
          "ticker": "",
          "cusip": "78709Y105",
          "name": "SAIA INC",
          "value_usd_k": 355443795,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.943,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 43
        },
        {
          "ticker": "",
          "cusip": "00510N102",
          "name": "TIC SOLUTIONS INC",
          "value_usd_k": 347379600,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.922,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 44
        },
        {
          "ticker": "",
          "cusip": "H1467J104",
          "name": "CHUBB LIMITED",
          "value_usd_k": 316439429,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.84,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 45
        },
        {
          "ticker": "",
          "cusip": "743315103",
          "name": "PROGRESSIVE CORP",
          "value_usd_k": 303217833,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.805,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 46
        },
        {
          "ticker": "",
          "cusip": "526107107",
          "name": "LENNOX INTL INC",
          "value_usd_k": 301696195,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.801,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 47
        },
        {
          "ticker": "",
          "cusip": "892672106",
          "name": "TRADEWEB MKTS INC",
          "value_usd_k": 297741589,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.79,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 48
        },
        {
          "ticker": "",
          "cusip": "58507V107",
          "name": "MEDLINE INC",
          "value_usd_k": 292284594,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.776,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 49
        },
        {
          "ticker": "",
          "cusip": "G0403H108",
          "name": "AON PLC",
          "value_usd_k": 276534412,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.734,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 50
        },
        {
          "ticker": "",
          "cusip": "363576109",
          "name": "GALLAGHER ARTHUR J & CO",
          "value_usd_k": 269394438,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.715,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 51
        },
        {
          "ticker": "",
          "cusip": "060505104",
          "name": "BANK AMERICA CORP",
          "value_usd_k": 247204595,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.656,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 52
        },
        {
          "ticker": "",
          "cusip": "101137107",
          "name": "BOSTON SCIENTIFIC CORP",
          "value_usd_k": 239310193,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.635,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 53
        },
        {
          "ticker": "",
          "cusip": "253868103",
          "name": "DIGITAL RLTY TR INC",
          "value_usd_k": 233300823,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.619,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 54
        },
        {
          "ticker": "",
          "cusip": "548661107",
          "name": "LOWES COS INC",
          "value_usd_k": 219947566,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.584,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 55
        },
        {
          "ticker": "",
          "cusip": "316841105",
          "name": "FIGMA INC",
          "value_usd_k": 214966740,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.571,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 56
        },
        {
          "ticker": "",
          "cusip": "465562106",
          "name": "ITAU UNIBANCO HLDG S A",
          "value_usd_k": 203319262,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.54,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 57
        },
        {
          "ticker": "",
          "cusip": "G0260P102",
          "name": "AMER SPORTS INC",
          "value_usd_k": 179813732,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.477,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 58
        },
        {
          "ticker": "",
          "cusip": "750940108",
          "name": "RALLIANT CORP",
          "value_usd_k": 161009493,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.427,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 59
        },
        {
          "ticker": "",
          "cusip": "767292105",
          "name": "RIOT PLATFORMS INC",
          "value_usd_k": 157474087,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.418,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 60
        },
        {
          "ticker": "",
          "cusip": "N62509109",
          "name": "NEWAMSTERDAM PHARMA COMPANY",
          "value_usd_k": 147461130,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.391,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 61
        },
        {
          "ticker": "",
          "cusip": "G76279101",
          "name": "ROIVANT SCIENCES LTD",
          "value_usd_k": 139817245,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.371,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 62
        },
        {
          "ticker": "",
          "cusip": "46266C105",
          "name": "IQVIA HLDGS INC",
          "value_usd_k": 139581987,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.37,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 63
        },
        {
          "ticker": "",
          "cusip": "829401108",
          "name": "SIONNA THERAPEUTICS INC",
          "value_usd_k": 131449746,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.349,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 64
        },
        {
          "ticker": "",
          "cusip": "45720N103",
          "name": "INHIBRX BIOSCIENCES INC",
          "value_usd_k": 113578695,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.301,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 65
        },
        {
          "ticker": "",
          "cusip": "N69605108",
          "name": "PHARVARIS N V",
          "value_usd_k": 101379353,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.269,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 66
        },
        {
          "ticker": "",
          "cusip": "22160N109",
          "name": "COSTAR GROUP INC",
          "value_usd_k": 96999214,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.257,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 67
        },
        {
          "ticker": "",
          "cusip": "687604108",
          "name": "ORUKA THERAPEUTICS INC",
          "value_usd_k": 80827374,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.215,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 68
        },
        {
          "ticker": "",
          "cusip": "955306105",
          "name": "WEST PHARMACEUTICAL SVSC INC",
          "value_usd_k": 81174004,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.215,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 69
        },
        {
          "ticker": "",
          "cusip": "34385P108",
          "name": "STANDARD BIOTOOLS INC",
          "value_usd_k": 75073498,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.199,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 70
        },
        {
          "ticker": "",
          "cusip": "574795100",
          "name": "MASIMO CORP",
          "value_usd_k": 66895060,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.178,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 71
        },
        {
          "ticker": "",
          "cusip": "68622P109",
          "name": "ORIC PHARMACEUTICALS INC",
          "value_usd_k": 53764612,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.143,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 72
        },
        {
          "ticker": "",
          "cusip": "89532M101",
          "name": "TREVI THERAPEUTICS INC",
          "value_usd_k": 40047023,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.106,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 73
        },
        {
          "ticker": "",
          "cusip": "37611X209",
          "name": "GINKGO BIOWORKS HOLDINGS INC",
          "value_usd_k": 29725934,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.079,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 74
        },
        {
          "ticker": "",
          "cusip": "713317105",
          "name": "PEPGEN INC",
          "value_usd_k": 22670645,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.06,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 75
        },
        {
          "ticker": "",
          "cusip": "75120L100",
          "name": "RALLYBIO CORP",
          "value_usd_k": 2878037,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.008,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 76
        }
      ]
    },
    "AQR Capital (Asness)": {
      "cik": "0001167557",
      "reported_aum_k": 190628430568,
      "filing_date": "2026-02-17",
      "is_amendment": false,
      "position_count": 3562,
      "positions": [
        {
          "ticker": "",
          "cusip": "67066G104",
          "name": "NVIDIA CORPORATION",
          "value_usd_k": 4893573986,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 2.567,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 1
        },
        {
          "ticker": "",
          "cusip": "037833100",
          "name": "APPLE INC",
          "value_usd_k": 3398663807,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.783,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 2
        },
        {
          "ticker": "",
          "cusip": "594918104",
          "name": "MICROSOFT CORP",
          "value_usd_k": 3030169489,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.59,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 3
        },
        {
          "ticker": "",
          "cusip": "023135106",
          "name": "AMAZON COM INC",
          "value_usd_k": 2059566188,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 1.08,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 4
        },
        {
          "ticker": "",
          "cusip": "11135F101",
          "name": "BROADCOM INC",
          "value_usd_k": 1553362899,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.815,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 5
        },
        {
          "ticker": "",
          "cusip": "02079K107",
          "name": "ALPHABET INC",
          "value_usd_k": 1428764934,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.75,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 6
        },
        {
          "ticker": "",
          "cusip": "02079K305",
          "name": "ALPHABET INC",
          "value_usd_k": 1409890303,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.74,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 7
        },
        {
          "ticker": "",
          "cusip": "110122108",
          "name": "BRISTOL-MYERS SQUIBB CO",
          "value_usd_k": 1391485051,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.73,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 8
        },
        {
          "ticker": "",
          "cusip": "30303M102",
          "name": "META PLATFORMS INC",
          "value_usd_k": 1379634435,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.724,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 9
        },
        {
          "ticker": "",
          "cusip": "931142103",
          "name": "WALMART INC",
          "value_usd_k": 1378513066,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.723,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 10
        },
        {
          "ticker": "",
          "cusip": "H1467J104",
          "name": "CHUBB LIMITED",
          "value_usd_k": 1323975899,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.695,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 11
        },
        {
          "ticker": "",
          "cusip": "15135B101",
          "name": "CENTENE CORP DEL",
          "value_usd_k": 1308518093,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.686,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 12
        },
        {
          "ticker": "",
          "cusip": "049468101",
          "name": "ATLASSIAN CORPORATION",
          "value_usd_k": 1256535354,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.659,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 13
        },
        {
          "ticker": "",
          "cusip": "69331C108",
          "name": "PG&E CORP",
          "value_usd_k": 1202752179,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.631,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 14
        },
        {
          "ticker": "",
          "cusip": "58933Y105",
          "name": "MERCK & CO INC",
          "value_usd_k": 1184107948,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.621,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 15
        },
        {
          "ticker": "",
          "cusip": "281020107",
          "name": "EDISON INTL",
          "value_usd_k": 1097474774,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.576,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 16
        },
        {
          "ticker": "",
          "cusip": "98980L101",
          "name": "ZOOM COMMUNICATIONS INC",
          "value_usd_k": 1052327527,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.552,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 17
        },
        {
          "ticker": "",
          "cusip": "595112103",
          "name": "MICRON TECHNOLOGY INC",
          "value_usd_k": 1008679022,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.529,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 18
        },
        {
          "ticker": "",
          "cusip": "92343E102",
          "name": "VERISIGN INC",
          "value_usd_k": 976700230,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.512,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 19
        },
        {
          "ticker": "",
          "cusip": "040413205",
          "name": "ARISTA NETWORKS INC",
          "value_usd_k": 962639334,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.505,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 20
        },
        {
          "ticker": "",
          "cusip": "88160R101",
          "name": "TESLA INC",
          "value_usd_k": 956875534,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.502,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 21
        },
        {
          "ticker": "",
          "cusip": "30212P303",
          "name": "EXPEDIA GROUP INC",
          "value_usd_k": 954546591,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.501,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 22
        },
        {
          "ticker": "",
          "cusip": "09857L108",
          "name": "BOOKING HOLDINGS INC",
          "value_usd_k": 953132155,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.5,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 23
        },
        {
          "ticker": "",
          "cusip": "199908104",
          "name": "COMFORT SYS USA INC",
          "value_usd_k": 951883354,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.499,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 24
        },
        {
          "ticker": "",
          "cusip": "713448108",
          "name": "PEPSICO INC",
          "value_usd_k": 945119713,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.496,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 25
        },
        {
          "ticker": "",
          "cusip": "369604301",
          "name": "GE AEROSPACE",
          "value_usd_k": 926501962,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.486,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 26
        },
        {
          "ticker": "",
          "cusip": "009066101",
          "name": "AIRBNB INC",
          "value_usd_k": 917845029,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.481,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 27
        },
        {
          "ticker": "",
          "cusip": "37045V100",
          "name": "GENERAL MTRS CO",
          "value_usd_k": 885069707,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.464,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 28
        },
        {
          "ticker": "",
          "cusip": "693475105",
          "name": "PNC FINL SVCS GROUP INC",
          "value_usd_k": 861844295,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.452,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 29
        },
        {
          "ticker": "",
          "cusip": "31428X106",
          "name": "FEDEX CORP",
          "value_usd_k": 844533836,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.443,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 30
        },
        {
          "ticker": "",
          "cusip": "084670702",
          "name": "BERKSHIRE HATHAWAY INC DEL",
          "value_usd_k": 841801787,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.442,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 31
        },
        {
          "ticker": "",
          "cusip": "771049103",
          "name": "ROBLOX CORP",
          "value_usd_k": 832967827,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.437,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 32
        },
        {
          "ticker": "",
          "cusip": "00724F101",
          "name": "ADOBE INC",
          "value_usd_k": 815510282,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.428,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 33
        },
        {
          "ticker": "",
          "cusip": "14040H105",
          "name": "CAPITAL ONE FINL CORP",
          "value_usd_k": 815951311,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.428,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 34
        },
        {
          "ticker": "",
          "cusip": "478160104",
          "name": "JOHNSON & JOHNSON",
          "value_usd_k": 802183859,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.421,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 35
        },
        {
          "ticker": "",
          "cusip": "69608A108",
          "name": "PALANTIR TECHNOLOGIES INC",
          "value_usd_k": 786540501,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.413,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 36
        },
        {
          "ticker": "",
          "cusip": "75886F107",
          "name": "REGENERON PHARMACEUTICALS",
          "value_usd_k": 768518494,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.403,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 37
        },
        {
          "ticker": "",
          "cusip": "58506Q109",
          "name": "MEDPACE HLDGS INC",
          "value_usd_k": 758060688,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.398,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 38
        },
        {
          "ticker": "",
          "cusip": "58155Q103",
          "name": "MCKESSON CORP",
          "value_usd_k": 753670825,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.395,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 39
        },
        {
          "ticker": "",
          "cusip": "G87110105",
          "name": "TECHNIPFMC PLC",
          "value_usd_k": 751567171,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.394,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 40
        },
        {
          "ticker": "",
          "cusip": "651639106",
          "name": "NEWMONT CORP",
          "value_usd_k": 739117387,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.388,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 41
        },
        {
          "ticker": "",
          "cusip": "872540109",
          "name": "TJX COS INC NEW",
          "value_usd_k": 739550341,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.388,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 42
        },
        {
          "ticker": "",
          "cusip": "445658107",
          "name": "HUNT J B TRANS SVCS INC",
          "value_usd_k": 729779843,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.383,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 43
        },
        {
          "ticker": "",
          "cusip": "36828A101",
          "name": "GE VERNOVA INC",
          "value_usd_k": 721798321,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.379,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 44
        },
        {
          "ticker": "",
          "cusip": "833445109",
          "name": "SNOWFLAKE INC",
          "value_usd_k": 718781094,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.377,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 45
        },
        {
          "ticker": "",
          "cusip": "172967424",
          "name": "CITIGROUP INC",
          "value_usd_k": 707105755,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.371,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 46
        },
        {
          "ticker": "",
          "cusip": "369550108",
          "name": "GENERAL DYNAMICS CORP",
          "value_usd_k": 694510816,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.364,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 47
        },
        {
          "ticker": "",
          "cusip": "45337C102",
          "name": "INCYTE CORP",
          "value_usd_k": 663736788,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.348,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 48
        },
        {
          "ticker": "",
          "cusip": "512807306",
          "name": "LAM RESEARCH CORP",
          "value_usd_k": 635023655,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.333,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "weight_note": "Long-only 13F AUM denominator \u2013 true weight may be lower",
          "rank": 49
        },
        {
          "ticker": "",
          "cusip": "539830109",
          "name": "LOCKHEED MARTIN CORP",
          "value_usd_k": 625783609,
          "shares": 0,
          "putCall": null,
          "port_weight_pct": 0.328,
          "prior_port_weight": null,
          "delta": {
            "type": "NEW",
            "delta_shares": 0,
            "delta_pct": null
          },
          "is_first_run": true,
          "w
Download .txt
gitextract_wakc4r5b/

├── .github/
│   └── workflows/
│       └── quarterly_run.yml
├── README.md
├── data/
│   └── holdings/
│       ├── 2026-04-08_claude_round1.json
│       ├── 2026-04-08_final_analysis.json
│       ├── 2026-04-08_holdings_parsed.json
│       ├── 2026-04-08_options.json
│       ├── 2026-04-08_raw_holdings.json
│       ├── 2026-04-08_scores.json
│       ├── 2026-05-18_backtest.json
│       ├── 2026-05-18_claude_round1.json
│       ├── 2026-05-18_final_analysis.json
│       ├── 2026-05-18_holdings_parsed.json
│       ├── 2026-05-18_options.json
│       ├── 2026-05-18_raw_holdings.json
│       └── 2026-05-18_scores.json
├── reports/
│   ├── 2026-04-08_report.html
│   └── 2026-05-18_report.html
├── requirements.txt
└── src/
    ├── analyze_claude_round1.py
    ├── analyze_claude_round2.py
    ├── backtest.py
    ├── config.py
    ├── date_check.py
    ├── fetch_filings.py
    ├── multi_quarter.py
    ├── notify.py
    ├── options_lookup.py
    ├── parse_13f.py
    ├── scoring.py
    └── send_report.py
Download .txt
SYMBOL INDEX (72 symbols across 11 files)

FILE: src/analyze_claude_round1.py
  function load_scores (line 31) | def load_scores(today_str: str) -> dict:
  function normalize_ticker (line 39) | def normalize_ticker(ticker: str) -> str:
  function build_prompt (line 43) | def build_prompt(scores: dict) -> str:
  function call_claude_with_retry (line 146) | def call_claude_with_retry(prompt: str) -> str:
  function parse_claude_response (line 176) | def parse_claude_response(raw: str) -> dict:
  function run (line 187) | def run():

FILE: src/analyze_claude_round2.py
  function load_round1 (line 31) | def load_round1(today_str: str) -> dict:
  function load_options (line 39) | def load_options(today_str: str) -> dict:
  function format_options_for_prompt (line 47) | def format_options_for_prompt(ticker: str, opt_data: dict) -> str:
  function build_round2_prompt (line 96) | def build_round2_prompt(r1: dict, options_data: dict) -> str:
  function call_claude_with_retry (line 166) | def call_claude_with_retry(prompt: str) -> str:
  function parse_response (line 196) | def parse_response(raw: str) -> dict:
  function validate_result (line 207) | def validate_result(result: dict) -> bool:
  function run (line 225) | def run():

FILE: src/backtest.py
  function load_all_analyses (line 25) | def load_all_analyses() -> list[dict]:
  function _yf_ticker (line 37) | def _yf_ticker(ticker: str) -> str:
  function check_stock_performance (line 42) | def check_stock_performance(ticker: str, signal_date_str: str) -> dict:
  function run (line 97) | def run() -> dict:

FILE: src/date_check.py
  function next_business_day (line 26) | def next_business_day(d: date) -> date:
  function get_expected_run_date (line 33) | def get_expected_run_date(ref: date) -> date:
  function should_run_today (line 43) | def should_run_today(today: date, force: bool = False, target_override: ...
  function write_github_output (line 67) | def write_github_output(key: str, value: str):

FILE: src/fetch_filings.py
  function _sleep (line 25) | def _sleep():
  function edgar_get (line 29) | def edgar_get(url: str) -> requests.Response:
  function get_latest_13f_filing (line 38) | def get_latest_13f_filing(cik: str) -> dict | None:
  function get_filing_files (line 76) | def get_filing_files(cik: str, accession: str) -> list[dict]:
  function find_infotable_filename (line 115) | def find_infotable_filename(items: list[dict]) -> str | None:
  function download_infotable (line 140) | def download_infotable(filing_meta: dict) -> str | None:
  function parse_infotable (line 181) | def parse_infotable(xml_text: str) -> list[dict]:
  function _openfigi_headers (line 225) | def _openfigi_headers() -> dict:
  function map_cusips_to_tickers (line 234) | def map_cusips_to_tickers(cusips: list[str]) -> dict[str, str]:
  function _is_valid_equity_ticker (line 278) | def _is_valid_equity_ticker(ticker: str) -> bool:
  function check_recent_splits (line 296) | def check_recent_splits(tickers: list[str]) -> dict[str, float]:
  function run (line 326) | def run():

FILE: src/multi_quarter.py
  function load_historical_parsed (line 17) | def load_historical_parsed(today_str: str) -> list[dict]:
  function build_multi_quarter_signals (line 40) | def build_multi_quarter_signals(today_str: str) -> dict[str, dict]:
  function get_multiplier (line 144) | def get_multiplier(ticker: str, signals: dict[str, dict]) -> float:

FILE: src/notify.py
  function send_alert (line 21) | def send_alert(subject: str, body: str):

FILE: src/options_lookup.py
  function get_headers (line 28) | def get_headers() -> dict:
  function get_stock_quotes (line 38) | def get_stock_quotes(tickers: list[str], headers: dict) -> dict[str, dict]:
  function normalize_ticker_for_tradier (line 53) | def normalize_ticker_for_tradier(ticker: str) -> str:
  function get_expiration_dates (line 57) | def get_expiration_dates(ticker: str, headers: dict) -> list[str]:
  function get_option_chain (line 81) | def get_option_chain(ticker: str, expiry: str, headers: dict) -> list[di...
  function filter_options (line 101) | def filter_options(chain: list[dict], direction: str = "BULLISH",
  function fetch_options_for_ticker (line 192) | def fetch_options_for_ticker(ticker: str, direction: str, headers: dict,
  function run (line 262) | def run():

FILE: src/parse_13f.py
  function load_latest_raw (line 21) | def load_latest_raw(today_str: str) -> dict:
  function load_prior_quarter (line 29) | def load_prior_quarter(today_str: str) -> dict | None:
  function build_position_lookup (line 67) | def build_position_lookup(filer_data: dict) -> dict:
  function adjust_shares_for_splits (line 132) | def adjust_shares_for_splits(shares: int, ticker: str, splits: dict) -> ...
  function compute_delta (line 146) | def compute_delta(current_shares: int, prior_shares: int | None, ticker:...
  function parse_and_enrich (line 189) | def parse_and_enrich(raw: dict, prior: dict | None) -> dict:
  function run (line 318) | def run():

FILE: src/scoring.py
  function load_parsed (line 30) | def load_parsed(today_str: str) -> dict:
  function fetch_price_changes (line 40) | def fetch_price_changes(tickers: list[str], filing_dates: dict[str, str]...
  function compute_raw_score (line 135) | def compute_raw_score(pos: dict, filer_name: str) -> float:
  function apply_flags (line 171) | def apply_flags(pos: dict, rank: int) -> list[str]:
  function build_scored_universe (line 196) | def build_scored_universe(parsed: dict, mq_signals: dict[str, dict]) -> ...
  function enrich_with_price_action (line 250) | def enrich_with_price_action(scored: list[dict]) -> list[dict]:
  function detect_clusters (line 300) | def detect_clusters(scored: list[dict]) -> dict[str, list[str]]:
  function apply_cluster_bonus (line 325) | def apply_cluster_bonus(scored: list[dict], clusters: dict[str, list[str...
  function normalize_scores (line 340) | def normalize_scores(scored: list[dict]) -> list[dict]:
  function aggregate_by_ticker (line 360) | def aggregate_by_ticker(scored: list[dict]) -> list[dict]:
  function run (line 408) | def run():

FILE: src/send_report.py
  function load_final_analysis (line 24) | def load_final_analysis(today_str: str) -> dict:
  function load_backtest (line 32) | def load_backtest(today_str: str) -> dict | None:
  function flag_badge (line 40) | def flag_badge(flag: str) -> str:
  function _post_filing_block (line 52) | def _post_filing_block(perf: dict) -> str:
  function generate_backtest_html (line 101) | def generate_backtest_html(backtest: dict) -> str:
  function generate_html_report (line 169) | def generate_html_report(analysis: dict, backtest: dict | None = None) -...
  function send_gmail (line 350) | def send_gmail(html_content: str, today_str: str):
  function run (line 379) | def run():
Copy disabled (too large) Download .json
Condensed preview — 30 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (10,271K chars).
[
  {
    "path": ".github/workflows/quarterly_run.yml",
    "chars": 3943,
    "preview": "name: SEC 13F Quarterly Analysis\n\non:\n  schedule:\n    # Run daily at 14:00 UTC (= 15:00 CET / 16:00 CEST)\n    # The Pyth"
  },
  {
    "path": "README.md",
    "chars": 5292,
    "preview": "# SEC 13F Smart Money Analyzer\n\nAutomated quarterly analysis of 13F filings from 13 top institutional investors.\nRuns au"
  },
  {
    "path": "data/holdings/2026-04-08_claude_round1.json",
    "chars": 4521,
    "preview": "{\n  \"analysis_date\": \"2026-04-08\",\n  \"market_context\": \"The market appears to be experiencing significant institutional "
  },
  {
    "path": "data/holdings/2026-04-08_final_analysis.json",
    "chars": 9363,
    "preview": "{\n  \"date\": \"2026-04-08\",\n  \"round1_top5\": [\n    {\n      \"rank\": 1,\n      \"ticker\": \"PLTR\",\n      \"company_name\": \"PALAN"
  },
  {
    "path": "data/holdings/2026-04-08_holdings_parsed.json",
    "chars": 2074004,
    "preview": "{\n  \"date\": \"2026-04-08\",\n  \"prior_date\": null,\n  \"is_first_run\": true,\n  \"recent_splits\": {},\n  \"filers\": {\n    \"Situat"
  },
  {
    "path": "data/holdings/2026-04-08_options.json",
    "chars": 19204,
    "preview": "{\n  \"date\": \"2026-04-08\",\n  \"top5_tickers\": [\n    \"PLTR\",\n    \"AMZN\",\n    \"NVDA\",\n    \"BRK/A\",\n    \"IBIT\"\n  ],\n  \"option"
  },
  {
    "path": "data/holdings/2026-04-08_raw_holdings.json",
    "chars": 5528159,
    "preview": "{\n  \"date\": \"2026-04-08\",\n  \"cusip_to_ticker\": {\n    \"89854H102\": \"TTEC\",\n    \"316092790\": \"FQAL\",\n    \"97717Y642\": \"NTS"
  },
  {
    "path": "data/holdings/2026-04-08_scores.json",
    "chars": 238599,
    "preview": "{\n  \"date\": \"2026-04-08\",\n  \"scored_flat\": [\n    {\n      \"filer\": \"Situational Awareness LP\",\n      \"ticker\": \"\",\n      "
  },
  {
    "path": "data/holdings/2026-05-18_backtest.json",
    "chars": 3630,
    "preview": "{\n  \"summary\": {\n    \"generated_at\": \"2026-05-18\",\n    \"total_signals\": 10,\n    \"completed_90d\": 0,\n    \"completed_180d\""
  },
  {
    "path": "data/holdings/2026-05-18_claude_round1.json",
    "chars": 6448,
    "preview": "{\n  \"analysis_date\": \"2026-05-18\",\n  \"market_context\": \"Institutional investors are showing strong synchronized convicti"
  },
  {
    "path": "data/holdings/2026-05-18_final_analysis.json",
    "chars": 16568,
    "preview": "{\n  \"date\": \"2026-05-18\",\n  \"round1_top5\": [\n    {\n      \"rank\": 1,\n      \"ticker\": \"NVDA\",\n      \"company_name\": \"NVIDI"
  },
  {
    "path": "data/holdings/2026-05-18_holdings_parsed.json",
    "chars": 423984,
    "preview": "{\n  \"date\": \"2026-05-18\",\n  \"prior_date\": \"2026-04-08\",\n  \"is_first_run\": false,\n  \"recent_splits\": {\n    \"BDX\": 1.272,\n"
  },
  {
    "path": "data/holdings/2026-05-18_options.json",
    "chars": 24514,
    "preview": "{\n  \"date\": \"2026-05-18\",\n  \"top5_tickers\": [\n    \"NVDA\",\n    \"TSM\",\n    \"AVGO\",\n    \"BKNG\",\n    \"MSFT\"\n  ],\n  \"options\""
  },
  {
    "path": "data/holdings/2026-05-18_raw_holdings.json",
    "chars": 277648,
    "preview": "{\n  \"date\": \"2026-05-18\",\n  \"cusip_to_ticker\": {\n    \"097023105\": \"BA\",\n    \"099724106\": \"BWA\",\n    \"456788108\": \"INFY\","
  },
  {
    "path": "data/holdings/2026-05-18_scores.json",
    "chars": 355286,
    "preview": "{\n  \"date\": \"2026-05-18\",\n  \"scored_flat\": [\n    {\n      \"filer\": \"Situational Awareness LP\",\n      \"ticker\": \"SMH\",\n   "
  },
  {
    "path": "reports/2026-04-08_report.html",
    "chars": 25094,
    "preview": "<!DOCTYPE html>\n<html>\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scal"
  },
  {
    "path": "reports/2026-05-18_report.html",
    "chars": 31400,
    "preview": "<!DOCTYPE html>\n<html>\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scal"
  },
  {
    "path": "requirements.txt",
    "chars": 67,
    "preview": "anthropic>=0.25.0\nrequests>=2.31.0\nyfinance>=0.2.37\nholidays>=0.46\n"
  },
  {
    "path": "src/analyze_claude_round1.py",
    "chars": 8159,
    "preview": "\"\"\"\nanalyze_claude_round1.py\nClaude API – Round 1: Identify Top 5 investment candidates.\n\nUses claude-haiku (CLAUDE_MODE"
  },
  {
    "path": "src/analyze_claude_round2.py",
    "chars": 11476,
    "preview": "\"\"\"\nanalyze_claude_round2.py\nClaude API – Round 2: Select the best specific options from real Tradier data.\n\nUses claude"
  },
  {
    "path": "src/backtest.py",
    "chars": 6034,
    "preview": "\"\"\"\nbacktest.py\nTracks historical performance of past recommendations.\n\nFor each past final_analysis.json, checks what t"
  },
  {
    "path": "src/config.py",
    "chars": 5490,
    "preview": "\"\"\"\nconfig.py\nCentral configuration for SEC 13F Smart Money Analyzer.\nAll CIKs, thresholds, and API endpoints defined he"
  },
  {
    "path": "src/date_check.py",
    "chars": 2895,
    "preview": "\"\"\"\ndate_check.py\nDetermines if today is a valid SEC 13F analysis run date.\nTarget dates: 16th of May, Aug, Nov, Feb (Be"
  },
  {
    "path": "src/fetch_filings.py",
    "chars": 15023,
    "preview": "\"\"\"\nfetch_filings.py\nFetches the latest 13F-HR filings for all configured filers from SEC EDGAR.\n\nUses the EDGAR full-te"
  },
  {
    "path": "src/multi_quarter.py",
    "chars": 5446,
    "preview": "\"\"\"\nmulti_quarter.py\nAnalyzes multi-quarter position building patterns.\n\nA \"Silent Build\" over 3–4 quarters is a much st"
  },
  {
    "path": "src/notify.py",
    "chars": 2573,
    "preview": "\"\"\"\nnotify.py\nSends pipeline failure alerts via Gmail.\n\nCalled from GitHub Actions on workflow failure so silent crashes"
  },
  {
    "path": "src/options_lookup.py",
    "chars": 11203,
    "preview": "\"\"\"\noptions_lookup.py\nFetches real options chains from Tradier for the Top 5 tickers.\n\nImprovements:\n  - Spread filter t"
  },
  {
    "path": "src/parse_13f.py",
    "chars": 13286,
    "preview": "\"\"\"\nparse_13f.py\nComputes quarter-over-quarter deltas from raw holdings data.\n\nFixes from architecture audit:\n  R-01  St"
  },
  {
    "path": "src/scoring.py",
    "chars": 16482,
    "preview": "\"\"\"\nscoring.py\nConviction Score calculation engine.\n\nImprovements:\n  - Multi-quarter position building bonus (multi_quar"
  },
  {
    "path": "src/send_report.py",
    "chars": 17674,
    "preview": "\"\"\"\nsend_report.py\nGenerates the HTML report and sends it via Gmail.\n\nFixes from architecture audit:\n  R-14  Validates r"
  }
]

About this extraction

This page contains the full source code of the pcctradinginc-alt/SEC-QUATERLY GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 30 files (8.7 MB), approximately 2.3M tokens, and a symbol index with 72 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!