MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. recorded 371 award actions and 2.786 billion in obligated dollars over the last 10 years, with all reported obligations tied to the Defense Logistics Agency. Most of the value is associated with NAICS 324110, Petroleum Refineries, while smaller amounts appear under warehousing and storage activity.
Federal Contractor
MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. Federal Contract Obligations (Last 10 Years)
Federal procurement profile for MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. (CAGE 6W100, UEI HPBTLPA2JR77) covering the last 10 years of FPDS award activity.
Annual obligations peaked at 541.87 million in 2022 and remained above 331.65 million in each year from 2023 through 2025; values reflect FPDS records and may include small negative adjustments.
About MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. federal contract activity
MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. recorded 371 FPDS awards totaling $2.79 billion over the last 10 years, with an average award value of $7.51 million. The vendor is identified by CAGE 6W100 and UEI HPBTLPA2JR77, and its federal business profile is highly concentrated in a single customer base and core fuel-supply activity. The scale and cadence of awards indicate a sustained, recurring procurement relationship rather than sporadic transactions.
Agency mix and customer concentration
All recorded obligations in this analysis window were concentrated within the Defense Logistics Agency, which accounted for the full $2.79 billion across 371 awards. This complete concentration suggests a single-agency dependency and indicates the vendor’s federal work is tied directly to defense fuel procurement channels. No other agencies appear in the provided top-agency data.
Industry profile based on NAICS activity
The award mix is overwhelmingly centered on NAICS 324110, Petroleum Refineries, which represents $2.66 billion across 346 awards. A much smaller share is associated with NAICS 493190, Other Warehousing and Storage, at $121.84 million across 24 awards, while NAICS 541219, Other Accounting Services, shows a negligible negative obligation of $165.09 on one award. The pattern reflects a core refinery supply relationship with limited activity in ancillary logistics or administrative classifications.
Annual contract trend over the analysis window
Annual obligations remained substantial throughout the recent period, ranging from $236.74 million in 2021 to $541.87 million in 2022. Funding then moderated to $331.65 million in 2023 before rising again to $497.01 million in 2024 and $462.89 million in 2025. Award counts followed a similar high-volume pattern, with no sign of a sharp break in contracting activity.
How to interpret this page
This summary is based on FPDS-observed awards for the vendor matched to CAGE 6W100 and UEI HPBTLPA2JR77 over the last 10 years. Metrics reflect total obligated dollars, award counts, and averages as provided, with agency and NAICS sections derived from the supplied top-ranked categories. Percentages and qualitative conclusions are limited to the data shown and do not infer unprovided contract details.
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 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 |
|---|---|---|---|---|
| 97AS | DEFENSE LOGISTICS AGENCY | 2,786,356,479.02 | 2.79 billion | 371 |
Insight
Over the last 10 years, all reported obligations for MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. are concentrated in a single top agency: the Defense Logistics Agency. DLA accounts for the full $2.79 billion obligated across 371 awards, indicating a highly concentrated award distribution with no diversification across other agencies in this dataset. The average award value is approximately $7.51 million, suggesting repeated substantial obligations within the same 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 = '6W100'
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 |
|---|---|---|---|---|
| 324110 | PETROLEUM REFINERIES | 2,664,520,094.96 | 2.66 billion | 346 |
| 493190 | OTHER WAREHOUSING AND STORAGE | 121,836,549.15 | 121.84 million | 24 |
| 541219 | OTHER ACCOUNTING SERVICES | -165.09 | -165.09 | 1 |
Insight
Over the last 10 years, obligations for MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. are highly concentrated in NAICS 324110, Petroleum Refineries, which accounts for 2.66 billion of 2.79 billion in total obligations across 346 of 371 awards. A much smaller share is associated with NAICS 493190, Other Warehousing and Storage, at 121.84 million across 24 awards. NAICS 541219, Other Accounting Services, is immaterial and shows a negligible negative obligation of 165.09 on one award.
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 10 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 |
| 2020 | 93,911,954.76 | 93.91 million | 24 |
| 2019 | 223,388,248.20 | 223.39 million | 36 |
| 2018 | 163,794,056.15 | 163.79 million | 28 |
| 2017 | 196,081,241.43 | 196.08 million | 45 |
| 2016 | 39,021,106.20 | 39.02 million | 4 |
Insight
Over the last 10 years, MOTOR OIL (HELLAS) CORINTH REFINERIES S.A. (CAGE 6W100) received 2.79 billion across 371 awards, averaging 7.51 million per award. Obligations are concentrated in the most recent period, with 2022 through 2025 accounting for 1.83 billion, or about 66% of the 10-year total, driven by sustained annual levels between 331.65 million and 541.87 million. Earlier years were materially lower, including a low of 39.02 million in 2016 and a secondary dip to 93.91 million in 2020, indicating a generally increasing but uneven obligation pattern 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.