Federal Contractor

SAVANNAH RIVER MISSION COMPLETION, LLC Federal Contract Obligations (Last 10 Years)

Federal procurement profile for SAVANNAH RIVER MISSION COMPLETION, LLC (CAGE 8KB44, UEI C32KCWJ94LY8) covering obligations over the last 10 years.

SAVANNAH RIVER MISSION COMPLETION, LLC has recorded 208 award actions with total obligations of $3,800,978,201.46 in the last 10 years, averaging $18,273,933.66 per action. Its obligations are concentrated with the Department of Energy and classified under NAICS 562910, Remediation Services.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual obligation totals shown here are based on the provided 2021-2025 trend data, with 2025 as the highest year in the period.

CAGE Code
8KB44
UEI
C32KCWJ94LY8
Total Obligated
3.80 billion
3,800,978,201.46
Award Actions
208
Average Action Value
18,273,933.66

About SAVANNAH RIVER MISSION COMPLETION, LLC federal contract activity

SAVANNAH RIVER MISSION COMPLETION, LLC (CAGE 8KB44, UEI C32KCWJ94LY8) has obligated $3.80 billion across 208 FPDS awards over the last 10 years, for an average award value of $18.27 million. The profile is highly concentrated, indicating a sustained federal contracting relationship rather than broad multi-agency participation.

Agency mix and customer concentration

All reported obligations in the analysis window are attributed to the Department of Energy (agency code 8900), accounting for the full $3.80 billion and all 208 awards. This indicates a single-agency customer base with no observed diversification across other federal departments in the provided data.

Industry profile based on NAICS activity

The vendor’s reported activity is entirely concentrated in NAICS 562910, Remediation Services, which also captures the full $3.80 billion and all 208 awards. The mix suggests that contract performance is narrowly aligned to remediation work rather than a diversified services portfolio.

Annual contract trend over the analysis window

Annual obligations were highest in 2025 at $1.23 billion across 61 awards, following strong activity in 2023 at $916.82 million across 63 awards and 2024 at $855.52 million across 49 awards. 2022 remained substantial at $789.32 million across 33 awards, while 2021 was comparatively limited at $5.50 million across 2 awards, showing a sharp step-up in contract volume and dollars beginning in 2022.

How to interpret this page

This summary is based on FPDS records for the last 10 years using the vendor’s CAGE code 8KB44 and UEI C32KCWJ94LY8. Totals, counts, and annual values reflect only the provided dataset and are aggregated as reported, with agency and NAICS concentration assessed from the supplied top-category breakdowns.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '8KB44'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
8900 ENERGY, DEPARTMENT OF 3,800,978,201.46 3.80 billion 208

Insight

Over the last 10 years, SAVANNAH RIVER MISSION COMPLETION, LLC’s obligation activity is fully concentrated in the Department of Energy, which accounts for the entire $3.80 billion obligated across 208 awards. This indicates a highly concentrated customer base with no diversification across agencies in the provided period. The average award value is approximately $18.27 million, suggesting a mix of sizable obligations within a single-agency relationship.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '8KB44'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
562910 REMEDIATION SERVICES 3,800,978,201.46 3.80 billion 208

Insight

Over the last 10 years, SAVANNAH RIVER MISSION COMPLETION, LLC’s obligated dollars are fully concentrated in NAICS 562910, Remediation Services, with $3.80 billion across 208 awards. This indicates a highly focused procurement profile with no observable diversification across other NAICS codes in the provided data. The average award value of about $18.27 million suggests a mix of sizeable tasking within a single primary service category.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '8KB44'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 1,233,811,148.20 1.23 billion 61
2024 855,523,469.03 855.52 million 49
2023 916,819,679.26 916.82 million 63
2022 789,319,499.97 789.32 million 33
2021 5,504,405.00 5.50 million 2

Insight

SAVANNAH RIVER MISSION COMPLETION, LLC (CAGE 8KB44) has $3.80 billion in obligated dollars across 208 awards over the last 10 years, with activity heavily concentrated in the most recent period. FY2025 accounts for $1.23 billion and 61 awards, following $855.52 million in FY2024 and $916.82 million in FY2023, indicating sustained high-volume obligations. FY2022 through FY2021 shows a sharp contraction, with $789.32 million in FY2022 and only $5.50 million across 2 awards in FY2021, suggesting a marked shift in annual award volume and value over time.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.

Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.