Federal Contractor

BOLLINGER SHIPYARDS LOCKPORT, L.L.C. Federal Contract Obligations (Last 10 Years)

Federal procurement profile for BOLLINGER SHIPYARDS LOCKPORT, L.L.C. (CAGE 64513, UEI KK7TLU2HQGH9) covering the last 10 years of FPDS-observed awards.

BOLLINGER SHIPYARDS LOCKPORT, L.L.C. recorded $2,982,305,893.38 in obligated federal awards across 502 actions over the last 10 years, with average action value of $5,940,848.39. Most obligations came from the U.S. Coast Guard and were concentrated in NAICS 336611, Ship Building and Repairing.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals, counts, and annual figures reflect the provided analysis window and may include obligated actions across multiple agencies and NAICS codes.

CAGE Code
64513
UEI
KK7TLU2HQGH9
Total Obligated
2.98 billion
2,982,305,893.38
Award Actions
502
Average Action Value
5,940,848.39

About BOLLINGER SHIPYARDS LOCKPORT, L.L.C. federal contract activity

BOLLINGER SHIPYARDS LOCKPORT, L.L.C. has received 502 FPDS-recorded awards totaling $2.98 billion over the last 10 years, with an average award value of $5.94 million. The vendor’s federal business is concentrated in a small number of high-value actions, indicating sustained participation in shipbuilding-related procurement rather than broad, low-dollar activity.

Agency mix and customer concentration

The U.S. Coast Guard is the dominant customer, accounting for $2.71 billion across 334 awards, or the clear majority of obligated dollars. The Department of the Navy is the secondary buyer at $274.33 million across 167 awards, while the Department of the Army appears only once at $8,825, showing a highly concentrated agency profile.

Industry profile based on NAICS activity

NAICS 336611, Ship Building and Repairing, drives essentially all reported obligations at $2.98 billion across 487 awards, confirming the vendor’s core alignment with ship construction and repair work. Smaller activity appears under NAICS 336612, Boat Building, at $3.44 million across 14 awards, with only negligible obligations in NAICS 334511.

Annual contract trend over the analysis window

Obligations peak in 2025 at $1.12 billion across 54 awards, far above the prior years shown and indicating a significant surge in contracted value. Earlier years are materially lower, with 2022 at $310.85 million, 2021 at $257.76 million, 2023 at $70.83 million, and 2024 at $34.53 million, suggesting uneven annual funding and award timing.

How to interpret this page

This summary uses FPDS award records attributed to CAGE code 64513 and UEI KK7TLU2HQGH9 for the last 10 years of available data. Top agencies, NAICS categories, and annual totals are reported by obligated dollars and award counts only; no attempt was made to infer contract scope, performance status, or unobserved business activity.

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 = '64513'
        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
7008 U.S. COAST GUARD 2,707,966,574.22 2.71 billion 334
1700 DEPT OF THE NAVY 274,330,494.16 274.33 million 167
2100 DEPT OF THE ARMY 8,825.00 8.82 thousand 1

Insight

Over the last 10 years, BOLLINGER SHIPYARDS LOCKPORT, L.L.C. received 2.98 billion across 502 awards, with obligations highly concentrated in the U.S. Coast Guard. The Coast Guard accounted for 2.71 billion and 334 awards, representing the overwhelming share of vendor obligations in this period. The Dept of the Navy was the secondary customer at 274.33 million across 167 awards, while the Dept of the Army had only one award totaling 8.82 thousand, indicating limited cross-agency distribution beyond the Coast Guard.

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 = '64513'
        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
336611 SHIP BUILDING AND REPAIRING 2,978,868,159.38 2.98 billion 487
336612 BOAT BUILDING 3,436,734.00 3.44 million 14
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 1,000.00 1.00 thousand 1

Insight

BOLLINGER SHIPYARDS LOCKPORT, L.L.C. shows extreme concentration in NAICS 336611, Ship Building and Repairing, which accounts for $2.98 billion of the $2.98 billion obligated over the last 10 years across 487 of 502 awards. A much smaller share is attributable to NAICS 336612, Boat Building, at $3.44 million across 14 awards, indicating limited secondary activity. One additional award of $1,000 under NAICS 334511 is immaterial and does not materially affect the vendor’s NAICS profile.

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 = '64513'
        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 1,118,069,078.61 1.12 billion 54
2024 34,531,971.77 34.53 million 38
2023 70,831,893.64 70.83 million 101
2022 310,846,788.99 310.85 million 91
2021 257,755,215.20 257.76 million 54
2020 256,468,253.06 256.47 million 56
2019 312,779,178.18 312.78 million 52
2018 311,798,220.34 311.80 million 29
2017 309,225,293.59 309.23 million 27

Insight

Over the last 10 years, BOLLINGER SHIPYARDS LOCKPORT, L.L.C. received $2.98 billion across 502 awards, averaging $5.94 million per award. Obligations are highly concentrated in FY 2025, which accounts for $1.12 billion and materially exceeds any prior year in the period. From FY 2017 through FY 2022, annual obligations were relatively stable at roughly $256 million to $313 million, followed by a sharp decline in FY 2023 ($70.83 million) and FY 2024 ($34.53 million) before the FY 2025 spike. Award counts were more dispersed, ranging from 27 to 101 per year, indicating that obligation volatility is driven more by award value than by award 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.