Federal Contractor

MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. Federal Contract Obligations (Last 5 Years)

Federal procurement profile for MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. (CAGE 6W100, UEI HPBTLPA2JR77) covering obligations and award activity over the last 5 years.

Over the last 5 years, MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. recorded $2,070,159,872.28 in federal obligations across 234 award actions, with an average action value of $8,846,837.06. Defense Logistics Agency accounted for all reported obligations in this window, led primarily by NAICS 324110 petroleum refineries.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect readable obligation data for the last 5 years and may differ from award-level values due to rounding or record structure.

CAGE Code
6W100
UEI
HPBTLPA2JR77
Total Obligated
2.07 billion
2,070,159,872.28
Award Actions
234
Average Action Value
8,846,837.06

About MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. federal contract activity

MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. recorded $2.07 billion in FPDS obligations across 234 awards in the last 5 years, with an average award value of $8.85 million. The vendor is identified by CAGE 6W100 and UEI HPBTLPA2JR77, indicating a sustained federal contracting footprint at meaningful scale.

Agency mix and customer concentration

All recorded obligations in this period came from the Defense Logistics Agency, which accounted for the full $2.07 billion and all 234 awards. This indicates a highly concentrated customer base with procurement activity tied entirely to a single federal buying organization.

Industry profile based on NAICS activity

Contracting activity was dominated by NAICS 324110, Petroleum Refineries, which represented $2.01 billion across 218 awards. A smaller share, $62.05 million across 16 awards, was classified under NAICS 493190, Other Warehousing and Storage, suggesting the vendor’s federal work is primarily refinery-related with limited associated storage activity.

Annual contract trend over the analysis window

Annual obligations fluctuated over the five-year window, peaking in 2022 at $541.87 million and remaining elevated in 2024 at $497.01 million. Activity declined to $331.65 million in 2023 before rising again in 2025 to $462.89 million, indicating variability but continued substantial procurement volume.

How to interpret this page

This summary uses FPDS obligations attributed to the vendor’s CAGE code 6W100 and UEI HPBTLPA2JR77 over the last 5 years. Agency, NAICS, and annual trend figures are based on aggregated obligated dollars and award counts from the provided dataset; values reflect reported FPDS records and may include rounding.

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 = '6W100'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
97AS DEFENSE LOGISTICS AGENCY 2,070,159,872.28 2.07 billion 234

Insight

Over the last 5 years, MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. received 2.07 billion across 234 awards, averaging about 8.85 million per award. Obligations are fully concentrated in the Defense Logistics Agency, indicating a single-agency dependency with no visible diversification across top agencies in this period. This concentration suggests the vendor’s federal activity is driven entirely by DLA procurement demand.

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 = '6W100'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
324110 PETROLEUM REFINERIES 2,008,105,036.93 2.01 billion 218
493190 OTHER WAREHOUSING AND STORAGE 62,054,835.35 62.05 million 16

Insight

Over the last 5 years, obligations to MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. were heavily concentrated in NAICS 324110, Petroleum Refineries, which accounted for $2.01 billion of the $2.07 billion total and 218 of 234 awards. NAICS 493190, Other Warehousing and Storage, was a secondary category with $62.05 million across 16 awards, representing a small share of total obligated dollars. This distribution indicates a narrow procurement profile centered on petroleum refining, with limited activity in storage and warehousing.

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 = '6W100'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 462,890,664.58 462.89 million 56
2024 497,010,924.81 497.01 million 61
2023 331,646,400.33 331.65 million 38
2022 541,871,619.49 541.87 million 40
2021 236,740,263.07 236.74 million 39

Insight

Over the last 5 years, MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. received $2.07 billion across 234 awards, with an average award value of $8.85 million, indicating a moderately concentrated award profile with relatively large obligations per action. Annual obligations were unevenly distributed, peaking in 2022 at $541.87 million, followed by 2024 at $497.01 million and 2025 at $462.89 million, while 2021 was the lowest year at $236.74 million. Award counts were comparatively stable year to year, ranging from 38 to 61, suggesting the dollar fluctuations were driven more by award size than by volume.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.