Federal Contractor

WASHINGTON RIVER PROTECTION SOLUTIONS LLC Federal Contract Obligations (Last 10 Years)

Federal procurement profile for WASHINGTON RIVER PROTECTION SOLUTIONS LLC (CAGE 4UWU0, UEI CQE8EF6LB317) covering the last 10 years of FPDS obligations.

WASHINGTON RIVER PROTECTION SOLUTIONS LLC recorded $5.81 billion in obligated federal awards across 323 actions over the last 10 years, with an average action value of $17.99 million. All reported obligations in this period were from the Department of Energy and were associated with NAICS 562211, Hazardous Waste Treatment and Disposal.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual obligations were concentrated in 2021 through 2024, including $827.89 million in 2021, $657.71 million in 2022, $770.75 million in 2023, and $649.93 million in 2024, with $13.19 million recorded in 2025 to date.

CAGE Code
4UWU0
UEI
CQE8EF6LB317
Total Obligated
5.81 billion
5,811,455,023.05
Award Actions
323
Average Action Value
17,992,120.81

About WASHINGTON RIVER PROTECTION SOLUTIONS LLC federal contract activity

WASHINGTON RIVER PROTECTION SOLUTIONS LLC (CAGE 4UWU0, UEI CQE8EF6LB317) recorded $5.81 billion in FPDS obligations across 323 awards over the last 10 years, with an average award value of $17.99 million. The vendor’s activity is concentrated in a single federal customer and a single NAICS code, indicating a focused contract profile rather than a diversified award base.

Agency mix and customer concentration

All observed obligations are tied to the Department of Energy (agency 8900), which accounts for the full $5.81 billion and all 323 awards in the analysis window. This indicates a fully concentrated agency relationship, with no evidence in the provided data of material business across other departments or agencies.

Industry profile based on NAICS activity

All observed obligations fall under NAICS 562211, Hazardous Waste Treatment and Disposal, totaling $5.81 billion across 323 awards. The data indicates a tightly specialized revenue stream centered on hazardous waste treatment and disposal services, with no diversification across additional NAICS classifications in the supplied dataset.

Annual contract trend over the analysis window

Annual obligations were materially higher from 2021 through 2024, ranging from $657.71 million to $827.89 million, before dropping to $13.19 million in 2025 year-to-date. Award counts followed a similar pattern, peaking at 57 in 2021 and moderating to 19 in 2024 and 9 in 2025, suggesting a recent slowdown or incomplete year rather than sustained contraction based on the partial 2025 figure. The series shows a strong multi-year run of large-scale obligated spend followed by a sharp decline in the latest period shown.

How to interpret this page

This profile summarizes FPDS obligations for the vendor identified by CAGE 4UWU0 and UEI CQE8EF6LB317 over the last 10 years, using the provided aggregate award, agency, NAICS, and annual trend data. Totals reflect obligated dollars, award counts reflect the number of reported awards in the supplied dataset, and the 2025 value should be interpreted as year-to-date within the analysis window.

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 = '4UWU0'
        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 5,811,455,023.05 5.81 billion 323

Insight

Over the last 10 years, WASHINGTON RIVER PROTECTION SOLUTIONS LLC’s federal obligations are fully concentrated within the Department of Energy, which accounts for the entire $5.81 billion in obligated value. The vendor received 323 awards in this period, for an average award value of about $17.99 million, indicating a sustained and highly concentrated relationship with a single agency. This distribution suggests the vendor’s federal business is dependent on one department rather than spread across multiple agencies.

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 = '4UWU0'
        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
562211 HAZARDOUS WASTE TREATMENT AND DISPOSAL 5,811,455,023.05 5.81 billion 323

Insight

Over the last 10 years, WASHINGTON RIVER PROTECTION SOLUTIONS LLC’s obligations are fully concentrated in NAICS 562211, Hazardous Waste Treatment and Disposal, accounting for the full $5.81 billion obligated across 323 awards. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided period. The average award value of about $17.99 million suggests a repeated pattern of large-dollar awards within the same 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 = '4UWU0'
        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 13,189,548.55 13.19 million 9
2024 649,927,824.17 649.93 million 19
2023 770,754,935.84 770.75 million 24
2022 657,709,486.53 657.71 million 31
2021 827,893,632.44 827.89 million 57
2020 840,292,190.79 840.29 million 54
2019 716,416,533.11 716.42 million 35
2018 752,137,354.34 752.14 million 49
2017 583,133,517.28 583.13 million 45

Insight

Over the last 10 years, WASHINGTON RIVER PROTECTION SOLUTIONS LLC has obligated $5.81 billion across 323 awards, averaging $17.99 million per award. Obligations are heavily concentrated in FY2020-FY2024, which account for the large majority of total dollars, with annual obligations ranging from $649.93 million to $840.29 million and a peak in FY2020. FY2025 is year-to-date and materially lower at $13.19 million across 9 awards, so it is not directly comparable to prior full-year performance. Award volume also increased materially from FY2017-FY2019 to FY2020-FY2021, then declined in FY2022-FY2025 while dollar obligations remained comparatively elevated through FY2024.

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.