Federal Contractor

HII FLEET SUPPORT GROUP LLC Federal Contract Obligations (Last Year)

HII FLEET SUPPORT GROUP LLC (CAGE 1LT84, UEI VGCPT3NSM831) received 398 federal award actions totaling $189.24 million in the last full year, led by the Department of the Navy.

Most of the vendor’s obligation volume came from the Department of the Navy, with smaller amounts from the Department of the Army and negative net obligations recorded under DCMA. By NAICS, work was concentrated in ship building and repairing, engineering services, and machinery and equipment repair and maintenance.

Generated at 03/21/2026

Analysis period: Last full year

This page reflects the last full year of readable FPDS obligation data and uses total obligated amounts as provided.

CAGE Code
1LT84
UEI
VGCPT3NSM831
Total Obligated
189.24 million
189,235,777.25
Award Actions
398
Average Action Value
475,466.77

About HII FLEET SUPPORT GROUP LLC federal contract activity

HII FLEET SUPPORT GROUP LLC (CAGE 1LT84, UEI VGCPT3NSM831) recorded 189.24 million in obligated funding across 398 awards in the last full year, for an average award value of 475,466.77. The obligation profile is highly concentrated in defense maritime support work, with the Department of the Navy accounting for the overwhelming share of activity.

Agency mix and customer concentration

The Department of the Navy dominated the vendor’s customer base with 189.03 million across 376 awards, or virtually all reported obligations. The Department of the Army contributed a much smaller 1.11 million across 20 awards, while DCMA shows a net negative obligation of 898.13 thousand across 2 actions, indicating downward adjustments or deobligations in the period.

Industry profile based on NAICS activity

NAICS 336611, Ship Building and Repairing, is the core revenue driver at 165.22 million across 273 awards, confirming a primary concentration in ship maintenance and repair. NAICS 541330, Engineering Services, adds 19.00 million across 103 awards, while smaller amounts are tied to machinery repair and water transportation support, reinforcing a maritime sustainment and technical services profile.

Annual contract trend over the analysis window

The annual trend shows 189.24 million obligated in 2025 across 398 awards, with no other years reported in the analysis window. Based on the available data, the year appears to reflect a single full-year snapshot rather than a multi-year sequence, so period-over-period growth cannot be assessed from this dataset alone.

How to interpret this page

This summary uses FPDS obligation data associated with CAGE code 1LT84 and UEI VGCPT3NSM831 for the last full year. Agency and NAICS breakdowns are ranked by total obligated dollars, and negative obligations are retained as reported to reflect deobligations or other downward funding adjustments.

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 = '1LT84'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
1700 DEPT OF THE NAVY 189,027,922.93 189.03 million 376
2100 DEPT OF THE ARMY 1,105,981.85 1.11 million 20
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -898,127.53 -898.13 thousand 2

Insight

Over the last full year, HII FLEET SUPPORT GROUP LLC’s obligations were highly concentrated in the DEPT OF THE NAVY, which accounted for 189.03 million of 189.24 million total obligated, across 376 of 398 awards. The DEPT OF THE ARMY was a distant second at 1.11 million across 20 awards, indicating limited diversification outside Navy-supported work. DCMA shows a negative obligated amount of 898.13 thousand across 2 awards, which reduces net total obligated but does not materially change the overall Navy concentration.

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 = '1LT84'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
336611 SHIP BUILDING AND REPAIRING 165,223,587.10 165.22 million 273
541330 ENGINEERING SERVICES 18,997,723.13 19.00 million 103
811310 COMMERCIAL AND INDUSTRIAL MACHINERY AND EQUIPMENT (EXCEPT AUTOMOTIVE AND ELECTRONIC) REPAIR AND MAINTENANCE 3,908,485.17 3.91 million 2
488390 OTHER SUPPORT ACTIVITIES FOR WATER TRANSPORTATION 1,105,981.85 1.11 million 20

Insight

HII FLEET SUPPORT GROUP LLC’s obligations in the last full year were heavily concentrated in NAICS 336611, Ship Building and Repairing, which accounts for 165.22 million across 273 awards, or about 87.3% of the 189.24 million obligated. The second-largest category, NAICS 541330, Engineering Services, contributed 19.00 million across 103 awards, indicating a meaningful but much smaller secondary stream of work. The remaining obligations were dispersed across maintenance and water transportation support activities, with no other NAICS exceeding 3.91 million, suggesting a portfolio dominated by shipbuilding and related support services.

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 = '1LT84'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 189,235,777.25 189.24 million 398

Insight

In the last full year, HII FLEET SUPPORT GROUP LLC recorded $189.24 million in obligated value across 398 awards under CAGE 1LT84. Obligations are fully concentrated in a single annual period, indicating all observed activity in this 1-year window occurred in 2025. The average award value was approximately $475.5K, suggesting a mix of relatively moderate-sized obligations rather than reliance on a small number of very large awards.

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