Federal Contractor

SO-PAK-CO, INC. Federal Contract Obligations (Last Year)

Federal procurement profile for SO-PAK-CO, INC. (CAGE 6D623, UEI R5X5DXMX96M4) covering $171.56 million in obligated awards across 671 actions in the last full year.

SO-PAK-CO, INC. received 671 award actions totaling $171,560,930.12 in the last full year, for an average action value of $255,679.47. Most obligations came from the Defense Logistics Agency, with smaller activity from FEMA, and the largest NAICS concentrations were fruit and vegetable canning, dog and cat food manufacturing, and other food manufacturing categories.

Generated at 03/21/2026

Analysis period: Last full year

Annual totals reflect the last full year only and are based on FPDS award actions, which may include multiple actions under a single contract.

CAGE Code
6D623
UEI
R5X5DXMX96M4
Total Obligated
171.56 million
171,560,930.12
Award Actions
671
Average Action Value
255,679.47

About SO-PAK-CO, INC. federal contract activity

SO-PAK-CO, INC. (CAGE 6D623, UEI R5X5DXMX96M4) obligated $171.56 million across 671 awards in the last full year, with an average award value of $255,679.47. The award profile is highly concentrated, indicating sustained federal purchasing activity rather than a one-off transaction pattern.

Agency mix and customer concentration

The vendor’s federal activity is overwhelmingly concentrated with the Defense Logistics Agency, which accounted for $169.72 million and 668 awards, or nearly the entire period total. FEMA represented a much smaller secondary customer base at $1.84 million across 3 awards, showing limited agency diversification outside DLA.

Industry profile based on NAICS activity

Procurement activity is led by NAICS 311421, Fruit and Vegetable Canning, at $139.62 million across 23 awards, making it the dominant product/service classification by obligation. Additional obligations were distributed across food and animal-related manufacturing categories, including NAICS 311111, 311999, 311611, and 311991, which together suggest a supply profile centered on packaged food and related commodities.

Annual contract trend over the analysis window

The annual trend data provided shows all reported obligations and awards occurring in 2025, totaling $171.56 million and 671 awards. With only one year in the analysis window, this dataset supports a snapshot view of current buying patterns rather than a multi-year growth or decline assessment.

How to interpret this page

This summary is based on FPDS-observed award records for the vendor over the last full year, using obligated dollars and award counts as the primary measures. Agency, NAICS, and trend sections reflect the provided rollups and are not adjusted for forecasted values, duplicates outside the reporting scope, or information not included in the source data.

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 = '6D623'
        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
97AS DEFENSE LOGISTICS AGENCY 169,721,291.34 169.72 million 668
7022 FEDERAL EMERGENCY MANAGEMENT AGENCY 1,839,638.78 1.84 million 3

Insight

Over the last full year, SO-PAK-CO, INC. received 171.56 million across 671 awards, with obligations highly concentrated in the Defense Logistics Agency. DLA accounted for 169.72 million and 668 awards, representing nearly all activity in the period. Federal Emergency Management Agency obligations were minimal by comparison at 1.84 million across 3 awards, indicating limited diversification across agencies.

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 = '6D623'
        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
311421 FRUIT AND VEGETABLE CANNING 139,618,594.99 139.62 million 23
311111 DOG AND CAT FOOD MANUFACTURING 14,077,080.00 14.08 million 2
311999 ALL OTHER MISCELLANEOUS FOOD MANUFACTURING 10,676,935.85 10.68 million 197
311611 ANIMAL (EXCEPT POULTRY) SLAUGHTERING 4,002,480.50 4.00 million 442
311991 PERISHABLE PREPARED FOOD MANUFACTURING 1,839,638.78 1.84 million 3
311919 OTHER SNACK FOOD MANUFACTURING 1,346,200.00 1.35 million 4

Insight

SO-PAK-CO, INC. shows strong concentration in NAICS 311421, Fruit and Vegetable Canning, which accounts for 139.62 million of 171.56 million obligated, or about 81 percent of last full year activity, across 23 awards. The remaining obligations are distributed across several food-related NAICS, led by 311111 Dog and Cat Food Manufacturing at 14.08 million on 2 awards and 311999 All Other Miscellaneous Food Manufacturing at 10.68 million on 197 awards. Award volume is more dispersed than dollars, with 311611 Animal (Except Poultry) Slaughtering accounting for 442 awards but only 4.00 million, indicating smaller award values outside the primary NAICS.

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 = '6D623'
        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 171,560,930.12 171.56 million 671

Insight

Over the last full year, SO-PAK-CO, INC. (CAGE 6D623) recorded $171.56 million in total obligations across 671 awards, averaging $255.7 thousand per award. Because the window contains a single annual observation for 2025, this section reflects level and concentration rather than year-over-year movement. The award activity indicates a moderate distribution across a relatively large number of actions, with obligations averaging above $250 thousand per award.

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.