Federal Contractor

VIGOR MARINE LLC Federal Contract Obligations (Last Year)

Federal procurement profile for VIGOR MARINE LLC (CAGE 4PGG4, UEI L7ZETMM4M9R3) covering the last full year of obligated award activity.

In the last full year, VIGOR MARINE LLC received $315.49 million across 158 award actions, for an average action value of $1.997 million. Most obligations came from the Department of the Navy, with ship building and repairing accounting for nearly all recorded spend.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the provided analysis window and may differ from totals in other FPDS extracts because of timing, scope, or rounding.

CAGE Code
4PGG4
UEI
L7ZETMM4M9R3
Total Obligated
315.49 million
315,491,613.04
Award Actions
158
Average Action Value
1,996,782.36

About VIGOR MARINE LLC federal contract activity

VIGOR MARINE LLC recorded 315.49 million in obligated federal dollars across 158 awards in the last full year, for an average award value of 1.997 million. The profile is heavily concentrated in shipbuilding and maritime support work, with most of the value tied to a relatively small set of awards.

Agency mix and customer concentration

The DEPT OF THE NAVY dominated the vendor’s funding base, accounting for 294.16 million across 129 awards, or the vast majority of total obligations. Smaller but material activity came from the U.S. COAST GUARD, DEPT OF THE ARMY, and MARITIME ADMINISTRATION, indicating a predominantly naval customer base with limited diversification across maritime agencies.

Industry profile based on NAICS activity

NAICS 336611, Ship Building and Repairing, accounted for 313.94 million of obligations and 154 awards, making it the core labor and revenue driver for the vendor. The only other material category was NAICS 488390, Other Support Activities for Water Transportation, with 1.55 million across 4 awards, which suggests a narrow scope beyond ship construction and repair.

Annual contract trend over the analysis window

The available annual trend shows all recorded activity in 2025, totaling 315.49 million across 158 awards. With only one year in scope, the data support an annual snapshot rather than a multi-year growth assessment.

How to interpret this page

This summary is based on FPDS obligations associated with VIGOR MARINE LLC, using the supplied CAGE code 4PGG4 and UEI L7ZETMM4M9R3 for the last full year. Agency, NAICS, and annual trend views are aggregated from the reported award totals and counts; no additional inference beyond the provided fields was used.

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 = '4PGG4'
        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 294,156,315.60 294.16 million 129
7008 U.S. COAST GUARD 10,564,552.50 10.56 million 1
2100 DEPT OF THE ARMY 9,217,376.43 9.22 million 24
6938 MARITIME ADMINISTRATION 1,553,368.51 1.55 million 4

Insight

VIGOR MARINE LLC’s obligations over the last full year were highly concentrated in the DEPT OF THE NAVY, which accounted for $294.16 million across 129 awards, or about 93% of the vendor’s $315.49 million total. The next largest obligors were the U.S. COAST GUARD at $10.56 million, the DEPT OF THE ARMY at $9.22 million, and the MARITIME ADMINISTRATION at $1.55 million, indicating a sharply Navy-centric demand profile. Overall activity included 158 awards with an average award value of about $2.00 million, suggesting a mix of frequent smaller awards and a small number of larger obligations.

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 = '4PGG4'
        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 313,938,244.53 313.94 million 154
488390 OTHER SUPPORT ACTIVITIES FOR WATER TRANSPORTATION 1,553,368.51 1.55 million 4

Insight

VIGOR MARINE LLC’s obligations in the last full year were highly concentrated in NAICS 336611, Ship Building and Repairing, which accounted for $313.94 million across 154 awards, or nearly all of the vendor’s $315.49 million total. The remaining activity was minimal and limited to NAICS 488390, Other Support Activities for Water Transportation, at $1.55 million across 4 awards. This distribution indicates a strong dependence on shipbuilding and repair work, with only a marginal presence in supporting water transportation 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 = '4PGG4'
        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 315,491,613.04 315.49 million 158

Insight

In the last full year, VIGOR MARINE LLC (CAGE 4PGG4) recorded $315.49 million in obligated obligations across 158 awards, for an average award value of about $2.00 million. The annual activity is concentrated in a single reporting year within the 1-year window, so no intra-period trend can be assessed from the provided data. The award profile indicates a relatively broad distribution of obligations across multiple actions rather than dependence 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.