Skip to content

Instantly share code, notes, and snippets.

@syntagmatic
Last active May 26, 2023 20:16
Show Gist options
  • Save syntagmatic/05a5b0897a48890133beb59c815bd953 to your computer and use it in GitHub Desktop.
Save syntagmatic/05a5b0897a48890133beb59c815bd953 to your computer and use it in GitHub Desktop.
Nutrient Parallel Coordinates IV
<!DOCTYPE html>
<meta charset="utf-8">
<title>Nutrient Parallel Coordinates IV</title>
<body>
<script src="https://d3js.org/d3.v4.js"></script>
<script src="render-queue.js"></script>
<link rel="stylesheet" href="style.css"></link>
<script>
var margin = {top: 66, right: 110, bottom: 20, left: 188},
width = document.body.clientWidth - margin.left - margin.right,
height = 340 - margin.top - margin.bottom,
innerHeight = height - 2;
var devicePixelRatio = window.devicePixelRatio || 1;
var color = d3.scaleOrdinal()
.range(["#5DA5B3","#D58323","#DD6CA7","#54AF52","#8C92E8","#E15E5A","#725D82","#776327","#50AB84","#954D56","#AB9C27","#517C3F","#9D5130","#357468","#5E9ACF","#C47DCB","#7D9E33","#DB7F85","#BA89AD","#4C6C86","#B59248","#D8597D","#944F7E","#D67D4B","#8F86C2"]);
var types = {
"Number": {
key: "Number",
coerce: function(d) { return +d; },
extent: d3.extent,
within: function(d, extent, dim) { return extent[0] <= dim.scale(d) && dim.scale(d) <= extent[1]; },
defaultScale: d3.scaleLinear().range([innerHeight, 0])
},
"String": {
key: "String",
coerce: String,
extent: function (data) { return data.sort(); },
within: function(d, extent, dim) { return extent[0] <= dim.scale(d) && dim.scale(d) <= extent[1]; },
defaultScale: d3.scalePoint().range([0, innerHeight])
},
"Date": {
key: "Date",
coerce: function(d) { return new Date(d); },
extent: d3.extent,
within: function(d, extent, dim) { return extent[0] <= dim.scale(d) && dim.scale(d) <= extent[1]; },
defaultScale: d3.scaleTime().range([0, innerHeight])
}
};
var dimensions = [
{
key: "food_group",
description: "Food Group",
type: types["String"],
axis: d3.axisLeft()
.tickFormat(function(d,i) {
return d;
})
},
{
key: "Total lipid (fat) (g)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Sugars, total (g)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Calcium, Ca (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Sodium, Na (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Phosphorus, P (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Potassium, K (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Thiamin (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Riboflavin (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Niacin (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Iron, Fe (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Magnesium, Mg (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Protein (g)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Zinc, Zn (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Vitamin B-6 (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Vitamin B-12 (mcg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Folic acid (mcg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Selenium, Se (mcg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Vitamin A, IU (IU)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Vitamin K (phylloquinone) (mcg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Vitamin C, total ascorbic acid (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Vitamin D (IU)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Cholesterol (mg)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Fiber, total dietary (g)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "Carbohydrate, by difference (g)",
type: types["Number"],
scale: d3.scaleSqrt().range([innerHeight, 0])
},
{
key: "manufac_name",
description: "Manufacturer",
type: types["String"],
axis: d3.axisRight()
.tickFormat(function(d,i) {
if (d == null) return "(null)";
return i % 5 == 0 ? d.slice(0,22) : "";
})
}
];
var xscale = d3.scalePoint()
.domain(d3.range(dimensions.length))
.range([0, width]);
var yAxis = d3.axisLeft();
var container = d3.select("body").append("div")
.attr("class", "parcoords")
.style("width", width + margin.left + margin.right + "px")
.style("height", height + margin.top + margin.bottom + "px");
var svg = container.append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var canvas = container.append("canvas")
.attr("width", width * devicePixelRatio)
.attr("height", height * devicePixelRatio)
.style("width", width + "px")
.style("height", height + "px")
.style("margin-top", margin.top + "px")
.style("margin-left", margin.left + "px");
var ctx = canvas.node().getContext("2d");
ctx.globalCompositeOperation = 'darken';
ctx.globalAlpha = 0.15;
ctx.lineWidth = 1.5;
ctx.scale(devicePixelRatio, devicePixelRatio);
var output = d3.select("body").append("pre");
var axes = svg.selectAll(".axis")
.data(dimensions)
.enter().append("g")
.attr("class", function(d) { return "axis " + d.key.replace(/ /g, "_"); })
.attr("transform", function(d,i) { return "translate(" + xscale(i) + ")"; });
d3.csv("nutrient.csv", function(error, data) {
if (error) throw error;
// shuffle the data!
data = d3.shuffle(data);
console.log(data);
data.forEach(function(d) {
dimensions.forEach(function(p) {
d[p.key] = !d[p.key] ? null : p.type.coerce(d[p.key]);
});
// truncate long text strings to fit in data table
for (var key in d) {
if (d[key] && d[key].length > 35) d[key] = d[key].slice(0,36);
}
});
// type/dimension default setting happens here
dimensions.forEach(function(dim) {
if (!("domain" in dim)) {
// detect domain using dimension type's extent function
dim.domain = d3_functor(dim.type.extent)(data.map(function(d) { return d[dim.key]; }));
}
if (!("scale" in dim)) {
// use type's default scale for dimension
dim.scale = dim.type.defaultScale.copy();
}
dim.scale.domain(dim.domain);
});
var render = renderQueue(draw).rate(50);
ctx.clearRect(0,0,width,height);
ctx.globalAlpha = d3.min([0.85/Math.pow(data.length,0.3),1]);
render(data);
axes.append("g")
.each(function(d) {
var renderAxis = "axis" in d
? d.axis.scale(d.scale) // custom axis
: yAxis.scale(d.scale); // default axis
d3.select(this).call(renderAxis);
})
.append("text")
.attr("class", "title")
.attr("text-anchor", "start")
.text(function(d) { return "description" in d ? d.description : d.key; });
// Add and store a brush for each axis.
axes.append("g")
.attr("class", "brush")
.each(function(d) {
d3.select(this).call(d.brush = d3.brushY()
.extent([[-10,0], [10,height]])
.on("start", brushstart)
.on("brush", brush)
.on("end", brush)
)
})
.selectAll("rect")
.attr("x", -8)
.attr("width", 16);
d3.selectAll(".axis.food_group .tick text")
.style("fill", color);
output.text(d3.tsvFormat(data.slice(0,24)));
function project(d) {
return dimensions.map(function(p,i) {
// check if data element has property and contains a value
if (
!(p.key in d) ||
d[p.key] === null
) return null;
return [xscale(i),p.scale(d[p.key])];
});
};
function draw(d) {
ctx.strokeStyle = color(d.food_group);
ctx.beginPath();
var coords = project(d);
coords.forEach(function(p,i) {
// this tricky bit avoids rendering null values as 0
if (p === null) {
// this bit renders horizontal lines on the previous/next
// dimensions, so that sandwiched null values are visible
if (i > 0) {
var prev = coords[i-1];
if (prev !== null) {
ctx.moveTo(prev[0],prev[1]);
ctx.lineTo(prev[0]+6,prev[1]);
}
}
if (i < coords.length-1) {
var next = coords[i+1];
if (next !== null) {
ctx.moveTo(next[0]-6,next[1]);
}
}
return;
}
if (i == 0) {
ctx.moveTo(p[0],p[1]);
return;
}
ctx.lineTo(p[0],p[1]);
});
ctx.stroke();
}
function brushstart() {
d3.event.sourceEvent.stopPropagation();
}
// Handles a brush event, toggling the display of foreground lines.
function brush() {
render.invalidate();
var actives = [];
svg.selectAll(".axis .brush")
.filter(function(d) {
return d3.brushSelection(this);
})
.each(function(d) {
actives.push({
dimension: d,
extent: d3.brushSelection(this)
});
});
var selected = data.filter(function(d) {
if (actives.every(function(active) {
var dim = active.dimension;
// test if point is within extents for each active brush
return dim.type.within(d[dim.key], active.extent, dim);
})) {
return true;
}
});
// show ticks for active brush dimensions
// and filter ticks to only those within brush extents
/*
svg.selectAll(".axis")
.filter(function(d) {
return actives.indexOf(d) > -1 ? true : false;
})
.classed("active", true)
.each(function(dimension, i) {
var extent = extents[i];
d3.select(this)
.selectAll(".tick text")
.style("display", function(d) {
var value = dimension.type.coerce(d);
return dimension.type.within(value, extent, dimension) ? null : "none";
});
});
// reset dimensions without active brushes
svg.selectAll(".axis")
.filter(function(d) {
return actives.indexOf(d) > -1 ? false : true;
})
.classed("active", false)
.selectAll(".tick text")
.style("display", null);
*/
ctx.clearRect(0,0,width,height);
ctx.globalAlpha = d3.min([0.85/Math.pow(selected.length,0.3),1]);
render(selected);
output.text(d3.tsvFormat(selected.slice(0,24)));
}
});
function d3_functor(v) {
return typeof v === "function" ? v : function() { return v; };
};
</script>
We can't make this file beautiful and searchable because it's too large.
id,food_group_id,long_desc,short_desc,common_names,manufac_name,survey,ref_desc,refuse,sci_name,nitrogen_factor,protein_factor,fat_factor,calorie_factor,food_group,Protein (g),Total lipid (fat) (g),"Carbohydrate, by difference (g)",Energy (kcal),"Sugars, total (g)","Fiber, total dietary (g)","Calcium, Ca (mg)","Iron, Fe (mg)","Magnesium, Mg (mg)","Phosphorus, P (mg)","Potassium, K (mg)","Sodium, Na (mg)","Zinc, Zn (mg)","Selenium, Se (mcg)","Vitamin A, IU (IU)",Vitamin D (IU),"Vitamin C, total ascorbic acid (mg)",Thiamin (mg),Riboflavin (mg),Niacin (mg),Vitamin B-6 (mg),Vitamin B-12 (mcg),Vitamin K (phylloquinone) (mcg),Folic acid (mcg),Cholesterol (mg)
1001,100,"Butter, salted","BUTTER,WITH SALT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,0.85,81.11,0.06,717,0.06,,24,0.02,2,24,24,643,0.09,1,2499,,,0.005,0.034,0.042,0.003,0.17,7,,215
1002,100,"Butter, whipped, with salt","BUTTER,WHIPPED,W/ SALT",,,Y,,0,,6.38,,,,Dairy and Egg Products,0.49,78.3,2.87,718,0.06,0,23,0.05,1,24,41,583,0.05,0,2468,0,0,0.007,0.064,0.022,0.008,0.07,4.6,0,225
1003,100,"Butter oil, anhydrous","BUTTER OIL,ANHYDROUS",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,0.28,99.48,0,876,0,0,4,0,0,3,5,2,0.01,0,3069,0,0,0.001,0.005,0.003,0.001,0.01,8.6,0,256
1004,100,"Cheese, blue","CHEESE,BLUE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.4,28.74,2.34,353,0.5,0,528,0.31,23,387,256,1146,2.66,14.5,721,21,0,0.029,0.382,1.016,0.166,1.22,2.4,0,75
1005,100,"Cheese, brick","CHEESE,BRICK",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,23.24,29.68,2.79,371,0.51,0,674,0.43,24,451,136,560,2.6,14.5,1080,22,0,0.014,0.351,0.118,0.065,1.26,2.5,0,94
1006,100,"Cheese, brie","CHEESE,BRIE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,20.75,27.68,0.45,334,0.45,0,184,0.5,20,188,152,629,2.38,14.5,592,20,0,0.07,0.52,0.38,0.235,1.65,2.3,0,100
1007,100,"Cheese, camembert","CHEESE,CAMEMBERT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,19.8,24.26,0.46,300,0.46,0,388,0.33,20,347,187,842,2.38,14.5,820,18,0,0.028,0.488,0.63,0.227,1.3,2,0,72
1008,100,"Cheese, caraway","CHEESE,CARAWAY",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,25.18,29.2,3.06,376,,0,673,0.64,22,490,93,690,2.94,14.5,1054,,0,0.031,0.45,0.18,0.074,0.27,,0,93
1009,100,"Cheese, cheddar","CHEESE,CHEDDAR",,,Y,,0,,,,,,Dairy and Egg Products,22.87,33.31,3.09,404,0.48,0,710,0.14,27,455,76,653,3.64,28.5,1242,24,0,0.029,0.428,0.059,0.066,1.1,2.4,0,99
1010,100,"Cheese, cheshire","CHEESE,CHESHIRE",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,23.37,30.6,4.78,387,,0,643,0.21,21,464,95,700,2.79,14.5,985,,0,0.046,0.293,0.08,0.074,0.83,,0,103
1011,100,"Cheese, colby","CHEESE,COLBY",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,23.76,32.11,2.57,394,0.52,0,685,0.76,26,457,127,604,3.07,14.5,994,24,0,0.015,0.375,0.093,0.079,0.83,2.7,0,95
1012,100,"Cheese, cottage, creamed, large or small curd","CHEESE,COTTAGE,CRMD,LRG OR SML CURD",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,11.12,4.3,3.38,98,2.67,0,83,0.07,8,159,104,364,0.4,9.7,140,3,0,0.027,0.163,0.099,0.046,0.43,0,0,17
1013,100,"Cheese, cottage, creamed, with fruit","CHEESE,COTTAGE,CRMD,W/FRUIT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,10.69,3.85,4.61,97,2.38,0.2,53,0.16,7,113,90,344,0.33,7.7,146,0,1.4,0.033,0.142,0.15,0.068,0.53,0.4,0,13
1014,100,"Cheese, cottage, nonfat, uncreamed, dry, large or small curd","CHEESE,COTTAGE,NONFAT,UNCRMD,DRY,LRG OR SML CURD",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,10.34,0.29,6.66,72,1.85,0,86,0.15,11,190,137,372,0.47,9.4,8,0,0,0.023,0.226,0.144,0.016,0.46,0,0,7
1015,100,"Cheese, cottage, lowfat, 2% milkfat","CHEESE,COTTAGE,LOWFAT,2% MILKFAT",,,Y,,0,,,,,,Dairy and Egg Products,10.45,2.27,4.76,81,4,0,111,0.13,9,150,125,308,0.51,11.9,225,0,0,0.02,0.251,0.103,0.057,0.47,0,0,12
1016,100,"Cheese, cottage, lowfat, 1% milkfat","CHEESE,COTTAGE,LOWFAT,1% MILKFAT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,12.39,1.02,2.72,72,2.72,0,61,0.14,5,134,86,406,0.38,9,41,0,0,0.021,0.165,0.128,0.068,0.63,0.1,0,4
1017,100,"Cheese, cream","CHEESE,CREAM",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,6.15,34.44,5.52,350,3.76,0,97,0.11,9,107,132,314,0.5,8.6,1111,0,0,0.023,0.23,0.091,0.056,0.22,2.1,0,101
1018,100,"Cheese, edam","CHEESE,EDAM",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.99,27.8,1.43,357,1.43,0,731,0.44,30,536,188,812,3.75,14.5,825,20,0,0.037,0.389,0.082,0.076,1.54,2.3,0,89
1019,100,"Cheese, feta","CHEESE,FETA",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,14.21,21.28,4.09,264,4.09,0,493,0.65,19,337,62,917,2.88,15,422,16,0,0.154,0.844,0.991,0.424,1.69,1.8,0,89
1020,100,"Cheese, fontina","CHEESE,FONTINA",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,25.6,31.14,1.55,389,1.55,0,550,0.23,14,346,64,800,3.5,14.5,913,23,0,0.021,0.204,0.15,0.083,1.68,2.6,0,116
1021,100,"Cheese, gjetost","CHEESE,GJETOST",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,9.65,29.51,42.65,466,,0,400,0.52,70,444,1409,600,1.14,14.5,1113,,0,0.315,1.382,0.813,0.271,2.42,,0,94
1022,100,"Cheese, gouda","CHEESE,GOUDA",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.94,27.44,2.22,356,2.22,0,700,0.24,29,546,121,819,3.9,14.5,563,20,0,0.03,0.334,0.063,0.08,1.54,2.3,0,114
1023,100,"Cheese, gruyere","CHEESE,GRUYERE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,29.81,32.34,0.36,413,0.36,0,1011,0.17,36,605,81,714,3.9,14.5,948,24,0,0.06,0.279,0.106,0.081,1.6,2.7,0,110
1024,100,"Cheese, limburger","CHEESE,LIMBURGER",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,20.05,27.25,0.49,327,0.49,0,497,0.13,21,393,128,800,2.1,14.5,1155,20,0,0.08,0.503,0.158,0.086,1.04,2.3,0,90
1025,100,"Cheese, monterey","CHEESE,MONTEREY",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.48,30.28,0.68,373,0.5,0,746,0.72,27,444,81,600,3,14.5,769,22,0,0.015,0.39,0.093,0.079,0.83,2.5,0,89
1026,100,"Cheese, mozzarella, whole milk","CHEESE,MOZZARELLA,WHL MILK",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,22.17,22.35,2.19,300,1.03,0,505,0.44,20,354,76,627,2.92,17,676,16,0,0.03,0.283,0.104,0.037,2.28,2.3,0,79
1027,100,"Cheese, mozzarella, whole milk, low moisture","CHEESE,MOZZARELLA,WHL MILK,LO MOIST",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.6,24.64,2.47,318,1.01,0,575,0.2,21,412,75,710,2.46,16.1,745,18,0,0.016,0.27,0.094,0.062,0.73,2.5,0,89
1028,100,"Cheese, mozzarella, part skim milk","CHEESE,MOZZARELLA,PART SKIM MILK",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.26,15.92,2.77,254,1.13,0,782,0.22,23,463,84,619,2.76,14.4,481,12,0,0.018,0.303,0.105,0.07,0.82,1.6,0,64
1029,100,"Cheese, mozzarella, low moisture, part-skim","CHEESE,MOZZARELLA,LO MOIST,PART-SKIM",,,Y,,0,,,,,,Dairy and Egg Products,23.75,19.78,5.58,295,1.9,0,697,0.22,27,548,188,666,3.62,27.6,829,15,0,0.024,0.353,0.111,0.1,1.68,1.3,0,64
1030,100,"Cheese, muenster","CHEESE,MUENSTER",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,23.41,30.04,1.12,368,1.12,0,717,0.41,27,468,134,628,2.81,14.5,1012,22,0,0.013,0.32,0.103,0.056,1.47,2.5,0,96
1031,100,"Cheese, neufchatel","CHEESE,NEUFCHATEL",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,9.15,22.78,3.59,253,3.19,0,117,0.13,10,138,152,334,0.82,3,841,,0,0.022,0.155,0.21,0.041,0.3,1.7,0,74
1032,100,"Cheese, parmesan, grated","CHEESE,PARMESAN,GRATED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,28.42,27.84,13.91,420,0.07,0,853,0.49,34,627,180,1804,4.2,34.4,974,21,0,0.026,0.358,0.08,0.081,1.4,1.7,0,86
1033,100,"Cheese, parmesan, hard","CHEESE,PARMESAN,HARD",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,35.75,25.83,3.22,392,0.8,0,1184,0.82,44,694,92,1376,2.75,22.5,781,19,0,0.039,0.332,0.271,0.091,1.2,1.7,0,68
1034,100,"Cheese, port de salut","CHEESE,PORT DE SALUT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,23.78,28.2,0.57,352,0.57,0,650,0.43,24,360,136,534,2.6,14.5,1092,21,0,0.014,0.24,0.06,0.053,1.5,2.4,0,123
1035,100,"Cheese, provolone","CHEESE,PROVOLONE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,25.58,26.62,2.14,351,0.56,0,756,0.52,28,496,138,876,3.23,14.5,880,20,0,0.019,0.321,0.156,0.073,1.46,2.2,0,69
1036,100,"Cheese, ricotta, whole milk","CHEESE,RICOTTA,WHOLE MILK",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,11.26,12.98,3.04,174,0.27,0,207,0.38,11,158,105,84,1.16,14.5,445,10,0,0.013,0.195,0.104,0.043,0.34,1.1,0,51
1037,100,"Cheese, ricotta, part skim milk","CHEESE,RICOTTA,PART SKIM MILK",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,11.39,7.91,5.14,138,0.31,0,272,0.44,15,183,125,99,1.34,16.7,384,6,0,0.021,0.185,0.078,0.02,0.29,0.7,0,31
1038,100,"Cheese, romano","CHEESE,ROMANO",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,31.8,26.94,3.63,387,0.73,0,1064,0.77,41,760,86,1433,2.58,14.5,415,20,0,0.037,0.37,0.077,0.085,1.12,2.2,0,104
1039,100,"Cheese, roquefort","CHEESE,ROQUEFORT",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.54,30.64,2,369,,0,662,0.56,30,392,91,1809,2.08,14.5,1047,,0,0.04,0.586,0.734,0.124,0.64,,0,90
1040,100,"Cheese, swiss","CHEESE,SWISS",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,26.96,30.99,1.44,393,0,0,890,0.13,33,574,72,187,4.37,30,1047,0,0,0.011,0.302,0.064,0.071,3.06,1.4,0,93
1041,100,"Cheese, tilsit","CHEESE,TILSIT",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.41,25.98,1.88,340,,0,700,0.23,13,500,65,753,3.5,14.5,1045,,0,0.061,0.359,0.205,0.065,2.1,,0,102
1042,100,"Cheese, pasteurized process, American, fortified with vitamin D","CHEESE,PAST PROCESS,AMERICAN,FORT W/ VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,18.13,30.71,4.78,366,2.26,0,1045,0.63,26,641,132,1671,2.49,20.2,1131,301,0,0.015,0.234,0.076,0.054,1.5,3.7,0,100
1043,100,"Cheese, pasteurized process, pimento","CHEESE,PAST PROCESS,PIMENTO",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,22.13,31.2,1.73,375,0.62,0.1,614,0.42,22,744,162,915,2.98,14.5,1030,22,2.3,0.027,0.354,0.078,0.071,0.7,2.9,0,94
1044,100,"Cheese, pasteurized process, swiss","CHEESE,PAST PROCESS,SWISS",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.73,25.01,2.1,334,1.23,0,772,0.61,29,762,216,1370,3.61,15.9,746,18,0,0.014,0.276,0.038,0.036,1.23,2.2,0,85
1045,100,"Cheese food, cold pack, American","CHEESE FD,COLD PK,AMERICAN",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,19.66,24.46,8.32,331,,0,497,0.84,30,400,363,966,3.01,16.2,705,,0,0.03,0.446,0.074,0.141,1.28,,0,64
1046,100,"Cheese food, pasteurized process, American, vitamin D fortified","CHEESE FD,PAST PROCESS,AMERICAN,VITAMIN D FORT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,16.86,25.63,8.56,330,5.59,0,682,0.26,27,438,255,1284,2.31,19.6,761,102,0,0.035,0.36,0.155,0.102,1.33,3.4,0,98
1047,100,"Cheese food, pasteurized process, swiss","CHEESE FD,PAST PROCESS,SWISS",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.92,24.14,4.5,323,,0,723,0.6,28,526,284,1552,3.55,16.1,856,,0,0.014,0.4,0.104,0.035,2.3,,0,82
1048,100,"Cheese spread, pasteurized process, American","CHEESE SPRD,PAST PROCESS,AMERICAN",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,16.41,21.23,8.73,290,7.32,0,562,0.33,29,875,242,1625,2.59,11.3,653,16,0,0.048,0.431,0.131,0.117,0.4,1.8,0,55
1049,100,"Cream, fluid, half and half","CREAM,FLUID,HALF AND HALF",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.13,10.39,4.73,123,4.13,0,107,0.05,10,95,132,61,0.39,3.2,354,2,0.9,0.03,0.194,0.109,0.05,0.19,1.3,0,35
1050,100,"Cream, fluid, light (coffee cream or table cream)","CREAM,FLUID,LT (COFFEE CRM OR TABLE CRM)",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.96,19.1,2.82,191,3.67,0,91,0.05,9,92,136,72,0.32,4.6,656,44,0.8,0.023,0.19,0.09,0.044,0.14,1.7,0,59
1052,100,"Cream, fluid, light whipping","CREAM,FLUID,LT WHIPPING",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.17,30.91,2.96,292,2.96,0,69,0.03,7,61,97,34,0.25,0.5,1013,23,0.6,0.024,0.125,0.042,0.028,0.2,2.7,0,111
1053,100,"Cream, fluid, heavy whipping","CREAM,FLUID,HVY WHIPPING",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.84,36.08,2.74,340,2.92,0,66,0.1,7,58,95,27,0.24,3,1470,63,0.6,0.02,0.188,0.064,0.035,0.16,3.2,0,113
1054,100,"Cream, whipped, cream topping, pressurized","CREAM,WHIPPED,CRM TOPPING,PRESSURIZED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.2,22.22,12.49,257,8,0,101,0.05,11,89,147,8,0.37,1.4,685,16,0,0.037,0.065,0.07,0.041,0.29,1.9,0,76
1055,100,"Cream, sour, reduced fat, cultured","CREAM,SOUR,RED FAT,CULTURED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.94,12,4.26,135,0.16,0,104,0.07,10,95,129,89,0.5,2.1,372,9,0.9,0.035,0.149,0.067,0.016,0.3,0.6,0,39
1056,100,"Cream, sour, cultured","CREAM,SOUR,CULTURED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.44,19.35,4.63,198,3.41,0,101,0.07,10,76,125,31,0.33,3.7,447,0,0.9,0.02,0.168,0.093,0.041,0.21,1.5,0,59
1057,100,Eggnog,EGGNOG,,,Y,,0,,6.37,4.27,8.79,3.9,Dairy and Egg Products,4.55,4.19,8.05,88,8.05,0,130,0.2,19,109,165,54,0.46,4.2,206,49,1.5,0.034,0.19,0.105,0.05,0.45,0.3,0,59
1058,100,"Sour dressing, non-butterfat, cultured, filled cream-type","SOUR DRSNG,NON-BUTTERFAT,CULTURED,FILLED CREAM-TYPE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.25,16.57,4.68,178,4.68,0,113,0.03,10,87,162,48,0.37,2.3,10,0,0.9,0.038,0.163,0.074,0.017,0.33,4.1,0,5
1059,100,"Milk, filled, fluid, with blend of hydrogenated vegetable oils","MILK,FILLED,FLUID,W/BLEND OF HYDR VEG OILS",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.33,3.46,4.74,63,,0,128,0.05,13,97,139,57,0.36,2,7,,0.9,0.03,0.123,0.087,0.04,0.34,,0,2
1060,100,"Milk, filled, fluid, with lauric acid oil","MILK,FILLED,FLUID,W/LAURIC ACID OIL",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.33,3.4,4.74,63,4.74,0,128,0.05,13,97,139,57,0.36,2,7,0,0.9,0.03,0.123,0.087,0.04,0.34,0.8,0,2
1061,100,"Cheese, American, nonfat or fat free","CHEESE,AMERICAN,NONFAT OR FAT FREE",,,Y,,0,,6.25,,,,Dairy and Egg Products,21.05,0,10.53,126,5.26,0,789,0,115,316,393,1316,4.11,14.6,189,5,0,0.412,0.545,5.56,0.567,1.85,0.2,0,26
1067,100,"Cream substitute, liquid, with hydrogenated vegetable oil and soy protein","CREAM SUB,LIQ,W/HYDR VEG OIL&SOY PROT",,,Y,,0,,5.71,4.27,8.79,3.87,Dairy and Egg Products,1,9.97,11.38,136,11.38,0,9,0.03,0,64,191,67,0.02,1.1,15,0,0,0,0,0,0,0,2.5,0,0
1068,100,"Cream substitute, liquid, with lauric acid oil and sodium caseinate","CREAM SUB,LIQ,W/LAURIC ACID OIL&NA CASEINATE",,,,,0,,6.29,4.27,8.79,3.87,Dairy and Egg Products,1,9.97,11.38,136,,0,9,0.03,0,64,191,79,0.02,1.1,89,,0,0,0,0,0,0,,0,0
1069,100,"Cream substitute, powdered","CREAM SUBSTITUTE,POWDERED",,,Y,,0,,6.29,4.27,8.79,3.87,Dairy and Egg Products,2.48,32.92,59.29,529,7.77,0,2,0.26,1,288,669,124,0.07,0,0,0,0,0,0,0,0,0,1.7,0,0
1070,100,"Dessert topping, powdered","DESSERT TOPPING,POWDERED",,,,,0,,6.29,4.27,8.79,3.87,Dairy and Egg Products,4.9,39.92,52.54,577,52.54,0,17,0.03,7,74,166,122,0.08,0.6,0,0,0,0,0,0,0,0,9.9,0,0
1071,100,"Dessert topping, powdered, 1.5 ounce prepared with 1/2 cup milk","DESSERT TOPPING,PDR,1.5 OZ PREP W/1/2 CUP MILK",,,Y,,0,,6.35,4.27,8.79,3.87,Dairy and Egg Products,3.61,12.72,17.13,194,17.13,0,90,0.04,10,86,151,66,0.27,4.8,120,38,0.7,0.027,0.117,0.06,0.03,0.26,2.7,0,10
1072,100,"Dessert topping, pressurized","DESSERT TOPPING,PRESSURIZED",,,Y,,0,,6.29,4.27,8.79,3.87,Dairy and Egg Products,0.98,22.3,16.07,264,16.07,0,5,0.02,1,18,19,62,0.01,1.5,78,0,0,0,0,0,0,0,5.5,0,0
1073,100,"Dessert topping, semi solid, frozen","DESSERT TOPPING,SEMI SOLID,FRZ",,,Y,,0,,6.29,4.27,8.84,3.87,Dairy and Egg Products,1.25,25.31,23.05,318,23.05,0,6,0.12,2,8,18,25,0.03,2.1,143,0,0,0,0,0,0,0,6.3,0,0
1074,100,"Sour cream, imitation, cultured","SOUR CRM,IMITN,CULTURED",,,Y,,0,,6.29,4.27,8.79,3.87,Dairy and Egg Products,2.4,19.52,6.63,208,6.63,0,3,0.39,6,45,161,102,1.18,2.5,0,0,0,0,0,0,0,0,4.8,0,0
1076,100,"Milk substitutes, fluid, with lauric acid oil","MILK SUBSTITUTES,FLUID,W/LAURIC ACID OIL",,,,,0,,6.29,4.27,8.79,3.87,Dairy and Egg Products,1.75,3.41,6.16,61,,0,33,0.39,6,74,114,78,1.18,1.9,0,,0,0.012,0.088,0,0,0,,0,0
1077,100,"Milk, whole, 3.25% milkfat, with added vitamin D","MILK,WHL,3.25% MILKFAT,W/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.15,3.25,4.8,61,5.05,0,113,0.03,10,84,132,43,0.37,3.7,162,51,0,0.046,0.169,0.089,0.036,0.45,0.3,0,10
1078,100,"Milk, producer, fluid, 3.7% milkfat","MILK,PRODUCER,FLUID,3.7% MILKFAT",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.28,3.66,4.65,64,,0,119,0.05,13,93,151,49,0.38,2,138,,1.5,0.038,0.161,0.084,0.042,0.36,,0,14
1079,100,"Milk, reduced fat, fluid, 2% milkfat, with added vitamin A and vitamin D","MILK,RED FAT,FLUID,2% MILKFAT,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.3,1.98,4.8,50,5.06,0,120,0.02,11,92,140,47,0.48,2.5,190,49,0.2,0.039,0.185,0.092,0.038,0.53,0.2,0,8
1080,100,"Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids and vitamin A and vitamin D","MILK,RED FAT,FLUID,2% MILKFAT,W/ ADDED NFMS, VIT A & VIT D",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.48,1.92,4.97,51,,0,128,0.05,14,100,162,52,0.4,2.3,204,40,1,0.04,0.173,0.09,0.045,0.38,,0,8
1081,100,"Milk, reduced fat, fluid, 2% milkfat, protein fortified, with added vitamin A and vitamin D","MILK,RED FAT,FLUID,2% MILKFAT,PROT FORT,W/ ADDED VIT A & D",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.95,1.98,5.49,56,5.26,0,143,0.06,16,112,182,59,0.45,2.6,5,40,1.1,0.045,0.194,0.101,0.051,0.43,0.1,0,8
1082,100,"Milk, lowfat, fluid, 1% milkfat, with added vitamin A and vitamin D","MILK,LOWFAT,FLUID,1% MILKFAT,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.37,0.97,4.99,42,5.2,0,125,0.03,11,95,150,44,0.42,3.3,196,48,0,0.02,0.185,0.093,0.037,0.47,0.1,0,5
1083,100,"Milk, lowfat, fluid, 1% milkfat, with added nonfat milk solids, vitamin A and vitamin D","MILK,LOWFAT,FLUID,1% MILKFAT,W/ ADD NONFAT MILK SOL,VIT A/ D",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.48,0.97,4.97,43,,0,128,0.05,14,100,162,52,0.4,2.3,204,40,1,0.04,0.173,0.09,0.045,0.38,,0,4
1084,100,"Milk, lowfat, fluid, 1% milkfat, protein fortified, with added vitamin A and vitamin D","MILK,LOWFAT,FLUID,1% MILKFAT,PROT FORT,W/ ADDED VIT A & D",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.93,1.17,5.52,48,,0,142,0.06,16,111,180,58,0.45,2.5,203,40,1.2,0.045,0.192,0.1,0.05,0.43,,0,4
1085,100,"Milk, nonfat, fluid, with added vitamin A and vitamin D (fat free or skim)","MILK,NONFAT,FLUID,W/ ADDED VIT A & VIT D (FAT FREE OR SKIM)",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.37,0.08,4.96,34,5.09,0,122,0.03,11,101,156,42,0.42,3.1,204,47,0,0.045,0.182,0.094,0.037,0.5,0,0,2
1086,100,"Milk, nonfat, fluid, with added nonfat milk solids, vitamin A and vitamin D (fat free or skim)","MILK,NONFAT,FLUID,W/ ADDED NONFAT MILK SOL,VIT A & VIT D",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.57,0.25,5.02,37,5.02,0,129,0.05,15,104,171,53,0.41,2.2,214,49,1,0.041,0.175,0.091,0.046,0.39,0,0,2
1087,100,"Milk, nonfat, fluid, protein fortified, with added vitamin A and vitamin D (fat free and skim)","MILK,NONFAT,FLUID,PROT FORT,W/ ADD VIT A & D (FAT FREE/SKIM)",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.96,0.25,5.56,41,,0,143,0.06,16,112,182,59,0.45,2.4,203,40,1.1,0.045,0.194,0.101,0.05,0.43,,0,2
1088,100,"Milk, buttermilk, fluid, cultured, lowfat","MILK,BTTRMLK,FLUID,CULTURED,LOWFAT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.31,0.88,4.79,40,4.79,0,116,0.05,11,89,151,190,0.42,2,47,1,1,0.034,0.154,0.058,0.034,0.22,0.1,0,4
1089,100,"Milk, low sodium, fluid","MILK,LO NA,FLUID",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.1,3.46,4.46,61,4.46,0,101,0.05,5,86,253,3,0.38,2,105,51,0.9,0.02,0.105,0.043,0.034,0.36,0.3,0,14
1090,100,"Milk, dry, whole, with added vitamin D","MILK,DRY,WHL,W/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,26.32,26.71,38.42,496,38.42,0,912,0.47,85,776,1330,371,3.34,16.3,934,420,8.6,0.283,1.205,0.646,0.302,3.25,2.2,0,97
1091,100,"Milk, dry, nonfat, regular, without added vitamin A and vitamin D","MILK,DRY,NONFAT,REG,WO/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,36.16,0.77,51.98,362,51.98,0,1257,0.32,110,968,1794,535,4.08,27.3,22,0,6.8,0.415,1.55,0.951,0.361,4.03,0.1,0,20
1092,100,"Milk, dry, nonfat, instant, with added vitamin A and vitamin D","MILK,DRY,NONFAT,INST,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,35.1,0.72,52.19,358,52.19,0,1231,0.31,117,985,1705,549,4.41,27.3,2365,440,5.6,0.413,1.744,0.891,0.345,3.99,0,0,18
1093,100,"Milk, dry, nonfat, calcium reduced","MILK,DRY,NONFAT,CA RED",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,35.5,0.2,51.8,354,,0,280,0.32,60,1011,680,2280,4.03,27.3,8,,6.7,0.163,1.642,0.665,0.298,3.98,,0,2
1094,100,"Milk, buttermilk, dried","MILK,BUTTERMILK,DRIED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,34.3,5.78,49,387,49,0,1184,0.3,110,933,1592,517,4.02,20.3,175,20,5.7,0.392,1.579,0.876,0.338,3.82,0.4,0,69
1095,100,"Milk, canned, condensed, sweetened","MILK,CND,COND,SWTND",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,7.91,8.7,54.4,321,54.4,0,284,0.19,26,253,371,127,0.94,14.8,267,6,2.6,0.09,0.416,0.21,0.051,0.44,0.6,0,34
1096,100,"Milk, canned, evaporated, with added vitamin D and without added vitamin A","MILK,CND,EVAP,W/ ADDED VITAMIN D & WO/ ADDED VIT A",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,6.81,7.56,10.04,134,10.04,0,261,0.19,24,203,303,106,0.77,2.3,233,79,1.9,0.047,0.316,0.194,0.05,0.16,0.5,0,29
1097,100,"Milk, canned, evaporated, nonfat, with added vitamin A and vitamin D","MILK,CND,EVAP,NONFAT,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,7.55,0.2,11.35,78,11.35,0,290,0.29,27,195,332,115,0.9,2.5,394,79,1.2,0.045,0.309,0.174,0.055,0.24,0,0,4
1102,100,"Milk, chocolate, fluid, commercial, whole, with added vitamin A and vitamin D","MILK,CHOC,FLUID,COMM,WHL,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.17,3.39,10.34,83,9.54,0.8,112,0.24,13,101,167,60,0.41,1.9,98,51,0.9,0.037,0.162,0.125,0.04,0.33,0.3,0,12
1103,100,"Milk, chocolate, fluid, commercial, reduced fat, with added vitamin A and vitamin D","MILK,CHOC,FLUID,COMM,RED FAT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.99,1.9,12.13,76,9.55,0.7,109,0.24,14,102,169,66,0.39,3.4,227,49,0,0.045,0.183,0.164,0.024,0.33,0.2,0,8
1104,100,"Milk, chocolate, lowfat, with added vitamin A and vitamin D","MILK,CHOC,LOWFAT,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.46,1,9.86,62,9.94,0.1,129,0.23,13,96,172,65,0.43,1.9,174,43,0.4,0.031,0.247,0.124,0.047,0.23,0.1,0,5
1105,100,"Milk, chocolate beverage, hot cocoa, homemade","MILK,CHOC BEV,HOT COCOA,HOMEMADE",,,,,0,,,,,,Dairy and Egg Products,3.52,2.34,10.74,77,9.66,1,114,0.42,23,105,197,44,0.63,2.7,176,45,0.2,0.039,0.182,0.133,0.04,0.49,0.2,0,8
1106,100,"Milk, goat, fluid, with added vitamin D","MILK,GOAT,FLUID,W/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.56,4.14,4.45,69,4.45,0,134,0.05,14,111,204,50,0.3,1.4,198,51,1.3,0.048,0.138,0.277,0.046,0.07,0.3,0,11
1107,100,"Milk, human, mature, fluid","MILK,HUMAN,MATURE,FLUID",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,1.03,4.38,6.89,70,6.89,0,32,0.03,3,14,51,17,0.17,1.8,212,3,5,0.014,0.036,0.177,0.011,0.05,0.3,0,14
1108,100,"Milk, indian buffalo, fluid","MILK,INDIAN BUFFALO,FLUID",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.75,6.89,5.18,97,,0,169,0.12,31,117,178,52,0.22,,178,,2.3,0.052,0.135,0.091,0.023,0.36,,0,19
1109,100,"Milk, sheep, fluid","MILK,SHEEP,FLUID",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,5.98,7,5.36,108,,0,193,0.1,18,158,137,44,0.54,1.7,147,,4.2,0.065,0.355,0.417,0.06,0.71,,0,27
1110,100,"Milk shakes, thick chocolate","MILK SHAKES,THICK CHOC",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.05,2.7,21.15,119,20.85,0.3,132,0.31,16,126,224,111,0.48,1.9,67,41,0,0.047,0.222,0.124,0.025,0.32,0.2,0,11
1111,100,"Milk shakes, thick vanilla","MILK SHAKES,THICK VANILLA",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.86,3.03,17.75,112,17.75,0,146,0.1,12,115,183,95,0.39,2.3,91,48,0,0.03,0.195,0.146,0.042,0.52,0.2,0,12
1112,100,"Whey, acid, fluid","WHEY,ACID,FLUID",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,0.76,0.09,5.12,24,5.12,0,103,0.08,10,78,143,48,0.43,1.8,7,,0.1,0.042,0.14,0.079,0.042,0.18,0,0,1
1113,100,"Whey, acid, dried","WHEY,ACID,DRIED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,11.73,0.54,73.45,339,73.45,0,2054,1.24,199,1349,2289,968,6.31,27.3,59,0,0.9,0.622,2.06,1.16,0.62,2.5,0,0,3
1114,100,"Whey, sweet, fluid","WHEY,SWEET,FLUID",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,0.85,0.36,5.14,27,5.14,0,47,0.06,8,46,161,54,0.13,1.9,12,,0.1,0.036,0.158,0.074,0.031,0.28,0,0,2
1115,100,"Whey, sweet, dried","WHEY,SWEET,DRIED",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,12.93,1.07,74.46,353,74.46,0,796,0.88,176,932,2080,1079,1.97,27.2,30,0,1.5,0.519,2.208,1.258,0.584,2.37,0.1,0,6
1116,100,"Yogurt, plain, whole milk, 8 grams protein per 8 ounce","YOGURT,PLN,WHL MILK,8 GRAMS PROT PER 8 OZ",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.47,3.25,4.66,61,4.66,0,121,0.05,12,95,155,46,0.59,2.2,99,2,0.5,0.029,0.142,0.075,0.032,0.37,0.2,0,13
1117,100,"Yogurt, plain, low fat, 12 grams protein per 8 ounce","YOGURT,PLN,LOFAT,12 GRAMS PROT PER 8 OZ",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,5.25,1.55,7.04,63,7.04,0,183,0.08,17,144,234,70,0.89,3.3,51,1,0.8,0.044,0.214,0.114,0.049,0.56,0.2,0,6
1118,100,"Yogurt, plain, skim milk, 13 grams protein per 8 ounce","YOGURT,PLN,SKIM MILK,13 GRAMS PROT PER 8 OZ",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,5.73,0.18,7.68,56,7.68,0,199,0.09,19,157,255,77,0.97,3.6,7,0,0.9,0.048,0.234,0.124,0.053,0.61,0.2,0,2
1119,100,"Yogurt, vanilla, low fat, 11 grams protein per 8 ounce","YOGURT,VANILLA,LOFAT,11 GRAMS PROT PER 8 OZ",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.93,1.25,13.8,85,13.8,0,171,0.07,16,135,219,66,0.83,4.9,43,1,0.8,0.042,0.201,0.107,0.045,0.53,0.1,0,5
1120,100,"Yogurt, fruit, low fat, 9 grams protein per 8 ounce","YOGURT,FRUIT,LOFAT,9 GRAMS PROT PER 8 OZ",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.98,1.15,18.64,99,18.64,0,138,0.06,13,109,177,53,0.67,2.8,40,1,0.6,0.034,0.162,0.086,0.037,0.43,0.1,0,5
1121,100,"Yogurt, fruit, low fat, 10 grams protein per 8 ounce","YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OZ",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.37,1.08,19.05,102,19.05,0,152,0.07,15,119,195,58,0.74,3.1,36,1,0.7,0.037,0.178,0.095,0.04,0.47,0.1,0,4
1122,100,"Yogurt, fruit, low fat, 11 grams protein per 8 ounce","YOGURT,FRUIT,LOFAT,11 GRAMS PROT PER 8 OZ",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.86,1.41,18.6,105,,0,169,0.07,16,133,216,65,0.82,3.1,60,,0.7,0.041,0.198,0.105,0.045,0.52,,0,6
1123,100,"Egg, whole, raw, fresh","EGG,WHL,RAW,FRSH",,,Y,Shell,12,,6.25,4.36,9.02,3.68,Dairy and Egg Products,12.56,9.51,0.72,143,0.37,0,56,1.75,12,198,138,142,1.29,30.7,540,82,0,0.04,0.457,0.075,0.17,0.89,0.3,0,372
1124,100,"Egg, white, raw, fresh","EGG,WHITE,RAW,FRESH",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,10.9,0.17,0.73,52,0.71,0,7,0.08,11,15,163,166,0.03,20,0,0,0,0.004,0.439,0.105,0.005,0.09,0,0,0
1125,100,"Egg, yolk, raw, fresh","EGG,YOLK,RAW,FRSH",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,15.86,26.54,3.59,322,0.56,0,129,2.73,5,390,109,48,2.3,56,1442,218,0,0.176,0.528,0.024,0.35,1.95,0.7,0,1085
1126,100,"Egg, yolk, raw, frozen, pasteurized","EGG,YOLK,RAW,FRZ,PAST",,,,,0,,,,,,Dairy and Egg Products,15.53,25.6,0.81,296,0.16,0,134,4.55,11,420,121,67,3.17,56.4,1469,238,0,0.223,0.563,0.031,0.412,1.9,0.7,0,991
1127,100,"Egg, yolk, raw, frozen, sugared, pasteurized","EGG,YOLK,RAW,FRZ,SUGARED,PAST",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,13.87,22.82,10.95,307,10.3,0,124,3.7,10,404,105,70,3.06,53.5,1103,123,0,0.14,0.523,0.037,0.398,1.64,0.7,0,917
1128,100,"Egg, whole, cooked, fried","EGG,WHL,CKD,FRIED",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,13.61,14.84,0.83,196,0.4,0,62,1.89,13,215,152,207,1.39,33.1,787,88,0,0.044,0.495,0.082,0.184,0.97,5.6,0,401
1129,100,"Egg, whole, cooked, hard-boiled","EGG,WHL,CKD,HARD-BOILED",,,Y,Shell,12,,6.25,4.36,9.02,3.68,Dairy and Egg Products,12.58,10.61,1.12,155,1.12,0,50,1.19,10,172,126,124,1.05,30.8,520,87,0,0.066,0.513,0.064,0.121,1.11,0.3,0,373
1130,100,"Egg, whole, cooked, omelet","EGG,WHOLE,COOKED,OMELET",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,10.57,11.66,0.64,154,0.31,0,48,1.48,11,167,117,155,1.09,25.8,617,69,0,0.034,0.386,0.064,0.143,0.76,4.5,0,313
1131,100,"Egg, whole, cooked, poached","EGG,WHL,CKD,POACHED",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,12.51,9.47,0.71,143,0.37,0,56,1.75,12,197,138,297,1.29,30.6,538,82,0,0.032,0.387,0.063,0.144,0.71,0.3,0,370
1132,100,"Egg, whole, cooked, scrambled","EGG,WHL,CKD,SCRMBLD",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,9.99,10.98,1.61,149,1.39,0,66,1.31,11,165,132,145,1.04,23.5,578,72,0,0.04,0.376,0.076,0.134,0.76,4,0,277
1133,100,"Egg, whole, dried","EGG,WHL,DRIED",,,Y,,0,,,,,,Dairy and Egg Products,48.05,43.9,1.13,592,0.56,0,244,7.2,34,629,540,476,3.15,164.7,999,331,0,0.183,1.977,0.34,0.499,2.96,1.2,0,1630
1134,100,"Egg, whole, dried, stabilized, glucose reduced","EGG,WHL,DRIED,STABILIZED,GLUCOSE RED",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,48.17,43.95,2.38,615,,0,222,8.28,49,715,515,548,5.71,121.1,2050,,0,0.325,1.232,0.259,0.42,10.51,,0,2017
1135,100,"Egg, white, dried, flakes, stabilized, glucose reduced","EGG,WHITE,DRIED,FLAKES,STABILIZED,GLUCOSE RED",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,76.92,0.04,4.17,351,0,0,83,0.23,67,83,1042,1156,0.15,116.8,0,0,0,0.035,2.162,0.675,0.023,0.49,0,0,0
1136,100,"Egg, white, dried, powder, stabilized, glucose reduced","EGG,WHITE,DRIED,PDR,STABILIZED,GLUCOSE RED",,,Y,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,82.4,0.04,4.47,376,0,0,89,0.24,72,89,1116,1238,0.16,125.1,0,0,0,0.037,2.316,0.723,0.024,0.53,0,0,0
1137,100,"Egg, yolk, dried","EGG,YOLK,DRIED",,,Y,,0,,,,,,Dairy and Egg Products,33.63,59.13,0.66,669,0.23,0,289,9.56,26,1040,264,149,7.73,139.3,1590,417,0,0.387,1.257,0.083,0.742,5.11,1.5,0,2307
1138,100,"Egg, duck, whole, fresh, raw","EGG,DUCK,WHOLE,FRESH,RAW",,,Y,Shell,12,,6.25,4.36,9.02,3.68,Dairy and Egg Products,12.81,13.77,1.45,185,0.93,0,64,3.85,17,220,222,146,1.41,36.4,674,69,0,0.156,0.404,0.2,0.25,5.4,0.4,0,884
1139,100,"Egg, goose, whole, fresh, raw","EGG,GOOSE,WHOLE,FRESH,RAW",,,Y,Shell,13,,6.25,4.36,9.02,3.68,Dairy and Egg Products,13.87,13.27,1.35,185,0.94,0,60,3.64,16,208,210,138,1.33,36.9,650,66,0,0.147,0.382,0.189,0.236,5.1,0.4,0,852
1140,100,"Egg, quail, whole, fresh, raw","EGG,QUAIL,WHOLE,FRESH,RAW",,,Y,Shell,8,,6.25,4.36,9.02,3.68,Dairy and Egg Products,13.05,11.09,0.41,158,0.4,0,64,3.65,13,226,132,141,1.47,32,543,55,0,0.13,0.79,0.15,0.15,1.58,0.3,0,844
1141,100,"Egg, turkey, whole, fresh, raw","EGG,TURKEY,WHL,FRSH,RAW",,,,Shell,12,,6.25,4.36,9.02,3.68,Dairy and Egg Products,13.68,11.88,1.15,171,,0,99,4.1,13,170,142,151,1.58,34.3,554,,0,0.11,0.47,0.024,0.131,1.69,,0,933
1144,100,"Egg substitute, powder","EGG SUBSTITUTE,POWDER",,,Y,,0,,6.25,4.36,9.02,3.87,Dairy and Egg Products,55.5,13,21.8,444,21.8,0,326,3.16,65,478,744,800,1.82,127.7,1230,0,0.8,0.226,1.76,0.577,0.143,3.52,0.4,0,572
1145,100,"Butter, without salt","BUTTER,WITHOUT SALT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,0.85,81.11,0.06,717,0.06,0,24,0.02,2,24,24,11,0.09,1,2499,0,0,0.005,0.034,0.042,0.003,0.17,7,0,215
1146,100,"Cheese, parmesan, shredded","CHEESE,PARMESAN,SHREDDED",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,37.86,27.34,3.41,415,0.9,0,1253,0.87,51,735,97,1696,3.19,23.9,865,21,0,0.041,0.352,0.287,0.105,1.4,1.9,0,72
1151,100,"Milk, nonfat, fluid, without added vitamin A and vitamin D (fat free or skim)","MILK,NONFAT,FLUID,WO/ ADDED VIT A & VIT D (FAT FREE OR SKIM)",,,Y,,0,,,,,,Dairy and Egg Products,3.37,0.08,4.96,34,5.09,0,122,0.03,11,101,156,42,0.42,3.1,15,0,0,0.045,0.182,0.094,0.037,0.5,0,0,2
1152,100,"Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids, without added vitamin A","MILK,RED FAT,FLUID,2% MILKFAT,W/ NONFAT MILK SOL,WO/ VIT A",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.95,1.98,5.49,56,,0,143,0.06,15,112,182,59,0.41,2.6,75,,1.1,0.045,0.194,0.101,0.046,0.39,,0,8
1153,100,"Milk, canned, evaporated, with added vitamin A","MILK,CND,EVAP,W/ VIT A",,,,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,6.81,7.56,10.04,134,,0,261,0.19,24,203,303,106,0.77,2.3,397,,1.9,0.047,0.316,0.194,0.05,0.16,,0,29
1154,100,"Milk, dry, nonfat, regular, with added vitamin A and vitamin D","MILK,DRY,NONFAT,REG,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,36.16,0.77,51.98,362,51.98,0,1257,0.32,110,968,1794,535,4.08,27.3,2179,440,6.8,0.415,1.55,0.951,0.361,4.03,0.1,0,20
1155,100,"Milk, dry, nonfat, instant, without added vitamin A and vitamin D","MILK,DRY,NONFAT,INST,WO/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,35.1,0.72,52.19,358,52.19,0,1231,0.31,117,985,1705,549,4.41,27.3,15,0,5.6,0.413,1.744,0.891,0.345,3.99,0,0,18
1156,100,"Cheese, goat, hard type","CHEESE,GOAT,HARD TYPE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,30.52,35.59,2.17,452,2.17,0,895,1.88,54,729,48,423,1.59,5.5,1745,26,0,0.14,1.19,2.4,0.08,0.12,3,0,105
1157,100,"Cheese, goat, semisoft type","CHEESE,GOAT,SEMISOFT TYPE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.58,29.84,0.12,364,0.12,0,298,1.62,29,375,158,415,0.66,3.8,1464,22,0,0.072,0.676,1.148,0.06,0.22,2.5,0,79
1159,100,"Cheese, goat, soft type","CHEESE,GOAT,SOFT TYPE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,18.52,21.08,0,264,0,0,140,1.9,16,256,26,459,0.92,2.8,1033,15,0,0.07,0.38,0.43,0.25,0.19,1.8,0,46
1160,100,"Egg, yolk, raw, frozen, salted, pasteurized","EGG,YOLK,RAW,FRZ,SALTED,PAST",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,14.07,22.93,1.77,275,0.07,0,113,3.4,7,414,111,3487,2.87,56.9,1043,126,0,0.14,0.427,0.027,0.402,1.61,0.7,0,912
1161,100,"Cheese substitute, mozzarella","CHEESE SUB,MOZZARELLA",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,11.47,12.22,23.67,248,23.67,0,610,0.4,41,583,455,685,1.92,19.2,1457,0,0.1,0.026,0.444,0.317,0.051,0.81,1,0,0
1164,100,"Cheese sauce, prepared from recipe","CHEESE SAU,PREP FROM RECIPE",,,Y,,0,,6.38,4.08,8.92,3.95,Dairy and Egg Products,10.33,14.92,5.48,197,0.19,0.1,311,0.35,19,229,142,493,1.26,6.6,310,41,0.6,0.044,0.243,0.204,0.045,0.35,0.9,2,38
1165,100,"Cheese, mexican, queso anejo","CHEESE,MEXICAN,QUESO ANEJO",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.44,29.98,4.63,373,4.63,0,680,0.47,28,444,87,1131,2.94,14.5,220,22,0,0.02,0.209,0.032,0.047,1.38,2.5,0,105
1166,100,"Cheese, mexican, queso asadero","CHEESE,MEXICAN,QUESO ASADERO",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,22.6,28.26,2.87,356,2.87,0,661,0.51,26,443,86,705,3.02,14.5,190,21,0,0.021,0.223,0.181,0.053,1,2.4,0,105
1167,100,"Cheese, mexican, queso chihuahua","CHEESE,MEXICAN,QUESO CHIHUAHUA",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,21.56,29.68,5.56,374,5.56,0,651,0.47,23,442,52,617,3.5,14.5,193,22,0,0.018,0.225,0.15,0.055,1.03,2.5,0,105
1168,100,"Cheese, low fat, cheddar or colby","CHEESE,LOFAT,CHEDDAR OR COLBY",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.35,7,1.91,173,0.52,0,415,0.42,16,484,66,873,1.82,14.5,207,5,0,0.012,0.221,0.051,0.045,0.49,0.6,0,21
1169,100,"Cheese, low-sodium, cheddar or colby","CHEESE,LOW-SODIUM,CHEDDAR OR COLBY",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.35,32.62,1.91,398,0.49,0,703,0.72,27,484,112,21,3.09,14.5,996,24,0,0.021,0.375,0.086,0.076,0.83,2.7,0,100
1171,100,"Egg, whole, raw, frozen, pasteurized","EGG,WHL,RAW,FRZ,PAST",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,12.33,9.95,1.01,147,0.25,0,62,1.74,9,193,135,128,1.32,37.2,570,105,0,0.067,0.523,0.103,0.188,1,0.3,0,372
1172,100,"Egg, white, raw, frozen, pasteurized","EGG,WHITE,RAW,FRZ,PAST",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,10.2,0,1.04,48,0.25,0,8,0.04,11,13,169,169,0.07,9.2,0,0,0,0.023,0.423,0.093,0.005,0.03,0,0,0
1173,100,"Egg, white, dried","EGG,WHITE,DRIED",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,81.1,0,7.8,382,5.4,0,62,0.15,88,111,1125,1280,0.1,125.1,0,0,0,0.005,2.53,0.865,0.036,0.18,0,0,0
1174,100,"Milk, reduced fat, fluid, 2% milkfat, without added vitamin A and vitamin D","MILK,RED FAT,FLUID,2% MILKFAT,WO/ ADDED VIT A & VIT D",,,Y,,0,,0,4.27,8.79,3.87,Dairy and Egg Products,3.3,1.98,4.8,50,5.06,0,120,0.02,11,92,140,47,0.48,2.5,102,1,0.2,0.039,0.185,0.092,0.038,0.53,0.2,0,8
1175,100,"Milk, fluid, 1% fat, without added vitamin A and vitamin D","MILK,FLUID,1% FAT,WO/ ADDED VIT A & VIT D",,,Y,,0,,0,4.27,8.79,3.87,Dairy and Egg Products,3.37,0.97,4.99,42,5.2,0,125,0.03,11,95,150,44,0.42,3.3,47,1,0,0.02,0.185,0.093,0.037,0.47,0.1,0,5
1178,100,"Sour cream, reduced fat","SOUR CREAM,REDUCED FAT",,,Y,,0,,,,,,Dairy and Egg Products,7,14.1,7,181,0.3,0,141,0.06,11,85,211,70,0.27,4.1,436,10,0.9,0.04,0.24,0.07,0.02,0.3,0.7,0,35
1179,100,"Sour cream, light","SOUR CREAM,LIGHT",,,Y,,0,,,,,,Dairy and Egg Products,3.5,10.6,7.1,136,0.22,0,141,0.07,10,71,212,83,0.5,3.1,328,8,0.9,0.04,0.12,0.07,0.02,0.42,0.5,0,35
1180,100,"Sour cream, fat free","SOUR CREAM,FAT FREE",,,Y,,0,,,,,,Dairy and Egg Products,3.1,0,15.6,74,0.39,0,125,0,10,95,129,141,0.5,5.3,255,0,0,0.04,0.15,0.07,0.02,0.3,0,0,9
1182,100,"USDA Commodity, cheese, cheddar, reduced fat","USDA COMMODITY,CHS,CHEDDAR,RED FAT",,,Y,,0,,,,,,Dairy and Egg Products,27.2,18.3,2,282,0.58,0,905,0.13,35,583,93,725,4.3,15.5,633,13,0,0.03,0.3,0.06,0.084,1.66,1.5,0,56
1184,100,"Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener","YOGURT,VAN OR LEM FLAV,NONFAT MILK,SWTND W/LOW-CALORIE SWTNR",,,Y,,0,,,,,,Dairy and Egg Products,3.86,0.18,7.5,43,7.5,0,143,0.12,13,109,177,59,0.67,3.1,6,0,1.1,0.034,0.162,0.086,0.037,0.43,0,0,2
1185,100,"Parmesan cheese topping, fat free","PARMESAN CHS TOPPING,FAT FREE",,,Y,,0,,,4.27,8.79,3.87,Dairy and Egg Products,40,5,40,370,1.5,0,800,5,40,700,600,1150,3,43.3,151,0,0,0.05,0.05,0.2,0.1,1.1,0.4,0,20
1186,100,"Cheese, cream, fat free","CHEESE,CREAM,FAT FREE",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,15.69,1,7.66,105,5.48,0,351,0.19,22,523,278,702,1.5,4.9,53,0,0,0.04,0.265,0.23,0.05,0.95,0.2,0,12
1187,100,"Yogurt, chocolate, nonfat milk","YOGURT,CHOC,NONFAT MILK",,,Y,,0,,,,,,Dairy and Egg Products,3.53,0,23.53,112,14.97,1.2,88,0.42,40,166,339,135,1.13,7,0,0,0,0.047,0.215,0.223,0.047,0.5,0,0,1
1188,100,KRAFT CHEEZ WHIZ Pasteurized Process Cheese Sauce,KRAFT CHEEZ WHIZ PAST PROCESS CHS SAU,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,12,21,9.2,276,6.7,0.3,359,0.19,,806,240,1638,1.64,,649,,0.4,,0.24,,,,,,75
1189,100,KRAFT CHEEZ WHIZ LIGHT Pasteurized Process Cheese Product,KRAFT CHEEZ WHIZ LT PAST PROCESS CHS PRODUCT,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,16.3,9.5,16.2,215,8.2,0.2,418,0.16,,943,297,1705,2.36,,628,,0.4,,0.33,,,,,,35
1190,100,KRAFT FREE Singles American Nonfat Pasteurized Process Cheese Product,KRAFT FREE SINGLES AMERICAN NONFAT PAST PROCESS CHS PRODUCT,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,22.7,1,11.7,148,6.7,0.2,712,0.05,,923,236,1298,2.5,,2166,,0.2,,0.28,,,,,,16
1191,100,KRAFT VELVEETA Pasteurized Process Cheese Spread,KRAFT VELVEETA PAST PROCESS CHS SPRD,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,16.3,22,9.8,303,8.1,0,466,0.18,,863,335,1499,1.84,,1107,,0.2,,0.35,,,,,,80
1192,100,KRAFT VELVEETA LIGHT Reduced Fat Pasteurized Process Cheese Product,KRAFT VELVEETA LT RED FAT PAST PROCESS CHS PRODUCT,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,19.6,10.6,11.8,222,8.5,0,574,0.14,,1024,345,1586,2.49,,982,,0.1,,0.65,,,,,,42
1193,100,KRAFT BREAKSTONE'S Reduced Fat Sour Cream,KRAFT BREAKSTONE'S RED FAT SOUR CRM,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,4.5,12,6.5,152,6.4,0.1,161,0.06,,110,210,59,,,1053,,1.1,,,,,,,,50
1194,100,KRAFT BREAKSTONE'S FREE Fat Free Sour Cream,KRAFT BREAKSTONE'S FREE FAT FREE SOUR CRM,,"Kraft Foods, Inc.",,,0,,,,,,Dairy and Egg Products,4.7,1.3,15.1,91,7.2,0,141,0.05,,116,219,72,,,679,,1.2,,,,,,,,9
1199,100,"Cream, half and half, fat free","CREAM,HALF & HALF,FAT FREE",,,Y,,0,,6.38,,,,Dairy and Egg Products,2.6,1.4,9,59,5,0,96,0,16,151,206,100,0.81,2.9,43,0,0.7,0.056,0.237,0.124,0.062,0.52,0.2,0,5
1200,100,Reddi Wip Fat Free Whipped Topping,REDDI WIP FAT FREE WHIPPED TOPPING,,,Y,,0,,6.38,,,,Dairy and Egg Products,3,5,25,149,16,0.4,108,0.03,8,68,108,72,0.31,3,175,0,0,0.148,0.619,0.364,0.123,1.48,0.3,0,16
1202,100,"Milk, chocolate, fluid, commercial, reduced fat, with added calcium","MILK,CHOC,FLUID,COMM,RED FAT,W/ ADDED CA",,,,,0,,,,,,Dairy and Egg Products,2.99,1.9,12.13,78,9.55,0.7,194,0.24,14,76,123,66,0.39,3.4,227,,0,0.045,0.565,0.164,0.024,0.33,0.2,0,8
1203,100,"Yogurt, fruit, lowfat, with low calorie sweetener","YOGURT,FRUIT,LOFAT,W/LO CAL SWEETENER",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.86,1.41,18.6,105,2.9,0,152,0.07,16,133,194,58,0.82,3.1,443,1,0.7,0.041,0.18,0.105,0.045,0.52,1.2,0,6
1204,100,"Cheese, parmesan, dry grated, reduced fat","CHEESE,PARMESAN,DRY GRATED,RED FAT",,,Y,,0,,,,,,Dairy and Egg Products,20,20,1.37,265,0,0,1109,0.9,38,729,125,1529,3.87,17.7,605,15,0,0.029,0.486,0.114,0.049,2.26,1.7,0,88
1205,100,"Cream substitute, flavored, liquid","CREAM SUB,FLAV,LIQ",,,Y,,0,,,,,,Dairy and Egg Products,0.69,13.5,35.07,251,33.04,1.1,6,0.59,19,28,96,67,0.25,0.7,0,0,0,0.004,0.024,0.091,0.004,0,3.3,0,0
1206,100,"Cream substitute, flavored, powdered","CREAM SUB,FLAV,PDR",,,Y,,0,,6.38,,,,Dairy and Egg Products,0.68,21.47,75.42,482,58.01,1.2,5,0.63,17,28,90,123,0.23,1.3,0,0,0,0.004,0.027,0.084,0.004,0,9.1,0,0
1208,100,"Cheese, provolone, reduced fat","CHEESE,PROVOLONE,RED FAT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,24.7,17.6,3.5,274,0.55,0,756,0.52,28,496,138,615,3.23,14.5,532,13,0,0.019,0.321,0.156,0.073,1.46,1.5,0,55
1209,100,"Cheese, Mexican, blend, reduced fat","CHEESE,MEXICAN,BLEND,RED FAT",,,Y,,0,,,,,,Dairy and Egg Products,24.69,19.4,3.41,282,0.56,0,1146,0.13,35,583,93,776,4.3,15.5,586,14,0,0.03,0.3,0.06,0.084,1.66,1.6,0,62
1210,100,"Egg Mix, USDA Commodity","EGG MIX,USDA CMDTY",,,,,0,,6.25,4.36,9.02,3.68,Dairy and Egg Products,35.6,34.5,23.97,555,2.46,,171,3.23,11,451,373,576,2.76,118,398,296,,0.19,1.277,0.267,0.207,2.9,0.7,0,975
1211,100,"Milk, whole, 3.25% milkfat, without added vitamin A and vitamin D","MILK,WHL,3.25% MILKFAT,WO/ ADDED VIT A & VITAMIN D",,,Y,,0,,,,,,Dairy and Egg Products,3.15,3.27,4.78,61,5.05,0,113,0.03,10,84,132,43,0.37,3.7,162,2,0,0.046,0.169,0.089,0.036,0.45,0.3,0,10
1212,100,"Milk, dry, whole, without added vitamin D","MILK,DRY,WHL,WO/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,26.32,26.71,38.42,496,38.42,0,912,0.47,85,776,1330,371,3.34,16.3,934,20,8.6,0.283,1.205,0.646,0.302,3.25,2.2,0,97
1214,100,"Milk, canned, evaporated, without added vitamin A and vitamin D","MILK,CND,EVAP,WO/ ADDED VIT A & VITAMIN D",,,Y,,0,,,,,,Dairy and Egg Products,6.81,7.56,10.04,135,10.04,0,261,0.19,24,203,303,106,0.77,2.3,239,6,1.9,0.047,0.316,0.194,0.05,0.16,0.6,0,29
1215,100,"Cheese product, pasteurized process, American, reduced fat, fortified with vitamin D","CHEESE PRODUCT,PAST PROCESS,AMERICAN,RED FAT,FORT W/ VIT D",,,Y,,0,,,,,,Dairy and Egg Products,17.6,14.1,10.6,240,8.02,0,529,0.2,33,829,330,1201,2.36,12.4,945,212,0,0.07,0.48,0.18,0.08,1.11,2.6,0,53
1216,100,"Yogurt, fruit, low fat, 9 grams protein per 8 ounce, fortified with vitamin D","YOGURT,FRUIT,LOFAT,9 GRAMS PROT PER 8 OZ,FORT W/ VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,3.98,1.15,18.64,99,18.64,0,138,0.06,13,109,177,53,0.67,2.8,40,52,0.6,0.034,0.162,0.086,0.037,0.43,0.1,0,5
1217,100,"Yogurt, fruit, low fat, 10 grams protein per 8 ounce, fortified with vitamin D","YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OZ,FORT W/ VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.37,1.08,19.05,102,19.05,0,152,0.07,15,119,195,58,0.74,3.1,36,52,0.7,0.037,0.178,0.095,0.04,0.47,0.1,0,4
1218,100,"Yogurt, fruit variety, nonfat, fortified with vitamin D","YOGURT,FRUIT VAR,NONFAT,FORT W/ VITAMIN D",,,Y,,0,,,,,,Dairy and Egg Products,4.4,0.2,19,95,19,0,152,0.07,15,119,194,58,0.74,6,12,52,0.7,0.04,0.18,0.1,0.04,0.47,1.1,0,2
1219,100,"Yogurt, fruit, lowfat, with low calorie sweetener, fortified with vitamin D","YOGURT,FRUIT,LOWFAT,W/ LO CAL SWTNR,FORT W/ VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.86,1.41,18.6,105,2.9,0,152,0.07,16,133,194,58,0.82,3.1,443,52,0.7,0.041,0.18,0.105,0.045,0.52,1.2,0,6
1220,100,"Yogurt, vanilla, low fat, 11 grams protein per 8 ounce, fortified with vitamin D","YOGURT,VANILLA,LOFAT,11 GRAMS PROT PER 8 OZ,FORT W/ VIT D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,4.93,1.25,13.8,85,13.8,0,171,0.07,16,135,219,66,0.83,4.9,43,47,0.8,0.042,0.201,0.107,0.045,0.53,0.1,0,5
1221,100,"Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener, fortified with vitamin D","YOGURT,VAN/LEM FLAV,NONFAT MILK,W/ LO-CAL SWTNR,FORT W/VIT D",,,Y,,0,,,,,,Dairy and Egg Products,3.86,0.18,7.5,43,7.5,0,143,0.12,13,109,177,59,0.67,3.1,6,47,1.1,0.034,0.162,0.086,0.037,0.43,0,0,2
1222,100,"Yogurt, chocolate, nonfat milk, fortified with vitamin D","YOGURT,CHOC,NONFAT MILK,FORT W/ VITAMIN D",,,Y,,0,,,,,,Dairy and Egg Products,3.53,0,23.53,112,14.97,1.2,88,0.42,40,166,339,135,1.13,7,0,47,0,0.047,0.215,0.223,0.047,0.5,0,0,1
1223,100,"Protein supplement, milk based, Muscle Milk, powder","PROTEIN SUPP,MILK BSD,MUSCLE MILK,PDR",,,Y,,0,,6.38,,,,Dairy and Egg Products,45.71,17.14,18.5,411,5.71,7.1,500,8.57,200,643,1129,329,7.14,33.8,2500,200,30,0.714,0.857,10,1,3,0.5,200,21
1224,100,"Protein supplement, milk based, Muscle Milk Light, powder","PROTEIN SUPP,MILK BSD,MUSCLE MILK LT,PDR",,,Y,,0,,6.38,,,,Dairy and Egg Products,50,12,22,396,4,2,1200,12,280,700,840,250,10,33.8,3500,280,42,1,1.2,14,1.4,4.2,0.5,280,10
1225,100,Dulce de Leche,DULCE DE LECHE,,,Y,,0,,,,,,Dairy and Egg Products,6.84,7.35,55.35,315,49.74,0,251,0.17,22,193,350,129,0.79,2.7,267,6,2.6,0.016,0.405,0.21,0.016,0.31,1.3,0,29
1226,100,"Egg substitute, liquid or frozen, fat free","EGG SUB,LIQ OR FRZ,FAT FREE",,,Y,,0,,6.25,4.36,8.84,3.68,Dairy and Egg Products,10,0,2,48,2,0,73,1.98,15,72,213,199,0.98,41.3,225,66,0.5,0.12,0.386,0.14,0.133,0.34,0.2,0,0
1227,100,"Cheese, dry white, queso seco","CHEESE,DRY WHITE,QUESO SECO",,,,,0,,,,,,Dairy and Egg Products,24.51,24.35,2.04,325,0.55,,661,0.18,27,475,116,1808,3.28,22.4,800,73,,0.038,0.23,0.083,0.091,1.7,1.5,,78
1228,100,"Cheese, fresh, queso fresco","CHEESE,FRSH,QUESO FRESCO",,,Y,,0,,,,,,Dairy and Egg Products,18.09,23.82,2.98,299,2.32,0,566,0.2,24,385,129,751,2.58,19.3,806,110,0,0.042,0.173,0.027,0.076,1.68,1,0,69
1229,100,"Cheese, white, queso blanco","CHEESE,WHITE,QUESO BLANCO",,,,,0,,,,,,Dairy and Egg Products,20.38,24.31,2.53,310,1.76,,690,0.18,29,467,126,704,3.06,13.8,555,27,,0.048,0.23,0.035,0.086,1.75,1.6,,70
1230,100,"Milk, buttermilk, fluid, whole","MILK,BTTRMLK,FLUID,WHL",,,Y,,0,,,,,,Dairy and Egg Products,3.21,3.31,4.88,62,4.88,0,115,0.03,10,85,135,105,0.38,3.7,165,52,0,0.047,0.172,0.09,0.036,0.46,0.3,0,11
1231,100,"Yogurt, vanilla flavor, lowfat milk, sweetened with low calorie sweetener","YOGURT,VANILLA FLAVOR,LOWFAT MILK,SWTND W/ LO CAL SWTNR",,,Y,,0,,,,,,Dairy and Egg Products,4.93,1.25,13.8,86,5.43,0,171,0.07,16,135,219,66,0.83,4.9,43,1,0.8,0.042,0.201,0.107,0.045,0.53,0.1,0,5
1235,100,"Yogurt, frozen, flavors not chocolate, nonfat milk, with low-calorie sweetener","YOGURT,FRZ,FLAVORS NOT CHOC,NONFAT MILK,W/ LOW-CALORIE SWTNR",,,Y,,0,,,,,,Dairy and Egg Products,4.4,0.8,19.7,104,12.61,2,159,0.04,40,129,339,81,0.49,2.8,17,0,0.7,0.04,0.18,0.2,0.04,0.49,0.3,0,4
1236,100,"Ice cream, soft serve, chocolate","ICE CRM,SOFT SERVE,CHOC",,,Y,,0,,,,,,Dairy and Egg Products,4.1,13,22.2,222,21.16,0.7,131,0.21,12,116,177,61,0.52,3,589,29,0.8,0.049,0.182,0.095,0.048,0.5,0.9,0,91
1237,100,"Ice cream, bar or stick, chocolate covered","ICE CRM,BAR OR STK,CHOC COVERED",,,Y,,0,,,,,,Dairy and Egg Products,4.1,24.1,24.5,331,18.3,0.8,119,0.29,28,173,305,68,0.82,2.4,123,7,0,0.062,0.261,0.175,0.043,0.49,1.3,0,28
1238,100,Ice cream sandwich,ICE CRM SNDWCH,,,Y,,0,,,,,,Dairy and Egg Products,4.29,8.57,37.14,237,18.57,0,86,0.26,29,72,115,129,0.6,3.1,286,0,0,0.111,0.146,1.566,0.028,0.05,1.3,27,21
1239,100,Ice cream cookie sandwich,ICE CRM COOKIE SNDWCH,,,Y,,0,,,,,,Dairy and Egg Products,3.7,7.4,39.6,240,21.3,1.2,73,1.1,16,54,68,162,0.32,3.1,122,0,0,0.03,0.03,0.237,0.028,0.01,1.3,0,6
1240,100,"Ice cream cone, chocolate covered, with nuts, flavors other than chocolate","ICE CRM CONE,CHOC COVERED,W/ NUTS,FLAVORS OTHER THAN CHOC",,,Y,,0,,6.25,,,,Dairy and Egg Products,5.21,21.88,34.38,354,25,1,63,0,29,108,222,94,0.86,2.6,104,3,0,0.108,0.252,0.829,0.046,0.36,1.1,16,21
1241,100,"Ice cream sandwich, made with light ice cream, vanilla","ICE CRM SNDWCH,MADE W/ LT ICE CRM,VANILLA",,,Y,,0,,6.25,,,,Dairy and Egg Products,4.29,3.04,39.64,186,17.86,0,30,0.09,10,26,41,146,0.21,1.1,321,0,0,0.039,0.052,0.555,0.01,0.02,0.5,10,7
1242,100,"Ice cream sandwich, vanilla, light, no sugar added","ICE CRM SNDWCH,VANILLA,LT,NO SUGAR ADDED",,,Y,,0,,,,,,Dairy and Egg Products,5.71,2.86,42.86,200,6.58,7.1,86,0,10,26,41,164,0.21,1.1,429,0,0,0.039,0.052,0.555,0.01,0.02,0.5,10,21
1243,100,"Fat free ice cream, no sugar added, flavors other than chocolate","FAT FREE ICE CRM,NO SUGAR ADDED,FLAVORS OTHER THAN CHOC",,,Y,,0,,,,,,Dairy and Egg Products,4.41,0,27.94,129,8.82,7.4,147,0,9,75,196,110,0.31,1.9,461,0,0,0.029,0.122,0.074,0.029,0.52,0,0,0
1244,100,"Milk dessert bar, frozen, made from lowfat milk","MILK DSSRT BAR,FRZ,MADE FROM LOWFAT MILK",,,Y,,0,,,,,,Dairy and Egg Products,4.41,1.47,33.09,147,22.06,6.6,184,0.53,20,83,316,92,0.43,2.2,424,5,0.9,0.023,0.129,0.126,0.023,0.14,0.6,0,7
1250,100,"Nutritional supplement for people with diabetes, liquid","NUTRITIONAL SUPP FOR PEOPLE W/ DIABETES,LIQ",,,Y,,0,,6.38,,,,Dairy and Egg Products,4.4,3.08,11.88,88,2.64,2.2,110,1.98,44,110,176,92,1.65,7.7,550,44,26.4,0.165,0.187,2.201,0.22,0.66,8.8,44,2
1251,100,"Cheese, Mexican blend","CHEESE,MEXICAN BLEND",,,Y,,0,,,,,,Dairy and Egg Products,23.54,28.51,1.75,358,1.23,0,659,0.59,25,438,85,338,3.01,15,659,21,0,0.023,0.318,0.114,0.061,1.23,2.5,0,95
1252,100,"Cheese product, pasteurized process, American, vitamin D fortified","CHEESE PRODUCT,PAST PROCESS,AMERICAN,VITAMIN D FORT",,,Y,,0,,,,,,Dairy and Egg Products,17.12,23.11,8.8,312,6.19,0,1360,0.89,33,799,283,1309,2.13,16.2,1261,259,0,0.04,0.425,0.17,0.124,1.52,3.1,0,78
1253,100,"Cheese, pasteurized process, American, without added vitamin D","CHEESE,PAST PROCESS,AMERICAN,WO/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,18.13,31.79,3.7,371,2.26,0,1045,0.63,26,641,132,1671,2.49,20.2,945,23,0,0.015,0.234,0.076,0.054,1.5,2.6,0,100
1254,100,"Cheese food, pasteurized process, American, without added vitamin D","CHEESE FD,PAST PROCESS,AMERICAN,WO/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,16.86,25.63,8.56,330,5.59,0,682,0.26,27,438,255,1441,2.31,19.6,890,102,0,0.035,0.36,0.155,0.102,1.33,2.6,0,98
1255,100,"Egg, whole, raw, frozen, salted, pasteurized","EGG,WHL,RAW,FRZ,SALTED,PAST",,,,,0,,,,,,Dairy and Egg Products,10.97,10.07,0.83,138,0.07,0,55,1.71,9,186,128,3663,1.3,30.4,497,61,0,0.06,0.443,0.077,0.226,1.21,0.3,0,387
1256,100,"Yogurt, Greek, plain, nonfat","YOGURT,GREEK,PLN,NONFAT",,,Y,,0,,,,,,Dairy and Egg Products,10.19,0.39,3.6,59,3.24,0,110,0.07,11,135,141,36,0.52,9.7,4,0,0,0.023,0.278,0.208,0.063,0.75,0,0,5
1258,100,"Egg, white, dried, stabilized, glucose reduced","EGG,WHITE,DRIED,STABILIZED,GLUCOSE RED",,,,,0,,,,,,Dairy and Egg Products,84.08,0.32,4.51,357,0,0,101,0.18,82,104,884,1299,0.13,192,0,0,0,0,3.71,0.773,0.032,0.2,0,0,0
1259,100,"Cheese spread, American or Cheddar cheese base, reduced fat","CHEESE SPRD,AMERICAN OR CHEDDAR CHS BASE,RED FAT",,,Y,,0,,,,,,Dairy and Egg Products,13.41,8.88,10.71,176,7.06,0,557,0.36,27,931,250,1102,1.81,15.5,656,0,0,0.038,0.442,0.153,0.099,1.17,0,0,38
1260,100,"Cheese, cheddar, reduced fat","CHEESE,CHEDDAR,RED FAT",,,Y,,0,,,,,,Dairy and Egg Products,27.35,20.41,4.06,309,0.26,0,761,0.12,27,520,63,628,4.44,35.8,522,13,0,0.021,0.397,0.145,0.084,1.41,1.5,0,76
1263,100,"Ice cream, light, soft serve, chocolate","ICE CRM,LT,SOFT SERVE,CHOC",,,Y,,0,,6.25,,,,Dairy and Egg Products,3.36,3.69,23.15,141,19.46,0,134,0.6,36,113,207,64,0.67,2.3,336,26,0,0.033,0.124,0.186,0.038,0.26,0.4,12,15
1264,100,"Ice cream bar, stick or nugget, with crunch coating","ICE CRM BAR,STK OR NUGGET,W/ CRUNCH COATING",,,Y,,0,,6.38,,,,Dairy and Egg Products,2.11,25.26,37.12,358,21.05,1.1,63,0,11,57,71,84,0.32,4,105,3,0,0.043,0.069,0.548,0.106,0.09,22.3,0,16
1265,100,"Cheese, cheddar, nonfat or fat free","CHEESE,CHEDDAR,NONFAT OR FAT FREE",,,Y,,0,,6.25,,,,Dairy and Egg Products,32.14,0,7.14,157,0,0,893,0,16,484,66,1000,1.82,14.5,207,5,0,0.012,0.221,0.051,0.045,0.49,0.6,0,18
1266,100,"Cheese, Swiss, nonfat or fat free","CHEESE,SWISS,NONFAT OR FAT FREE",,,Y,,0,,,,,,Dairy and Egg Products,28.4,0,3.4,127,1.33,0,961,0.17,36,605,111,1000,3.9,12.7,152,4,0,0.02,0.36,0.09,0.08,1.68,0.5,0,18
1267,100,"Cheese, mexican, queso cotija","CHEESE,MEXICAN,QUESO COTIJA",,,Y,,0,,6.25,,,,Dairy and Egg Products,20,30,3.97,366,0,0,800,0,38,729,125,1400,3.87,17.7,865,21,0,0.029,0.486,0.114,0.049,2.26,1.9,0,100
1270,100,"Cheese, cheddar, sharp, sliced","CHEESE,CHEDDAR,SHARP,SLICED",,,Y,,0,,,,,,Dairy and Egg Products,24.25,33.82,2.13,410,0.27,0,711,0.16,27,460,76,644,3.74,28.3,994,41,0,0.027,0.434,0.039,0.075,0.88,2.4,0,99
1271,100,"Cheese, mozzarella, low moisture, part-skim, shredded","CHEESE,MOZZARELLA,LO MOIST,PART-SKIM,SHREDDED",,,Y,,0,,,,,,Dairy and Egg Products,23.63,19.72,8.06,304,2.24,0,716,0.23,29,537,131,682,3.61,26.8,846,14,0,0.029,0.367,0.151,0.111,1.33,1.3,0,65
1275,100,"Yogurt, Greek, nonfat, vanilla, CHOBANI","YOGURT,GREEK,NONFAT,VANILLA,CHOBANI",,Chobani,,,0,,,,,,Dairy and Egg Products,9.07,0.22,8.09,71,7.61,0.3,106,0.05,11,126,130,36,0.49,10.6,,,,0.028,0.233,0.217,0.053,0.7,,,
1276,100,"Yogurt, Greek, strawberry, DANNON OIKOS","YOGURT,GREEK,STRAWBERRY,DANNON OIKOS",,Danone,,,0,,,,,,Dairy and Egg Products,8.25,2.92,11.67,106,11,1,86,0.07,10,110,131,34,0.39,9.5,13,0,,0.036,0.227,0.21,0.05,0.56,,,13
1278,100,"Yogurt, Greek, nonfat, vanilla, DANNON OIKOS","YOGURT,GREEK,NONFAT,VANILLA,DANNON OIKOS",,Danone,,,0,,,,,,Dairy and Egg Products,8.12,0.14,12.72,85,11.4,0.5,89,0.04,10,112,115,32,0.4,8.2,,35,,0.033,0.26,0.187,0.047,0.66,,,
1280,100,"Yogurt, Greek, nonfat, strawberry, DANNON OIKOS","YOGURT,GREEK,NONFAT,STRAWBERRY,DANNON OIKOS",,Danone,,,0,,,,,,Dairy and Egg Products,8.03,0.22,12.53,84,11.63,0.4,94,0.06,11,114,145,33,0.45,8.9,,40,0.2,0.033,0.217,0.22,0.051,0.59,,,
1281,100,"Yogurt, Greek, nonfat, strawberry, CHOBANI","YOGURT,GREEK,NONFAT,STRAWBERRY,CHOBANI",,Chobani,,,0,,,,,,Dairy and Egg Products,8.03,0.12,11.62,80,10.86,0.7,99,0.12,10,112,124,33,0.44,9.5,,,0.3,0.031,0.28,0.213,0.05,0.45,,,
1284,100,"Yogurt, Greek, strawberry, lowfat","YOGURT,GREEK,STRAWBERRY,LOWFAT",,,Y,,0,,,,,,Dairy and Egg Products,8.17,2.57,11.89,103,11.23,1,88,0.07,10,109,129,33,0.41,9.6,111,0,0.7,0.037,0.235,0.205,0.049,0.5,0,0,12
1285,100,"Yogurt, Greek, strawberry, nonfat","YOGURT,GREEK,STRAWBERRY,NONFAT",,,Y,,0,,,,,,Dairy and Egg Products,8.05,0.15,12.07,82,11.27,0.6,97,0.09,10,113,132,33,0.45,9.4,4,40,0.3,0.037,0.253,0.213,0.05,0.49,0,0,4
1286,100,"Yogurt, Greek, vanilla, nonfat","YOGURT,GREEK,VANILLA,NONFAT",,,Y,,0,,,,,,Dairy and Egg Products,8.64,0.18,10.37,78,9.54,0.5,99,0.04,10,119,123,34,0.46,9.7,0,35,0,0.042,0.24,0.201,0.05,0.64,0.1,0,3
1287,100,"Yogurt, Greek, plain, lowfat","YOGURT,GREEK,PLN,LOWFAT",,,Y,,0,,,,,,Dairy and Egg Products,9.95,1.92,3.94,73,3.56,0,115,0.04,11,137,141,34,0.6,12.4,309,0,0.8,0.044,0.233,0.197,0.055,0.52,0.2,0,10
1289,100,"Kefir, lowfat, plain, LIFEWAY","KEFIR,LOWFAT,PLN,LIFEWAY",,,Y,,0,,,,,,Dairy and Egg Products,3.79,0.93,4.48,41,4.61,0,130,0.04,12,105,164,40,0.46,3.6,569,41,0.2,0.03,0.135,0.15,0.058,0.29,0.1,0,5
1290,100,"Kefir, lowfat, strawberry, LIFEWAY","KEFIR,LOWFAT,STRAWBERRY,LIFEWAY",,,Y,,0,,,,,,Dairy and Egg Products,3.39,0.9,10.2,62,9.21,0,119,0.04,11,96,154,37,0.44,3.6,599,44,1.5,0.03,0.21,0.105,0.06,0.31,1.2,0,5
1291,100,"Milk, evaporated, 2% fat, with added vitamin A and vitamin D","MILK,CND,EVAP,WO/ VIT A",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,6.67,2,15.74,107,6.67,0,267,0.19,24,203,303,100,0.77,2.3,192,160,16,0.047,0.316,0.194,0.05,0.16,0.2,0,0
1292,100,"Milk, chocolate, fat free, with added vitamin A and vitamin D","MILK,CHOC,FAT FREE,W/ ADDED VIT A & VITAMIN D",,,Y,,0,,6.25,,,,Dairy and Egg Products,3.39,0,13.46,67,9.32,0,127,0.27,13,101,182,110,0.41,1.9,227,42,1,0.045,0.166,0.164,0.024,0.32,0.2,0,2
1293,100,"Yogurt, Greek, plain, whole milk","YOGURT,GREEK,PLN,WHL MILK",,,Y,,0,,6.25,,,,Dairy and Egg Products,9,5,3.98,97,4,0,100,0,11,135,141,35,0.52,9.7,15,0,0,0.023,0.278,0.208,0.063,0.75,0,0,13
1294,100,"Yogurt, Greek, fruit, whole milk","YOGURT,GREEK,FRUIT,WHL MILK",,,Y,,0,,,,,,Dairy and Egg Products,7.33,3,12.29,106,12,0,100,0,10,109,113,37,0.41,9.6,162,0,0,0.046,0.235,0.205,0.049,0.5,0.3,0,10
1295,100,"Yogurt, vanilla, non-fat","YOGURT,VANILLA,NON-FAT",,,Y,,0,,6.38,4.27,8.79,3.87,Dairy and Egg Products,2.94,0,17.04,78,5.88,0,118,0,16,88,141,47,0.83,4.9,204,35,0,0.042,0.2,0.107,0.045,0.53,0,0,3
1297,100,"Yogurt, Greek, vanilla, lowfat","YOGURT,GREEK,VANILLA,LOWFAT",,,Y,,0,,,,,,Dairy and Egg Products,8.64,2.5,9.54,95,9.54,0,100,0.04,10,119,123,40,0.46,9.7,371,35,0,0.038,0.24,0.201,0.05,0.64,0.2,0,5
1298,100,"Yogurt, frozen, flavors other than chocolate, lowfat","YOGURT,FRZ,FLAVORS OTHER THAN CHOC,LOWFAT",,,Y,,0,,,,,,Dairy and Egg Products,8,2.5,21,139,21,0,200,0,7,62,108,45,0.19,1.3,122,2,0,0.028,0.125,0.049,0.028,0.05,0.2,0,45
1300,100,"Ice cream bar, covered with chocolate and nuts","ICE CRM BAR,COVERED W/ CHOC & NUTS",,,Y,,0,,,,,,Dairy and Egg Products,5.62,25.84,11.89,303,10.8,1.1,90,1.21,37,146,304,56,0.81,3.1,281,9,0,0.051,0.23,1.228,0.281,0.49,1.7,0,56
1301,100,Ice cream sundae cone,ICE CRM SUNDAE CONE,,,Y,,0,,6.38,,,,Dairy and Egg Products,3,14,28.89,254,21.26,1,60,0.36,20,128,204,115,0.56,2.3,410,4,0,0.09,0.213,1.111,0.05,0.35,0.5,14,15
1302,100,"Light ice cream, Creamsicle","LIGHT ICE CRM,CREAMSICLE",,,Y,,0,,6.25,,,,Dairy and Egg Products,1.54,3.08,32.75,165,18.46,0,62,0,12,84,174,46,0.66,1.8,324,2,13.8,0.045,0.206,0.113,0.038,0.36,0.3,0,8
1303,100,"Cream, half and half, lowfat","CREAM,HALF & HALF,LOWFAT",,,Y,,0,,6.25,,,,Dairy and Egg Products,3.33,5,3.33,72,3.33,0,133,0,10,95,132,50,0.39,3.2,170,1,0,0.03,0.194,0.109,0.05,0.19,0.6,0,17
1305,100,"Milk, chocolate, lowfat, reduced sugar","MILK,CHOC,LOWFAT,RED SUGAR",,,Y,,0,,,,,,Dairy and Egg Products,3.43,1.04,7.68,54,7.29,0,122,0.16,13,98,168,66,0.46,1.9,319,60,0,0.035,0.225,0.122,0.05,0.2,0.1,0,5
1306,100,"Ice cream, lowfat, no sugar added, cone, added peanuts and chocolate sauce","ICE CRM,LOWFAT,NO SUGAR ADDED,CONE,ADDED PNUTS & CHOC SAU",,,Y,,0,,6.25,,,,Dairy and Egg Products,5.33,9.33,40.01,265,10.67,9.3,133,0.48,65,143,213,113,1.06,3.9,89,8,0,0.182,0.2,3.528,0.093,0.07,0.7,0,7
2001,200,"Spices, allspice, ground","ALLSPICE,GROUND",,,,,0,Pimenta dioica,6.25,3.36,8.37,2.35,Spices and Herbs,6.09,8.69,72.12,263,,21.6,661,7.06,135,113,1044,77,1.01,2.7,540,0,39.2,0.101,0.063,2.86,0.21,0,,0,0
2002,200,"Spices, anise seed",ANISE SEED,,,,,0,Pimpinella anisum,6.25,3.36,8.37,2.9,Spices and Herbs,17.6,15.9,50.02,337,,14.6,646,36.96,170,440,1441,16,5.3,5,311,0,21,0.34,0.29,3.06,0.65,0,,0,0
2003,200,"Spices, basil, dried","SPICES,BASIL,DRIED",,,Y,,0,Ocimum basilicum,6.25,2.44,8.37,3,Spices and Herbs,22.98,4.07,47.75,233,1.71,37.7,2240,89.8,711,274,2630,76,7.1,3,744,0,0.8,0.08,1.2,4.9,1.34,0,1714.5,0,0
2004,200,"Spices, bay leaf","SPICES,BAY LEAF",,,,,0,Laurus nobilis,6.25,2.44,8.37,3,Spices and Herbs,7.61,8.36,74.97,313,,26.3,834,43,120,113,529,23,3.7,2.8,6185,0,46.5,0.009,0.421,2.005,1.74,0,,0,0
2005,200,"Spices, caraway seed",CARAWAY SEED,,,Y,,0,Carum carvi,6.25,3.36,8.37,2.9,Spices and Herbs,19.77,14.59,49.9,333,0.64,38,689,16.23,258,568,1351,17,5.5,12.1,363,0,21,0.383,0.379,3.606,0.36,0,0,0,0
2006,200,"Spices, cardamom","SPICES,CARDAMOM",,,,,0,Elettaria cardamomum,6.25,3.36,8.37,3.2,Spices and Herbs,10.76,6.7,68.47,311,,28,383,13.97,229,178,1119,18,7.47,,0,0,21,0.198,0.182,1.102,0.23,0,,,0
2007,200,"Spices, celery seed",CELERY SEED,,,Y,,0,Apium graveolens,6.25,3.36,8.37,2.9,Spices and Herbs,18.07,25.27,41.35,392,0.67,11.8,1767,44.9,440,547,1400,160,6.93,12.1,52,0,17.1,0.34,0.29,3.06,0.89,0,0,0,0
2008,200,"Spices, chervil, dried","CHERVIL,DRIED",,,,,0,Anthriscus cerefolium,6.25,2.44,8.37,3,Spices and Herbs,23.2,3.9,49.1,237,,11.3,1346,31.95,130,450,4740,83,8.8,29.3,5850,0,50,0.38,0.68,5.4,0.93,0,,0,0
2009,200,"Spices, chili powder",CHILI POWDER,,,Y,,0,,6.25,3.23,8.37,2.39,Spices and Herbs,13.46,14.28,49.7,282,7.19,34.8,330,17.3,149,300,1950,2867,4.3,20.4,29650,0,0.7,0.25,0.94,11.6,2.094,0,105.7,0,0
2010,200,"Spices, cinnamon, ground","CINNAMON,GROUND",Cassia,,Y,,0,Cinnamomum aromaticum,6.25,1.82,8.37,2.85,Spices and Herbs,3.99,1.24,80.59,247,2.17,53.1,1002,8.32,60,64,431,10,1.83,3.1,295,0,3.8,0.022,0.041,1.332,0.158,0,31.2,0,0
2011,200,"Spices, cloves, ground","CLOVES,GROUND",,,Y,,0,Syzygium aromaticum,6.25,1.82,8.37,2.35,Spices and Herbs,5.97,13,65.53,274,2.38,33.9,632,11.83,259,104,1020,277,2.32,7.2,160,0,0.2,0.158,0.22,1.56,0.391,0,141.8,0,0
2012,200,"Spices, coriander leaf, dried","CORIANDER LEAF,DRIED","Chinese parsley, cilantro",,Y,,0,Coriandrum sativum,6.25,2.44,8.37,3.57,Spices and Herbs,21.93,4.78,52.1,279,7.27,10.4,1246,42.46,694,481,4466,211,4.72,29.3,5850,0,566.7,1.252,1.5,10.707,0.61,0,1359.5,0,0
2013,200,"Spices, coriander seed",CORIANDER SEED,,,,,0,Coriandrum sativum,6.25,3.36,8.37,1.95,Spices and Herbs,12.37,17.77,54.99,298,,41.9,709,16.32,330,409,1267,35,4.7,26.2,0,0,21,0.239,0.29,2.13,,0,,0,0
2014,200,"Spices, cumin seed",CUMIN SEED,,,Y,,0,Cuminum cyminum,6.25,3.36,8.37,2.9,Spices and Herbs,17.81,22.27,44.24,375,2.25,10.5,931,66.36,366,499,1788,168,4.8,5.2,1270,0,7.7,0.628,0.327,4.579,0.435,0,5.4,0,0
2015,200,"Spices, curry powder",CURRY POWDER,,,Y,,0,,6.18,3.12,8.37,2.92,Spices and Herbs,14.29,14.01,55.83,325,2.76,53.2,525,19.1,255,367,1170,52,4.7,40.3,19,0,0.7,0.176,0.2,3.26,0.105,0,99.8,0,0
2016,200,"Spices, dill seed",DILL SEED,,,,,0,Anethum graveolens,6.25,3.36,8.37,2.35,Spices and Herbs,15.98,14.54,55.17,305,,21.1,1516,16.33,256,277,1186,20,5.2,12.1,53,0,21,0.418,0.284,2.807,0.25,0,,0,0
2017,200,"Spices, dill weed, dried","DILL WEED,DRIED",,,,,0,Anethum graveolens,6.25,2.44,8.37,3,Spices and Herbs,19.96,4.36,55.82,253,,13.6,1784,48.78,451,543,3308,208,3.3,,5850,0,50,0.418,0.284,2.807,1.71,0,,,0
2018,200,"Spices, fennel seed",FENNEL SEED,,,,,0,Foeniculum vulgare,6.25,3.36,8.37,3.2,Spices and Herbs,15.8,14.87,52.29,345,,39.8,1196,18.54,385,487,1694,88,3.7,,135,0,21,0.408,0.353,6.05,0.47,0,,,0
2019,200,"Spices, fenugreek seed",FENUGREEK SEED,,,,,0,Trigonella foenum-graecum,5.3,3.47,8.37,3.25,Spices and Herbs,23,6.41,58.35,323,,24.6,176,33.53,191,296,770,67,2.5,6.3,60,0,3,0.322,0.366,1.64,0.6,0,,0,0
2020,200,"Spices, garlic powder",GARLIC POWDER,,,Y,,0,Allium sativum,6.25,2.78,8.37,3.84,Spices and Herbs,16.55,0.73,72.73,331,2.43,9,79,5.65,77,414,1193,60,2.99,23.9,0,0,1.2,0.435,0.141,0.796,1.654,0,0.4,0,0
2021,200,"Spices, ginger, ground","GINGER,GROUND",,,Y,,0,Zingiber officinale,6.25,2.78,8.37,3.84,Spices and Herbs,8.98,4.24,71.62,335,3.39,14.1,114,19.8,214,168,1320,27,3.64,55.8,30,0,0.7,0.046,0.17,9.62,0.626,0,0.8,0,0
2022,200,"Spices, mace, ground","MACE,GROUND",,,,,0,Myristica fragrans,6.25,3.36,8.37,3.6,Spices and Herbs,6.71,32.38,50.5,475,,20.2,252,13.9,163,110,463,80,2.3,2.7,800,0,21,0.312,0.448,1.35,0.16,0,,0,0
2023,200,"Spices, marjoram, dried","MARJORAM,DRIED",,,Y,,0,Origanum majorana,6.25,2.44,8.37,3,Spices and Herbs,12.66,7.04,60.56,271,4.09,40.3,1990,82.71,346,306,1522,77,3.6,4.5,8068,0,51.4,0.289,0.316,4.12,1.19,0,621.7,0,0
2024,200,"Spices, mustard seed, ground","SPICES,MUSTARD SD,GROUND",,,Y,,0,Sinapis alba and Brassica juncea,5.4,3.47,8.37,4.07,Spices and Herbs,26.08,36.24,28.09,508,6.79,12.2,266,9.21,370,828,738,13,6.08,208.1,31,0,7.1,0.805,0.261,4.733,0.397,0,5.4,0,0
2025,200,"Spices, nutmeg, ground","NUTMEG,GROUND",,,Y,,0,Myristica fragrans,5.3,3.47,8.37,4.07,Spices and Herbs,5.84,36.31,49.29,525,2.99,20.8,184,3.04,183,213,350,16,2.15,1.6,102,0,3,0.346,0.057,1.299,0.16,0,0,0,0
2026,200,"Spices, onion powder",ONION POWDER,,,Y,,0,Allium cepa,6.25,2.78,8.37,3.84,Spices and Herbs,10.41,1.04,79.12,341,6.63,15.2,384,3.9,113,322,985,73,4.05,14.3,0,0,23.4,0.457,0.08,0.321,0.718,0,4.1,0,0
2027,200,"Spices, oregano, dried","SPICES,OREGANO,DRIED",,,Y,,0,Origanum vulgare,6.25,2.44,8.37,3,Spices and Herbs,9,4.28,68.92,265,4.09,42.5,1597,36.8,270,148,1260,25,2.69,4.5,1701,0,2.3,0.177,0.528,4.64,1.044,0,621.7,0,0
2028,200,"Spices, paprika",PAPRIKA,,,Y,,0,Capsicum annuum,6.25,3.36,8.37,2.35,Spices and Herbs,14.14,12.89,53.99,282,10.34,34.9,229,21.14,178,314,2280,68,4.33,6.3,49254,0,0.9,0.33,1.23,10.06,2.141,0,80.3,0,0
2029,200,"Spices, parsley, dried","PARSLEY,DRIED",,,Y,,0,Petroselinum crispum,6.25,2.44,8.37,3.57,Spices and Herbs,26.63,5.48,50.64,292,7.27,26.7,1140,22.04,400,436,2683,452,5.44,14.1,1939,0,125,0.196,2.383,9.943,0.9,0,1359.5,0,0
2030,200,"Spices, pepper, black","PEPPER,BLACK",,,Y,,0,Piper nigrum,5.35,1.83,8.37,3.2,Spices and Herbs,10.39,3.26,63.95,251,0.64,25.3,443,9.71,171,158,1329,20,1.19,4.9,547,0,0,0.108,0.18,1.143,0.291,0,163.7,0,0
2031,200,"Spices, pepper, red or cayenne","PEPPER,RED OR CAYENNE",,,Y,,0,Capsicum frutescens or Capsicum annuum,6.25,3.36,8.37,2.35,Spices and Herbs,12.01,17.27,56.63,318,10.34,27.2,148,7.8,152,293,2014,30,2.48,8.8,41610,0,76.4,0.328,0.919,8.701,2.45,0,80.3,0,0
2032,200,"Spices, pepper, white","PEPPER,WHITE",,,,,0,Piper nigrum,5.35,1.83,8.37,3.78,Spices and Herbs,10.4,2.12,68.61,296,,26.2,265,14.31,90,176,73,5,1.13,3.1,0,0,21,0.022,0.126,0.212,0.1,0,,0,0
2033,200,"Spices, poppy seed",POPPY SEED,,,Y,,0,Papaver somniferum,5.3,3.47,8.37,4.07,Spices and Herbs,17.99,41.56,28.13,525,2.99,19.5,1438,9.76,347,870,719,26,7.9,13.5,0,0,1,0.854,0.1,0.896,0.247,0,0,0,0
2034,200,"Spices, poultry seasoning",POULTRY SEASONING,,,Y,,0,,5.89,2.36,8.37,3.38,Spices and Herbs,9.59,7.53,65.59,307,1.8,11.3,996,35.3,224,171,684,27,3.14,7.2,2632,0,12,0.264,0.191,2.97,1.32,0,805.4,0,0
2035,200,"Spices, pumpkin pie spice",PUMPKIN PIE SPICE,,,Y,,0,,6.06,2.5,8.37,3.19,Spices and Herbs,5.76,12.6,69.28,342,7.76,14.8,682,19.71,136,118,663,52,2.37,9.3,261,0,23.4,0.131,0.137,2.243,0.4,0,28.4,0,0
2036,200,"Spices, rosemary, dried","ROSEMARY,DRIED",,,,,0,Rosmarinus officinalis,6.25,2.44,8.37,3,Spices and Herbs,4.88,15.22,64.06,331,,42.6,1280,29.25,220,70,955,50,3.23,4.6,3128,0,61.2,0.514,0.428,1,1.74,0,,0,0
2037,200,"Spices, saffron",SAFFRON,,,,,0,Crocus sativus,6.25,2.44,8.37,3.57,Spices and Herbs,11.43,5.85,65.37,310,,3.9,111,11.1,264,252,1724,148,1.09,5.6,530,0,80.8,0.115,0.267,1.46,1.01,0,,0,0
2038,200,"Spices, sage, ground","SAGE,GROUND",,,Y,,0,Salvia officinalis,6.25,2.44,8.37,3,Spices and Herbs,10.63,12.75,60.73,315,1.71,40.3,1652,28.12,428,91,1070,11,4.7,3.7,5900,0,32.4,0.754,0.336,5.72,2.69,0,1714.5,0,0
2039,200,"Spices, savory, ground","SAVORY,GROUND",,,,,0,Satureja hortensis,6.25,2.44,8.37,3,Spices and Herbs,6.73,5.91,68.73,272,,45.7,2132,37.88,377,140,1051,24,4.3,4.6,5130,0,50,0.366,,4.08,1.81,0,,,0
2041,200,"Spices, tarragon, dried","SPICES,TARRAGON,DRIED",,,,,0,Artemisia dracunculus,6.25,2.44,8.37,3.57,Spices and Herbs,22.77,7.24,50.22,295,,7.4,1139,32.3,347,313,3020,62,3.9,4.4,4200,0,50,0.251,1.339,8.95,2.41,0,,0,0
2042,200,"Spices, thyme, dried","SPICES,THYME,DRIED",,,Y,,0,Thymus vulgaris,6.25,2.44,8.37,3,Spices and Herbs,9.11,7.43,63.94,276,1.71,37,1890,123.6,220,201,814,55,6.18,4.6,3800,0,50,0.513,0.399,4.94,0.55,0,1714.5,0,0
2043,200,"Spices, turmeric, ground","TURMERIC,GROUND",,,Y,,0,Curcuma longa L.,6.25,2.78,8.37,3.84,Spices and Herbs,9.68,3.25,67.14,312,3.21,22.7,168,55,208,299,2080,27,4.5,6.2,0,0,0.7,0.058,0.15,1.35,0.107,0,13.4,0,0
2044,200,"Basil, fresh","BASIL,FRESH",,,Y,"Tough stems, flower heads and trimmings",36,Ocimum basilicum,6.25,2.44,8.37,3.57,Spices and Herbs,3.15,0.64,2.65,23,0.3,1.6,177,3.17,64,56,295,4,0.81,0.3,5275,0,18,0.034,0.076,0.902,0.155,0,414.8,0,0
2045,200,"Dill weed, fresh","DILL WEED,FRSH",,,,Tough stems and trimmings,41,Anethum graveolens,6.25,2.44,8.37,3.57,Spices and Herbs,3.46,1.12,7.02,43,,2.1,208,6.59,55,66,738,61,0.91,,7718,0,85,0.058,0.296,1.57,0.185,0,,0,0
2046,200,"Mustard, prepared, yellow","MUSTARD,PREPARED,YELLOW",,,Y,,0,,6.25,3.47,8.37,3.34,Spices and Herbs,3.74,3.34,5.83,60,0.92,4,63,1.61,48,108,152,1104,0.64,33.5,109,0,0.3,0.177,0.07,0.565,0.07,0,1.4,0,0
2047,200,"Salt, table","SALT,TABLE",,,Y,,0,,0,,,,Spices and Herbs,0,0,0,0,0,0,24,0.33,1,0,8,38758,0.1,0.1,0,0,0,0,0,0,0,0,0,0,0
2048,200,"Vinegar, cider","VINEGAR,CIDER",,,Y,,0,,0,,,,Spices and Herbs,0,0,0.93,21,0.4,0,7,0.2,5,8,73,5,0.04,0.1,0,0,0,0,0,0,0,0,0,0,0
2049,200,"Thyme, fresh","THYME,FRSH",,,,Stems,32,Thymus vulgaris,6.25,2.44,8.37,3,Spices and Herbs,5.56,1.68,24.45,101,,14,405,17.45,160,106,609,9,1.81,,4751,0,160.1,0.048,0.471,1.824,0.348,0,,0,0
2050,200,Vanilla extract,VANILLA EXTRACT,,,,,0,,6.25,2.44,8.37,3.9,Spices and Herbs,0.06,0.06,12.65,288,12.65,0,11,0.12,12,6,148,9,0.11,0,0,0,0,0.011,0.095,0.425,0.026,0,0,0,0
2051,200,"Vanilla extract, imitation, alcohol","VANILLA EXTRACT,IMITN,ALCOHOL",,,,,0,,6.25,2.44,8.37,3.9,Spices and Herbs,0.05,0,2.41,237,,0,0,0.13,5,22,98,4,0.06,,0,0,0,0.008,0.071,0.318,0.019,0,,0,0
2052,200,"Vanilla extract, imitation, no alcohol","VANILLA EXTRACT,IMITN,NO ALCOHOL",,,Y,,0,,6.25,2.44,8.37,3.9,Spices and Herbs,0.03,0,14.4,56,14.4,0,3,0.05,1,0,0,3,0.01,0,0,0,0,0.003,0.029,0.129,0.008,0,0,0,0
2053,200,"Vinegar, distilled","VINEGAR,DISTILLED",,,Y,,0,,,,,,Spices and Herbs,0,0,0.04,18,0.04,0,6,0.03,1,4,2,2,0.01,0.5,0,0,0,0,0,0,0,0,0,0,0
2054,200,"Capers, canned","CAPERS,CANNED",,,Y,,0,Capparis spinosa,6.25,1.82,8.37,2.35,Spices and Herbs,2.36,0.86,4.89,23,0.41,3.2,40,1.67,33,10,40,2348,0.32,1.2,138,0,4.3,0.018,0.139,0.652,0.023,0,24.6,0,0
2055,200,"Horseradish, prepared","HORSERADISH,PREPARED",,,Y,,0,,6.25,2.78,8.37,3.44,Spices and Herbs,1.18,0.69,11.29,48,7.99,3.3,56,0.42,27,31,246,420,0.83,2.8,2,0,24.9,0.008,0.024,0.386,0.073,0,1.3,0,0
2063,200,"Rosemary, fresh","ROSEMARY,FRESH",,,,Stems,35,Rosmarinus officinalis,6.25,2.44,8.37,3.57,Spices and Herbs,3.31,5.86,20.7,131,,14.1,317,6.65,91,66,668,26,0.93,,2924,0,21.8,0.036,0.152,0.912,0.336,0,,0,0
2064,200,"Peppermint, fresh","PEPPERMINT,FRESH",mint,,,Stems,39,Mentha x piperita L. nothosubsp. piperita,6.25,2.44,8.37,3.57,Spices and Herbs,3.75,0.94,14.89,70,,8,243,5.08,80,73,569,31,1.11,,4248,0,31.8,0.082,0.266,1.706,0.129,0,,0,0
2065,200,"Spearmint, fresh","SPEARMINT,FRESH",mint,,,Stems,59,Mentha spicata,6.25,2.44,8.37,3.57,Spices and Herbs,3.29,0.73,8.41,44,,6.8,199,11.87,63,60,458,30,1.09,,4054,0,13.3,0.078,0.175,0.948,0.158,0,,0,0
2066,200,"Spearmint, dried","SPEARMINT,DRIED",mint,,,,0,,6.25,2.44,8.37,3.57,Spices and Herbs,19.93,6.03,52.04,285,,29.8,1488,87.47,602,276,1924,344,2.41,,10579,0,0,0.288,1.421,6.561,2.579,0,,0,0
2068,200,"Vinegar, red wine","VINEGAR,RED WINE",,,,,0,,6.25,,,,Spices and Herbs,0.04,0,0.27,19,0,0,6,0.45,4,8,39,8,0.03,,0,,0.5,,,,,,,,
2069,200,"Vinegar, balsamic","VINEGAR,BALSAMIC",,,,,0,,,,,,Spices and Herbs,0.49,0,17.03,88,14.95,,27,0.72,12,19,112,23,0.08,,0,,0,,,,,,,,
2073,200,"PACE, Dry Taco Seasoning Mix","PACE,DRY TACO SEAS MIX",,Campbell Soup Co.,,,0,,6.25,,,,Spices and Herbs,0,0,56.29,188,18.76,18.8,,6.75,,,,8068,,,9381,,45,,,,,,,,0
2074,200,"Seasoning mix, dry, sazon, coriander & annatto","SEASONING MIX,DRY,SAZON,CORIANDER & ANNATTO",,,,,0,,6.25,,,,Spices and Herbs,0,0,0,0,0,0,0,0,,,,17000,,,0,,0,,,,,,,,0
2075,200,"Seasoning mix, dry, taco, original","SEASONING MIX,DRY,TACO,ORIGINAL",,,,,0,,,,,,Spices and Herbs,4.5,0,58,322,10.83,13.3,0,7.2,,,1000,7203,,,3744,,0,,,,,,,,0
2076,200,"Seasoning mix, dry, chili, original","SEASONING MIX,DRY,CHILI,ORIGINAL",,,,,0,,,,,,Spices and Herbs,10.82,7.3,56.56,335,8.67,10.8,0,3.9,,,,4616,,,2816,,5.9,,,,,,,,0
3000,300,Clif Z bar,CLIF Z BAR,,,Y,,0,,,,,,Baby Foods,5.55,9.72,74.72,409,30.56,8.3,444,2.7,82,244,333,375,1.15,14.8,7,0,39.1,0.411,0.1,0.478,0.073,0,8.7,0,0
3001,300,"Babyfood, juice treats, fruit medley, toddler","BABYFOOD,JUC TREATS,FRUIT MEDLEY,TODD",,,Y,,0,,,,,,Baby Foods,0,0.02,86.68,347,57.4,0,12,0.24,7,9,54,89,0.03,1.9,2,0,8,0.015,0.01,0.057,0.014,0,0,0,0
3002,300,"Babyfood, meat, beef, strained","BABYFOOD,MEAT,BF,STR",,,Y,,0,,6.25,,,,Baby Foods,12.03,2.52,2.43,81,0,0,5,0.98,11,93,187,41,2.22,2.9,0,15,2.1,0.013,0.135,2.495,0.039,1.26,0.6,0,51
3003,300,"Babyfood, meat, beef, junior","BABYFOOD,MEAT,BF,STR",,,Y,,0,,6.25,,,,Baby Foods,12.03,2.52,2.43,81,0,0,5,0.98,11,93,187,41,2.22,2.9,0,15,2.1,0.013,0.135,2.495,0.039,1.26,0.6,0,51
3005,300,"Babyfood, meat, veal, strained","BABYFOOD,MEAT,VEAL,STR",,,Y,,0,,,,,,Baby Foods,13.12,2.45,1.51,81,0,0,6,0.76,11,98,170,39,2.5,3.5,0,26,0,0.023,0.116,2.85,0.049,1.65,0,0,33
3007,300,"Babyfood, meat, pork, strained","BABYFOOD,MEAT,PORK,STR",,,,,0,,6.25,4.27,9.02,,Baby Foods,14,7.1,0,124,0,0,5,1,10,94,223,42,2.27,12.9,38,,1.8,0.146,0.203,2.269,0.205,0.99,,0,48
3008,300,"Babyfood, meat, ham, strained","BABYFOOD,MEAT,HAM,STR",,,Y,,0,,6.25,4.27,9.02,,Baby Foods,11.3,3.8,3.7,97,0,0,6,1.03,13,81,204,44,2.25,14.2,5,18,2.1,0.139,0.154,2.633,0.252,0.1,0,0,24
3009,300,"Babyfood, meat, ham, junior","BABYFOOD,MEAT,HAM,JUNIOR",,,,,0,,6.25,4.27,9.02,,Baby Foods,11.3,3.8,3.7,97,0,0,5,1.01,11,89,210,44,1.7,15,0,18,2.1,0.142,0.194,2.84,0.2,0.1,0,0,29
3010,300,"Babyfood, meat, lamb, strained","BABYFOOD,MEAT,LAMB,STR",,,Y,,0,,,,,,Baby Foods,14.07,3.41,0.85,87,0,0,7,1.19,13,104,193,43,2.43,2.2,0,4,1.2,0.02,0.174,2.908,0.037,1.9,0.6,0,36
3011,300,"Babyfood, meat, lamb, junior","BABYFOOD,MEAT,LAMB,JUNIOR",,,,,0,,6.25,4.27,9.02,,Baby Foods,15.2,5.2,0,112,0,0,7,1.66,10,91,211,42,2.6,7,27,4,1.7,0.019,0.191,3.193,0.183,2.27,,0,38
3012,300,"Babyfood, meat, chicken, strained","BABYFOOD,MEAT,CHICK,STR",,,Y,,0,,6.25,4.27,9.02,,Baby Foods,13.7,7.9,0.1,130,0,0,64,1.4,13,97,141,49,1.21,11,21,11,1.7,0.014,0.152,3.255,0.2,0.4,1,0,61
3013,300,"Babyfood, meat, chicken, junior","BABYFOOD,MEAT,CHICK,JR",,,Y,,0,,6.25,4.27,9.02,,Baby Foods,14,9.6,0,146,0,0,55,0.99,11,90,122,49,1.01,10.3,40,2,1.5,0.014,0.163,3.42,0.188,0.4,1.7,0,59
3014,300,"Babyfood, meat, chicken sticks, junior","BABYFOOD,MEAT,CHICK STKS,JR",,,Y,,0,,6.25,4,8.7,2.7,Baby Foods,14.6,14.4,1.5,188,1.4,0.2,73,1.56,14,121,106,408,1.01,10.3,11,4,1.7,0.017,0.197,2.005,0.103,0.4,0.4,0,78
3015,300,"Babyfood, meat, turkey, strained","BABYFOOD,MEAT,TURKEY,STR",,,Y,,0,,6.25,4.27,9.02,,Baby Foods,11.5,6.2,1.4,111,0,0,41,0.7,12,117,135,49,1.77,12,0,34,2.2,0.008,0.163,2.61,0.029,1.11,0,0,58
3016,300,"Babyfood, meat, turkey, junior","BABYFOOD,MEAT,TURKEY,JR",,,Y,,0,,6.25,4.27,9.02,,Baby Foods,11.5,6.2,1.4,111,0,0,41,0.7,12,117,135,49,1.77,12,0,34,0,0.008,0.163,2.61,0.029,1.11,0,0,58
3017,300,"Babyfood, meat, turkey sticks, junior","Babyfood, meat, turkey sticks, junior",,,Y,,0,,6.25,,,,Baby Foods,13.7,14.2,1.4,188,1.4,0.5,83,0.92,10,120,120,440,2.4,13.5,19,15,1.5,0.008,0.181,1.94,0.023,1.3,0,0,65
3019,300,"Babyfood, snack, GERBER GRADUATE FRUIT STRIPS, Real Fruit Bars","BABYFOOD,SNACK,GERBER GRADUATE FRUIT STRIPS,REAL FRUIT BARS",,,Y,,0,,,,,,Baby Foods,0.82,2.24,76.61,330,68.65,2,18,1.05,9,23,312,14,0.14,1.4,233,0,179.9,0.041,0.046,0.334,0.201,0,2.5,0,0
3021,300,"Babyfood, meat, meat sticks, junior","BABYFOOD,MEAT,MEAT STKS,JR",,,Y,,0,,6.25,4,8.7,2.7,Baby Foods,13.4,14.6,1.1,184,0.8,0.2,34,1.38,11,103,114,423,1.9,13.3,69,9,2.4,0.059,0.172,1.481,0.08,0.29,0.5,0,70
3022,300,"Babyfood, GERBER, 2nd Foods, apple, carrot and squash, organic","BABYFOOD,GERBER,2ND FOODS,APPL,CARROT & SQUASH,ORGANIC",,,Y,,0,,,,,,Baby Foods,1.1,0,14.82,64,9.09,1.2,6,0.15,5,17,106,20,0.22,0.8,417,0,2732,0.02,0.036,0.255,0.057,0,1,0,2
3023,300,"Finger snacks, GERBER GRADUATE PUFFS, apple and cinnamon","FINGER SNACKS,GERBER GRADUATE PUFFS,APPL & CINN",,,Y,,0,,,,,,Baby Foods,6.19,2.3,85.79,389,17.84,3.8,535,24.74,60,448,196,13,17.46,6.2,13,0,1.3,1.563,2.267,28.767,1.8,0,1.3,0,0
3024,300,"Babyfood, water, bottled, GERBER, without added fluoride.","BABYFOOD,H2O,BTLD,GERBER,WO/ ADDED FLUORIDE.",,,Y,,0,,,,,,Baby Foods,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
3025,300,"Babyfood, GERBER, 3rd Foods, apple, mango and kiwi","BABYFOOD,GERBER,3RD FOODS,APPL,MANGO & KIWI",,,Y,,0,,,,,,Baby Foods,0.47,0,12.88,53,10.18,2,9,0.17,6,11,123,2,0.06,0.3,294,0,23.3,0.018,0.018,0.25,0.059,0,5.9,0,0
3026,300,"Babyfood, tropical fruit medley","BABYFOOD,TROPICAL FRUIT MEDLEY",,,Y,,0,,,,,,Baby Foods,0.31,0.14,12.22,51,9.78,1.3,0,0,5,11,141,0,0.05,0,88,0,15.9,0.019,0.027,0.138,0.039,0,0.8,0,0
3041,300,"Babyfood, dinner, vegetables and dumplings and beef, strained","BABYFOOD,DINNER,VEG&DUMPLINGS&BF,STR",,,,,0,,6.03,4.1,8.9,4.1,Baby Foods,2,0.9,7.7,48,0,,14,0.39,6,28,46,49,0.4,2.1,416,,0.8,0.049,0.04,0.574,0.047,0.09,,0,
3042,300,"Babyfood, dinner, vegetables and dumplings and beef, junior","BABYFOOD,DINNER,VEG&DUMPLINGS&BF,JR",,,,,0,,6.03,4.1,8.9,4.1,Baby Foods,2.1,0.8,8,48,0,,14,0.47,7,29,47,52,0.33,2.1,660,,0.8,0.039,0.036,0.49,0.048,0.09,,0,
3043,300,"Babyfood, dinner, beef lasagna, toddler","BABYFOOD,DINNER,BF LASAGNA,TODD",,,,,0,,5.98,4.1,8.9,4.1,Baby Foods,4.2,2.1,10,77,0,,18,0.87,11,40,122,41,0.7,8.4,1163,,1.9,0.072,0.089,1.353,0.071,0.51,,0,
3044,300,"Babyfood, dinner, macaroni and tomato and beef, strained","BABYFOOD,DINNER,MACARONI&TOMATO&BF,STR",,,Y,,0,,,,,,Baby Foods,2.36,1.47,9.45,61,2.09,1.2,17,0.46,12,39,112,38,0.54,8.4,878,2,0.3,0.038,0.043,0.715,0.056,0.15,29.3,4,7
3045,300,"Babyfood, dinner, macaroni and tomato and beef, junior","BABYFOOD,DINNER,MACARONI&TOMATO&BF,JR",,,Y,,0,,5.98,4.1,8.9,4.1,Baby Foods,2.5,1.1,9.4,59,2.43,1.1,14,0.36,7,44,72,35,0.36,8.4,691,1,1.5,0.048,0.055,0.751,0.047,0.24,6.7,3,4
3046,300,"Babyfood, ravioli, cheese filled, with tomato sauce","BABYFOOD,RAVIOLI,CHS FILLED,W/TOMATO SAU",,,Y,,0,,,,,,Baby Foods,3.6,2.2,16.3,99,0.59,0.1,54,0.8,7,56,32,282,0.35,13.4,494,1,0.1,0.12,0.14,1.65,0.09,0.05,9.4,0,7
3047,300,"Babyfood, dinner, beef noodle, strained","BABYFOOD,DINNER,BF NOODLE,STR",,,Y,,0,,,,,,Baby Foods,2.44,2.26,8.18,63,1.42,1.3,10,0.41,10,38,87,15,0.6,3.6,716,0,0.1,0.035,0.035,0.616,0.036,0.19,1.6,4,8
3048,300,"Babyfood, macaroni and cheese, toddler","BABYFOOD,MACARONI&CHS,TODD",,,Y,,0,,,,,,Baby Foods,3.5,2.6,11.2,82,0.79,0.5,102,0.6,9,81,18,112,0.43,6.6,73,2,0,0.04,0.09,0.79,0.05,0.06,0.2,22,7
3049,300,"Babyfood, dinner, beef and rice, toddler","BABYFOOD,DINNER,BF&RICE,TODD",,,,,0,,6.14,4.1,8.9,4.1,Baby Foods,5,2.9,8.8,82,0,,11,0.69,8,35,120,32,0.92,8.4,502,,3.9,0.016,0.069,1.343,0.139,0.51,,0,
3050,300,"Babyfood, dinner, spaghetti and tomato and meat, junior","BABYFOOD,DINNER,SPAGHETTI&TOMATO&MEAT,JR",,,Y,,0,,,,,,Baby Foods,2.57,1.37,11.42,68,2.72,1.1,15,0.53,11,35,122,30,0.53,8.4,1255,1,0.2,0.048,0.068,0.967,0.064,0.03,0.8,24,5
3051,300,"Babyfood, dinner, spaghetti and tomato and meat, toddler","BABYFOOD,DINNER,SPAGHETTI&TOMATO&MEAT,TODD",,,,,0,,5.98,4.1,8.9,4.1,Baby Foods,5.3,1,10.8,75,,,22,0.9,15,45,163,239,0.48,8.4,443,,4.1,0.062,0.101,1.558,0.083,0.23,,26,
3052,300,"Babyfood, dinner, beef stew, toddler","BABYFOOD,DINNER,BF STEW,TODD",,,Y,,0,,6.25,3.7,8.9,3.9,Baby Foods,5.1,1.2,5.5,51,1.39,1.1,9,0.72,11,44,142,106,0.87,4.5,1649,1,3,0.014,0.065,1.313,0.074,0.51,2.5,0,13
3053,300,"Babyfood, dinner, vegetables and beef, strained","BABYFOOD,DINNER,VEG&BF,STR",,,Y,,0,,,,,,Baby Foods,2.21,3.6,8.84,77,2.34,1.3,17,0.35,10,33,145,31,0.38,2.2,4926,1,0.2,0.008,0.048,0.789,0.063,0.18,5.2,3,7
3054,300,"Babyfood, dinner, vegetables and beef, junior","BABYFOOD,DINNER,VEG&BF,JR",,,Y,,0,,,,,,Baby Foods,2.21,3.6,8.84,77,2.34,1.3,17,0.35,10,33,145,31,0.38,2.2,4926,1,0.2,0.008,0.048,0.789,0.063,0.33,5.2,3,7
3055,300,"Babyfood, dinner, beef with vegetables","BABYFOOD,DINNER,BF W/VEG",,,Y,,0,,,,,,Baby Foods,2.03,6.93,6.36,96,2.16,1.8,19,0.33,15,24,127,38,0.35,2.2,4436,1,0,0.03,0.06,0.7,0.083,0.09,11.6,0,12
3059,300,"Babyfood, dinner, vegetables and bacon, strained","BABYFOOD,DINNER,VEG&BACON,STR",,,Y,,0,,,,,,Baby Foods,1.92,2.95,8.81,69,1.77,1.7,14,0.3,10,28,116,49,0.3,1.7,2284,1,0.3,0.032,0.039,0.474,0.058,0.06,9.1,0,4
3061,300,"Babyfood, dinner, vegetables and ham, strained","BABYFOOD,DINNER,VEG&HAM,STR",,,Y,,0,,,,,,Baby Foods,2.19,2.14,7.8,59,1.37,1.6,16,0.41,12,33,141,16,0.32,2.4,2872,4,1.6,0.035,0.054,0.676,0.072,0.06,2.7,0,5
3062,300,"Babyfood, dinner, vegetables and ham, junior","BABYFOOD,DINNER,VEG&HAM,JR",,,Y,,0,,,,,,Baby Foods,2.02,1.89,8.64,60,0.99,1,14,0.24,8,33,97,45,0.3,2.4,2872,1,1.1,0.032,0.04,0.512,0.046,0.03,2.7,0,3
3066,300,"Babyfood, dinner, vegetables and lamb, strained","BABYFOOD,DINNER,VEG&LAMB,STR",,,Y,,0,,6.25,3.7,8.9,3.9,Baby Foods,2,2,6.9,52,0.94,1.1,12,0.35,7,49,94,20,0.22,2.4,1995,0,1.2,0.018,0.034,0.529,0.046,0.16,2.3,0,6
3067,300,"Babyfood, dinner, vegetables and lamb, junior","BABYFOOD,DINNER,VEG&LAMB,JR",,,,,0,,6.25,3.7,8.9,3.9,Baby Foods,2.1,1.7,7.1,51,0.94,1.1,13,0.34,7,49,95,13,0.22,2.4,1483,0,1.7,0.021,0.032,0.554,0.044,0.16,,0,5
3068,300,"Babyfood, dinner, chicken noodle, strained","BABYFOOD,DINNER,CHICK NOODLE,STR",,,Y,,0,,,,,,Baby Foods,2.69,2.06,9.08,66,2.5,2.1,27,0.64,14,46,139,38,0.55,3.7,2182,3,0.1,0.044,0.061,0.723,0.064,0.02,1.9,3,16
3069,300,"Babyfood, dinner, chicken noodle, junior","BABYFOOD,DINNER,CHICK NOODLE,JR",,,Y,,0,,,,,,Baby Foods,2.37,1.18,8.79,55,1.07,0.9,21,0.38,7,79,39,35,0.4,3.7,1729,2,0.1,0.032,0.04,0.703,0.052,0.01,1.6,2,9
3070,300,"Babyfood, dinner, chicken soup, strained","BABYFOOD,DINNER,CHICK SOUP,STR",,,Y,,0,,6.25,4.27,9.02,3.84,Baby Foods,1.6,1.7,7.2,50,1.72,1.1,37,0.27,5,24,66,16,0.22,1.4,1384,3,1,0.017,0.032,0.293,0.037,0.12,6.9,0,4
3072,300,"Babyfood, dinner, chicken stew, toddler",BABYFOOD DINNER CHICK STEW TODD,,,Y,,0,,6.25,3.7,8.9,3.9,Baby Foods,5.2,3.7,6.4,78,1.68,0.6,36,0.66,10,51,92,25,0.41,5.5,1010,7,1.9,0.031,0.074,1.153,0.046,0.14,3.7,15,29
3073,300,"Babyfood, dinner, vegetables chicken, strained","BABYFOOD,DINNER,VEG CHICK,STR",,,Y,,0,,,,,,Baby Foods,2.47,1.73,8.42,59,1.58,2.1,27,0.53,14,47,158,24,0.48,2.8,4132,3,0.1,0.032,0.052,0.72,0.072,0.01,3.4,0,11
3075,300,"Babyfood, dinner, vegetables, noodles and chicken, strained","BABYFOOD,DINNER,VEG,NOODLES&CHICK,STR",,,,,0,,5.98,4.1,8.9,4.1,Baby Foods,2,2.5,7.9,63,,1.1,28,0.35,10,31,55,20,0.25,3.2,1417,,0.7,0.032,0.049,0.407,0.021,0.08,,0,
3076,300,"Babyfood, dinner, vegetables, noodles and chicken, junior","BABYFOOD,DINNER,VEG,NOODLES&CHICK,JR",,,,,0,,5.98,4.1,8.9,4.1,Baby Foods,1.7,2.2,9.1,64,,1.1,26,0.49,11,33,59,26,0.32,3.2,1051,,0.8,0.042,0.037,0.675,0.023,0.09,,0,
3077,300,"Babyfood, dinner, pasta with vegetables","BABYFOOD,DINNER,PASTA W/VEG",,,Y,,0,,,,,,Baby Foods,1.7,2.1,8.4,60,1.2,1.5,14,0.5,24,50,133,11,0.4,6.4,555,0,2.9,0.06,0.05,0.56,0.11,0,2.1,0,5
3079,300,"Babyfood, dinner, vegetables and noodles and turkey, strained","BABYFOOD,DINNER,VEG&NOODLES&TURKEY,STR",,,,,0,,5.98,4.1,8.9,4.1,Baby Foods,1.2,1.2,6.8,44,,1.1,32,0.19,8,25,63,21,0.27,2.8,991,,0.8,0.018,0.044,0.25,0.016,0.1,,0,
3081,300,"Babyfood, dinner, vegetables and noodles and turkey, junior","BABYFOOD,DINNER,VEG&NOODLES&TURKEY,JR",,,,,0,,5.98,4.1,8.9,4.1,Baby Foods,1.8,1.5,7.6,52,,1.1,32,0.26,9,29,73,17,0.3,2.8,994,,0.8,0.024,0.04,0.299,0.018,0.12,,0,
3082,300,"Babyfood, dinner, turkey and rice, strained","BABYFOOD,DINNER,TURKEY&RICE,STR",,,Y,,0,,,,,,Baby Foods,2.27,1.24,7.94,52,1.66,0.9,18,0.29,8,34,91,19,0.4,3,1622,0,0.2,0.022,0.04,0.648,0.052,0.02,1.5,0,5
3083,300,"Babyfood, dinner, turkey and rice, junior","BABYFOOD,DINNER,TURKEY & RICE,JR",,,Y,,0,,,,,,Baby Foods,2.37,0.92,9.57,56,1.25,1,24,0.41,9,37,86,23,0.47,3.3,1886,0,0.3,0.033,0.044,0.692,0.052,0.02,3,0,4
3084,300,"Babyfood, dinner, vegetables and turkey, strained","BABYFOOD,DINNER,VEG&TURKEY,STR",,,Y,,0,,,,,,Baby Foods,2.32,0.9,7.62,48,1.54,1.5,27,0.37,13,44,102,20,0.7,1.9,4396,1,0.7,0.02,0.024,0.466,0.044,0.02,3.9,0,4
3085,300,"Babyfood, dinner, vegetables and turkey, junior","BABYFOOD,DINNER,VEG&TURKEY,JR",,,Y,,0,,,,,,Baby Foods,1.72,1.74,7.55,53,1.36,0.9,16,0.36,9,32,98,45,0.3,1.9,4325,0,0.4,0.022,0.032,0.539,0.052,0.01,4.8,0,4
3089,300,"Babyfood, dinner, macaroni and cheese, strained","BABYFOOD,DINNER,MACARONI&CHS,STR",,,Y,,0,,,,,,Baby Foods,3.14,2.11,8.95,67,1.27,0.7,66,0.21,8,86,67,119,0.4,3.8,56,2,0.1,0.038,0.076,0.516,0.036,0.27,0.2,6,7
3090,300,"Babyfood, dinner, macaroni and cheese, junior","BABYFOOD,DINNER,MACARONI&CHS,JR",,,Y,,0,,6,4.2,8.7,4,Baby Foods,2.6,2,8.2,61,1.32,0.3,51,0.3,7,59,44,266,0.32,3.8,106,2,1.3,0.056,0.064,0.545,0.016,0.03,0.2,10,6
3091,300,"Babyfood, vegetables, green beans, strained","BABYFOOD,VEG,GRN BNS,STR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,1.2,0.17,6.29,27,1.88,2.2,39,0.67,20,41,146,7,0.22,0.1,355,0,0.3,0.026,0.079,0.361,0.038,0,42.4,0,0
3092,300,"Babyfood, vegetables, green beans, junior","BABYFOOD,VEG,GRN BNS,JR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,1.2,0.1,5.8,24,1.08,1.9,65,1.08,22,19,128,5,0.19,0.3,433,0,8.4,0.021,0.102,0.321,0.035,0,11.1,0,0
3093,300,"Babyfood, green beans, dices, toddler","BABYFOOD,GRN BNS,DICES,TODD",,,Y,,0,,,,,,Baby Foods,1.2,0.2,5.7,29,1.06,1.3,27,0.4,19,22,116,37,0.1,0.4,481,0,1.7,0.02,0.04,0.23,0.03,0,11,0,0
3096,300,"Babyfood, vegetable, green beans and potatoes","BABYFOOD,VEG,GRN BNS&POTATOES",,,Y,,0,,,,,,Baby Foods,2.2,1.9,9,62,2.35,1.4,60,0.5,20,61,148,18,0.3,0.7,85,0,1.1,0.04,0.11,0.46,0.08,0.15,1.4,0,5
3098,300,"Babyfood, vegetables, beets, strained","BABYFOOD,VEG,BEETS,STR",,,Y,,0,,6.25,2.78,8.37,3.84,Baby Foods,1.3,0.1,7.7,34,6.09,1.9,14,0.32,14,14,182,83,0.12,0.1,27,0,2.4,0.011,0.043,0.132,0.024,0,0.2,0,0
3099,300,"Babyfood, vegetables, carrots, strained","BABYFOOD,VEG,CARROTS,STR",,,Y,,0,,6.25,2.78,8.37,3.84,Baby Foods,0.8,0.1,6,26,3.64,1.7,22,0.37,9,20,196,69,0.15,0.2,11461,0,5.7,0.023,0.04,0.463,0.073,0,14.4,0,0
3100,300,"Babyfood, vegetables, carrots, junior","BABYFOOD,VEG,CARROTS,JR",,,Y,,0,,6.25,2.78,8.37,3.84,Baby Foods,0.8,0.2,7.2,32,3.16,1.7,23,0.39,11,20,202,49,0.18,0.2,11810,0,5.5,0.024,0.041,0.497,0.08,0,12.5,0,0
3104,300,"Babyfood, vegetables, squash, strained","BABYFOOD,VEG,SQUASH,STR",,,Y,,0,,6.25,,,,Baby Foods,0.81,0.2,5.73,28,3.37,0.9,24,0.32,14,21,185,5,0.19,0.2,1703,0,0.3,0.029,0.048,0.683,0.07,0,4.7,0,0
3105,300,"Babyfood, vegetables, squash, junior","BABYFOOD,VEG,SQUASH,JR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,0.81,0.2,5.73,24,3.24,0.9,24,0.32,14,21,185,5,0.19,0.2,1703,0,0.3,0.029,0.048,0.683,0.07,0,4.7,0,0
3108,300,"Babyfood, vegetables, sweet potatoes strained","BABYFOOD,VEG,SWT POTATOES,STR",,,Y,,0,,6.25,2.78,8.37,4.03,Baby Foods,1.1,0.1,13.2,57,4.05,1.5,16,0.37,13,24,263,22,0.21,0.7,6438,0,9.9,0.028,0.033,0.358,0.093,0,1.4,0,0
3109,300,"Babyfood, vegetables, sweet potatoes, junior","BABYFOOD,VEG,SWT POTATOES,JR",,,Y,,0,,6.25,2.78,8.37,4.03,Baby Foods,1.1,0.1,14,60,4.24,1.5,16,0.39,12,24,243,18,0.11,0.7,6636,0,9.6,0.026,0.034,0.384,0.113,0,1.5,0,0
3112,300,"Babyfood, potatoes, toddler","BABYFOOD,POTATOES,TODDLER",,,Y,,0,,,,,,Baby Foods,1,0.1,11.73,52,0.91,0.9,4,0.2,15,23,110,57,0.17,0.8,0,0,10.5,0.02,0.01,0.35,0.07,0,0.2,0,0
3114,300,"Babyfood, vegetable, butternut squash and corn","BABYFOOD,VEG,BUTTERNUT SQUASH&CORN",,,Y,,0,,,,,,Baby Foods,2,0.6,9.26,50,2.93,2,32,0.4,26,35,352,5,0.3,0.6,2793,0,4.9,0.06,0.06,0.56,0.11,0,2.4,0,0
3115,300,"Babyfood, apples, dices, toddler","BABYFOOD,APPLS,DICES,TODD",,,Y,,0,,,,,,Baby Foods,0.2,0.1,12.1,51,10.83,0.9,10,0.2,6,13,50,6,0.04,0.3,31,0,31.3,0.01,0.02,0.08,0.05,0,0.6,0,0
3116,300,"Babyfood, fruit, applesauce, strained","BABYFOOD,FRUIT,APPLSAUC,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,10.8,41,9.87,1.7,4,0.22,3,7,71,0,0.02,0.3,28,0,38.3,0.012,0.028,0.061,0.031,0,0.5,0,0
3117,300,"Babyfood, fruit, applesauce, junior","BABYFOOD,FRUIT,APPLSAUC,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0,0,10.3,37,8.48,1.7,5,0.22,3,6,77,1,0.04,0.3,9,0,37.8,0.012,0.027,0.063,0.03,0,0.3,0,0
3118,300,"Babyfood, fruit, apricot with tapioca, strained","BABYFOOD,FRUIT,APRICOT W/TAPIOCA,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.3,0,16.3,60,1.41,1.5,9,0.3,4,10,121,0,0.05,0.3,725,0,21.6,0.008,0.013,0.195,0.03,0,0.4,0,0
3119,300,"Babyfood, vegetables, corn, creamed, strained","BABYFOOD,VEG,CORN,CRMD,STR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,1.4,0.4,14.1,57,1.23,2.1,20,0.28,8,33,90,43,0.19,1.3,69,0,2.1,0.013,0.047,0.512,0.041,0.02,0,0,1
3120,300,"Babyfood, vegetables, corn, creamed, junior","BABYFOOD,VEG,CORN,CRMD,JR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,1.4,0.4,16.25,65,1.48,2.1,4,0.27,8,33,81,52,0.23,1.3,34,0,2.2,0.013,0.048,0.504,0.041,0.02,0,0,1
3121,300,"Babyfood, vegetables, peas, strained","BABYFOOD,VEG,PEAS,STR",,,Y,,0,,,,,,Baby Foods,3.27,0.43,8.36,50,2.01,2,18,0.95,17,50,106,5,0.47,0.1,216,0,0.6,0.087,0.065,1.119,0.016,0,15.5,0,0
3122,300,"Babyfood, peas, dices, toddler","BABYFOOD,PEAS,DICES,TODD",,,Y,,0,,,,,,Baby Foods,3.9,0.8,10.3,64,4.13,3.9,21,1,19,67,81,48,0.5,0.1,304,0,6,0.1,0.06,0.85,0.06,0,18,0,0
3127,300,"Babyfood, vegetables, spinach, creamed, strained","BABYFOOD,VEG,SPINACH,CRMD,STR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,2.5,1.3,5.7,37,2.33,1.8,89,0.62,55,54,191,49,0.31,2.4,4170,0,8.7,0.015,0.104,0.216,0.075,0.06,196.7,0,5
3128,300,"Babyfood, fruit, apricot with tapioca, junior","BABYFOOD,FRUIT,APRICOT W/TAPIOCA,JR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,0.3,0,17.3,63,1.4,1.5,8,0.27,4,10,125,0,0.04,0.3,723,0,17.9,0.008,0.013,0.196,0.028,0,0.4,0,0
3129,300,"Babyfood, fruit, bananas with tapioca, strained","BABYFOOD,FRUIT,BANANAS W/TAPIOCA,STR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,0.4,0.1,15.3,56,0.38,1.6,5,0.2,10,7,88,0,0.06,0.6,43,0,16.7,0.012,0.031,0.183,0.115,0,0,0,0
3130,300,"Babyfood, fruit, peaches, strained","BABYFOOD,FRUIT,PEACHES,STR",,,Y,,0,,,,,,Baby Foods,0.94,0.33,14.48,65,11.5,1.3,4,0.23,7,15,195,4,0.11,0.1,234,0,46.1,0.015,0.077,1.64,0.018,0,6.6,0,0
3131,300,"Babyfood, fruit, peaches, junior","BABYFOOD,FRUIT,PEACHES,JR",,,Y,,0,,,,,,Baby Foods,0.94,0.33,14.48,65,11.5,1.3,4,0.23,7,15,195,4,0.11,0.1,686,0,46.1,0.015,0.077,1.64,0.018,0,6.6,0,0
3132,300,"Babyfood, fruit, pears, strained","BABYFOOD,FRUIT,PEARS,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.3,0.2,10.8,42,6.98,2.8,8,0.24,8,12,130,1,0.08,0.4,17,0,24.5,0.013,0.028,0.189,0.008,0,3.2,0,0
3133,300,"Babyfood, fruit, pears, junior","BABYFOOD,FRUIT,PEARS,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.3,0.1,11.6,44,7.34,2.8,8,0.25,9,12,115,1,0.08,0.4,18,0,22,0.014,0.03,0.188,0.01,0,3.4,0,0
3134,300,"Babyfood, fruit, plums with tapioca, without ascorbic acid, strained","BABYFOOD,FRUIT,PLUMS W/TAPIOCA,WO/VIT C,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.1,0,19.7,71,13.34,1.2,6,0.2,4,6,85,0,0.08,0.4,142,0,1.1,0.008,0.028,0.213,0.024,0,3.5,0,0
3135,300,"Babyfood, fruit, plums with tapioca, without ascorbic acid, junior","BABYFOOD,FRUIT,PLUMS W/TAPIOCA,WO/VIT C,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.1,0,20.5,74,13.64,1.2,6,0.22,4,6,83,0,0.08,0.4,94,0,0.8,0.006,0.03,0.206,0.029,0,3.4,0,0
3136,300,"Babyfood, fruit, prunes with tapioca, without ascorbic acid, strained","BABYFOOD,FRUIT,PRUNES W/TAPIOCA,WO/VIT C,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.6,0.1,18.5,69,10.97,2.7,15,0.35,10,15,177,5,0.09,0.5,453,0,0.8,0.022,0.075,0.525,0.081,0,15.6,0,0
3137,300,"Babyfood, fruit, prunes with tapioca, without ascorbic acid, junior","BABYFOOD,FRUIT,PRUNES W/TAPIOCA,WO/VIT C,JR",,,,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.6,0.1,18.7,70,10.97,2.7,15,0.33,10,15,162,2,0.1,0.5,208,,0.8,0.022,0.083,0.526,0.086,0,15.8,0,0
3139,300,"Babyfood, prunes, without vitamin c, strained","BABYFOOD,PRUNES,WO/VIT C,STR",,,Y,,0,,,,,,Baby Foods,1,0.2,23.52,100,14.28,2.7,21,0.4,17,30,306,1,0.2,0.8,60,0,1.3,0.02,0.21,0.72,0.11,0,22.1,0,0
3140,300,"Babyfood, fruit dessert, mango with tapioca","BABYFOOD,FRUIT DSSRT,MANGO W/ TAPIOCA",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.3,0.2,19,70,13,1.1,8,0.2,6,4,66,4,0.03,0.4,450,0,15.8,0.02,0.02,0.2,0.08,0,2.5,0,0
3141,300,"Babyfood, pears, dices, toddler","BABYFOOD,PEARS,DICES,TODD",,,Y,,0,,,,,,Baby Foods,0.3,0.1,13.6,57,8.66,1.2,10,0.2,7,13,51,6,0.09,0.4,21,0,31.3,0.01,0.02,0.13,0.04,0,4,0,0
3142,300,"Babyfood, fruit, applesauce and apricots, strained","BABYFOOD,FRUIT,APPLSAUC&APRICOTS,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,11.64,44,9.25,1.8,6,0.25,4,9,120,0,0.04,0.3,339,0,18.9,0.014,0.029,0.14,0.03,0,1,0,0
3143,300,"Babyfood, fruit, applesauce and apricots, junior","BABYFOOD,FRUIT,APPLSAUC&APRICOTS,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,12.4,47,8.72,1.8,6,0.26,4,10,109,0,0.03,0.3,33,0,17.9,0.014,0.03,0.145,0.03,0,0.5,0,0
3144,300,"Babyfood, fruit, applesauce and cherries, strained","BABYFOOD,FRUIT,APPLSAUC&CHERRIES,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0,0,14.1,51,10.81,1.1,1,0.3,4,8,132,1,0.03,0.3,45,0,42.8,0.01,0.03,0.14,0.037,0,2,0,0
3145,300,"Babyfood, fruit, applesauce and cherries, junior","BABYFOOD,FRUIT,APPLSAUC & CHERRIES,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0,0,14.1,51,10.61,1.1,1,0.3,4,8,132,1,0.03,0.3,45,0,42.8,0.01,0.03,0.14,0.039,0,1.2,0,0
3147,300,"Babyfood, fruit, applesauce with banana, junior","BABYFOOD,FRUIT,APPLSAUC W/BANANA,JR",,,Y,,0,,,,,,Baby Foods,0.37,0.1,16.16,66,4.35,1.6,5,0.24,9,12,131,3,0.05,0.4,6,0,17.3,0.01,0.031,0.163,0.1,0,0.3,0,0
3150,300,"Babyfood, fruit, applesauce and pineapple, strained","BABYFOOD,FRUIT,APPLSAUC&PNAPPL,STR",,,,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.1,0.1,10.1,37,,1.5,4,0.1,3,6,78,2,0.02,0.3,0,,28.1,0.021,0.026,0.078,0.039,0,,0,0
3151,300,"Babyfood, fruit, applesauce and pineapple, junior","BABYFOOD,FRUIT,APPLSAUC&PNAPPL,JR",,,,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.1,0.1,10.5,39,,1.5,4,0.1,4,6,76,2,0.03,0.3,21,,26.8,0.022,0.027,0.079,0.039,0,,0,0
3152,300,"Babyfood, fruit, apple and raspberry, strained","BABYFOOD,FRUIT,APPL & RASPBERRY,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,15.6,58,12.96,2.1,5,0.22,4,8,80,0,0.03,0.3,22,0,26.8,0.014,0.028,0.106,0.034,0,0.8,0,0
3153,300,"Babyfood, fruit, apple and raspberry, junior","BABYFOOD,FRUIT,APPL & RASPBERRY,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,15.4,58,12.96,2.1,5,0.22,4,8,72,0,0.03,0.3,34,0,28.9,0.012,0.029,0.104,0.034,0,0.8,0,0
3154,300,"Babyfood, fruit and vegetable, apple and sweet potato","BABYFOOD,FRUIT & VEG,APPL & SWT POTATO",,,Y,,0,,,,,,Baby Foods,0.3,0.22,15.3,64,11.6,1.4,8,0.2,6,17,149,3,0.1,0.3,2050,0,6.4,0.01,0.02,0.1,0.05,0,0.8,0,0
3156,300,"Babyfood, fruit, bananas and pineapple with tapioca, junior","BABYFOOD,FRUIT,BANANAS&PNAPPL W/TAPIOCA,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.1,18.4,68,8.41,1.6,7,0.13,6,5,78,0,0.03,0.6,40,0,21.2,0.015,0.019,0.182,0.092,0,0.6,0,0
3157,300,"Babyfood, fruit, bananas and pineapple with tapioca, strained","BABYFOOD,FRUIT,BANANAS&PNAPPL W/TAPIOCA,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0,17.8,65,10.73,1.6,7,0.23,6,5,68,0,0.04,0.6,60,0,19.2,0.019,0.019,0.168,0.082,0,0.6,0,0
3158,300,"Babyfood, fruit, pears and pineapple, strained","BABYFOOD,FRUIT,PEARS&PNAPPL,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.3,0.1,10.9,41,7.79,2.6,10,0.25,7,9,116,0,0.07,0.4,29,0,27.5,0.021,0.028,0.207,0.016,0,1.6,0,0
3159,300,"Babyfood, fruit, pears and pineapple, junior","BABYFOOD,FRUIT,PEARS&PNAPPL,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.3,0.2,11.4,44,7.36,2.6,10,0.21,7,10,118,0,0.13,0.4,32,0,16.8,0.024,0.023,0.183,0.013,0,3,0,0
3160,300,"Babyfood, fruit, guava and papaya with tapioca, strained","BABYFOOD,FRUIT,GUAVA&PAPAYA W/TAPIOCA,STR",,,,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.1,17,63,,,7,0.2,5,6,74,4,0.06,0.4,184,,80.9,0.01,0.022,0.263,0.014,0,,0,
3161,300,"Babyfood, peaches, dices, toddler","BABYFOOD,PEACHES,DICES,TODD",,,Y,,0,,,,,,Baby Foods,0.5,0.2,11.8,51,9.49,0.8,6,0.2,8,17,83,9,0.12,0.4,138,0,31.3,0.01,0.02,0.47,0.04,0,2.9,0,0
3162,300,"Babyfood, fruit, papaya and applesauce with tapioca, strained","BABYFOOD,FRUIT,PAPAYA&APPLSAUC W/TAPIOCA,STR",,,,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.1,18.9,70,,1.4,7,0.44,5,5,79,5,0.03,0.4,76,,113.1,0.01,0.028,0.108,0.023,0,,0,
3163,300,"Babyfood, fruit, bananas with apples and pears, strained","BABYFOOD,FRUIT,BANANAS W/APPLS&PEARS,STR",,,Y,,0,,,,,,Baby Foods,0.9,0.22,19.31,83,12.76,1.4,5,0.3,25,19,233,2,0.1,0.6,56,0,13.9,0.01,0.03,0.55,0.29,0,0.6,0,0
3164,300,"Babyfood, fruit, apple and blueberry, strained","BABYFOOD,FRUIT,APPL&BLUEBERRY,STR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,16.3,61,13.93,1.8,4,0.2,3,8,69,1,0.03,0.4,20,0,27.8,0.017,0.034,0.12,0.037,0,3.5,0,0
3165,300,"Babyfood, fruit, apple and blueberry, junior","BABYFOOD,FRUIT,APPL&BLUEBERRY,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.2,0.2,16.6,62,8.83,1.8,5,0.4,3,7,65,1,0.04,0.4,41,0,13.9,0.018,0.043,0.103,0.042,0,8.8,0,0
3166,300,"Babyfood, juice, apple","BABYFOOD,JUICE,APPLE",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0,0.1,11.7,47,10.7,0.1,4,0.57,3,5,91,8,0.03,0.1,18,0,57.9,0.007,0.016,0.083,0.029,0,0,0,0
3167,300,"Babyfood, apple-banana juice","BABYFOOD,APPLE-BANANA JUC",,,Y,,0,,,,,,Baby Foods,0.2,0.1,12.3,51,11,0.2,7,0.2,6,8,123,4,0.04,0.3,9,0,27.9,0.01,0.01,0.14,0.06,0,0,0,0
3168,300,"Babyfood, juice, apple and peach","BABYFOOD,JUC,APPL&PEACH",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.2,0.1,10.5,43,9.59,0.1,3,0.56,3,4,97,0,0.03,0.3,63,0,58.5,0.008,0.011,0.213,0.022,0,0.5,0,0
3169,300,"Babyfood, apple-cranberry juice","BABYFOOD,APPLE-CRANBERRY JUC",,,Y,,0,,,,,,Baby Foods,0,0.02,11.49,46,6.88,0,6,0.22,3,7,97,5,0.05,0.1,28,0,27.9,0,0.02,0.07,0.03,0,2.4,0,0
3170,300,"Babyfood, juice, apple and plum","BABYFOOD,JUC,APPL&PLUM",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.1,0,12.3,49,11.54,0.1,5,0.62,3,3,101,0,0.03,0.3,43,0,58.2,0.02,0.017,0.195,0.028,0,0.8,0,0
3171,300,"Babyfood, juice, apple and prune","BABYFOOD,JUC,APPL&PRUNE",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.2,0.1,18.1,72,10.58,0.1,9,0.95,7,15,148,8,0.05,0.3,16,0,67.5,0.005,0.002,0.301,0.035,0,1.3,0,0
3172,300,"Babyfood, juice, orange","BABYFOOD,JUICE,ORANGE",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.6,0.3,10.2,45,8.26,0.1,12,0.17,9,11,184,0,0.06,0.1,55,0,62.5,0.045,0.028,0.239,0.054,0,0.1,0,0
3173,300,"Babyfood, juice, orange and apple","BABYFOOD,JUC,ORANGE&APPL",,,,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.4,0.2,10.1,43,,,10,0.2,5,7,138,3,0.03,0.1,73,,76.9,0.038,0.028,0.185,0.038,0,,0,
3174,300,"Babyfood, juice, orange and apple and banana","BABYFOOD,JUC,ORANGE&APPL&BANANA",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.4,0.1,11.5,47,10.03,0.1,5,0.35,6,8,134,0,0.03,0.1,27,0,32.1,0.043,0.027,0.263,0.062,0,0.1,0,0
3175,300,"Babyfood, juice, orange and apricot","BABYFOOD,JUC,ORANGE&APRICOT",,,,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.8,0.1,10.9,46,,0.1,6,0.38,7,12,199,6,0.04,0.1,216,,85.9,0.058,0.028,0.267,0.056,0,,0,0
3176,300,"Babyfood, juice, orange and banana","BABYFOOD,JUC,ORANGE&BANANA",,,,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.7,0.1,11.9,50,,,17,0.11,14,13,200,3,0.09,0.1,46,,34,0.051,0.042,0.18,0.054,0,,0,
3177,300,"Babyfood, juice, orange and pineapple","BABYFOOD,JUC,ORANGE&PNAPPL",,,,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.5,0.1,11.7,48,,0.1,8,0.42,9,9,141,2,0.04,0.1,31,,53.4,0.05,0.023,0.194,0.062,0,,0,0
3178,300,"Babyfood, juice, prune and orange","BABYFOOD,JUC,PRUNE&ORANGE",,,,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.6,0.3,16.8,70,,,12,0.87,8,10,181,2,0.04,0.1,131,,63.8,0.044,0.12,0.396,0.061,0,,0,
3179,300,"Babyfood, juice, mixed fruit","BABYFOOD,JUC,MXD FRUIT",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.1,0.1,11.7,47,8.46,0.1,8,0.34,5,5,101,8,0.03,0.5,42,0,63.6,0.023,0.014,0.123,0.043,0,0.9,0,0
3181,300,"Babyfood, cereal, barley, dry fortified","BABYFOOD,CRL,BARLEY,DRY FORT",,,Y,,0,,5.83,3.55,8.37,3.95,Baby Foods,13.2,6.6,69.4,376,13.2,6.6,795,47.5,115,439,395,12,3.13,30.2,0,0,2.2,2.737,2.699,35.988,0.374,0,2.3,0,0
3184,300,"Babyfood, cereal, whole wheat, with apples, dry fortified","BABYFOOD,CRL,WHL WHEAT,W/ APPLS,DRY FORT",,,Y,,0,,,,,,Baby Foods,12.6,4.8,77.2,402,22.2,12.2,600,45,140,500,516,25,2.6,64.7,20,0,58.3,1.5,1.8,13.33,0.3,0,8.3,0,0
3185,300,"Babyfood, cereal, mixed, dry fortified","BABYFOOD,CRL,MXD,DRY FORT",,,Y,,0,,5.9,3.4,8.4,4.1,Baby Foods,12.2,4.4,73.4,379,0.87,7.5,733,47.5,100,392,437,3,2.4,25.9,20,0,2.3,2.438,2.717,34.714,0.189,0,1.5,0,0
3186,300,"Babyfood, cereal, mixed, with bananas, dry","BABYFOOD,CRL,MXD,W/ BANANAS,DRY",,,Y,,0,,6.1,3.4,8.4,4.1,Baby Foods,10.7,4.6,77.1,391,6.68,7.8,696,47.5,90,367,668,0,1.4,20,125,0,3.6,3.78,3.56,20.56,0.408,0.24,3.5,0,0
3187,300,"Babyfood, cereal, mixed, with applesauce and bananas, strained","BABYFOOD,CRL,MXD,W/ APPLSAUC & BANANAS,STR",,,Y,,0,,6.1,3.4,8.4,4.1,Baby Foods,1.2,0.5,18,82,7.79,1.2,6,6.62,8,23,41,3,0.19,2.6,18,0,25.5,0.28,0.35,3.963,0.137,0,0.3,0,0
3188,300,"Babyfood, cereal, mixed, with applesauce and bananas, junior","BABYFOOD,CRL,MXD,W/ APPLSAUC & BANANAS,JR",,,Y,,0,,6.1,3.4,8.4,4.1,Baby Foods,1.2,0.4,18.4,83,7.79,1.2,4,5.61,7,29,32,3,0.22,2.6,19,0,9.1,0.285,0.356,4.039,0.139,0,0.3,0,0
3189,300,"Babyfood, cereal, oatmeal, dry fortified","BABYFOOD,CRL,OATMEAL,DRY FORT",,,Y,,0,,5.83,3.46,8.37,4.12,Baby Foods,10.99,6.39,73.47,394,11.69,7.3,1160,64.07,111,505,549,21,12.67,23.7,0,510,0,1.429,1.587,21.307,0.855,4.6,1.4,0,0
3190,300,"Babyfood, cereal, oatmeal, with bananas, dry","BABYFOOD,CRL,OATMEAL,W/ BANANAS,DRY",,,Y,,0,,6.04,3.5,8.4,4.1,Baby Foods,12,6,73.4,393,13.75,5.2,651,47.5,118,444,731,6,1.9,20.5,69,0,4.7,3.6,3.71,20.11,0.423,0.22,3,0,0
3191,300,"Babyfood, cereal, oatmeal, with applesauce and bananas, strained","BABYFOOD,CRL,OATMEAL,W/ APPLSAUC & BANANAS,STR",,,Y,,0,,6.04,3.5,8.4,4.1,Baby Foods,1.3,0.7,15.4,74,10.49,0.8,9,5.65,11,41,47,3,0.35,3,30,0,21.8,0.42,0.365,5.042,0.2,0,2.2,0,0
3192,300,"Babyfood, cereal, oatmeal, with applesauce and bananas, junior","BABYFOOD,CRL,OATMEAL,W/ APPLSAUC & BANANAS,JR",,,Y,,0,,6.04,3.5,8.4,4.1,Baby Foods,1.3,0.7,15.8,75,9.48,0.8,6,7.5,11,41,48,3,7.5,3,28,0,24.5,0.25,0.484,5.6,0.24,0,0.6,0,0
3193,300,"Babyfood, cereal, oatmeal, with honey, dry","BABYFOOD,CRL,OATMEAL,W/HONEY,DRY",,,,,0,,5.83,3.5,8.4,4.1,Baby Foods,13.5,7,69.3,391,,,1154,67.23,146,733,259,47,3.7,36.4,23,,0,2.771,2.842,36.292,0.154,0,,0,
3194,300,"Babyfood, cereal, rice, dry fortified","BABYFOOD,CRL,RICE,DRY FORT",,,Y,,0,,5.95,3.82,8.37,4.16,Baby Foods,6.65,2.19,83.14,390,4.85,1.3,860,53.01,37,273,281,32,10.92,5,0,341,2.4,1.195,1.459,23.006,0.885,4.6,0.5,0,0
3195,300,"Babyfood, cereal, rice, with applesauce and bananas, strained","BABYFOOD,CRL,RICE,W/ APPLSAUC & BANANAS,STR",,,Y,,0,,6,3.8,8.4,4.2,Baby Foods,1.2,0.4,17.1,80,2.24,1,17,6.73,3,12,28,4,0.08,2.1,21,0,31.6,0.26,0.422,4.017,0.234,0,0.2,0,0
3197,300,"Babyfood, cereal, with egg yolks, strained","BABYFOOD,CRL,W/EGG YOLKS,STR",,,,,0,,6.03,4.2,8.8,3.9,Baby Foods,1.9,1.8,7,51,,0.9,24,0.47,3,40,39,33,0.29,,141,,0.7,0.009,0.044,0.049,0.021,0.07,,0,63
3198,300,"Babyfood, cereal, with egg yolks, junior","BABYFOOD,CRL,W/EGG YOLKS,JR",,,,,0,,6.03,4.2,8.8,3.9,Baby Foods,1.9,1.8,7.1,52,,0.9,24,0.51,3,40,35,33,0.29,,144,,0.7,0.008,0.045,0.048,0.02,0.06,,0,63
3199,300,"Babyfood, cereal, with eggs, strained","BABYFOOD,CRL,W/EGGS,STR",,,,,0,,6.03,4.2,8.8,3.9,Baby Foods,2.2,1.5,8,58,,,27,0.54,3,46,44,38,0.33,,161,,0.8,0.01,0.05,0.056,0.024,0.08,,0,51
3201,300,"Babyfood, cereal, egg yolks and bacon, junior","BABYFOOD,CRL,EGG YOLKS&BACON,JR",,,,,0,,6.03,4.2,8.8,3.9,Baby Foods,2.5,5,6.2,79,,0.9,28,0.47,5,50,35,48,0.27,,94,,0.9,0.05,0.077,0.266,0.026,0.09,,0,94
3205,300,"Babyfood, oatmeal cereal with fruit, dry, instant, toddler fortified","BABYFOOD,OATMEAL CRL W/ FRUIT,DRY,INST,TODD FORT",,,Y,,0,,,,,,Baby Foods,10.5,7.05,74.1,402,11.09,7.8,286,14.3,107,429,346,0,5.7,20.5,89,0,2.7,0.75,0.86,9.6,0.38,0,7.5,0,0
3206,300,"Babyfood, cookie, baby, fruit","BABYFOOD,COOKIE,BABY,FRUIT",,,Y,,0,,,,,,Baby Foods,6.8,12.6,73.7,435,24.2,3.4,83,2.9,30,189,425,9,0.8,20.5,2348,0,1.5,0.44,0.42,3.6,0.21,0.22,3.2,82,4
3209,300,"Babyfood, crackers, vegetable","BABYFOOD,CRACKERS,VEG",,,Y,,0,,,,,,Baby Foods,8.4,19.6,66.85,477,13,4,41,4.2,37,198,245,571,0.9,13.7,3571,0,50.5,0.35,0.33,4.05,0.12,0,7.1,70,0
3211,300,"Babyfood, cereal, high protein, with apple and orange, dry","BABYFOOD,CRL,HI PROT,W/APPL&ORANGE,DRY",,,,,0,,5.85,3.5,8.4,4,Baby Foods,25.4,6.5,57.6,374,,7.1,751,47.5,159,539,1330,104,2.7,28.3,54,,3.1,3.79,4.33,23.83,0.351,0.3,,0,0
3212,300,"Babyfood, cereal, rice, with bananas, dry","BABYFOOD,CRL,RICE,W/ BANANAS,DRY",,,Y,,0,,6,3.8,8.4,4.2,Baby Foods,8.7,4.2,79.9,404,16.7,1,691,47.5,141,410,769,0,1.5,11.6,29,0,2,3.97,3.8,23.32,0.686,0,3.8,0,0
3213,300,"Babyfood, cookies","BABYFOOD,COOKIES",,,Y,,0,,5.7,4,8.4,4.1,Baby Foods,11.8,13.2,67.1,433,24.2,0.2,101,4.18,49,179,501,300,1.1,17.2,23,0,7,1.459,3.229,15.966,5.899,0.46,1.1,74,12
3214,300,"Babyfood, cookies, arrowroot","BABYFOOD,COOKIES,ARROWROOT",,,,,0,,5.75,4,8.4,4.1,Baby Foods,7.6,10,75.4,424,,0.2,32,3,22,116,156,319,0.53,17.2,0,0,5.5,0.499,0.429,5.739,0.04,0.07,0.5,25,0
3215,300,"Babyfood, pretzels","BABYFOOD,PRETZELS",,,Y,,0,,5.7,4,8.4,4.1,Baby Foods,10.8,2,82.2,397,3.08,2.3,25,3.77,28,110,137,269,0.78,7.6,8,0,3.8,0.463,0.357,3.56,0.083,0,0.3,65,0
3216,300,"Babyfood, teething biscuits","BABYFOOD,TEETHING BISCUITS",,,Y,,0,,5.85,4,8.4,4.1,Baby Foods,10.7,4.2,76.4,392,12.65,1.4,263,3.55,35,164,323,285,0.93,23.5,116,21,9.1,0.233,0.537,4.33,0.111,0.07,0.5,29,7
3217,300,Zwieback,ZWIEBACK,,,Y,,0,,5.85,4,8.4,4.1,Baby Foods,10.1,9.7,74.2,426,12.5,2.5,20,0.6,14,55,305,227,0.54,28.7,58,0,5.3,0.208,0.239,1.319,0.082,0,0.9,67,8
3220,300,"Babyfood, dessert, dutch apple, strained","BABYFOOD,DSSRT,DUTCH APPL,STR",,,Y,,0,,6.25,3.4,8.4,3.6,Baby Foods,0.2,0.4,19.74,75,17.89,1.4,5,0.2,2,3,33,0,0.01,0.2,49,0,21.4,0.011,0.013,0.048,0.011,0,0.5,0,0
3221,300,"Babyfood, dessert, dutch apple, junior","BABYFOOD,DSSRT,DUTCH APPL,JR",,,Y,,0,,,,,,Baby Foods,0.2,0.16,19.18,79,17.89,1.4,3,0.11,4,7,67,3,0.03,0.2,18,0,18,0.01,0.012,0.048,0.017,0,0.5,0,0
3222,300,"Babyfood, cherry cobbler, junior","BABYFOOD,CHERRY COBBLER,JR",,,Y,,0,,,,,,Baby Foods,0.3,0.1,19.2,78,10.39,0.2,5,0.1,2,6,45,0,0.05,0.9,31,0,9.3,0.01,0.01,0.06,0.02,0,0.5,0,0
3224,300,"Babyfood, dessert, cherry vanilla pudding, strained","BABYFOOD,DSSRT,CHERRY VANILLA PUDD,STR",,,Y,,0,,6.25,4.3,8.9,3.6,Baby Foods,0.2,0.3,17.8,68,9.15,0.3,5,0.19,2,7,34,0,0.04,0.6,261,1,1.1,0.008,0.011,0.038,0.011,0.01,0.2,0,10
3225,300,"Babyfood, dessert, cherry vanilla pudding, junior","BABYFOOD,DSSRT,CHERRY VANILLA PUDD,JR",,,Y,,0,,6.25,4.3,8.9,3.6,Baby Foods,0.2,0.2,18.4,69,16.98,0.3,5,0.17,2,7,33,0,0.03,0.6,261,1,1.1,0.007,0.011,0.038,0.012,0.01,0.2,0,10
3226,300,"Babyfood, dessert, fruit pudding, orange, strained","BABYFOOD,DSSRT,FRUIT PUDD,ORANGE,STR",,,,,0,,6.33,4.3,8.9,3.8,Baby Foods,1.1,0.9,17.7,80,,0.6,32,0.1,5,28,86,20,0.17,0.6,115,,9.1,0.04,0.057,0.119,0.027,0.01,,0,3
3227,300,"Babyfood, dessert, peach cobbler, strained","BABYFOOD,DSSRT,PEACH COBBLER,STR",,,Y,,0,,6.2,3.4,8.4,3.6,Baby Foods,0.3,0,17.8,65,10.62,0.7,4,0.1,2,5,54,7,0.3,1,138,0,20.5,0.009,0.014,0.259,0.007,0,1.1,0,0
3228,300,"Babyfood, dessert, peach cobbler, junior","BABYFOOD,DSSRT,PEACH COBBLER,JR",,,Y,,0,,6.2,3.4,8.4,3.6,Baby Foods,0.3,0,18.3,67,11.89,0.7,4,0.1,2,6,56,0,0.03,1,138,0,20.5,0.01,0.015,0.259,0.007,0,1.1,1,0
3229,300,"Babyfood, dessert, peach melba, strained","BABYFOOD,DSSRT,PEACH MELBA,STR",,,,,0,,6.25,3.4,8.4,3.6,Baby Foods,0.2,0,16.5,60,,,10,0.33,2,5,83,9,0.28,,184,,31.4,0.006,0.036,0.343,0.006,0,,,
3230,300,"Babyfood, dessert, peach melba, junior","BABYFOOD,DSSRT,PEACH MELBA,JR",,,,,0,,6.25,3.4,8.4,3.6,Baby Foods,0.3,0,16.4,60,,,11,0.3,2,5,93,9,0.28,,196,,26,0.007,0.03,0.272,0.006,0,,,
3233,300,"Babyfood, dessert, fruit pudding, pineapple, strained","BABYFOOD,DSSRT,FRUIT PUDD,PNAPPL,STR",,,Y,,0,,6.2,4.3,8.9,3.6,Baby Foods,1.3,0.3,20.3,81,10.28,0.7,31,0.18,9,31,81,0,0.2,1.2,37,0,27.2,0.038,0.046,0.107,0.04,0.06,0,0,0
3235,300,"Babyfood, dessert, fruit dessert, without ascorbic acid, strained","BABYFOOD,DSSRT,FRUIT DSSRT,WO/VIT C,STR",,,Y,,0,,6.25,3.4,8.4,3.6,Baby Foods,0.3,0,16,59,12.6,0.6,9,0.22,5,7,94,0,0.04,0.4,132,0,2.5,0.016,0.009,0.143,0.037,0,1.5,0,0
3236,300,"Babyfood, dessert, fruit dessert, without ascorbic acid, junior","BABYFOOD,DSSRT,FRUIT DSSRT,WO/VIT C,JR",,,Y,,0,,6.25,3.4,8.4,3.6,Baby Foods,0.3,0,17.2,63,12,0.6,9,0.21,5,8,95,0,0.05,0.4,132,0,3,0.021,0.012,0.144,0.033,0,1.5,0,0
3238,300,"Babyfood, dessert, tropical fruit, junior","BABYFOOD,DSSRT,TROPICAL FRUIT,JR",,,,,0,,6.25,3.4,8.4,3.6,Baby Foods,0.2,0,16.4,60,,,10,0.26,5,8,58,7,0.05,0.4,20,,18.8,0.011,0.031,0.08,0.031,0,,0,
3245,300,"Babyfood, dessert, custard pudding, vanilla, strained","BABYFOOD,DSSRT,CUSTARD PUDD,VANILLA,STR",,,Y,,0,,6.33,4.3,8.9,3.8,Baby Foods,1.6,2,16,85,11.5,0,55,0.24,5,45,66,0,0.28,2.4,64,21,0.8,0.012,0.08,0.04,0.02,0.01,0,0,8
3246,300,"Babyfood, dessert, custard pudding, vanilla, junior","BABYFOOD,DSSRT,CUSTARD PUDD,VANILLA,JR",,,Y,,0,,,,,,Baby Foods,1.76,0.98,17.58,86,12.2,0.2,54,0.22,5,55,68,26,0.3,2.4,47,19,0.4,0.012,0.054,0.076,0.03,0.23,0,0,38
3265,300,"Babyfood, juice, apple and grape","BABYFOOD,JUC,APPL&GRAPE",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.1,0.2,11.34,46,10.9,0.1,6,0.39,6,5,90,0,0.04,0.1,4,0,31.5,0.007,0.021,0.109,0.034,0,0,0,0
3267,300,"Babyfood, juice, fruit punch, with calcium","BABYFOOD,JUC,FRUIT PUNCH,W/CA",,,Y,,0,,,,,,Baby Foods,0.2,0.1,12.7,52,10.6,0.4,64,0.3,7,11,86,4,0.04,0.1,3,0,21.2,0.01,0.02,0.1,0.05,0,0.1,0,0
3268,300,"Babyfood, juice, apple and cherry","BABYFOOD,JUC,APPL&CHERRY",,,Y,,0,,6.25,3.36,8.37,3.92,Baby Foods,0.1,0.2,9.9,41,8.98,0.1,5,0.66,3,6,98,0,0.03,0.1,5,0,58.3,0.008,0.015,0.094,0.031,0,0.4,0,0
3269,300,"Babyfood, juice, apple, with calcium","BABYFOOD,JUC,APPL,W/CA",,,Y,,0,,,,,,Baby Foods,0.06,0.1,11.1,46,9,0.4,127,0.2,6,8,92,3,0.03,0.1,0,0,21.2,0.02,0.02,0.08,0.03,0,0,0,0
3274,300,"Babyfood, dinner, vegetables and chicken, junior","BABYFOOD,DINNER,VEG&CHICK,JR",,,Y,,0,,,,,,Baby Foods,2.04,1.12,8.66,53,1.46,1.1,27,0.33,8,32,83,34,0.3,2.1,2612,2,0.2,0.025,0.046,0.628,0.046,0.02,2.1,0,7
3278,300,"Babyfood, dinner, mixed vegetable, strained","BABYFOOD,DINNER,MXD VEG,STR",,,,,0,,6.07,3,8.4,3.8,Baby Foods,1.2,0.1,9.5,41,,,22,0.33,11,24,121,38,0.16,0.7,2728,,2.8,0.015,0.031,0.502,0.075,0,,0,
3279,300,"Babyfood, dinner, mixed vegetable, junior","BABYFOOD,DINNER,MXD VEG,JR",,,Y,,0,,6.07,3,8.4,3.8,Baby Foods,1.01,0.11,7.88,34,3.08,1,17,0.31,13,30,112,40,0.24,0.3,9246,0,3.3,0.014,0.042,0.566,0.114,0,5.7,0,0
3280,300,"Babyfood, fruit, bananas with tapioca, junior","BABYFOOD,FRUIT,BANANAS W/TAPIOCA,JR",,,Y,,0,,6.25,3.36,8.37,3.6,Baby Foods,0.4,0.2,17.8,67,7.1,1.6,8,0.3,12,9,108,0,0.07,0.6,44,0,25.7,0.015,0.02,0.218,0.139,0,0.2,0,0
3282,300,"Babyfood, vegetables, mix vegetables junior","BABYFOOD,VEG,MIX VEG JR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,1.4,0.4,8.2,36,1.78,1.5,11,0.41,11,25,170,36,0.27,0.7,4195,0,2.5,0.029,0.032,0.665,0.081,0,7.4,0,0
3283,300,"Babyfood, vegetables, garden vegetable, strained","BABYFOOD,VEG,GARDEN VEG,STR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,2.3,0.2,6.8,32,2.57,1.5,28,0.83,21,28,168,31,0.26,0.7,6067,0,5.7,0.061,0.069,0.779,0.1,0,24.5,0,0
3286,300,"Babyfood, vegetables, mix vegetables strained","BABYFOOD,VEG,MIX VEG STR",,,Y,,0,,6.25,2.44,8.37,3.57,Baby Foods,1,0.5,8.25,36,1.57,1.5,13,0.32,10,22,127,0,0.15,0.7,3166,0,1.7,0.022,0.025,0.327,0.055,0,7,0,0
3287,300,"Babyfood, dinner, beef noodle, junior","BABYFOOD,DINNER,BF NOODLE,JR",,,Y,,0,,5.98,4.1,8.9,4.1,Baby Foods,2.5,1.9,7.3,57,1.45,1.1,8,0.43,7,30,46,26,0.4,5.7,656,1,1.4,0.028,0.036,0.582,0.031,0.1,4.6,7,8
3289,300,"Babyfood, apples with ham, strained","BABYFOOD,APPLS W/HAM,STR",,,Y,,0,,,,,,Baby Foods,2.6,0.9,10.9,62,7.98,1.8,4,0.3,7,34,120,9,0.4,4.6,6,3,0.1,0.06,0.06,0.73,0.07,0.02,0.5,0,8
3290,300,"Babyfood, carrots and beef, strained","BABYFOOD,CARROTS&BF,STR",,,Y,,0,,,,,,Baby Foods,3.4,2.5,5.7,59,2.04,2.6,22,0.5,13,45,226,69,0.8,2.8,14452,1,0.8,0.02,0.06,0.93,0.1,0.3,7.4,0,8
3293,300,"Babyfood, plums, bananas and rice, strained","BABYFOOD,PLUMS,BANANAS&RICE,STR",,,Y,,0,,,,,,Baby Foods,1.1,0.3,12.7,57,9.3,1.3,3,0,11,32,265,0,0.13,2.4,133,0,12.3,0.04,0.05,0.8,0.13,0,5.7,0,0
3296,300,"Babyfood, dinner, turkey, rice, and vegetables, toddler","BABYFOOD,TURKEY,RICE&VEG,TODD",,,Y,,0,,,,,,Baby Foods,3.8,1.6,7.5,60,1.12,0.8,11,0.4,14,63,107,183,0.61,3.3,2268,2,0.3,0.07,0.07,2.11,0.13,0.1,2.5,0,7
3297,300,"Babyfood, dinner, apples and chicken, strained","BABYFOOD,DINNER,APPLS&CHICK,STR",,,Y,,0,,,,,,Baby Foods,2.16,1.38,10.88,65,6.06,1.8,18,0.38,6,32,95,12,0.36,2.5,30,1,0.2,0.02,0.057,0.577,0.083,0.02,0.6,0,5
3298,300,"Babyfood, dinner, broccoli and chicken, junior","BABYFOOD,DINNER,BROCCOLI & CHICK,JR",,,Y,,0,,,,,,Baby Foods,3.59,2.48,6.34,62,1.43,1.4,37,0.52,12,58,170,17,0.39,2.2,474,1,17.7,0.019,0.098,0.964,0.052,0.33,73.5,10,13
3301,300,"Babyfood, beverage, GERBER GRADUATE FRUIT SPLASHERS","Babyfood, beverage, GERBER GRADUATE FRUIT SPLASHERS",,,Y,,0,,6.25,,,,Baby Foods,0,0,7.4,31,6.12,0,71,0,3,3,22,11,0.71,0.1,4,0,35.3,0.007,0.013,0.06,0.022,0,0.2,0,0
3302,300,"Babyfood, snack, GERBER GRADUATE YOGURT MELTS","BABYFOOD,SNACK,GERBER GRADUATE YOGURT MELTS",,,Y,,0,,6.25,,,,Baby Foods,14.29,4,71.43,429,57.14,2.3,457,0,53,382,714,286,1.77,11.8,1396,3,57.1,0.113,0.817,3.301,0.168,1.7,12.2,0,0
3303,300,"Babyfood, dinner, sweet potatoes and chicken, strained","BABYFOOD,DINNER,SWT POTATOES&CHICK,STR",,,Y,,0,,,,,,Baby Foods,2.51,2.17,11.04,74,2.65,1.3,30,0.45,13,25,200,22,0.37,1.7,4318,4,0,0.02,0.04,1.04,0.137,0.05,1.3,0,11
3304,300,"Babyfood, dinner, potatoes with cheese and ham, toddler","BABYFOOD,DINNER,POTATOES W/CHS&HAM,TODD",,,Y,,0,,,,,,Baby Foods,3.5,2,11.97,78,0.8,1.2,53,0.4,14,108,143,205,0.6,5.5,31,1,0.1,0.05,0.1,1.06,0.16,0.07,1.3,0,6
3681,300,"Babyfood, cereal, barley, prepared with whole milk","BABYFOOD,CRL,BARLEY,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,3.73,3.26,9.94,84,5.1,0.6,162,3.49,18,110,151,43,0.57,5.6,150,47,0.2,0.242,0.353,2.707,0.06,0.42,0.4,0,10
3682,300,"Babyfood, cereal, high protein, prepared with whole milk","BABYFOOD,CRL,HI PROT,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,8.7,3.8,11.6,111,,,218,12.14,48,177,349,49,1.04,,105,,,0.47,0.579,5.668,0.113,0.3,,0,
3685,300,"Babyfood, cereal, mixed, prepared with whole milk","BABYFOOD,CRL,MXD,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,4.14,3.38,12.3,96,4.78,0.8,220,10.43,20,118,166,42,0.59,6.1,146,45,0.3,0.308,0.448,3.88,0.053,0.4,0.4,0,9
3686,300,"Babyfood, cereal, mixed, with bananas, prepared with whole milk","BABYFOOD,CRL,MXD,W/BANANAS,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,3.82,3.46,10,86,5.9,0.4,153,3.63,18,111,178,48,0.49,4.9,155,47,0.4,0.315,0.437,1.605,0.065,0.43,0.5,0,10
3689,300,"Babyfood, cereal, oatmeal, prepared with whole milk","BABYFOOD,CRL,OATMEAL,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,5,4.1,15.3,116,,1.1,220,12.14,35,160,204,46,0.92,,105,,1.3,0.506,0.563,5.981,0.06,0.3,,0,11
3690,300,"Babyfood, cereal, oatmeal, with bananas, prepared with whole milk","BABYFOOD,CRL,OATMEAL,W/BANANAS,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,3.82,3.46,10,86,5.9,0.4,153,3.63,18,111,178,48,0.49,4.9,155,47,0.4,0.315,0.437,1.605,0.104,0.43,0.5,0,10
3693,300,"Babyfood, cereal, oatmeal, with honey, prepared with whole milk","BABYFOOD,CRL,OATMEAL,W/HONEY,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,5,3.9,15.3,115,,,289,11.09,35,198,170,49,0.93,,,,,0.487,0.602,6.034,0.06,0.3,,0,
3694,300,"Babyfood, cereal, rice, prepared with whole milk","BABYFOOD,CRL,RICE,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,3.45,3.38,10.31,85,4.87,0,168,3.63,25,122,151,42,0.49,4.3,150,47,0.2,0.243,0.324,2.449,0.069,0.41,0.2,0,10
3696,300,"Babyfood, cereal, rice, with honey, prepared with whole milk","BABYFOOD,CRL,RICE,W/HONEY,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,3.9,3.3,17.1,115,,,291,10.81,45,181,141,49,0.65,,108,,0,0.476,0.608,6.083,0.115,0.3,,0,
3704,300,"Babyfood, cereal, mixed, with honey, prepared with whole milk","BABYFOOD,CRL,MXD,W/HONEY,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,5,3.6,15.9,115,,,294,11.27,28,184,171,48,0.72,,,,,0.447,0.583,6.26,0.067,0.3,,0,
3711,300,"Babyfood, cereal, high protein, with apple and orange, prepared with whole milk","BABYFOOD,CRL,HI PROT,W/APPL&ORANGE,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,6.9,3.9,13.4,112,,,223,14.42,37,166,346,58,0.76,,,,,0.655,0.847,3.987,0.092,0.35,,0,
3712,300,"Babyfood, cereal, rice, with bananas, prepared with whole milk","BABYFOOD,CRL,RICE,W/BANANAS,PREP W/WHL MILK",,,,,0,,0,,,,Baby Foods,3.57,3.32,10.49,86,6.13,0.1,156,3.63,20,109,180,47,0.46,4.3,152,47,0.2,0.684,0.444,1.849,0.085,0.43,0.5,0,10
3800,300,"Infant formula, NESTLE, GOOD START SUPREME, with iron, ready-to-feed","INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.45,3.37,7.39,66,5,0,42,0.99,5,24,71,18,0.53,1.3,200,42,5.9,0.066,0.092,0.693,0.05,0.22,5.3,10,4
3801,300,"Infant formula, NESTLE, GOOD START SUPREME, with iron, liquid concentrate, not reconstituted","INF FORMULA,NES,G START SUPR,W/ IRON,LIQ CONC,NOT RECON",,,Y,,0,,,,,,Baby Foods,2.79,6.5,14.2,127,9.7,0,81,1.9,9,46,137,34,1.02,1.6,381,76,11,0.127,0.178,1.33,0.095,0.42,10,19,2
3802,300,"Infant formula, NESTLE, GOOD START SUPREME, with iron, powder","INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,PDR",,,Y,,0,,,,,,Baby Foods,11.3,26.1,57.32,509,39.3,0,343,7.7,36,184,553,138,4.1,10.2,1537,307,46.1,0.512,0.717,5.38,0.384,1.1,41,77,32
3803,300,"Infant formula, MEAD JOHNSON, ENFAMIL, with iron, ready-to-feed","INF FORMULA, MEAD JOHNSON, ENFAMIL, W/IRON, RTF",,,Y,,0,,,,,,Baby Foods,1.38,3.5,7.2,63,7.18,0,51,1.18,5,35,71,18,0.66,1.8,193,40,7.9,0.052,0.092,0.66,0.04,0.19,5.2,11,1
3805,300,"Infant formula, MEAD JOHNSON, ENFAMIL, with iron, powder","INF FORMULA,MEAD JOHNSON,ENFAMIL,W/ IRON,PDR",,,Y,,0,,,,,,Baby Foods,10.8,27,56.2,520,56,0,400,9.3,41,270,560,139,5.2,14.5,1567,310,62,0.41,0.72,5.2,0.31,1.55,41,83,17
3806,300,"Infant formula, MEAD JOHNSON, ENFAMIL, low iron, ready-to-feed","INFANT FORMULA,MEAD JOHNSON,ENFAMIL,LO IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.38,3.5,7.18,63,7.18,0,51,0.46,5,35,71,18,0.66,1.8,193,40,7.9,0.052,0.092,0.66,0.04,0.19,5.2,11,1
3808,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, with iron, powder, with ARA and DHA","INF FORMULA,MEAD JOHNSON,ENFAMILLIPIL,W/IRN,PDR,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,10.8,27,56.2,511,56,0,400,9.3,41,270,560,139,5.2,14.5,1550,310,62,0.41,0.72,5.2,0.31,1.55,41,83,17
3809,300,"Infant formula, MEAD JOHNSON, ENFAMIL, low iron, powder, not reconstituted","INF FORMULA, MEAD JOHNSON, ENFAMIL, LO IRON, POWD, NOT RECON",,,Y,,0,,,,,,Baby Foods,10.8,27,56.2,511,56,0,400,3.6,41,270,560,139,5.2,14.5,1550,310,62,0.41,0.72,5.2,0.31,1.55,41,83,17
3812,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, with iron, liquid concentrate, with ARA and DHA","INF FORMU,MEAD JOHNS,ENFA,LIPIL,W/ IRO,LIQ CONC,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,2.76,6.96,14.34,131,14,0,102,2.36,11,70,142,35,1.31,3.6,394,78,15.8,0.105,0.184,1.313,0.079,0.39,10.3,21,1
3813,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, ready-to-feed","INF FORMULA,MEAD JOHNSON,ENFAMIL,NUTRAMIGEN,W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.83,3.5,6.81,66,5.13,0,62,1.18,7,42,72,31,0.66,1.8,194,33,7.9,0.052,0.059,0.66,0.04,0.19,5.2,11,0
3814,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, powder, not reconstituted","INF FORM,MEAD JOHNSON,ENFAMIL,NUTRAMIGEN,W/IRON,PDR,NOTRECN",,,Y,,0,,,,,,Baby Foods,14.2,25,55,502,55,0,470,8.9,55,310,550,230,5,13.9,1490,250,60,0.4,0.45,5,0.3,1.49,40,79,0
3815,300,"Infant formula, MEAD JOHNSON, ENFAMIL LIPIL, with iron, ready-to-feed, with ARA and DHA","INF FORMULA, MEAD JOHN, ENFAMIL LIPIL,W/ IRON,RTF,W/ AR & DH",,,Y,,0,,,,,,Baby Foods,1.38,3.5,7.1,64,7.1,0,51,1.18,5,35,71,18,0.66,1.8,193,40,7.9,0.052,0.092,0.66,0.04,0.19,5.2,11,1
3816,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, liquid concentrate, not reconstituted","INF FORM,MEAD JOHNSON,ENFAMIL,NUTRAMIGEN,W/IRON,LC,NOT RECON",,Mead Johnson,Y,,0,,,,,,Baby Foods,3.53,6.73,13.12,127,13.08,0,120,2.28,14,80,138,60,1.27,3.5,374,64,15.1,0.101,0.114,1.27,0.077,0.37,10.1,20,0
3818,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, liquid concentrate, with ARA and DHA","INF FORM,ME JOHNS,ENFAM,LIP,LO IRON,LIQ CONC,W/ ARA & DHA",,,,,0,,,,,,Baby Foods,2.76,7.16,14.24,131,14.24,0,102,0.92,11,70,142,39,1.31,3.6,394,79,15.8,0.105,0.184,1.313,0.079,0.39,10,21,2
3819,300,"Child formula, MEAD JOHNSON, PORTAGEN, with iron, powder, not reconstituted","CHILD FORMULA,MEAD JOHNSON,PORTAGEN,W/ IRON,PDR,NOT RECON",,,Y,,0,,,,,,Baby Foods,16.5,22,54.8,483,54,0,440,8.8,98,330,590,260,4.4,0,3700,370,38,0.74,0.88,9.8,0.98,2.9,74,74,4
3820,300,"Child formula, MEAD JOHNSON, PORTAGEN, with iron, prepared from powder","CHILD FORMULA,MEAD JOHNSON,PORTAGEN,W/ IRON,PREP FROM PDR",,,Y,,0,,,,,,Baby Foods,3.33,4.48,8.57,88,7.4,0,88,1.75,19,66,118,52,0.88,0,740,65,7.6,0.148,0.176,1.944,0.194,0.57,15.1,15,1
3821,300,"Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, powder, not reconstituted","INF FORMULA. MEAD JOHNSON, PREGESTIMIL, W/IRON, PDR,NO RECON",,,Y,,0,,,,,,Baby Foods,14,28,52.8,519,51,0,580,9.4,55,380,550,240,5,14,1900,278,60,0.4,0.45,5,0.3,1.5,60,80,2
3822,300,"Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, prepared from powder","INF FORMULA, MEAD JOHNSON, PREGESTIMIL, W/IRON, PREP FRO PDR",,,Y,,0,,,,,,Baby Foods,1.82,3.65,6.63,67,6.63,0,75,1.17,7,49,71,31,0.65,1.8,250,35,7.8,0.052,0.059,0.654,0.039,0.19,7.8,10,0
3823,300,"Infant formula, MEAD JOHNSON, PROSOBEE, with iron, ready-to-feed","INF FORMULA,MEAD JOHNSON,PROSOBEE,W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.64,3.5,6.11,63,6.11,0,69,1.18,7,54,79,23,0.79,1.8,194,40,7.9,0.052,0.059,0.66,0.04,0.19,5.2,11,0
3824,300,"Infant formula, MEAD JOHNSON, PROSOBEE, with iron, liquid concentrate, not reconstituted","INF FORMULA, MEAD JOHNSON, PROSOBEE,W/IRON ,LIQ CNC, NOT REC",,,Y,,0,,,,,,Baby Foods,3.19,7.13,13.58,131,13.58,0,134,2.3,14,106,153,45,1.53,3.6,377,77,15.3,0.102,0.115,1.28,0.077,0.38,10.2,20,0
3825,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, ready to feed, with ARA and DHA","INF FOR,ME JOHN,ENFAM,LIPIL,LO IRON,READY TO FE,W/ ARA & DHA",,,,,0,,,,,,Baby Foods,1.38,3.5,7.18,64,7.18,0,51,0.46,5,35,71,18,0.66,1.8,194,40,7.9,0.052,0.092,0.66,0.04,0.19,5.2,11,1
3826,300,"Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, with iron, powder, not reconstituted","INF FORMULA,MEAD JOHNSON,ENFAMIL,PROSOBEE,IRON,PDR,NOT RECON",,,Y,,0,,,,,,Baby Foods,12.5,27,54.3,510,53,0,530,9,55,420,600,180,6,14,1500,300,60,0.4,0.45,5,0.3,1.5,40,80,0
3827,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LACTOFREE LIPIL, with iron, powder, with ARA and DHA","INF FORMULA, ME JOHN, ENFA, LACF LIP, W/IRO, POW, W/AR AN DH",,,Y,,0,,,,,,Baby Foods,10.9,28,56.3,521,54.77,0,430,9.4,42,290,570,156,5.2,14.6,1567,310,62,0.42,0.73,5.2,0.31,1.56,42,83,7
3830,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LACTOFREE, LIPIL, with iron, liquid concentrate, not reconstituted, with ARA and DHA","INF FORMU, ME JOH, ENF, LAC, LI, W/ IR,LI CO,N RE,W/ AR & DH",,,Y,,0,,,,,,Baby Foods,2.68,7.11,14.42,132,13.96,0,104,2.3,10,70,140,38,1.28,3.6,377,77,15.3,0.102,0.179,1.283,0.077,0.38,10.2,20,2
3832,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, ready-to-feed, with ARA and DHA","INF FORMULA,MEAD JOHNSON,ENFAMIL,LIPIL,RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.38,3.5,6.44,66,6.44,0,54,1.18,5,36,72,19,0.66,1.8,194,40,7.9,0.052,0.092,0.66,0.04,0.19,5.2,11,1
3837,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, PM 60/40, powder not reconstituted","INF FORMULA, ABBOTT NUTR, SIMILAC, PM 60/40, PDR NOT RECON",,,Y,,0,,,,,,Baby Foods,11.4,28.71,54.94,524,52.38,0,288,1.13,31,144,411,123,3.85,9.8,1541,308,46.2,0.514,0.77,5.392,0.308,1.28,41.1,77,17
3838,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN LIPIL, with iron, powder, not reconstituted, with ARA and DHA","INF FOR,ME JOH,ENF,NUTR LIPIL,W/ IRO,PDR,NOT RE,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,13.9,26,51,494,51,0,470,8.9,55,310,550,230,5,13.9,1500,250,60,0.4,0.45,5,0.3,1.49,40,79,0
3839,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, NATURAL CARE, ADVANCE, ready-to-feed, with ARA and DHA","INF FORMULA, ABB NUT,SIMI,NAT CA,AD,RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,2.12,4.24,8.2,78,8.2,0,163,0.29,9,91,101,34,1.17,1.4,973,117,28.9,0.195,0.484,3.902,0.195,0.43,9.4,29,2
3840,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, SPECIAL CARE, ADVANCE 24, with iron, ready-to-feed, with ARA and DHA","INF FORMULA, AB NUT, SIM, SP CA, ADV 24,W/ IR, RT,W/ AR & DH",,,Y,,0,,,,,,Baby Foods,1.8,3.26,8.73,71,8.3,0,141,1.41,9,79,101,34,1.18,1.4,982,106,29.1,0.196,0.487,3.927,0.196,0.43,9.4,29,2
3841,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, ready-to-feed","INF FORMULA, ABBO NUTR, SIMIL,ISOMI,W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.61,3.59,6.7,66,6.7,0,69,1.18,5,49,71,29,0.49,1.4,197,39,5.9,0.039,0.059,0.887,0.039,0.3,7.2,10,0
3842,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, liquid concentrate","INF FORMULA, ABBOTT NUTR, SIMILAC, ISOMIL,W/ IRON,LIQ CONC",,,Y,,0,,,,,,Baby Foods,3.13,6.98,13.21,128,13.1,0,134,2.3,10,96,138,56,0.96,2.7,380,77,11.5,0.077,0.115,1.725,0.077,0.58,14.1,19,0
3843,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, powder, not reconstituted","INF FORMULA, ABBO NUTR, SIMILA, ISOMI, W/ IRON,PDR,NOT RECON",,,Y,,0,,,,,,Baby Foods,12.6,28.09,53.57,517,52.97,0,540,9.26,39,386,555,226,3.86,10.8,1543,309,46.3,0.309,0.463,6.943,0.309,2.31,56.6,77,0
3844,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, LIPIL, with iron, liquid concentrate not reconstituted, with ARA and DHA","INF FO,ME JO,ENF,NUTR,LIPIL,W/ IR,LIQ CO NOT RE,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,3.53,6.73,13.12,126,9.87,0,123,2.28,14,80,138,60,1.27,3.5,374,64,15.1,0.101,0.114,1.271,0.077,0.37,10.1,20,0
3845,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, LIPIL, with iron, ready-to-feed, with ARA and DHA","INF FORMU,ME JOHNS,ENFAM,NUTRA,LIPI,W/ IRO,RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.83,3.5,6.81,66,5.13,0,62,1.18,7,42,72,31,0.66,1.8,193,33,7.9,0.052,0.059,0.66,0.04,0.19,5.2,11,0
3846,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, with iron, ready-to-feed","INF FORMULA, ABBOTT NUTR, SIMILAC, ALIMENTUM, W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.8,3.63,6.77,66,4.4,0,69,1.18,5,49,77,29,0.49,1.2,197,29,5.9,0.039,0.059,0.885,0.039,0.3,9.8,10,1
3849,300,"Infant formula, MEAD JOHNSON, ENFAMIL, ENFACARE LIPIL, with iron, powder, with ARA and DHA","INF FORMU, ME JOHNS, ENFAM, ENFA LIP, W/IRO, POW, W/AR/AN DH",,,Y,,0,,6.38,,,,Baby Foods,12.5,27,56,514,51,0,590,8.9,39,330,565,173,6.2,14.6,1580,390,79,0.2,0.99,9.9,0.49,1.48,41.3,84,16
3850,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, ready-to-feed","INF FORMULA, ABBOTT NUTR, SIMILAC, W/ IRON, RTF",,,Y,,0,,,,,,Baby Foods,1.36,3.55,6.92,65,6.9,0,51,1.18,4,28,69,16,0.49,1.2,197,39,5.9,0.066,0.099,0.69,0.039,0.16,5.3,10,2
3851,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, liquid concentrate, not reconstituted","INF FORM, AB NUTR, SIMILAC, W/ IRON, LIQ CONC, NOT RECON",,,Y,,0,,,,,,Baby Foods,2.64,6.89,13.76,127,13.76,0,99,2.3,8,54,134,31,0.96,2.8,382,76,11.5,0.127,0.191,1.339,0.076,0.32,10.2,19,3
3852,300,"Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE LIPIL, with iron, powder, not reconstituted, with ARA and DHA","INF FORMULA, MEA JOH,EN,PR LIPI,W/ IRO,PD,NO RE,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,12.5,27,53,510,53,0,530,9.5,55,420,600,171,6,13.3,1420,300,60,0.4,0.45,5,0.3,1.42,40,80,0
3853,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, powder, not reconstituted","INF FORMULA, ABBOTT NUTR, SIMILAC, W/ IRON, PDR, NOT RECON",,,Y,,0,,,,,,Baby Foods,10.89,28.87,54.73,522,54.73,0,410,9.47,32,221,552,126,3.94,11.6,1577,316,47.3,0.526,0.789,5.522,0.316,1.32,42.1,79,14
3854,300,"Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, LIPIL, liquid concentrate, not reconstituted, with ARA and DHA","INFFORMULA, MEAD JOHNS,ENFAMIL,PROSOB,LIPI,LC,NOTREC,ARA&DHA",,,Y,,0,,,,,,Baby Foods,3.19,7.11,13.58,131,13.58,0,134,2.3,14,106,153,45,1.53,3.6,377,77,15.3,0.102,0.115,1.283,0.077,0.38,10.2,20,0
3855,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, low iron, ready-to-feed","INF FORMULA, ABBOTT NUTR, SIMILAC, LO IRON, RTF",,,Y,,0,,,,,,Baby Foods,1.36,3.55,6.93,65,6.93,0,51,0.14,4,28,69,16,0.49,1.4,197,39,5.9,0.066,0.099,0.69,0.039,0.16,5.3,10,2
3856,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, low iron, liquid concentrate, not reconstituted","INF FORMULA, ABBOTT NUTR, SIMILAC, LO IRON,LIQ CONC,NOT RECO",,,Y,,0,,,,,,Baby Foods,2.64,6.89,13.76,127,13.76,0,99,0.89,8,54,134,31,0.96,2.8,382,76,11.5,0.127,0.191,1.339,0.076,0.32,10.2,19,3
3857,300,"Infant formula, MEAD JOHNSON, PROSOBEE LIPIL, with iron, ready to feed, with ARA and DHA","INF FORMULA,MEJOHN,PROSOBE LIPI,W/ IRO,RE TO FE,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.64,3.5,6.11,64,6.11,0,69,1.18,7,54,79,23,0.79,1.8,194,40,7.9,0.052,0.059,0.66,0.04,0.19,5.2,11,0
3858,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, low iron, powder, not reconstituted","INF FORMULA, ABBOTT NUTR, SIMILAC, LO IRON, PDR,NOT RECON",,,Y,,0,,,,,,Baby Foods,10.85,28.87,54.78,522,54.7,0,410,3.68,32,221,552,126,3.94,11.6,1578,316,47.3,0.526,0.789,5.522,0.316,1.32,42.1,79,14
3859,300,"Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, ready-to-feed","INF FORMULA,NESTLE,GOOD START SOY,W/ DHA & ARA,RTF",,,Y,,0,,,,,,Baby Foods,1.6,3.28,7.13,64,5.68,0,67,1.15,7,41,74,26,0.58,1.9,193,39,7.7,0.039,0.06,0.864,0.038,0.19,5.8,10,2
3860,300,"Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed","CHILD FORMULA,ABBOTT NUTR,PEDIASURE,RTF (FORMERLY ROSS)",,,Y,,0,,,,,,Baby Foods,2.86,4.77,11.15,99,10.5,0,93,1.34,19,76,125,36,1.15,2.2,246,48,9.5,0.258,0.201,1.614,0.248,0.57,3.6,36,2
3861,300,"Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE LIPIL, powder, with ARA and DHA","INF FORM,MEAD JOHN,NEXT STEP,PROS LIPIL,PDR,W/ ARA & DHA",,,,,0,,,,,,Baby Foods,15.6,21,57.1,480,56,0,920,9.5,52,620,570,171,5.7,13.3,1420,284,57,0.38,0.43,4.7,0.28,1.42,38,76,0
3864,300,"Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE, LIPIL, ready to feed, with ARA and DHA","INF FORM,ME JO,NEXT STEP,PROSO,LIPIL,REATO FEED,W/ ARA & DHA",,,,,0,,,,,,Baby Foods,2.14,2.91,8.09,67,7.77,0,128,1.31,7,85,79,23,0.79,1.8,194,40,7.9,0.052,0.059,0.66,0.04,0.19,5.2,11,0
3867,300,"Infant formula, NESTLE, GOOD START SOY, with ARA and DHA, powder","INF FORMULA,NESTLE,GOOD START SOY,W/ ARA & DHA,PDR",,,Y,,0,,,,,,Baby Foods,12.5,25.6,55.6,503,44.38,0,526,9,55,316,581,200,4.51,15,1503,301,60.1,0.301,0.471,6.764,0.301,1.5,45.1,80,6
3868,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LACTOFREE, ready-to-feed","INF FORMULA, MEAD JOHNSON, ENFAMIL, LACTOFREE, RTF",,,Y,,0,,,,,,Baby Foods,1.38,3.5,7.18,63,7.18,0,53,1.18,5,36,72,19,0.66,1.8,194,40,7.9,0.052,0.092,0.66,0.04,0.19,5.2,11,1
3869,300,"Infant formula, MEAD JOHNSON, ENFAMIL, LACTOFREE, with iron, powder, not reconstituted","INF FORMULA,MEAD JOHNSON,ENFAMIL,LACTOFREE,W/ IRN,PDR,NOTREC",,,Y,,0,,,,,,Baby Foods,10.85,28,57,521,57,0,430,9.4,42,290,580,156,5.2,14.6,1567,310,62,0.42,0.13,5.2,0.31,1.56,42,83,8
3870,300,"Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed, with iron and fiber","CHI FORMU,ABBT NUTR,PEDIASU,RTF,W/ IRON & FIB (FORMER ROSS)",,,Y,,0,,,,,,Baby Foods,2.8,4.7,11.28,99,7.6,0.5,92,1.32,19,80,124,36,0.56,3,152,48,9.6,0.256,0.2,0.96,0.248,0.56,5.6,28,2
3900,300,"Infant formula, NESTLE, GOOD START 2 ESSENTIALS, with iron, ready-to-feed","INF FORMULA,NESTLE,GOOD START 2 ESSENTIALS,W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.7,2.7,8.54,65,6.19,0,78,1.2,5,52,88,25,0.52,1.3,163,43,5.9,0.052,0.091,0.65,0.042,0.16,5.2,10,1
3901,300,"Infant formula, NESTLE, GOOD START 2 ESSENTIALS, with iron, liquid concentrate, not reconstituted","INF FORMULA, NE,GOO STAR 2 ESSENT,W/ IRON,LIQ CONC,NOT RECON",,,Y,,0,,,,,,Baby Foods,3.25,5.13,16.5,125,11.9,0,150,2.25,10,100,169,49,1,2.5,313,82,11,0.1,0.175,1.25,0.081,0.31,10,19,2
3913,300,"Infant formula, NESTLE, GOOD START 2 ESSENTIALS, with iron, powder","INF FORMULA,NESTLE,GOOD START 2 ESSENTIALS,W/ IRON,PDR",,,Y,,0,,,,,,Baby Foods,12.2,19.3,62.23,471,44.3,0,565,8.5,38,377,636,184,4,9.4,1178,309,42,0.377,0.659,4.71,0.306,1.2,38,71,6
3925,300,"Infant formula, NESTLE, GOOD START ESSENTIALS SOY, with iron, ready-to-feed","INF FORMULA,NESTLE,GOOD START ESSENTIALS SOY,W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.63,3.3,7.17,65,5.69,0,68,1.25,7,41,75,23,0.6,1.6,167,40,7.8,0.039,0.061,0.845,0.039,0.2,5.2,10,0
3926,300,"Infant formula, NESTLE, GOOD START ESSENTIALS SOY, with iron, liquid concentrate, not reconstituted","INF FORM,NEST,GOOD START ESSENT SOY,W/ IRON,LIQ CON,NOT RECO",,,Y,,0,,,,,,Baby Foods,3.2,6.5,14.1,128,11.2,0,133,2.29,14,80,146,46,1.14,2.5,381,82,15.2,0.076,0.119,1.65,0.076,0.38,10.2,20,0
3928,300,"Infant formula, NESTLE, GOOD START ESSENTIALS SOY, with iron, powder","INF FORMULA,NESTLE,GOOD START ESSENTIALS SOY,W/ IRON,PDR",,,Y,,0,,,,,,Baby Foods,12.5,25.5,55.7,502,44.38,0,526,9,55,316,581,180,4.51,10,1503,309,60.1,0.301,0.471,6.513,0.301,1.5,40.1,80,0
3929,300,"Infant formula, MEAD JOHNSON, NEXT STEP PROSOBEE, powder, not reconstituted","INF FORMULA, MEAD JOHNSON,NEXT STEP PROSOBEE,PDR,NOT RECON",,,Y,,0,,5.71,,,,Baby Foods,15.6,21,57.1,480,56,0,920,9.5,52,620,570,171,5.7,13.3,1420,284,57,0.38,0.43,4.7,0.28,1.42,38,76,0
3930,300,"Infant formula, MEAD JOHNSON,NEXT STEP PROSOBEE, prepared from powder","INF FORMULA,MEAD JOHNSON,NEXT STEP PROSOBEE,PREP FROM PDR",,,,,0,,,,,,Baby Foods,2.14,2.91,8.08,67,7.77,0,128,1.31,7,85,79,23,0.79,1.8,194,40,7.9,0.052,0.059,0.66,0.04,0.19,5.2,11,0
3934,300,"Babyfood, corn and sweet potatoes, strained","BABYFOOD,CORN & SWT POTATOES,STR",,,Y,,0,,,,,,Baby Foods,1.26,0.28,15.23,68,4,1.8,18,0.31,10,29,154,14,0.19,1.1,2496,0,5,0.018,0.041,0.444,0.06,0.01,0.6,0,1
3935,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, ADVANCE, ready-to-feed, with ARA and DHA","INF FORM, ABBO NUTR, SIMIL, ALIMENT, ADVAN, RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.8,3.63,6.77,67,4.4,0,69,1.18,5,49,77,29,0.49,1.2,197,29,5.9,0.039,0.059,0.885,0.039,0.3,9.8,10,1
3936,300,"Infant formula, PBM PRODUCTS, store brand, ready-to-feed","INF FORMULA,PBM PRODUC,STO BRA,RTF (FORMERLY WYETH-AYERST)",,,Y,,0,,,,,,Baby Foods,1.4,3.5,6.39,63,6.4,0,41,1.18,5,28,55,14,0.53,1.4,197,38,5.6,0.07,0.1,0.49,0.04,0.13,5.1,5,4
3937,300,"Infant formula, PBM PRODUCTS, store brand, liquid concentrate, not reconstituted","INF FORM,PBM PROD,STORE BRAND,LC,NOT REC (FORM WYETH-AYERST)",,,Y,,0,,,,,,Baby Foods,2.9,7,13.9,130,13.9,0,83,2.36,9,55,109,29,1.06,2.6,393,76,11.2,0.13,0.2,0.99,0.08,0.26,10.6,10,8
3938,300,"Infant formula, PBM PRODUCTS, store brand, powder","INF FORMULA,PBM PRODUCTS,STORE BRAND,PDR",,,Y,,0,,,,,,Baby Foods,12,28,56,524,56,0,331,9.5,36,221,441,118,3.9,11,1577,303,43.3,0.53,0.79,3.94,0.33,1.02,43,39,32
3939,300,"Infant formula, PBM PRODUCTS, store brand, soy, ready-to-feed","INF FORMULA,PBM PRODUCTS,STORE BRAND,SOY,RTF",,,Y,,0,,,,,,Baby Foods,1.8,3.5,6.09,63,6.1,0,59,1.18,7,41,69,18,0.53,1.4,247,37,5.4,0.07,0.1,0.49,0.04,0.2,5.1,5,0
3940,300,"Infant formula, PBM PRODUCTS, store brand, soy, liquid concentrate, not reconstituted","INF FORMU,PBM PRODU,STORE BR,SOY,LIQ CONC,NOT RECON",,,Y,,0,,,,,,Baby Foods,3.6,7,12.18,126,12.18,0,118,2.36,14,82,138,36,1.06,3.6,393,86,10.8,0.14,0.2,0.98,0.08,0.4,10.2,10,0
3941,300,"Infant formula, PBM PRODUCTS, store brand, soy, powder","INF FORMULA,PBM PRODUCTS,STORE BRAND,SOY,PDR",,,Y,,0,,,,,,Baby Foods,13.6,27.2,52.2,508,52.2,0,453,9.1,51,317,528,151,3.8,11,1577,303,42,0.5,0.76,3.78,0.32,1.5,41.6,38,0
3942,300,"Infant formula, MEAD JOHNSON, ENFAMIL, AR LIPIL, ready-to-feed, with ARA and DHA","INF FORMULA, MEAD JOHNS, ENFAMI, AR LIPIL, RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.71,3.49,7.53,68,6.44,0,53,1.23,5,36,74,27,0.68,1.9,205,41,8.2,0.055,0.096,0.684,0.041,0.21,5.5,11,1
3943,300,"Infant formula, MEAD JOHNSON, ENFAMIL, AR LIPIL, powder, with ARA and DHA","INF FORMULA, MEA JOHNSO, ENFAMI, AR LIPIL, PDR, W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,12.73,25.97,56.03,509,56.03,0,397,9.16,41,269,550,204,5.09,14.3,1528,306,61.1,0.408,0.713,5.088,0.306,1.53,40.9,82,17
3944,300,"Infant formula, ABBOTT NUTRITION, SIMILAC NEOSURE, ready-to-feed, with ARA and DHA","INF FORM,ABBOT NUT,SIMIL NEOSU,RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.92,3.77,6.94,69,6.9,0,72,1.23,6,42,97,23,0.82,1.6,315,48,10.3,0.151,0.102,1.336,0.068,0.27,7.5,17,2
3945,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, NEOSURE, powder, with ARA and DHA","INF FORMULA, ABBOTT, SIMILAC, NEOSURE, PDR, W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,14.42,28.33,51.75,520,52.02,0,541,9.26,46,319,731,170,6.18,11.8,2371,361,77.2,1.133,0.773,10.043,0.515,2.06,56.7,128,14
3946,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE (LACTOSE FREE) ready-to-feed, with ARA and DHA","INF FORMULA, ABB NUTR, SIMI,SENS (LACT FRE) RTF,W/ ARA & DHA",,,Y,,0,,,,,,Baby Foods,1.48,3.74,7.4,68,7.4,0,58,1.24,3,39,74,21,0.52,1.2,208,40,6,0.069,0.104,0.726,0.042,0.17,5.5,10,2
3947,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), liquid concentrate, with ARA and DHA","INF FORMULA, ABB NUT,SIMIL,SENS,(LACT FR),LIQ CON,W/ AR & DH",,,Y,,0,,,,,,Baby Foods,2.73,6.95,13.64,128,13.78,0,108,2.32,8,72,138,39,0.97,2.9,385,74,11.5,0.129,0.279,1.351,0.077,0.32,10.3,19,4
3948,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), powder, with ARA and DHA","INF FORMULA, ABB NUTR,SIMIL,SENS,(LACTO FR), PD, W/ ARA & DH",,,Y,,0,,,,,,Baby Foods,11.13,28.14,55.67,520,55.67,0,436,9.33,30,293,557,158,3.91,9,1559,369,45.1,0.519,0.782,5.462,0.316,1.28,41.4,75,15
3949,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, ready-to-feed","INF FORMULA, ABBOTT NUTR, SIMILAC, ADVANCE, W/ IRON, RTF",,,Y,,0,,,,,,Baby Foods,1.36,3.7,6.77,66,6.9,0,53,1.18,4,28,69,16,0.49,1.2,197,39,5.9,0.066,0.099,0.69,0.039,0.16,5.3,10,2
3950,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, powder, not reconstituted","INF FORMULA,ABBOTT NUTR,SIMILAC,ADVANC,W/ IRON,PDR,NOT RECON",,,Y,,0,,,,,,Baby Foods,10.89,28.87,54.73,522,54.73,0,410,9.47,32,221,552,126,3.94,11.6,1578,316,47.3,0.526,0.789,5.522,0.316,1.32,42.1,79,14
3951,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, liquid concentrate, not reconstituted","INF FORMU,ABBO NUTR,SIMILAC,ADVAN,W/ IRON,LIQ CONC,NOT RECON",,,Y,,0,,,,,,Baby Foods,2.64,6.89,13.52,127,13.52,0,99,2.3,8,54,134,31,0.96,2.8,382,76,11.5,0.127,0.191,1.339,0.076,0.32,10.2,19,3
3952,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, liquid concentrate","INF FORMULA, ABB NUTR, SIMIL, ISOMIL, ADVA W/ IRON,LIQ CONC",,,Y,,0,,,,,,Baby Foods,3.13,6.98,13.21,128,13.1,0,134,2.3,10,96,138,56,0.96,2.7,380,77,11.5,0.077,0.115,1.725,0.077,0.58,14.1,19,0
3953,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, ready-to-feed","INF FORMULA, ABBO NUTR,SIMIL,ISOMIL, ADVANCE W/ IRON,RTF",,,Y,,0,,,,,,Baby Foods,1.61,3.59,6.7,66,6.7,0,69,1.18,5,49,71,29,0.49,1.4,197,39,5.9,0.039,0.059,0.887,0.039,0.3,7.2,10,0
3954,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, powder, not reconstituted","INF FORMULA, ABB NUTR, SIMI, ISOMI, ADVAN W/ IRO ,PD,NOT REC",,,Y,,0,,,,,,Baby Foods,12.6,28.09,53.57,517,52.97,0,540,9.26,39,386,555,226,3.86,10.8,1543,309,46.3,0.309,0.463,6.943,0.309,2.31,56.6,77,0
3955,300,"Infant Formula, MEAD JOHNSON, ENFAMIL, ENFACARE LIPIL, ready-to-feed, with ARA and DHA","INF FORMULA,MEAD JOHNSON,ENFAMIL,ENFACARE LIPIL,RTF, ARA&DHA",,,Y,,0,,,,,,Baby Foods,2,3.8,7.4,71,7.4,0,86,1.28,6,47,75,25,0.88,2,193,57,11.3,0.141,0.141,1.423,0.071,0.21,5.7,19,1
3956,300,"Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added DHA fortified","BABYFOOD,YOG,WHL MILK,W/ FRUIT,MULTIG CRL & ADD DHA FORT",,,Y,,0,,,,,,Baby Foods,3.4,3.53,13.22,98,11.46,0.3,107,0.15,15,95,149,41,0.59,2.8,86,3,1.4,0.047,0.129,0.119,0.034,0.32,0.3,0,14
3957,300,"Infant formula, ABBOTT NUTRITION, ALIMENTUM ADVANCE, with iron, powder, not reconstituted, with DHA and ARA","INF FORM,ABBOTT,ALIMENTUM ADVANCE,IRON,PDR,NOTREC,DHA&ARA",,,Y,,0,,6.25,,,,Baby Foods,13.99,28.19,51.91,517,34.18,0,534,9.16,38,382,598,224,3.82,9.3,1528,229,45.8,0.305,0.458,6.87,0.305,2.29,76.3,76,8
3959,300,"Babyfood, mashed cheddar potatoes and broccoli, toddlers","BABYFOOD,MSHD CHEDDAR POTATOES&BROCCOLI,TODDLER",,,Y,,0,,,,,,Baby Foods,1.11,1.47,7.47,48,1.17,1.2,20,0.16,8,24,118,176,0.16,0.5,84,0,1.5,0.03,0.02,0.419,0.089,0.01,8.1,0,4
3960,300,"Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, ready-to-feed","INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,DHA & ARA,RTF",,,Y,,0,,,,,,Baby Foods,1.45,3.37,7.39,66,5,0,42,0.99,5,24,71,18,0.53,1.3,200,42,5.9,0.066,0.092,0.693,0.05,0.22,5.3,10,4
3961,300,"Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, prepared from liquid concentrate","INF FORM,NESTLE,GOOD START SUPREME,IRON,DHA&ARA,PRP FR LC",,,,,0,,,,,,Baby Foods,1.45,3.37,7.39,66,5,0,42,0.99,5,24,71,18,0.53,1.3,200,42,5.9,0.066,0.092,0.693,0.05,0.22,5.3,10,4
3963,300,"Infant Formula, MEAD JOHNSON, ENFAMIL GENTLEASE LIPIL, with iron, prepared from powder","INFFORM,MEADJOHNSON,ENFAMIL GENTLEASE LIPIL,W/IRON,PREPFRPDR",,,Y,,0,,1.36,,,,Baby Foods,1.52,3.5,6.39,63,6.44,0,53,1.18,5,30,71,21,0.66,1.8,194,40,7.9,0.052,0.092,0.66,0.039,0.21,5.2,10,0
3964,300,"Babyfood, fortified cereal bar, fruit filling","BABYFOOD,FORT CRL BAR,FRUIT FILLING",,,Y,,0,,,,,,Baby Foods,5.43,5.3,68.63,344,42,1.7,1053,13.16,19,247,180,157,0.59,14.1,277,0,2.4,0.921,1.053,11.842,1.105,0.19,4.1,48,1
3965,300,"Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added iron fortified","BABYFOOD,YOGU,WHL MILK,W/ FRUI,MULTIGRA CRL & ADD IRON FORT",,,Y,,0,,,,,,Baby Foods,3.05,3.08,13,92,11.46,0.6,98,4.18,15,86,143,38,0.54,2.4,82,2,3.6,0.048,0.12,0.119,0.036,0.29,0.9,0,10
3966,300,"Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, liquid concentrate","INF FORMULA,NESTLE,GOOD START SOY,W/ DHA & ARA,LIQ CONC",,,Y,,0,,,,,,Baby Foods,3.31,6.67,14.71,132,11.74,0,139,2.38,15,84,154,53,1.19,4,397,80,15.9,0.079,0.125,1.784,0.08,0.4,11.9,21,2
3967,300,"Toddler formula, MEAD JOHNSON, ENFAGROW, PREMIUM (formerly ENFAMIL, LIPIL, NEXT STEP), powder","TODDL FORM,ME JOHN,ENFA,PREM (FORME ENL,LIPIL,NEXT STEP),PDR",,,Y,,0,,6.25,,,,Baby Foods,13,26.9,56,501,53,0,600,9,40,420,650,210,4.5,14,1520,300,45,0.5,0.75,5.3,0.3,1.52,0,81,7
3968,300,"Toddler formula, MEAD JOHNSON, ENFAGROW PREMIUM (formerly ENFAMIL, LIPIL, NEXT STEP), ready-to-feed","TODDLER FORMULA, MEAD JOHNSON, ENFAGROW PREMIUM, RTF",,,Y,,0,,,,,,Baby Foods,1.78,3.63,7.18,64,7.18,0,133,1.37,5,89,89,25,0.68,1.9,193,41,8.2,0.055,0.096,0.684,0.041,0.21,5.5,11,1
3980,300,"Infant Formula, MEAD JOHNSON, ENFAMIL, GENTLEASE, powder","INF FORMULA,MEAD JOHNSON,ENFAMIL,GENTLEASE,PDR",,,Y,,0,,6.38,,,,Baby Foods,11.8,27,56,514,56,0,420,9.3,41,240,560,185,5.1,14.4,1540,310,62,0.41,0.72,5.1,0.31,1.54,46,82,0
3981,300,"Infant formula, MEAD JOHNSON, ENFAMIL, ENFAGROW, GENTLEASE, Toddler, ready-to-feed","INF FORMULA, MEAD JOHNS, ENFAMIL, ENFAGROW, GENTLEA,TOD, RTF",,,Y,,0,,6.25,,,,Baby Foods,1.71,3.5,6.9,66,6.9,0,128,1.31,5,85,85,26,0.66,1.8,199,39,7.9,0.053,0.092,0.657,0.039,0.2,5.9,11,0
3982,300,"Infant formula, MEAD JOHNSON, ENFAMIL, Enfagrow, Soy, Toddler ready-to-feed","INF FORMULA, MEAD JOHNSON, ENFAMIL, ENFAGROW, SOY, TODD RTF",,,Y,,0,,6.25,,,,Baby Foods,2.17,2.89,7.64,65,7.64,0,128,1.31,7,85,79,24,0.79,1.8,199,39,7.9,0.053,0.059,0.657,0.039,0.2,5.3,11,0
3983,300,"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN AA, ready-to-feed","INF FORMULA,MEAD JOHNSON,ENFAMIL,NUTRAMIGEN AA,RTF",,,Y,,0,,6.25,,,,Baby Foods,1.84,3.48,6.76,66,6.76,0,62,1.18,7,34,72,31,0.66,1.8,197,33,7.9,0.053,0.059,0.657,0.039,0.2,5.3,11,0
3984,300,"Infant formula, MEAD JOHNSON, ENFAMIL, Premature, 20 calories ready-to-feed","INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMATURE,20 CAL RTF",,,Y,,0,,6.25,,,,Baby Foods,1.97,3.34,7.21,66,7.2,0,108,1.18,6,54,64,38,0.98,1.8,833,157,13.1,0.131,0.197,2.623,0.098,0.16,5.2,26,0
3985,300,"Infant formula, MEAD JOHNSON, ENFAMIL, Premature, 24 calo ready-to-feed","INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMATURE,24 CALO RTF",,,Y,,0,,6.25,,,,Baby Foods,1.97,3.34,7.19,67,7.21,0,108,1.18,6,54,64,38,0.98,1.8,828,157,13.1,0.131,0.197,2.623,0.098,0.16,5.2,26,0
3986,300,"Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Newborn, ready-to-feed","INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM,NEWBORN,RTF",,,Y,,0,,6.25,,,,Baby Foods,1.38,3.48,7.39,66,7.39,0,51,1.18,5,28,71,18,0.66,1.8,199,49,7.9,0.053,0.092,0.657,0.039,0.2,5.9,11,0
3987,300,"Infant formula, GERBER, GOOD START 2 Soy, with iron, ready-to-feed","INF FORMULA, GERBER, GOOD START 2 SOY,W/ IRON,RTF",,,Y,,0,,6.25,,,,Baby Foods,1.84,3.28,7.15,65,7.14,0,125,1.31,7,70,76,26,0.59,2,199,39,7.9,0.039,0.062,0.689,0.039,0.2,5.9,10,0
3988,300,"Infant formula, GERBER, GOOD START, PROTECT PLUS, ready-to-feed","INF FORMULA,GERBER,GOOD START,PROTECT PLUS,RTF",,,Y,,0,,6.25,,,,Baby Foods,1.44,3.36,7.17,65,7.17,0,44,0.98,5,25,71,18,0.52,3,199,39,10,0.066,0.092,0.689,0.049,0,5.2,10,0
3989,300,"Infant Formula, GERBER GOOD START 2, GENTLE PLUS, ready-to-feed","INF FORMULA,GERBER GOOD START 2,GENTLE PLUS,RTF",,,Y,,0,,6.25,,,,Baby Foods,1.44,3.34,7.61,66,7.61,0,125,1.31,0,70,71,18,0.52,2,199,39,7.9,0.066,0.092,0.689,0.049,0.22,5.2,10,0
3990,300,"Infant formula, GERBER, GOOD START 2, PROTECT PLUS, ready-to-feed","INF FORMULA, GERBER, GOOD START 2,PROTECT PLUS, RTF",,,Y,,0,,6.25,,,,Baby Foods,1.44,3.37,7.39,66,7.34,0,44,0.98,5,25,71,18,0.52,3,199,39,10,0.066,0.092,0.689,0.049,0,5.2,10,0
3991,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, GO AND GROW, ready-to-feed, with ARA and DHA","INF FORMULA, ABBO NU,SIMIL,GO & GR,RTF,W/ ARA & DHA",,,Y,,0,,6.25,,,,Baby Foods,1.97,3.54,6.69,66,6.69,0,128,1.31,6,85,98,20,0.49,1.2,199,39,7.9,0.066,0.098,0.689,0.039,0.2,5.2,10,0
3992,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, Expert Care, Diarrhea, ready- to- feed with ARA and DHA","INF FORMU, ABBO NUTR, SIMIL, EXPERT CARE, DIARRH RT",,,Y,,0,,6.25,,,,Baby Foods,1.76,3.6,6.67,66,6.66,0.7,69,1.18,5,49,71,29,0.49,1.2,199,39,5.9,0.039,0.059,0.885,0.039,0.3,7.2,10,0
3993,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, For Spit Up, ready-to-feed, with ARA and DHA","INF FORMULA, ABBO NUTR, SIMIL, FOR SPIT UP, RTF,W/ ARA & DHA",,,Y,,0,,6.25,,,,Baby Foods,1.4,3.54,7.19,66,7.19,0,55,1.18,4,37,70,20,0.49,1.2,199,39,5.9,0.066,0.098,0.689,0.039,0.16,5.2,10,0
3994,300,"Babyfood, fruit, banana and strawberry, junior","BABYFD,FRU,BAN AND STRAW, JU",,,Y,,0,,,,,,Baby Foods,0.71,0.37,25.78,109,19.29,1.4,0,0.14,30,24,395,1,0.23,1.1,69,0,12.9,0.035,0.08,0.728,0.395,0,0.6,0,0
3995,300,"Babyfood, banana with mixed berries, strained","BABYFOO,BAN WI MIX BERR,ST",,,Y,,0,,6.25,,,,Baby Foods,1.01,0.36,21.31,92,15,1,0,0,23,20,283,0,0.23,0.8,51,0,18.2,0.028,0.058,0.623,0.257,0,6.3,0,0
3996,300,"Babyfood, Multigrain whole grain cereal, dry fortified","Babyfood, Multigrain whole grain cereal, dry fortified",,,Y,,0,,,,,,Baby Foods,6.25,6.25,80.89,405,12.5,6.7,750,28.13,95,500,250,0,10,31.7,0,0,0,1.094,1.25,14.063,1.094,4.69,7,0,0
3997,300,"Babyfood, Baby MUM MUM Rice Biscuits","BABYFOOD,BABY MUM MUM RICE BISCUITS",,,Y,,0,,,,,,Baby Foods,12.5,0.87,83.21,391,12.5,0,0,0,47,127,504,313,0.65,8,1,0,0,0.174,0.037,2.896,0.571,0,0,0,0
3998,300,"Babyfood, Snack, GERBER, GRADUATES, LIL CRUNCHIES, baked whole grain corn snack","BABYFD,SNK,GE,GRAD,LIL CRUNCH,BKD,WHLGRN,CORN SNK",,,Y,,0,,6.25,,,,Baby Foods,0,28.57,61.59,503,0,0,285,6.4,69,1044,214,71,3.57,12.1,265,3,0,0.169,0.099,1.291,0.258,0.1,9.8,0,13
3999,300,"Infant formula, ABBOTT NUTRITION, SIMILAC, For Spit Up, powder, with ARA and DHA","INF FORMULA, ABBOTT NUTRIT, SIMILAC, FOR SPIT UP, POW",,,Y,,0,,6.25,,,,Baby Foods,11,27.75,55,514,55,0,432,9.3,31,288,550,154,3.83,9.3,1557,308,46,0.514,0.771,5.396,0.308,1.28,41,77,0
4001,400,"Fat, beef tallow","FAT,BEEF TALLOW",,,Y,,0,,0,,9.02,,Fats and Oils,0,100,0,902,0,0,0,0,0,0,0,0,0,0.2,0,28,0,0,0,0,0,0,0,0,109
4002,400,Lard,LARD,,,Y,,0,,0,,9.02,,Fats and Oils,0,100,0,902,0,0,0,0,0,0,0,0,0.11,0.2,0,102,0,0,0,0,0,0,0,0,95
4011,400,"Salad dressing, KRAFT Mayo Light Mayonnaise","SALAD DRSNG,KRAFT MAYO LT MAYO",,"Kraft Foods, Inc.",,,0,,,,,,Fats and Oils,0.6,32.9,8.5,334,4.2,0.1,6,0.2,,58,52,633,,,185,,0.3,,,,,,155.1,,35
4013,400,"Salad dressing, KRAFT Mayo Fat Free Mayonnaise Dressing","SALAD DRSNG,KRAFT MAYO FAT FREE MAYO DRSNG",,"Kraft Foods, Inc.",Y,,0,,,,,,Fats and Oils,0.2,0,15.8,64,6.8,2,6,0.1,2,27,50,750,0.07,2.6,50,0,0,0.008,0,0.01,0.002,0,0,0,0
4014,400,"Salad dressing, KRAFT MIRACLE WHIP FREE Nonfat Dressing","SALAD DRSNG,KRAFT MIRACLE WHIP FREE NONFAT DRSNG",,"Kraft Foods, Inc.",,,0,,,,,,Fats and Oils,0.2,2.7,15.5,84,10.3,1.9,6,0.12,,5,49,788,,,69,,0,,,,,,,,9
4015,400,"Salad dressing, russian dressing","SALAD DRSNG,RUSSIAN DRSNG",,,Y,,0,,6.25,3.4,8.84,3.8,Fats and Oils,0.69,26.18,31.9,355,17.68,0.7,13,0.6,10,20,173,1133,0.22,1.6,577,0,6,0.029,0.046,0.594,0.097,0,53.7,0,0
4016,400,"Salad dressing, sesame seed dressing, regular","SALAD DRSNG,SESAME SD DRSNG,REG",,,Y,,0,,6.25,4.03,8.84,3.8,Fats and Oils,3.1,45.2,8.6,443,8.32,1,19,0.6,0,37,157,1000,0.1,1.6,36,0,0,0,0,0,0,0,56,0,0
4017,400,"Salad dressing, thousand island, commercial, regular","SALAD DRSNG,1000 ISLAND,COMM,REG",,,Y,,0,,,,,,Fats and Oils,1.09,35.06,14.64,379,15.18,0.8,17,1.18,8,27,107,962,0.26,1.5,213,0,0,1.445,0.058,0.418,0,0,69.1,0,26
4018,400,"Salad dressing, mayonnaise type, regular, with salt","SALAD DRSNG,MAYO TYPE,REG,W/SALT",,,Y,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.65,21.6,14.78,250,10.02,0,5,0.12,2,13,36,653,0.07,0.4,29,0,0,0.01,0.03,0.004,0.009,0.04,42.2,0,19
4020,400,"Salad dressing, french dressing, reduced fat","SALAD DRSNG,FRENCH DRSNG,RED FAT",,,Y,,0,,6.25,2.44,8.84,3.8,Fats and Oils,0.58,11.52,31.22,222,16.86,1.5,11,0.73,8,16,107,838,0.2,1.6,541,0,4.8,0.024,0.052,0.467,0.055,0,17.8,0,0
4021,400,"Salad dressing, italian dressing, commercial, reduced fat","SALAD DRSNG,ITALIAN DRSNG,COMM,RED FAT",,,Y,,0,,,,,,Fats and Oils,0.39,6.68,9.99,102,9.16,0,15,0.25,4,12,90,891,0.06,1.6,12,0,0,0.012,0.008,0.094,0.055,0,12.5,0,0
4022,400,"Salad dressing, russian dressing, low calorie","SALAD DRSNG,RUSSIAN DRSNG,LO CAL",,,Y,,0,,6.25,2.44,8.84,3.8,Fats and Oils,0.5,4,27.6,141,21.87,0.3,19,0.6,0,37,157,868,0.1,1.6,33,0,6,0.007,0.013,0.002,0.009,0.12,6.7,0,6
4023,400,"Salad dressing, thousand island dressing, reduced fat","SALAD DRSNG,1000 ISLAND DRSNG,RED FAT",,,Y,,0,,6.25,3.9,8.84,3.8,Fats and Oils,0.83,11.32,24.06,195,17.31,1.2,27,0.9,7,14,202,955,0.19,0,311,0,1.5,0.049,0.043,0.437,0,0,27.6,0,11
4025,400,"Salad dressing, mayonnaise, regular","SALAD DRSNG,MAYO,REG",,,Y,,0,,,,,,Fats and Oils,0.96,74.85,0.57,680,0.57,0,8,0.21,1,21,20,635,0.15,2.3,65,7,0,0.01,0.019,0,0.008,0.12,163,0,42
4026,400,"Salad dressing, mayonnaise, soybean and safflower oil, with salt","SALAD DRSNG,MAYO,SOYBN&SAFFLOWER OIL,W/SALT",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,1.1,79.4,2.7,717,0.48,0,18,0.5,1,28,34,568,0.12,1.6,280,,0,0,0,0.005,0.577,0.26,24.7,0,59
4027,400,"Salad dressing, mayonnaise, imitation, soybean","SALAD DRSNG,MAYO,IMITN,SOYBN",,,Y,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.3,19.2,16,232,6,0,0,0,0,0,10,497,0.11,1.6,0,0,0,0,0,0,0,0,42.2,0,24
4028,400,"Salad dressing, mayonnaise, imitation, milk cream","SALAD DRSNG,MAYO,IMITN,MILK CRM",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,2.1,5.1,11.1,97,,0,72,0.5,7,57,97,504,0.25,1.6,13,,0.3,0.024,0.097,0.054,0.021,0.23,,0,43
4029,400,"Salad dressing, mayonnaise, imitation, soybean without cholesterol","SALAD DRSNG,MAYO,IMITN,SOYBN WO/CHOL",,,Y,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.1,47.7,15.8,482,6,0,0,0.01,0,0,10,353,0.11,1.6,0,0,0,0,0,0,0,0,42.2,0,0
4030,400,"Sandwich spread, with chopped pickle, regular, unspecified oils","SANDWICH SPRD,W/CHOPD PICKLE,REG,UNSPEC OILS",,,Y,,0,,6.25,3.92,8.84,3.8,Fats and Oils,0.9,34,22.4,389,15.18,0.4,14,0.2,2,26,35,1000,0.81,1.6,220,4,0,0.01,0.02,0.01,0.02,0.21,24.7,0,76
4031,400,"Shortening, household, soybean (partially hydrogenated)-cottonseed (partially hydrogenated)","SHORTENING,HOUSEHOLD,PARTIALLY HYDROG SOYBN -COTTONSEED",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0
4034,400,"Oil, soybean, salad or cooking, (partially hydrogenated)","OIL,SOYBN,SALAD OR COOKING,(PARTIALLY HYDROGENATED)",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4037,400,"Oil, rice bran","OIL,RICE BRAN",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.07,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4038,400,"Oil, wheat germ","OIL,WHEAT GERM",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4042,400,"Oil, peanut, salad or cooking","OIL,PNUT,SALAD OR COOKING",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.03,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,0.7,0,0
4044,400,"Oil, soybean, salad or cooking","OIL,SOYBN,SALAD OR COOKING",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.05,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,183.9,0,0
4047,400,"Oil, coconut","OIL,COCNT",,,Y,,0,,,,,,Fats and Oils,0,99.06,0,892,0,0,1,0.05,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0.6,0,0
4053,400,"Oil, olive, salad or cooking","OIL,OLIVE,SALAD OR COOKING",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,1,0.56,0,0,1,2,0,0,0,0,0,0,0,0,0,0,60.2,0,0
4055,400,"Oil, palm","OIL,PALM",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.01,0,0,0,0,0,0,0,,0,0,0,0,0,0,8,0,0
4058,400,"Oil, sesame, salad or cooking","OIL,SESAME,SALAD OR COOKING",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.6,0,0
4060,400,"Oil, sunflower, linoleic (less than 60%)","OIL,SUNFLOWER,LINOLEIC (LESS THAN 60%)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.03,0,0,0,0,0,0,0,,0,0,0,0,0,0,5.4,0,0
4073,400,"Margarine, regular, hard, soybean (hydrogenated)","MARGARINE,REG,HARD,SOYBN (HYDR)",,,,,0,,6.38,4.27,8.84,3.87,Fats and Oils,0.9,80.5,0.9,719,0,0,30,0,3,23,42,943,0,0,3577,,0.2,0.01,0.037,0.023,0.009,0.1,,0,0
4114,400,"Salad dressing, italian dressing, commercial, regular","SALAD DRSNG,ITALIAN DRSNG,COMM,REG",,,Y,,0,,,,,,Fats and Oils,0.41,21.12,12.12,240,10.77,0,13,0.26,5,15,84,993,0.07,2,36,0,0.4,0.02,0,0.131,0.064,0,56,0,0
4120,400,"Salad dressing, french dressing, commercial, regular","SALAD DRSNG,FRENCH DRSNG,COMM,REG",,,Y,,0,,6.25,2.44,8.84,3.8,Fats and Oils,0.77,44.81,15.58,457,15.95,0,24,0.8,5,19,67,836,0.29,0,464,0,3.6,0.019,0.053,0.188,0,0.14,121.4,0,0
4128,400,"Margarine-like, vegetable oil spread, unspecified oils, approximately 37% fat, with salt","VEG OIL SPRD,UNSPEC OILS,APPROX 37% FAT,W/ SALT",,,Y,,0,,,4.27,8.84,3.8,Fats and Oils,0.51,37.77,0.66,339,0,0,6,0.02,1,5,34,589,0.02,0,4322,0,0.1,0.011,0.005,0,0,0.06,74.6,0,0
4133,400,"Salad dressing, french, home recipe","SALAD DRSNG,FRENCH,HOME RECIPE",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.1,70.2,3.4,631,,0,6,0.2,0,3,24,658,0,1.6,514,,0.6,0.01,0.02,0.13,0,0,,0,0
4135,400,"Salad dressing, home recipe, vinegar and oil","SALAD DRSNG,HOME RECIPE,VINEGAR&OIL",,,Y,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0,50.1,2.5,449,2.5,0,0,0,0,0,8,1,0,1.6,0,0,0,0,0,0,0,0,98.8,0,0
4141,400,"Salad dressing, french dressing, commercial, regular, without salt","SALAD DRSNG,FRENCH DRSNG,COMM,REG,WO/ SALT",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.77,44.81,15.58,459,15.95,0,24,0.8,5,19,67,0,0.29,0,464,,0,0.019,0.053,0.188,0,0,121.4,0,0
4142,400,"Salad dressing, french dressing, reduced fat, without salt","SALAD DRSNG,FRENCH DRSNG,RED FAT,WO/ SALT",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.58,13.46,29.28,233,28.45,1.1,11,0.87,8,16,107,30,0.2,1.6,541,,0,0.024,0.052,0.467,0.055,0,4.8,0,0
4143,400,"Salad dressing, italian dressing, commercial, regular, without salt","SALAD DRSNG,ITALIAN DRSNG,COMM,REG,WO/ SALT",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.38,28.37,10.43,292,8.32,0,7,0.63,3,9,48,30,0.13,2,36,,0,0.013,0.021,0,0.06,0,56,0,67
4144,400,"Salad dressing, italian dressing, reduced fat, without salt","SALAD DRSNG,ITALIAN DRSNG,RED FAT,WO/ SALT",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.47,6.38,4.57,76,4.55,0,9,0.65,4,11,85,30,0.19,8,12,,0,0,0.015,0,0.07,0,12.5,0,6
4145,400,"Salad dressing, mayonnaise, soybean oil, without salt","SALAD DRSNG,MAYO,SOYBN OIL,WO/SALT",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,1.1,79.4,2.7,717,,0,18,0.5,,28,34,30,,1.6,280,,0,0,0,0,,,,,59
4146,400,"Salad dressing, french, cottonseed, oil, home recipe","SALAD DRSNG,FRENCH,CTTNSD,OIL,HOME RECIPE",,,,,0,,6.25,4.36,8.84,3.8,Fats and Oils,0.1,70.2,3.4,631,,0,6,0.2,,3,24,658,,1.6,0,,0,0.01,0.02,0.13,,,,,0
4367,400,"Salad dressing, french dressing, fat-free","SALAD DRSNG,FRENCH DRSNG,FAT-FREE",,,Y,,0,,,,,,Fats and Oils,0.2,0.27,32.14,132,16.45,2.2,5,0.58,3,0,84,853,0.1,2,75,0,0,0.011,0.026,0.112,0,0,0.1,0,0
4501,400,"Oil, cocoa butter","OIL,COCOA BUTTER",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4502,400,"Oil, cottonseed, salad or cooking","OIL,CTTNSD,SALAD OR COOKING",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4506,400,"Oil, sunflower, linoleic, (approx. 65%)","OIL,SUNFLOWER,LINOLEIC,(APPROX. 65%)",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4,0,0
4510,400,"Oil, safflower, salad or cooking, linoleic, (over 70%)","OIL,SAFFLOWER,SALAD OR COOKING,LINOLEIC,(OVER 70%)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,7.1,0,0
4511,400,"Oil, safflower, salad or cooking, high oleic (primary safflower oil of commerce)","OIL,SAFFLOWER,SALAD OR COOKING,HI OLEIC",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1,0,0
4513,400,"Vegetable oil, palm kernel","VEGETABLE OIL,PALM KERNEL",,,Y,,0,,0,,8.62,,Fats and Oils,0,100,0,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4514,400,"Oil, poppyseed","OIL,POPPYSEED",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4515,400,"Oil, tomatoseed","OIL,TOMATOSEED",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4516,400,"Oil, teaseed","OIL,TEASEED",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4517,400,"Oil, grapeseed","OIL,GRAPESEED",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4518,400,"Oil, corn, industrial and retail, all purpose salad or cooking","OIL,CORN,INDUSTRIAL & RTL,ALLPURP SALAD OR COOKING",,,Y,,0,,,,,,Fats and Oils,0,100,0,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,0,0
4520,400,"Fat, mutton tallow","FAT,MUTTON TALLOW",,,Y,,0,,0,,9.02,,Fats and Oils,0,100,0,902,0,0,0,0,0,0,0,0,0,0.2,0,28,0,0,0,0,0,0,0,0,102
4528,400,"Oil, walnut","OIL,WALNUT",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0
4529,400,"Oil, almond","OIL,ALMOND",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0
4530,400,"Oil, apricot kernel","OIL,APRICOT KERNEL",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4531,400,"Oil, soybean lecithin","OIL,SOYBN LECITHIN",,,,,0,,0,,7.63,,Fats and Oils,0,100,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183.9,0,0
4532,400,"Oil, hazelnut","OIL,HAZELNUT",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4534,400,"Oil, babassu","OIL,BABASSU",,,,,0,,0,,8.82,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4536,400,"Oil, sheanut","OIL,SHEANUT",,,,,0,,0,,8.62,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4539,400,"Salad dressing, blue or roquefort cheese dressing, commercial, regular","SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,COMM,REG",,,Y,,0,,,,,,Fats and Oils,1.37,51.1,4.77,484,3.48,0.4,37,0.09,8,74,88,642,0.21,1,73,3,0.7,0.01,0.1,0.1,0.037,0.27,85.9,0,31
4541,400,"Oil, cupu assu","OIL,CUPU ASSU",,,,,0,,0,,8.62,,Fats and Oils,0,100,0,884,0,0,0,,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4542,400,"Fat, chicken","FAT,CHICKEN",,,Y,,0,,0,,9.02,,Fats and Oils,0,99.8,0,900,0,0,0,0,0,0,0,0,0,0.2,0,191,0,0,0,0,0,0,0,0,85
4543,400,"Oil, soybean, salad or cooking, (partially hydrogenated) and cottonseed","OIL,SOYBN,SALAD OR COOKING,(PARTIALLY HYDROGENATED) & CTTNSD",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4544,400,"Shortening, household, lard and vegetable oil","SHORTENING,HOUSEHOLD,LARD&VEG OIL",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.5,0,56
4545,400,"Oil, sunflower, linoleic, (partially hydrogenated)","OIL,SUNFLOWER,LINOLEIC,(PARTIALLY HYDROGENATED)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,5.4,0,0
4546,400,"Shortening bread, soybean (hydrogenated) and cottonseed","SHORTENING BREAD,SOYBN (HYDR)&CTTNSD",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4548,400,"Shortening cake mix, soybean (hydrogenated) and cottonseed (hydrogenated)","SHORTENING CAKE MIX,SOYBN (HYDR)&CTTNSD (HYDR)",,,,,0,,0,,8.82,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0
4549,400,"Shortening industrial, lard and vegetable oil","SHORTENING INDUSTRIAL,LARD&VEG OIL",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,900,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,56
4550,400,"Shortening frying (heavy duty), beef tallow and cottonseed","SHORTENING FRYING (HVY DUTY),BF TALLOW&CTTNSD",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,900,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,100
4551,400,"Shortening confectionery, coconut (hydrogenated) and or palm kernel (hydrogenated)","SHORTENING CONFECTIONERY,COCNT (HYDR)&OR PALM KERNEL (HYDR)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0
4554,400,"Shortening industrial, soybean (hydrogenated) and cottonseed","SHORTENING INDUSTRIAL,SOYBN (HYDR)&CTTNSD",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0
4556,400,"Shortening frying (heavy duty), palm (hydrogenated)","SHORTENING FRYING (HVY DUTY),PALM (HYDR)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4559,400,Shortening household soybean (hydrogenated) and palm,SHORTENING HOUSEHOLD SOYBN (HYDR)&PALM,,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4560,400,"Shortening frying (heavy duty), soybean (hydrogenated), linoleic (less than 1%)","SHORTENING FRYING HVY DUTY,SOYBN HYDR,LINOLEIC (LESS THAN 1%",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,43,0,0
4570,400,"Shortening, confectionery, fractionated palm","SHORTENING,CONFECTIONERY,FRACTIONATED PALM",,,,,0,,0,,8.62,,Fats and Oils,0,100,0,884,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4572,400,"Oil, nutmeg butter","OIL,NUTMEG BUTTER",,,,,0,,0,,8.62,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4573,400,"Oil, ucuhuba butter","OIL,UCUHUBA BUTTER",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4574,400,"Fat, duck","FAT,DUCK",,,Y,,0,,0,,8.84,,Fats and Oils,0,99.8,0,882,0,0,0,0,0,0,0,0,0,0.2,0,191,0,0,0,0,0,0,0,0,100
4575,400,"Fat, turkey","FAT,TURKEY",,,Y,,0,,0,,8.84,,Fats and Oils,0,99.8,0,900,0,0,0,0,0,0,0,0,0,0.2,0,191,0,0,0,0,0,0,0,0,102
4576,400,"Fat, goose","FAT,GOOSE",,,,,0,,0,,8.84,,Fats and Oils,0,99.8,0,900,,0,0,0,0,0,0,0,0,0.2,0,,0,0,0,0,0,0,,0,100
4581,400,"Oil, avocado","OIL,AVOCADO",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,
4582,400,"Oil, canola","OIL,CANOLA",low erucic acid rapeseed oil,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71.3,0,0
4583,400,"Oil, mustard","OIL,MUSTARD",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,
4584,400,"Oil, sunflower, high oleic (70% and over)","OIL,SUNFLOWER,HI OLEIC (70% & OVER)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4,0,0
4585,400,"Margarine-like, margarine-butter blend, soybean oil and butter","MARGARINE-LIKE,MARGARINE-BUTTER BLEND,SOYBN OIL & BUTTER",,,Y,,0,,6.25,,,,Fats and Oils,0.31,80.32,0.77,727,0,0,10,0.04,1,10,22,719,0.03,0.2,3571,1,0.1,0.009,0.023,0.022,0.009,0,86.5,0,12
4586,400,"Shortening, special purpose for cakes and frostings, soybean (hydrogenated)","SHORTENING,SPL PURPOSE FOR CAKES&FROSTINGS,SOYBN (HYDR)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,43,0,0
4587,400,"Shortening, special purpose for baking, soybean (hydrogenated) palm and cottonseed","SHORTENING,SPL PURPOSE FOR BAKING,SOYBN (HYDR) PALM&CTTNSD",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,43,0,0
4588,400,"Oil, oat","OIL,OAT",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4589,400,"Fish oil, cod liver","FISH OIL,COD LIVER",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,902,,0,0,0,0,0,0,0,0,0,100000,10000,0,,0,0,0,0,,0,570
4590,400,"Fish oil, herring","FISH OIL,HERRING",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,902,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,766
4591,400,"Fish oil, menhaden","FISH OIL,MENHADEN",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,902,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,521
4592,400,"Fish oil, menhaden, fully hydrogenated","FISH OIL,MENHADEN,FULLY HYDR",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,902,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,500
4593,400,"Fish oil, salmon","FISH OIL,SALMON",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,902,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,485
4594,400,"Fish oil, sardine","FISH OIL,SARDINE",,,,,0,,0,,9.02,,Fats and Oils,0,100,0,902,,0,0,0,0,0,0,0,0,0,0,332,0,0,0,0,0,0,,0,710
4595,400,"Shortening, multipurpose, soybean (hydrogenated) and palm (hydrogenated)","SHORTENING,MULTIPURPOSE,SOYBN (HYDR)&PALM (HYDR)",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,,0,0
4600,400,"Margarine-like, vegetable oil-butter spread, tub, with salt","MARGARINE-LIKE,VEG OIL-BUTTER SPRD,TUB,W/ SALT",,,Y,,0,,,,,,Fats and Oils,1,40,1,362,0,0,24,0.04,2,20,36,786,0.01,0.5,3571,1,0.1,0.01,0.03,0.02,0.01,0.09,46.1,0,0
4601,400,"Butter, light, stick, with salt","BUTTER,LT,STK,W/SALT",,,Y,,0,,,,,,Fats and Oils,3.3,55.1,0,499,0,0,48,1.09,5,34,71,450,0.26,1,1698,0,0,0.01,0.07,0.02,0.01,0.13,4.8,0,106
4602,400,"Butter, light, stick, without salt","BUTTER,LT,STK,WO/SALT",,,Y,,0,,,,,,Fats and Oils,3.3,55.1,0,499,0,0,48,1.09,5,34,71,36,0.26,1,1698,0,0,0.01,0.07,0.02,0.01,0.13,4.8,0,106
4606,400,"Meat drippings (lard, beef tallow, mutton tallow)","MEAT DRIPPINGS (LARD,BF TALLOW,MUTTON TALLOW)",,,Y,,0,,,,,,Fats and Oils,0,98.59,0,889,0,0,0,0,0,0,0,545,0,0,0,100,0,0,0,0,0,0,0,0,101
4609,400,"Animal fat, bacon grease","ANIMAL FAT,BACON GREASE",,,Y,,0,,,,,,Fats and Oils,0,99.5,0,897,0,0,0,0,0,0,0,150,0.11,0,0,101,0,0,0,0,0,0,0,0,95
4610,400,"Margarine, regular, 80% fat, composite, stick, with salt","MARGARINE,REG,80% FAT,COMP,STK,W/ SALT",,,Y,,0,,,4.27,8.84,3.87,Fats and Oils,0.16,80.71,0.7,717,0,0,3,0.06,3,5,18,751,0,0,3571,0,0.2,0.01,0.037,0.023,0.009,0.1,93,0,0
4611,400,"Margarine, regular, 80% fat, composite, tub, with salt","MARGARINE,REG,80% FAT,COMP,TUB,W/ SALT",,,Y,,0,,6.25,4.27,8.84,3.87,Fats and Oils,0.22,80.17,0.75,713,0,0,3,0,1,5,17,657,0,0,3571,0,0.1,0,0,0,0,0.08,91.7,0,0
4612,400,"Margarine-like, vegetable oil spread, 60% fat, stick, with salt","MARGARINE-LIKE,VEG OIL SPRD,60% FAT,STK,W/ SALT",,,Y,,0,,6.25,3.87,8.84,4.27,Fats and Oils,0.12,60.39,0.69,537,0,0,21,0,2,16,30,785,0,0,3571,0,0.1,0.007,0.026,0.016,0.006,0.07,101.3,0,0
4613,400,"Margarine-like, vegetable oil spread, 60% fat, tub, with salt","MARGARINE-LIKE,VEG OIL SPRD,60% FAT,TUB,W/ SALT",,,Y,,0,,6.25,3.87,8.84,4.27,Fats and Oils,0.17,59.81,0.86,533,0,0,21,0,2,16,30,615,0,0,3571,0,0.1,0.007,0.026,0.016,3.75,10.8,101.3,0,1
4614,400,"Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, with salt","MARGARINE-LIKE,VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,W/ SALT",,,Y,,0,,6.25,3.87,8.84,4.27,Fats and Oils,0.6,59.17,0,526,0,0,21,0,2,16,30,700,0,0,3571,0,0.1,0.007,0.026,0.016,0.006,0.07,101.3,0,1
4615,400,"Shortening, vegetable, household, composite","SHORTENING,VEG,HOUSEHOLD,COMP",,,Y,,0,,6.25,,8.84,,Fats and Oils,0,99.97,0,884,0,0,1,0.07,0,0,0,4,0,0,0,0,0,0.02,0,0,0.001,0,53.2,0,0
4617,400,"Margarine, regular, 80% fat, composite, stick, without salt","MARGARINE,REG,80% FAT,COMP,STK,WO/ SALT",,,Y,,0,,,,,,Fats and Oils,0.16,80.71,0.7,717,0,0,3,0.06,3,5,18,2,0,0,3577,0,0.2,0.01,0.037,0.023,0.009,0.1,93,0,0
4618,400,"Margarine, regular, 80% fat, composite, tub, without salt","MARGARINE,REG,80% FAT,COMP,TUB,WO/ SALT",,,Y,,0,,,,,,Fats and Oils,0.22,80.17,0.75,713,0,0,3,0,1,5,17,28,0,0,3577,0,0.1,0,0,0,0,0.08,91.7,0,0
4620,400,"Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt","VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,WO/ SALT",,,Y,,0,,6.25,3.87,8.84,4.27,Fats and Oils,0.17,59.81,0.86,533,0,0,21,0,2,16,30,2,0,0,3577,0,0.1,0.007,0.026,0.016,3.75,10.8,101.3,0,1
4624,400,"Margarine-like, vegetable oil spread, fat free, liquid, with salt","MARGARINE-LIKE,VEG OIL SPRD,FAT FREE,LIQ,W/ SALT",,,Y,,0,,,4.27,8.84,3.87,Fats and Oils,1.5,3,2.5,43,0,0,38,0.03,4,30,50,833,0.14,0,3571,0,0.3,0.01,0.04,0.03,0.01,0.11,0.3,0,1
4626,400,"Margarine-like spread with yogurt, 70% fat, stick, with salt","MARGARINE-LIKE SPRD W/ YOGURT,70% FAT,STK,W/ SALT",,,Y,,0,,,,,,Fats and Oils,0.3,70,0.5,630,0,0,20,0.01,2,16,25,590,0.1,0,3577,0,0.1,0.005,0.02,0.01,0.05,0.06,93,0,0
4627,400,"Margarine-like spread with yogurt, approximately 40% fat, tub, with salt","MARGARINE-LIKE SPRD W/ YOGURT,APPROX 40% FAT,TUB,W/ SALT",,,Y,,0,,,,,,Fats and Oils,2,35,2,330,0,0,50,0.02,5,39,64,630,0.24,1,3577,0,0.2,0.01,0.06,0.03,0.01,0.15,93,0,0
4628,400,"Margarine, 80% fat, stick, includes regular and hydrogenated corn and soybean oils","MARGARINE,80% FAT,STK,INCL REG & HYDR CORN & SOYBN OILS",,,,,0,,,4.27,8.84,3.87,Fats and Oils,0.16,80.71,0.7,717,,0,3,0.12,1,5,18,654,0.11,,,,,0.012,0,0.003,0,,75,0,0
4629,400,"Margarine, margarine-type vegetable oil spread, 70% fat, soybean and partially hydrogenated soybean, stick","MARGARINE, VEG OIL SPRD,70% FAT,SOYBN & PART HYDR SOYBN,STK",,,,,0,,6.38,4.27,8.84,3.87,Fats and Oils,0.26,70.22,1.53,628,,,7,0.12,2,10,46,700,0.06,,3571,,,0.052,0.025,,0.003,,,0,0
4630,400,"Margarine Spread, approximately 48% fat, tub","MARGARINE SPRD,APPROX 48% FAT,TUB",,,,,0,,6.38,4.27,8.84,3.87,Fats and Oils,0.2,47.53,0.86,424,,0,4,0.21,1,4,36,646,0.06,0,,,0,0,0.019,0,0.001,,101.3,0,1
4631,400,"Margarine-like, vegetable oil spread, fat-free, tub","MARGARINE-LIKE,VEG OIL SPRD,FAT-FREE,TUB",,,Y,,0,,,4.27,8.84,3.87,Fats and Oils,0.1,3.04,4.34,44,0,0,8,0.08,1,2,36,580,0.07,0,3307,0,0,1.011,0,0.883,0.001,0,0.1,0,0
4633,400,"Margarine-like, vegetable oil spread, 20% fat, with salt","MARGARINE-LIKE,VEG OIL SPRD,20% FAT,W/ SALT",,,Y,,0,,0,,9.02,,Fats and Oils,0,19.5,0.4,175,0,0,0,0,1,14,25,733,0,0,3577,0,0,0,0,0,0,0,70.9,0,0
4634,400,"Margarine-like, vegetable oil spread, 20% fat, without salt","MARGARINE-LIKE,VEG OIL SPRD,20% FAT,WO/ SALT",,,Y,,0,,,,,,Fats and Oils,0,19.5,0.4,175,0,0,0,0,1,14,25,0,0,0,3577,0,0,0,0,0,0,0,93,0,0
4635,400,"Salad dressing, thousand island dressing, fat-free","SALAD DRSNG,1000 ISLAND DRSNG,FAT-FREE",,,Y,,0,,,,,,Fats and Oils,0.55,1.45,29.27,132,16.83,3.3,11,0.28,4,1,122,788,0.09,2,11,0,0,0.236,0.049,0.261,0,0,3.7,0,5
4636,400,"Salad dressing, italian dressing, fat-free","SALAD DRSNG,ITALIAN DRSNG,FAT-FREE",,,Y,,0,,,,,,Fats and Oils,0.97,0.87,8.75,47,8.85,0.6,30,0.4,5,109,102,1129,0.36,2,77,0,0.4,0.031,0.053,0.135,0,0.31,1.6,0,2
4638,400,"Salad dressing, ranch dressing, fat-free","SALAD DRSNG,RANCH DRSNG,FAT-FREE",,,,,0,,,4.36,8.84,3.8,Fats and Oils,0.25,1.92,26.51,119,5.35,0.1,50,1.05,8,113,111,897,0.4,0.8,3,,0,0.03,0.025,0.007,0.024,0,2.3,0,7
4639,400,"Salad dressing, ranch dressing, regular","SALAD DRSNG,RANCH DRSNG,REG",,,Y,,0,,,,,,Fats and Oils,1.32,44.54,5.9,430,4.69,0,28,0.3,5,186,64,901,0.17,3.5,69,3,0,0.015,0.087,0.054,0.03,0.17,134.3,0,26
4640,400,"Salad dressing, ranch dressing, reduced fat","SALAD DRSNG,RANCH DRSNG,RED FAT",,,,,0,,,4.36,8.84,3.8,Fats and Oils,1.25,12.42,21.33,196,3.77,1.1,40,0.69,6,193,132,1120,0.62,2.9,67,0,0.6,0.022,0.027,0.007,0.029,0,34.8,0,16
4641,400,"Salad dressing, mayonnaise, light","SALAD DRSNG,MAYO,LT",lite mayonnaise,,Y,,0,,,,,,Fats and Oils,0.37,22.22,9.23,238,3.56,0,6,0.14,2,15,31,827,0.07,2.6,70,0,0,0.008,0,0.01,0.002,0,53.7,0,16
4642,400,"Oil, industrial, mid-oleic, sunflower","OIL,INDUSTRIAL,MID-OLEIC,SUNFLOWER",NuSun,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.03,0,0,0,0,0,0,0,,0,0,0,0,0,0,5.4,0,0
4643,400,"Oil, industrial, canola with antifoaming agent, principal uses salads, woks and light frying","OIL,INDUSTRIAL,CANOLA W/ ANTIFOAMING AGENT",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,122,0,0
4644,400,"Oil, industrial, canola for salads, woks and light frying","OIL,INDUSTRIAL,CANOLA FOR SALADS,WOKS & LT FRYING",,,,,0,,,,,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,71.3,0,0
4645,400,"Oil, industrial, canola (partially hydrogenated) oil for deep fat frying","OIL,INDUS,CANOLA (PART HYDROG) OIL FOR DEEP FAT FRYING",,,,,0,,,,,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,71.3,0,0
4646,400,"Oil, industrial, coconut, principal uses candy coatings, oil sprays, roasting nuts","OIL,INDUSTRIAL,COCNT",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.04,0,0,0,0,0,0,0,,0,0,0,0,0,0,0.5,0,0
4648,400,"Oil, industrial, soy (partially hydrogenated), principal uses popcorn and flavoring vegetables","OIL,INDUSTRIAL,SOY (PART HYDR),FOR POPCORN & FLAVORING VEG",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4649,400,"Shortening, industrial, soy (partially hydrogenated), pourable liquid fry shortening","SHORTENING,INDUS,SOY (PART HYDROG),POURABLE LIQ FRY",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4650,400,"Oil, industrial, soy, refined, for woks and light frying","OIL,INDUSTRIAL,SOY,REFINED,FOR WOKS & LT FRYING",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.02,0,0,0,0,0,0,0,,0,0,0,0,0,0,183.9,0,0
4651,400,"Oil, industrial, soy (partially hydrogenated), multiuse for non-dairy butter flavor","OIL,INDUSTRIAL,SOY (PART HYDR),FOR NON-DAIRY BUTTER FLAVOR",,,Y,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4652,400,"Oil, industrial, soy ( partially hydrogenated), all purpose","OIL,INDUSTRIAL,SOY ( PART HYDROGENATED),ALLPURP",,,Y,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4653,400,"Oil, industrial, soy (partially hydrogenated ) and soy (winterized), pourable clear fry","OIL,INDUSTRIAL,SOY (PART HYDR ) & SOY,POURABLE FRY",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4654,400,"Oil, industrial, soy (partially hydrogenated) and cottonseed, principal use as a tortilla shortening","OIL,INDUS,SOY (PART HYDROG) & CTTNSD,TORTILLA SHORTENING",,,Y,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4655,400,"Margarine-like shortening, industrial, soy (partially hydrogenated), cottonseed, and soy, principal use flaky pastries","MARGARINE-LIKE SHORTENING,INDUS,SOY(PART HYDR),CTTNSD,& SOY",,,,,0,,6.25,,8.84,,Fats and Oils,0,71,0,628,0,0,0,0,0,0,0,864,0,0,0,,0,0,0,0,0,0,43,0,0
4656,400,"Oil, industrial, palm kernel, confection fat, uses similar to high quality cocoa butter","OIL,INDUSTRIAL,PALM KERNEL,CONFECTION FAT",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,1,0.29,0,0,2,6,0.04,0,0,,0,0,0,0,0,0,24.7,0,0
4657,400,"Oil, industrial, palm kernel (hydrogenated), confection fat, uses similar to 95 degree hard butter","OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),CONFECTION FAT",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,1,0.15,0,0,1,6,0.08,0,0,,0,0,0,0,0,0,24.7,0,0
4658,400,"Oil, industrial, palm kernel (hydrogenated), confection fat, intermediate grade product","OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),CONFECTION FAT",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,1,0.15,0,0,1,6,0.04,0,0,,0,0,0,0,0,0,24.7,0,0
4659,400,"Oil, industrial, coconut, confection fat, typical basis for ice cream coatings","OIL,INDUSTRIAL,COCNT,CONFECTION FAT,ICE CRM COATINGS",,,Y,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,2,0.15,0,0,2,5,0.04,0,0,0,0,0,0,0,0,0,0.5,0,0
4660,400,"Oil, industrial, palm kernel (hydrogenated) , used for whipped toppings, non-dairy","OIL,INDUSTRIAL,PALM KERNEL (HYDROG) FOR WHIPPED TOPPINGS",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,1,0.15,0,0,2,6,0.04,0,0,,0,0,0,0,0,0,24.7,0,0
4661,400,"Oil, industrial, coconut (hydrogenated), used for whipped toppings and coffee whiteners","OIL,INDUSTRIAL,COCNT (HYDROGENATED),FOR TOPPINGS & WHITENERS",,,,,0,,6.25,,8.84,,Fats and Oils,0,99.5,0,880,0,0,1,0.15,0,0,2,7,0.04,0,0,,0,0,0,0,0,0,0.5,0,0
4662,400,"Oil, industrial, palm and palm kernel, filling fat (non-hydrogenated)","OIL,INDUSTRIAL,PALM & PALM KERNEL,FILLING FAT (NON-HYDROG)",,,,,0,,6.25,,8.84,,Fats and Oils,0,99.5,0,880,0,0,1,0.15,0,0,4,6,0.04,0,0,,0,0,0,0,0,0,24.7,0,0
4663,400,"Oil, industrial, palm kernel (hydrogenated), filling fat","OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),FILLING FAT",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,2,0.15,0,0,1,6,0.04,0,0,,0,0,0,0,0,0,24.7,0,0
4664,400,"Oil, industrial, soy (partially hydrogenated ), palm, principal uses icings and fillings","OIL,INDUSTRIAL,SOY (PARTHYDR ),PALM, ICINGS & FILLINGS",,,,,0,,6.25,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,24.7,0,0
4665,400,"Margarine, industrial, non-dairy, cottonseed, soy oil (partially hydrogenated ), for flaky pastries","MARGARINE,INDUS,NON-DAIRY,CTTNSD,SOY OIL (PART HYDR )",,,,,0,,,,,,Fats and Oils,1.9,80.2,0,714,0,0,66,0,6,51,94,879,0,0,4286,0,0.4,0.022,0.081,0.05,0.019,0.21,106.2,0,0
4666,400,"Shortening, industrial, soy (partially hydrogenated ) and corn for frying","SHORTENING,INDUSTRIAL,SOY (PARTIALLY HYDR )&CORN FOR FRYING",,,Y,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0
4667,400,"Shortening, industrial, soy (partially hydrogenated ) for baking and confections","SHORTENING,INDUS,SOY (PART HYDR ) FOR BAKING & CONFECTIONS",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,43,0,0
4668,400,"Margarine, industrial, soy and partially hydrogenated soy oil, use for baking, sauces and candy","MARGARINE,INDUS,SOY & PART HYDR SOY OIL,BAKING,SAUCES,CANDY",,,,,0,,6.38,,,,Fats and Oils,0.18,80,0.71,714,0,0,3,0.12,1,5,18,886,0.11,,3571,,,0.012,0,0.003,0,0.21,75,0,0
4669,400,"USDA Commodity Food, oil, vegetable, soybean, refined","USDA CMDTY FD,OIL,VEG,SOYBN,REFINED",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.02,0,0,0,0,0,0,0,,0,0,0,0,0,0,183.9,0,0
4670,400,"USDA Commodity Food, oil, vegetable, low saturated fat","USDA CMDTY FD,OIL,VEG,LO SATURATED FAT",,,,,0,,0,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.02,0,0,0,0,0,0,0,,0,0,0,0,0,0,197.6,0,0
4673,400,"Margarine-like spread, SMART BALANCE Regular Buttery Spread with flax oil","MARGARINE-LIKE SPRD,SMART BALANCE REG BUTTERY SPRD",,GFA Brands,,,0,,,,,,Fats and Oils,0.14,64.63,0.14,583,0,0,,,,4,28,646,,,3819,,,,,,,,55.5,,0
4674,400,"Margarine-like spread, SMART BALANCE Light Buttery Spread","MARGARINE-LIKE SPRD,SMART BALANCE LT BUTTERY SPRD",,GFA Brands,,,0,,6.38,,,,Fats and Oils,0.02,36.41,1.98,337,,,3,0,1,1,32,580,0,,5161,,,0,0,0,0,,46.8,,
4675,400,"Margarine-like spread, SMART BEAT Super Light without saturated fat","MARGARINE-LIKE SPRD,SMART BEAT SUPER LT WO/ SATURATED FAT",,GFA Brands,,,0,,6.38,,,,Fats and Oils,0,17.1,0,158,0,0,,,,0,12,755,,,4489,,,,,,,,12.3,,0
4676,400,"Margarine-like spread, SMART BEAT Smart Squeeze","MARGARINE-LIKE SPRD,SMART BEAT SMART SQUEEZE",,GFA Brands,,,0,,6.38,,,,Fats and Oils,0,2.1,7.1,47,1,0,,,,0,26,829,,,5772,,,,,,,,4.2,,0
4677,400,"Margarine-like spread, SMART BALANCE Omega Plus Spread (with plant sterols & fish oil)","MARGARINE-LIKE SPRD,SMART BALANCE OMEGA PLUS SPRD",,GFA Brands,,,0,,6.38,,,,Fats and Oils,0.13,70.95,0.16,605,0,0,,,,23,71,729,,,5407,,,,,,,,52.5,,23
4678,400,"Oil, vegetable, Natreon canola, high stability, non trans, high oleic (70%)","OIL,VEG,NATREON CANOLA,HI STABILITY,NON TRANS,HI OLEIC (70%)",trans free high stability low saturated fat non-hydrogenated canola oil,"Dow AgroSciences, LLC",,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,,,,,,0,,,0,0,0,0,0,0,,,,,0
4679,400,"Oil, PAM cooking spray, original","OIL,PAM COOKING SPRAY,ORIGINAL",,"ConAgra, Inc.",Y,,0,,6.25,,,,Fats and Oils,0.26,78.69,20.69,792,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0
4683,400,"Margarine, margarine-like vegetable oil spread, 67-70% fat, tub","MARGARINE,MARGARINE-LIKE VEG OIL SPRD,67-70% FAT,TUB",,,,,0,,,4.27,8.84,3.87,Fats and Oils,0.07,68.29,0.59,606,,,,,,,,536,,,3571,,,,,,,,,,
4684,400,"Margarine, 80% fat, tub, CANOLA HARVEST Soft Spread (canola, palm and palm kernel oils)","MARGARINE,80% FAT,TUB,CANOLA HARVEST SOFT SPRD",,richardson,,,0,,,,,,Fats and Oils,0.41,80.32,1.39,730,,,,,,,,714,,,,,,,,,,,,,
4685,400,"Oil, cooking and salad, ENOVA, 80% diglycerides","OIL,COOKING & SALAD,ENOVA,80% DIGLYCERIDES",,ADM KAO LLC,,,0,,,,8.84,,Fats and Oils,0,100,0,884,,,,,,,,0,,,,,,,,,,,,,
4686,400,"Salad dressing, honey mustard dressing, reduced calorie","SALAD DRSNG,HONEY MUSTARD DRSNG,RED CAL",,,Y,,0,,6.25,,,,Fats and Oils,0.98,10,28.26,207,18.33,0.8,67,0.41,12,28,55,701,0.17,6.8,14,0,0.4,0.07,0.013,0.118,0.02,0,13.3,0,0
4687,400,"Margarine-like spread, BENECOL Light Spread","MARGARINE-LIKE SPRD,BENECOL LT SPRD",,"McNeil Nutritionals, LLC",,,0,,,,,,Fats and Oils,0,38.71,5.71,357,,,4,0,1,4,4,670,0,,4567,,,0.012,0,0,0,,56.5,,
4688,400,"Salad dressing, spray-style dressing, assorted flavors","SALAD DRSNG,SPRAY-STYLE DRSNG,ASSORTED FLAVORS",,,,,0,,,,,,Fats and Oils,0.16,10.75,16.6,165,14.29,0.3,6,0.18,,,,1102,,,347,,0.7,,,,,,,,0
4689,400,"Salad Dressing, mayonnaise, light, SMART BALANCE, Omega Plus light","SALAD DRSNG,MAYO,LT,SMART BALANCE,OMEGA PLUS LT",,Smart Balance Foods,,,0,,,,,,Fats and Oils,1.53,34.18,9.39,333,5.38,0.2,13,0.31,2,27,63,848,0.2,4.4,0,,0,0.015,0.03,0.028,0.015,0.17,65.8,,33
4690,400,"Margarine-like, vegetable oil spread, approximately 37% fat, unspecified oils, with salt, with added vitamin D","VEG OIL SPRD,37% FAT,UNSPEC OILS,W/ SALT,W/ ADDED VITAMIN D",,,Y,,0,,,4.27,8.84,3.8,Fats and Oils,0.51,37.77,0.66,339,0,0,6,0.02,1,5,34,589,0.02,0,4322,429,0.1,0.011,0.005,0,0,0.06,74.6,0,0
4691,400,"Margarine, regular, 80% fat, composite, stick, with salt, with added vitamin D","MARGARINE,REG,80% FAT,COMP,STK,W/ SALT,W/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.84,3.8,Fats and Oils,0.16,80.71,0.7,717,0,0,3,0.06,3,5,18,751,0,0,3577,429,0.2,0.01,0.037,0.023,0.009,0.1,93,0,0
4692,400,"Margarine, regular, 80% fat, composite, tub, with salt, with added vitamin D","MARGARINE,REG,80% FAT,COMP,TUB,W/ SALT,W/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.84,3.8,Fats and Oils,0.22,80.17,0.75,713,0,0,3,0,1,5,17,657,0,0,3577,429,0.1,0,0,0,0,0.08,91.7,0,0
4693,400,"Margarine-like, vegetable oil spread, 60% fat, stick, with salt, with added vitamin D","VEG OIL SPRD,60% FAT,STK,W/ SALT,W/ ADDED VITAMIN D",,,Y,,0,,6.93,4.27,8.84,3.8,Fats and Oils,0.12,60.39,0.69,537,0,0,21,0,2,16,30,785,0,0,3577,429,0.1,0.007,0.026,0.016,0.006,0.07,101.3,0,0
4694,400,"Margarine-like, vegetable oil spread, 60% fat, tub, with salt, with added vitamin D","VEG OIL SPRD,60% FAT,TUB,W/ SALT,W/ ADDED VITAMIN D",,,Y,,0,,6.93,4.27,8.84,3.84,Fats and Oils,0.17,59.81,0.86,533,0,0,21,0,2,16,30,785,0,0,3577,429,0.1,0.007,0.026,0.016,3.75,10.8,101.3,0,1
4695,400,"Margarine-like vegetable-oil spread, stick/tub/bottle, 60% fat, with added vitamin D","VEG-OIL SPRD,STICK/TUB/BOTTLE,60% FAT,W/ ADDED VITAMIN D",,,Y,,0,,,,,,Fats and Oils,0.6,59.17,0,535,0,0,21,0,2,16,30,785,0,0,3577,429,0.1,0.007,0.026,0.016,0.006,0.07,101.3,0,1
4696,400,"Margarine, regular, 80% fat, composite, stick, without salt, with added vitamin D","MARGARINE,REG,80% FAT,COMP,STK,WO/ SALT,W/ ADDED VITAMIN D",,,Y,,0,,6.38,4.27,8.84,3.8,Fats and Oils,0.16,80.71,0.7,717,0,0,3,0.06,3,5,18,2,0,0,3577,429,0.2,0.01,0.037,0.023,0.009,0.1,93,0,0
4697,400,"Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt, with added vitamin D","VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,WO/ SALT,W/VIT D",,,Y,,0,,6.25,,,,Fats and Oils,0.17,59.81,0.86,542,0,0,21,0,2,16,30,2,0,0,3577,429,0.1,0.007,0.026,0.016,3.75,10.8,101.3,0,1
4698,400,"Oil, industrial, canola, high oleic","OIL,INDUSTRIAL,CANOLA,HI OLEIC",,,,,0,,6.25,,,,Fats and Oils,0,100,0,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71.3,0,0
4699,400,"Oil, industrial, soy, low linolenic","OIL,INDUSTRIAL,SOY,LO LINOLENIC",,,,,0,,,,,,Fats and Oils,0,100,0,900,0,0,0,0.05,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,183.9,0,0
4700,400,"Oil, industrial, soy, ultra low linolenic","OIL,INDUSTRIAL,SOY,ULTRA LO LINOLENIC",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.05,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,183.9,0,0
4701,400,"Oil, industrial, soy, fully hydrogenated","OIL,INDUSTRIAL,SOY,FULLY HYDR",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0.05,0,0,0,0,0.01,0,0,0,0,0,0,0,0,0,183.9,0,0
4702,400,"Oil, industrial, cottonseed, fully hydrogenated","OIL,INDUSTRIAL,CTTNSD,FULLY HYDR",,,,,0,,,,8.84,,Fats and Oils,0,100,0,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.7,0,0
4703,400,"Salad dressing, honey mustard, regular","SALAD DRSNG,HONEY MUSTARD,REG",,,Y,,0,,,,,,Fats and Oils,0.87,40.83,23.33,464,15.84,0.4,12,0.29,5,22,20,512,0.14,5,70,6,0.2,0.039,0.023,0.061,0.017,0.05,70,0,29
4704,400,"Salad dressing, poppyseed, creamy","SALAD DRSNG,POPPYSEED,CREAMY",,,Y,,0,,,,,,Fats and Oils,0.92,33.33,23.73,399,23.39,0.3,59,0.25,9,49,61,933,0.25,1.2,180,4,0.3,0.024,0.058,0.047,0.022,0.09,50.2,0,15
4705,400,"Salad dressing, caesar, fat-free","SALAD DRSNG,CAESAR,FAT-FREE",,,Y,,0,,,,,,Fats and Oils,1.47,0.23,30.73,131,8.82,0.2,33,0.29,4,30,48,1265,0.3,2.2,4,0,0.1,0.031,0.009,0.029,0.04,0.04,0,0,1
4706,400,"Dressing, honey mustard, fat-free","DRESSING,HONEY MUSTARD,FAT-FREE",,,Y,,0,,,,,,Fats and Oils,1.07,1.47,38.43,169,17.75,1.2,24,0.36,13,37,69,1004,0.29,6.2,18,0,2.1,0.043,0.021,0.151,0.053,0.02,0.3,0,1
4707,400,"Oil, flaxseed, contains added sliced flaxseed","OIL,FLAXSEED,CONTAINS ADDED SLICED FLAXSEED",,,,,0,,5.3,,8.84,,Fats and Oils,0.37,99.01,0.39,878,,,9,0.34,15,27,31,6,0.31,,,,,,,,,,3.3,,0
4708,400,"Mayonnaise, reduced fat, with olive oil","MAYONNAISE,RED FAT,W/ OLIVE OIL",,,Y,,0,,6.25,,,,Fats and Oils,0.37,40,0,361,0,0,0,0,2,15,31,800,0.07,2.3,70,0,0,0.008,0,0.01,0.002,0.12,53.7,0,33
4709,400,"Salad dressing, mayonnaise-type, light","SALAD DRSNG,MAYONNAISE-TYPE,LT",,,Y,,0,,6.25,,,,Fats and Oils,0.65,10,16.4,158,6.67,0,5,0.12,2,13,36,833,0.07,0.4,13,0,0,0.01,0.03,0.004,0.009,0.04,19.5,0,0
5000,500,"Chicken, broiler, rotisserie, BBQ, breast meat only","CHICKEN,BROILER,ROTISSERIE,BBQ,BREAST MEAT ONLY",,,Y,"Bone and connective tissue 11%, skin and separable fat 11%",22,,,,,,Poultry Products,28.04,3.57,0,144,0,0,13,0.46,25,246,284,328,0.87,23.1,17,0,0,0.081,0.131,9.634,0.314,0.27,0,0,86
5001,500,"Chicken, broilers or fryers, meat and skin and giblets and neck, raw","CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,RAW",,,,Bone,31,Gallus gallus,6.25,4.27,9.02,3.87,Poultry Products,18.33,14.83,0.13,213,,0,11,1.31,20,149,189,70,1.48,11.8,771,,2.6,0.061,0.186,6.639,0.34,1.11,,0,90
5002,500,"Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, batter","CHICKEN,BROILER OR FRYER,MEAT&SKN&GIBLETS&NECK,FRIED,BATTER",,,,Bone,21,,6.25,4.27,9.02,3.87,Poultry Products,22.84,17.53,9.03,291,,,21,1.79,21,158,190,284,1.91,20.3,603,,0.4,0.113,0.248,7.083,0.32,0.83,,9,103
5003,500,"Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,FRIED,FLR",,,,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,28.57,15.27,3.27,272,,,17,1.99,25,194,237,86,2.36,16.6,826,,0.5,0.088,0.278,8.93,0.42,1.11,,2,112
5004,500,"Chicken, broilers or fryers, meat and skin and giblets and neck, roasted","CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,RSTD",,,Y,Bone,31,,6.25,4.27,9.02,3.87,Poultry Products,26.78,13.27,0.06,234,0,0,15,1.66,23,182,212,79,2.16,15.9,636,1,0.5,0.063,0.224,7.908,0.38,0.94,2.4,0,107
5005,500,"Chicken, broilers or fryers, meat and skin and giblets and neck, stewed","CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,STWD",,,,Bone,33,,6.25,4.27,9.02,3.87,Poultry Products,24.49,12.37,0.06,216,,0,14,1.53,19,144,163,66,1.98,15.9,579,,0.5,0.048,0.201,5.389,0.22,0.79,,0,97
5006,500,"Chicken, broilers or fryers, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,MEAT & SKN,RAW",,,Y,Bone,32,,6.25,4.27,9.02,3.87,Poultry Products,18.6,15.06,0,215,0,0,11,0.9,20,147,189,70,1.31,14.4,140,10,1.6,0.06,0.12,6.801,0.35,0.31,1.5,0,75
5007,500,"Chicken, broilers or fryers, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,FRIED,BATTER",,,Y,Bone,22,,6.25,4.27,9.02,3.87,Poultry Products,22.54,17.35,9.42,289,0,0.3,21,1.37,21,155,185,292,1.67,25.5,93,7,0,0.115,0.189,7.043,0.31,0.28,2.4,10,87
5008,500,"Chicken, broilers or fryers, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,FRIED,FLR",,,Y,Bone,29,,6.25,4.27,9.02,3.87,Poultry Products,28.56,14.92,3.15,269,0,0.1,17,1.38,25,191,234,84,2.04,21.7,89,6,0,0.087,0.193,8.992,0.41,0.31,2.4,3,90
5009,500,"Chicken, broilers or fryers, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,RSTD",,,Y,Bone,33,,6.25,4.27,9.02,3.87,Poultry Products,27.3,13.6,0,239,0,0,15,1.26,23,182,223,82,1.94,23.9,161,2,0,0.063,0.168,8.487,0.4,0.3,2.4,0,88
5010,500,"Chicken, broilers or fryers, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,STWD",,,Y,Bone,34,,6.25,4.27,9.02,3.87,Poultry Products,24.68,12.56,0,219,0,0,13,1.16,19,139,166,67,1.76,18,146,1,0,0.046,0.148,5.594,0.22,0.2,2.1,0,78
5011,500,"Chicken, broilers or fryers, meat only, raw","CHICKEN,BROILERS OR FRYERS,MEAT ONLY,RAW",,,Y,"32% bone, 12% skin, 8% separable fat",52,,6.25,4.27,9.02,3.87,Poultry Products,21.39,3.08,0,119,0,0,12,0.89,25,173,229,77,1.54,15.7,52,5,2.3,0.073,0.142,8.239,0.43,0.37,1.8,0,70
5012,500,"Chicken, broilers or fryers, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,FRIED",,,Y,"29% bone, 13% skin",42,,6.25,4.27,9.02,3.87,Poultry Products,30.57,9.12,1.69,219,0,0.1,17,1.35,27,205,257,91,2.24,24.5,59,5,0,0.085,0.198,9.663,0.48,0.34,2.8,0,94
5013,500,"Chicken, broilers or fryers, meat only, roasted","CHICKEN,BROILERS OR FRYERS,MEAT ONLY,RSTD",,,Y,"33% bone, 13% skin",46,,6.25,4.27,9.02,3.87,Poultry Products,28.93,7.41,0,190,0,0,15,1.21,25,195,243,86,2.1,22,53,5,0,0.069,0.178,9.173,0.47,0.33,2.4,0,89
5014,500,"Chicken, broilers or fryers, meat only, stewed","CHICKEN,BROILERS OR FRYERS,MEAT ONLY,STWD",,,Y,"34% bone, 14% skin",48,,6.25,4.27,9.02,3.87,Poultry Products,27.29,6.71,0,177,0,0,14,1.17,21,150,180,70,1.99,20.9,50,5,0,0.049,0.163,6.117,0.26,0.22,2.4,0,83
5015,500,"Chicken, broilers or fryers, skin only, raw","CHICKEN,BROILERS OR FRYERS,SKN ONLY,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,13.33,32.35,0,349,0,0,11,1.08,13,100,103,63,0.93,12.3,262,24,0,0.033,0.069,3.987,0.09,0.23,2.9,0,109
5016,500,"Chicken, broilers or fryers, skin only, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,FRIED,BATTER",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,10.32,28.83,23.15,394,,,26,1.43,12,80,75,581,0.72,53.9,138,7,0,0.174,0.178,3.342,0.06,0.17,,31,74
5017,500,"Chicken, broilers or fryers, skin only, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,FRIED,FLR",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,19.09,42.58,9.34,502,,,14,1.52,17,126,125,53,1.15,62.9,232,,0,0.097,0.165,5.818,0.1,0.18,,29,73
5018,500,"Chicken, broilers or fryers, skin only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,RSTD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,20.36,40.68,0,454,0,0,14,1.51,15,125,136,65,1.23,20,260,8,0,0.036,0.127,5.581,0.1,0.2,2.4,0,83
5019,500,"Chicken, broilers or fryers, skin only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,STWD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,15.22,33.04,0,363,,0,12,1.13,13,99,117,56,0.96,14.4,198,7,0,0.034,0.094,3.756,0.05,0.11,,0,63
5020,500,"Chicken, broilers or fryers, giblets, raw","CHICKEN,BROILERS OR FRYERS,GIBLETS,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,17.88,4.47,1.8,124,,0,10,5.86,18,197,228,77,3.32,55.2,8847,,16.2,0.088,0.987,6.662,0.42,11.41,,0,262
5021,500,"Chicken, broilers or fryers, giblets, cooked, fried","CHICKEN,BROILERS OR FRYERS,GIBLETS,CKD,FRIED",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,32.54,13.46,4.35,277,,0,18,10.32,25,286,330,113,6.27,104.2,11929,,8.7,0.097,1.524,10.987,0.61,13.31,,0,446
5022,500,"Chicken, broilers or fryers, giblets, cooked, simmered","CHICKEN,BROILERS OR FRYERS,GIBLETS,CKD,SIMMRD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,27.15,4.5,0,157,0,0,14,7.04,14,289,224,67,4.23,59.6,5869,0,12.5,0.143,1.052,6.625,0.397,9.44,0,0,442
5023,500,"Chicken, gizzard, all classes, raw","CHICKEN,GIZZARD,ALL CLASSES,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,17.66,2.06,0,94,0,0,11,2.49,15,148,237,69,2.72,25.5,64,,3.7,0.028,0.231,3.68,0.112,1.21,0,0,240
5024,500,"Chicken, gizzard, all classes, cooked, simmered","CHICKEN,GIZZARD,ALL CLASSES,CKD,SIMMRD",,,Y,Membranes 10.7%,11,,6.25,4.27,9.02,3.87,Poultry Products,30.39,2.68,0,154,0,0,17,3.19,3,189,179,56,4.42,41.1,0,0,0,0.026,0.21,3.12,0.071,1.04,0,0,370
5025,500,"Chicken, heart, all classes, raw","CHICKEN,HEART,ALL CLASSES,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,15.55,9.33,0.71,153,,0,12,5.96,15,177,176,74,6.59,4.3,30,,3.2,0.152,0.728,4.883,0.36,7.29,,0,136
5026,500,"Chicken, heart, all classes, cooked, simmered","CHICKEN,HEART,ALL CLASSES,CKD,SIMMRD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,26.41,7.92,0.1,185,,0,19,9.03,20,199,132,48,7.3,8,28,,1.8,0.07,0.741,2.803,0.32,7.29,,0,242
5027,500,"Chicken, liver, all classes, raw","CHICKEN,LIVER,ALL CLASSES,RAW",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,16.92,4.83,0.73,119,0,0,8,8.99,19,297,230,71,2.67,54.6,11078,0,17.9,0.305,1.778,9.728,0.853,16.58,0,0,345
5028,500,"Chicken, liver, all classes, cooked, simmered","CHICKEN,LIVER,ALL CLASSES,CKD,SIMMRD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,24.46,6.51,0.87,167,0,0,11,11.63,25,405,263,76,3.98,82.4,13328,0,27.9,0.291,1.993,11.045,0.755,16.85,0,0,563
5029,500,"Chicken, broilers or fryers, light meat, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT & SKN,RAW",,,,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,20.27,11.07,0,186,0,0,11,0.79,23,163,204,65,0.93,16.4,99,,0,0.059,0.086,8.908,0.48,0.34,2.4,0,67
5030,500,"Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,21,,6.25,4.27,9.02,3.87,Poultry Products,23.55,15.44,9.5,277,,,20,1.26,22,168,185,287,1.06,27.2,79,,0,0.113,0.147,9.156,0.39,0.28,,10,84
5031,500,"Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,FRIED,FLR",,,Y,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,30.45,12.09,1.82,246,0,0.1,16,1.21,27,213,239,77,1.26,29.1,68,5,0,0.076,0.133,12.035,0.54,0.33,2.4,3,87
5032,500,"Chicken, broilers or fryers, light meat, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,RSTD",,,,Bone,29,,6.25,4.27,9.02,3.87,Poultry Products,29.02,10.85,0,222,,0,15,1.14,25,200,227,75,1.23,24.1,110,,0,0.06,0.118,11.134,0.52,0.32,,0,84
5033,500,"Chicken, broilers or fryers, light meat, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,STWD",,,,Bone,29,,6.25,4.27,9.02,3.87,Poultry Products,26.14,9.97,0,201,,0,13,0.98,20,146,167,63,1.14,21.2,96,,0,0.041,0.112,6.935,0.27,0.2,,0,74
5034,500,"Chicken, broilers or fryers, dark meat, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT & SKN,RAW",,,,Bone,35,,6.25,4.27,9.02,3.87,Poultry Products,16.69,18.34,0,237,0,0,11,0.98,19,136,178,73,1.58,12.7,170,,0,0.061,0.146,5.211,0.25,0.29,2.4,0,81
5035,500,"Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,23,,6.25,4.27,9.02,3.87,Poultry Products,21.85,18.64,9.38,298,,,21,1.44,20,145,185,295,2.08,23.6,103,,0,0.117,0.218,5.607,0.25,0.27,,9,89
5036,500,"Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,30,,6.25,4.27,9.02,3.87,Poultry Products,27.22,16.91,4.08,285,0,0,17,1.5,24,176,230,89,2.6,20.5,104,,0,0.095,0.235,6.842,0.32,0.3,2.4,3,92
5037,500,"Chicken, broilers or fryers, dark meat, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,RSTD",,,,Bone,36,,6.25,4.27,9.02,3.87,Poultry Products,25.97,15.78,0,253,,0,15,1.36,22,168,220,87,2.49,20.2,201,,0,0.066,0.207,6.359,0.31,0.29,,0,91
5038,500,"Chicken, broilers or fryers, dark meat, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,STWD",,,,Bone,38,,6.25,4.27,9.02,3.87,Poultry Products,23.5,14.66,0,233,,0,14,1.31,18,133,166,70,2.26,18.4,186,,0,0.05,0.177,4.513,0.17,0.2,,0,82
5039,500,"Chicken, broilers or fryers, light meat, meat only, raw","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,RAW",,,,"28% bone, 13% skin, 4% separable fat",45,,6.25,4.27,9.02,3.87,Poultry Products,23.2,1.65,0,114,0,0,12,0.73,27,187,239,68,0.97,17.8,27,,0,0.068,0.092,10.604,0.54,0.38,2.4,0,58
5040,500,"Chicken, broilers or fryers, light meat, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,FRIED",,,,"28% bone, 13% skin",41,,6.25,4.27,9.02,3.87,Poultry Products,32.82,5.54,0.42,192,,0,16,1.14,29,231,263,81,1.27,26.2,30,,0,0.073,0.126,13.365,0.63,0.36,,0,90
5041,500,"Chicken, broilers or fryers, light meat, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,RSTD",,,Y,"29% bone, 13% skin",42,,6.25,4.27,9.02,3.87,Poultry Products,30.91,4.51,0,173,0,0,15,1.06,27,216,247,77,1.23,24.4,29,5,0,0.065,0.116,12.421,0.6,0.34,0.3,0,85
5042,500,"Chicken, broilers or fryers, light meat, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,STWD",,,Y,"29% bone, 15% skin",44,,6.25,4.27,9.02,3.87,Poultry Products,28.88,3.99,0,159,0,0,13,0.93,22,159,180,65,1.19,22.3,27,5,0,0.042,0.117,7.79,0.33,0.23,0.2,0,77
5043,500,"Chicken, broilers or fryers, dark meat, meat only, raw","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,RAW",,,,"35% bone, 11% skin, 10% separable fat",56,,6.25,4.27,9.02,3.87,Poultry Products,20.08,4.31,0,125,0,0,12,1.03,23,162,222,85,2,13.5,72,,3.1,0.077,0.184,6.246,0.33,0.36,2.4,0,80
5044,500,"Chicken, broilers or fryers, dark meat, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,FRIED",,,,"30% bone, 12% skin",42,,6.25,4.27,9.02,3.87,Poultry Products,28.99,11.62,2.59,239,,0,18,1.49,25,187,253,97,2.91,20.5,79,,0,0.093,0.249,7.07,0.37,0.33,,0,96
5045,500,"Chicken, broilers or fryers, dark meat, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,RSTD",,,Y,"36% bone, 12% skin",48,,6.25,4.27,9.02,3.87,Poultry Products,27.37,9.73,0,205,0,0,15,1.33,23,179,240,93,2.8,18,72,5,0,0.073,0.227,6.548,0.36,0.32,3.9,0,93
5046,500,"Chicken, broilers or fryers, dark meat, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,STWD",,,Y,"38% bone, 14% skin",52,,6.25,4.27,9.02,3.87,Poultry Products,25.97,8.98,0,192,0,0,14,1.36,20,143,181,74,2.66,17.3,69,5,0,0.055,0.202,4.737,0.21,0.22,3.6,0,88
5047,500,"Chicken, broilers or fryers, separable fat, raw","CHICKEN,BROILERS OR FRYERS,FAT,RAW",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,3.73,67.95,0,629,0,0,7,0.7,6,54,64,32,0.45,9.7,509,130,0,0.021,0.059,2.041,0.02,0.07,2.4,0,58
5048,500,"Chicken, broilers or fryers, back, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,RAW",,,,Bone,44,,6.25,4.27,9.02,3.87,Poultry Products,14.05,28.74,0,319,0,0,13,0.94,15,113,144,64,1.26,12.1,251,,1.6,0.051,0.116,4.835,0.19,0.25,2.4,0,79
5049,500,"Chicken, broilers or fryers, back, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,23,,6.25,4.27,9.02,3.87,Poultry Products,21.97,21.91,10.25,331,,,26,1.49,19,137,180,317,1.96,29,119,,0,0.119,0.213,5.837,0.23,0.26,,11,88
5050,500,"Chicken, broilers or fryers, back, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,33,,6.25,4.27,9.02,3.87,Poultry Products,27.79,20.74,6.5,331,,,24,1.62,23,166,226,90,2.47,23.7,123,,0,0.107,0.236,7.297,0.3,0.28,,7,89
5051,500,"Chicken, broilers or fryers, back, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,RSTD",,,Y,Bone,47,,6.25,4.27,9.02,3.87,Poultry Products,25.95,20.97,0,300,0,0,21,1.42,20,154,210,87,2.25,22.5,348,2,0,0.061,0.195,6.718,0.27,0.27,4.9,0,88
5052,500,"Chicken, broilers or fryers, back, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,STWD",,,Y,Bone,48,,6.25,4.27,9.02,3.87,Poultry Products,22.18,18.14,0,258,0,0,18,1.22,16,120,145,64,1.93,19.9,308,2,0,0.043,0.151,4.343,0.15,0.18,4.1,0,78
5053,500,"Chicken, broilers or fryers, back, meat only, raw","CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,RAW",,,,"44% bone, 10% skin, 17% seprable fat",71,,6.25,4.27,9.02,3.87,Poultry Products,19.56,5.92,0,137,0,0,17,1.04,22,151,204,82,1.85,13.5,99,,0,0.074,0.164,6.672,0.33,0.36,2.4,0,81
5054,500,"Chicken, broilers or fryers, back, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,FRIED",,,,"33% bone, 13% skin",46,,6.25,4.27,9.02,3.87,Poultry Products,29.99,15.32,5.68,288,,0,26,1.65,25,176,251,99,2.8,19.9,98,,0,0.109,0.253,7.68,0.35,0.31,,0,93
5055,500,"Chicken, broilers or fryers, back, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,RSTD",,,,"47% bone, 13% skin",60,,6.25,4.27,9.02,3.87,Poultry Products,28.19,13.16,0,239,0,0,24,1.39,22,165,237,96,2.65,17.3,0,5,0,0.068,0.217,7.069,0.34,0.3,2.4,,90
5056,500,"Chicken, broilers or fryers, back, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,STWD",,,,"48% bone, 16% skin",64,,6.25,4.27,9.02,3.87,Poultry Products,25.31,11.19,0,209,0,0,21,1.27,17,130,158,67,2.38,16.5,90,5,0,0.047,0.173,4.556,0.2,0.21,2.4,0,85
5057,500,"Chicken, broilers or fryers, breast, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,RAW",,,Y,Bone,20,,6.25,4.27,9.02,3.87,Poultry Products,20.85,9.25,0,172,0,0,11,0.74,25,174,220,63,0.8,16.6,83,16,0,0.063,0.085,9.908,0.53,0.34,0,0,64
5058,500,"Chicken, broilers or fryers, breast, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,FRIED,BATTER",,,Y,Bone,12,,6.25,4.27,9.02,3.87,Poultry Products,24.84,13.2,8.99,260,0,0.3,20,1.25,24,185,201,275,0.95,28,67,6,0,0.115,0.146,10.523,0.43,0.3,2.4,9,85
5059,500,"Chicken, broilers or fryers, breast, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,17,,6.25,4.27,9.02,3.87,Poultry Products,31.84,8.87,1.64,222,,0.1,16,1.19,30,233,259,76,1.1,23.9,50,,0,0.082,0.131,13.742,0.58,0.34,,2,89
5060,500,"Chicken, broilers or fryers, breast, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,RSTD",,,Y,Bone,19,,6.25,4.27,9.02,3.87,Poultry Products,29.8,7.78,0,197,0,0,14,1.07,27,214,245,71,1.02,24.7,93,5,0,0.066,0.119,12.71,0.56,0.32,0.3,0,84
5061,500,"Chicken, broilers or fryers, breast, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,STWD",,,Y,Bone,18,,6.25,4.27,9.02,3.87,Poultry Products,27.39,7.42,0,184,0,0,13,0.92,22,156,178,62,0.97,21.8,82,5,0,0.041,0.115,7.807,0.29,0.21,0.2,0,75
5062,500,"Chicken, broiler or fryers, breast, skinless, boneless, meat only, raw","CHICKEN,BROILER OR FRYERS,BRST,SKINLESS,BNLESS,MEAT ONLY,RAW",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,22.5,2.62,0,120,0,0,5,0.37,28,213,334,45,0.68,22.8,30,1,0,0.094,0.177,9.6,0.811,0.21,0,0,73
5063,500,"Chicken, broilers or fryers, breast, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,FRIED",,,Y,"17% bone, 10% skin",27,,6.25,4.27,9.02,3.87,Poultry Products,33.44,4.71,0.51,187,0,0,16,1.14,31,246,276,79,1.08,26.2,23,5,0,0.079,0.125,14.782,0.64,0.37,2.4,0,91
5064,500,"Chicken, broilers or fryers, breast, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,RSTD",,,Y,"19% bone, 9% skin",28,,6.25,4.27,9.02,3.87,Poultry Products,31.02,3.57,0,165,0,0,15,1.04,29,228,256,74,1,27.6,21,5,0,0.07,0.114,13.712,0.6,0.34,0.3,0,85
5065,500,"Chicken, broilers or fryers, breast, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,STWD",,,Y,"18% bone, 12% skin",30,,6.25,4.27,9.02,3.87,Poultry Products,28.98,3.03,0,151,0,0,13,0.88,24,165,187,63,0.97,22.3,19,5,0,0.042,0.119,8.469,0.33,0.23,0.2,0,77
5066,500,"Chicken, broilers or fryers, drumstick, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,RAW",,,Y,"Bone and cartilage 33%, Bone and coonective tissue 33%",66,,6.25,4.27,9.02,3.87,Poultry Products,18.08,9.2,0.11,161,0,0,8,0.71,18,163,211,106,1.86,20.2,46,2,0,0.083,0.195,4.841,0.345,0.53,2.5,0,92
5067,500,"Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,26,,6.25,4.27,9.02,3.87,Poultry Products,21.95,15.75,8.28,268,,0.3,17,1.35,20,147,186,269,2.33,21.9,86,,0,0.112,0.215,5.096,0.27,0.28,,9,86
5068,500,"Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,34,,6.25,4.27,9.02,3.87,Poultry Products,26.96,13.72,1.63,245,,0.1,12,1.34,23,176,229,89,2.89,18.4,84,,0,0.081,0.225,6.037,0.35,0.32,,2,90
5069,500,"Chicken, broilers or fryers, drumstick, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,RSTD",,,Y,"Bone and cartilage 33%, Bone and connective tissue 28%",61,,6.25,4.27,9.02,3.87,Poultry Products,23.35,10.15,0,191,0,0,11,1.11,22,195,247,123,2.36,26.9,40,2,0,0.093,0.203,5.403,0.383,0.39,3.2,0,130
5070,500,"Chicken, broilers or fryers, drumstick, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,STWD",,,Y,Bone,36,,6.25,4.27,9.02,3.87,Poultry Products,25.32,10.64,0,204,0,0,11,1.33,20,141,184,76,2.65,17,91,5,0,0.05,0.19,4.204,0.19,0.22,4,0,83
5071,500,"Chicken, broilers or fryers, dark meat, drumstick, meat only, raw","CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT ONLY,RAW",,,Y,"bone and cartilage 33%, skin and separable fat 9%",42,,6.25,4.27,9.02,3.87,Poultry Products,19.41,3.71,0,116,0,0,9,0.76,20,174,225,114,2.05,21.8,22,1,0,0.09,0.22,5.198,0.381,0.51,2.9,0,89
5072,500,"Chicken, broilers or fryers, drumstick, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,FRIED",,,,"34% bone, 10% skin",44,,6.25,4.27,9.02,3.87,Poultry Products,28.62,8.08,0,195,,0,12,1.32,24,186,249,96,3.22,19.6,61,,0,0.077,0.236,6.146,0.39,0.35,,0,94
5073,500,"Chicken, broilers or fryers, dark meat, drumstick, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT ONLY,CKD,RST",,,Y,"Bone and cartilage 33%, Skin and separable fat 7%",40,,6.25,4.27,9.02,3.87,Poultry Products,24.24,5.7,0,155,0,0,11,1.14,22,200,256,128,2.56,28.1,21,1,0,0.098,0.222,5.598,0.407,0.38,3.5,0,130
5074,500,"Chicken, broilers or fryers, drumstick, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,STWD",,,Y,"36% bone, 12% skin",48,,6.25,4.27,9.02,3.87,Poultry Products,27.5,5.71,0,169,0,0,11,1.37,21,150,199,80,3.02,18,57,5,0,0.054,0.213,4.3,0.23,0.24,3.4,0,88
5075,500,"Chicken, broilers or fryers, leg, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,RAW",,,Y,Bone,27,,6.25,4.27,9.02,3.87,Poultry Products,16.37,15.95,0.17,214,0,0,9,0.69,19,155,203,84,1.47,18,92,2,0.2,0.073,0.141,4.733,0.318,0.56,2.3,0,93
5076,500,"Chicken, broilers or fryers, leg, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,22,,6.25,4.27,9.02,3.87,Poultry Products,21.77,16.17,8.72,273,,0.3,18,1.4,20,152,189,279,2.17,26.6,91,,0,0.116,0.221,5.433,0.27,0.28,,9,90
5077,500,"Chicken, broilers or fryers, leg, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,26.84,14.43,2.5,254,,0.1,13,1.43,24,182,233,88,2.68,20.8,92,,0,0.088,0.235,6.546,0.34,0.31,,3,94
5078,500,"Chicken, broilers or fryers, leg, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,RSTD",,,Y,Bone 29%,29,,6.25,4.27,9.02,3.87,Poultry Products,24.03,8.99,0,184,0,0,12,1.09,23,202,264,98,2.07,25.7,68,4,0,0.09,0.187,6.034,0.413,0.38,3.9,0,127
5079,500,"Chicken, broilers or fryers, leg, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,STWD",,,Y,Bone,30,,6.25,4.27,9.02,3.87,Poultry Products,24.17,12.92,0,220,0,0,11,1.35,20,139,176,73,2.43,18.9,124,5,0,0.054,0.191,4.59,0.18,0.2,3.5,0,84
5080,500,"Chicken, broilers or fryers, leg, meat only, raw","CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,RAW",,,Y,"27% bone, 11% skin, 5% separable fat",43,,6.25,4.27,9.02,3.87,Poultry Products,19.16,4.22,0,120,0,0,10,0.78,23,180,238,96,1.76,21,32,1,0,0.087,0.179,5.578,0.406,0.57,2.8,0,91
5081,500,"Chicken, broilers or fryers, leg, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,FRIED",,,,"28% bone, 12% skin",40,,6.25,4.27,9.02,3.87,Poultry Products,28.38,9.32,0.65,208,,0,13,1.4,25,193,254,96,2.98,18.8,66,,0,0.083,0.247,6.688,0.39,0.34,,0,99
5082,500,"Chicken, broilers or fryers, leg, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,RSTD",,,Y,"Bone 29%, skin 12%",41,,6.25,4.27,9.02,3.87,Poultry Products,24.22,7.8,0,174,0,0,12,1.08,24,205,269,99,2.11,25.2,22,5,0,0.091,0.189,6.053,0.425,0.39,3.6,0,128
5083,500,"Chicken, broilers or fryers, leg, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,STWD",,,Y,"30% bone, 13% skin",43,,6.25,4.27,9.02,3.87,Poultry Products,26.26,8.06,0,185,0,0,11,1.4,21,149,190,78,2.78,26.5,60,5,0,0.059,0.216,4.798,0.21,0.23,3.6,0,89
5084,500,"Chicken, broilers or fryers, neck, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,RAW",,,,Bone,36,,6.25,4.27,9.02,3.87,Poultry Products,14.07,26.24,0,297,,0,18,1.9,13,112,137,64,1.86,12,216,,0,0.047,0.191,3.608,0.17,0.26,,0,99
5085,500,"Chicken, broilers or fryers, neck, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,25,,6.25,4.27,9.02,3.87,Poultry Products,19.82,23.52,8.7,330,,,31,2.15,16,115,151,276,2.5,21.3,170,,0,0.1,0.237,4.528,0.21,0.24,,8,91
5086,500,"Chicken, broilers or fryers, neck, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,29,,6.25,4.27,9.02,3.87,Poultry Products,24.01,23.61,4.24,332,,,31,2.42,19,132,180,82,3.07,18.6,190,,0,0.078,0.259,5.348,0.25,0.26,,5,94
5087,500,"Chicken, broilers or fryers, neck, meat and skin, cooked simmered","CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD SIMMRD",,,Y,Bone,32,,6.25,4.27,9.02,3.87,Poultry Products,19.61,18.1,0,247,0,0,27,2.3,13,122,108,52,2.72,17.3,161,6,0,0.04,0.248,3.319,0.1,0.14,3.9,0,70
5088,500,"Chicken, broilers or fryers, neck, meat only, raw","CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,RAW",,,,"36% bone, 39% skin and separable fat",75,,6.25,4.27,9.02,3.87,Poultry Products,17.55,8.78,0,154,,0,27,2.06,17,113,175,81,2.68,13.5,146,,0,0.054,0.228,4.119,0.29,0.32,,0,83
5089,500,"Chicken, broilers or fryers, neck, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,CKD,FRIED",,,,"29% bone, 27% skin",56,,6.25,4.27,9.02,3.87,Poultry Products,26.87,11.88,1.77,229,,0,41,2.98,20,135,213,99,4.24,20.5,162,,0,0.07,0.318,5.027,0.35,0.3,,0,105
5090,500,"Chicken, broilers or fryers, neck, meat only, cooked, simmered","CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,CKD,SIMMRD",,,,"32% bone, 35% skin",67,,6.25,4.27,9.02,3.87,Poultry Products,24.56,8.18,0,179,,0,44,2.63,16,128,140,64,3.77,20.5,121,5,0,0.046,0.283,3.956,0.16,0.17,,0,79
5091,500,"Chicken, broilers or fryers, thigh, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,RAW",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,16.52,16.61,0.25,221,0,0,7,0.68,18,157,204,81,1.29,18.9,78,3,0,0.073,0.145,4.625,0.347,0.62,2.1,0,98
5092,500,"Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,19,,6.25,4.27,9.02,3.87,Poultry Products,21.61,16.53,9.08,277,,0.3,18,1.45,21,155,192,288,2.04,23.2,95,,0,0.119,0.227,5.715,0.26,0.28,,10,93
5093,500,"Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,23,,6.25,4.27,9.02,3.87,Poultry Products,26.75,14.98,3.18,262,,0.1,14,1.49,25,187,237,88,2.52,19.9,98,,0,0.094,0.243,6.946,0.33,0.3,,4,97
5094,500,"Chicken, broilers or fryers, thigh, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,RSTD",,,Y,"Bone and cartilage 17%, bone and connective tissue 16%",33,,6.25,4.27,9.02,3.87,Poultry Products,23.26,14.71,0,232,0,0,9,1.08,22,216,253,102,1.73,25.3,55,7,0,0.088,0.19,5.789,0.414,0.44,3.3,0,133
5095,500,"Chicken, broilers or fryers, thigh, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,STWD",,,Y,Bone,24,,6.25,4.27,9.02,3.87,Poultry Products,23.26,14.74,0,232,0,0,11,1.37,19,139,170,71,2.25,17.9,151,5,0,0.057,0.191,4.894,0.17,0.19,3.9,0,84
5096,500,"Chicken, broilers or fryers, dark meat, thigh, meat only, raw","CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT ONLY,RAW",,,Y, Skin and separable fat 25%,25,,6.25,4.27,9.02,3.87,Poultry Products,19.66,4.12,0,121,0,0,7,0.81,23,185,242,95,1.58,22.9,24,1,0,0.088,0.196,5.557,0.451,0.61,2.9,0,94
5097,500,"Chicken, broilers or fryers, thigh, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,FRIED",,,,"23% bone, 13% skin",36,,6.25,4.27,9.02,3.87,Poultry Products,28.18,10.3,1.18,218,,0,13,1.46,26,199,259,95,2.79,20.5,70,8,0,0.088,0.255,7.12,0.38,0.33,,0,102
5098,500,"Chicken, broilers or fryers, thigh, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,RSTD",,,Y,"Bone and cartilage 17%, skin and separable fat 15%",48,,6.25,4.27,9.02,3.87,Poultry Products,24.76,8.15,0,179,0,0,9,1.13,24,230,269,106,1.92,27.1,27,7,0,0.096,0.218,6.208,0.462,0.42,3.9,0,133
5099,500,"Chicken, broilers or fryers, thigh, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,STWD",,,Y,"24% bone, 15% skin",39,,6.25,4.27,9.02,3.87,Poultry Products,25,9.79,0,195,0,0,11,1.42,21,149,183,75,2.58,17.1,62,5,0,0.063,0.218,5.2,0.21,0.21,3.6,0,90
5100,500,"Chicken, broilers or fryers, wing, meat and skin, raw","CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,RAW",,,Y,Bone and connective tissue 38%,38,,6.25,4.27,9.02,3.87,Poultry Products,17.52,12.85,0,191,0,0,11,0.46,16,123,187,84,1.21,17.6,29,5,0,0.054,0.103,5.697,0.528,0.25,0,0,111
5101,500,"Chicken, broilers or fryers, wing, meat and skin, cooked, fried, batter","CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,FRIED,BATTER",,,,Bone,38,,6.25,4.27,9.02,3.87,Poultry Products,19.87,21.81,10.94,324,,0.3,20,1.29,16,121,138,320,1.38,25.7,113,,0,0.106,0.152,5.265,0.3,0.25,,12,79
5102,500,"Chicken, broilers or fryers, wing, meat and skin, cooked, fried, flour","CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,FRIED,FLR",,,,Bone,47,,6.25,4.27,9.02,3.87,Poultry Products,26.11,22.16,2.39,321,,0.1,15,1.25,19,150,177,77,1.76,21.3,125,,0,0.058,0.137,6.697,0.41,0.28,,3,81
5103,500,"Chicken, broilers or fryers, wing, meat and skin, cooked, roasted","CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,RSTD",,,Y,Bone and connective tissue 40%,40,,6.25,4.27,9.02,3.87,Poultry Products,23.79,16.87,0,254,0,0,18,0.84,19,147,212,98,1.64,25.5,39,7,0,0.065,0.153,6.32,0.558,0.35,0.3,0,141
5104,500,"Chicken, broilers or fryers, wing, meat and skin, cooked, stewed","CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,STWD",,,Y,Bone,48,,6.25,4.27,9.02,3.87,Poultry Products,22.78,16.82,0,249,0,0,12,1.13,16,121,139,67,1.63,18.5,133,5,0,0.04,0.103,4.621,0.22,0.18,0.2,0,70
5105,500,"Chicken, broilers or fryers, wing, meat only, raw","CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,RAW",,,Y,"46% bone, 21% skin, 1% separable fat",68,,6.25,4.27,9.02,3.87,Poultry Products,21.97,3.54,0,126,0,0,13,0.88,22,155,194,81,1.63,17.8,59,5,1.2,0.059,0.101,7.359,0.53,0.38,0,0,57
5106,500,"Chicken, broilers or fryers, wing, meat only, cooked, fried","CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,FRIED",,,,"47% bone, 19% skin",66,,6.25,4.27,9.02,3.87,Poultry Products,30.15,9.15,0,211,,0,15,1.14,21,164,208,91,2.12,25.4,61,3,0,0.046,0.128,7.239,0.59,0.34,,0,84
5107,500,"Chicken, broilers or fryers, wing, meat only, cooked, roasted","CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,RSTD",,,Y,"48% bone, 20% skin",68,,6.25,4.27,9.02,3.87,Poultry Products,30.46,8.13,0,203,0,0,16,1.16,21,166,210,92,2.14,24.7,61,5,0,0.047,0.129,7.312,0.59,0.34,0.3,0,85
5108,500,"Chicken, broilers or fryers, wing, meat only, cooked, stewed","CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,STWD",,,Y,"48% bone, 20% skin",68,,6.25,4.27,9.02,3.87,Poultry Products,27.18,7.18,0,181,0,0,13,1.12,18,134,153,73,2.02,21.7,54,5,0,0.044,0.11,5.2,0.32,0.22,0.2,0,74
5109,500,"Chicken, roasting, meat and skin and giblets and neck, raw","CHICKEN,ROASTING,MEAT&SKN&GIBLETS&NECK,RAW",,,,Bone,27,,6.25,4.27,9.02,3.87,Poultry Products,17.09,15.46,0.09,213,,0,10,1.37,19,165,196,69,1.28,11.6,843,,2.4,0.059,0.171,6.427,0.32,0.99,,0,86
5110,500,"Chicken, roasting, meat and skin and giblets and neck, cooked, roasted","CHICKEN,ROASTING,MEAT&SKN&GIBLETS&NECK,CKD,RSTD",,,,Bone,29,,6.25,4.27,9.02,3.87,Poultry Products,23.96,13.07,0.05,220,,0,13,1.61,20,179,204,71,1.71,15.7,597,,0.4,0.057,0.189,7.031,0.34,0.78,,0,94
5111,500,"Canada Goose, breast meat, skinless, raw","CANADA GOOSE,BREAST MEAT,SKINLESS,RAW",Canadian geese,,,,0,Branta canadensis,,,,,Poultry Products,24.31,4.02,0,133,0,0,4,5.91,29,256,336,50,1.68,,38,,0,0.284,1.523,6.56,1.077,4.1,,,80
5112,500,"Chicken, roasting, meat and skin, cooked, roasted","CHICKEN,ROASTING,MEAT&SKN,CKD,RSTD",,,,Bone,30,,6.25,4.27,9.02,3.87,Poultry Products,23.97,13.39,0,223,,0,12,1.26,20,179,211,73,1.45,23.6,83,,0,0.057,0.143,7.418,0.35,0.27,,0,76
5113,500,"Chicken, roasting, meat only, raw","CHICKEN,ROASTING,MEAT ONLY,RAW",,,,"28% bone, 14% skin, 7% separable fat",49,,6.25,4.27,9.02,3.87,Poultry Products,20.33,2.7,0,111,0,0,10,1.03,23,198,238,75,1.19,16.9,45,,0,0.069,0.134,7.875,0.42,0.36,2.4,0,65
5114,500,"Chicken, roasting, meat only, cooked, roasted","CHICKEN,ROASTING,MEAT ONLY,CKD,RSTD",,,,"30% bone, 12% skin, 1% separable fat",43,,6.25,4.27,9.02,3.87,Poultry Products,25.01,6.63,0,167,,0,12,1.21,21,192,229,75,1.52,24.6,41,,0,0.062,0.147,7.881,0.41,0.29,,0,75
5115,500,"Chicken, roasting, giblets, raw","CHICKEN,ROASTING,GIBLETS,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.14,5.04,1.14,127,,0,10,5.4,17,184,227,77,3.39,54.1,9592,,13.1,0.08,0.818,6.208,0.36,9.4,,0,236
5116,500,"Chicken, roasting, giblets, cooked, simmered","CHICKEN,ROASTING,GIBLETS,CKD,SIMMRD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,26.77,5.22,0.86,165,,0,12,6.09,20,213,160,60,4.63,100.1,8136,,6.5,0.074,0.808,4.032,0.3,8.45,,0,357
5117,500,"Chicken, roasting, light meat, meat only, raw","CHICKEN,ROASTING,LT MEAT,MEAT ONLY,RAW",,,,"26% bone, 13% skin, 4% separable fat",43,,6.25,4.27,9.02,3.87,Poultry Products,22.2,1.63,0,109,0,0,11,0.89,25,223,252,51,0.66,17.8,27,,0,0.066,0.089,10.217,0.55,0.39,2.4,0,57
5118,500,"Chicken, roasting, light meat, meat only, cooked, roasted","CHICKEN,ROASTING,LT MEAT,MEAT ONLY,CKD,RSTD",,,Y,"24% bone, 16% skin",40,,6.25,4.27,9.02,3.87,Poultry Products,27.13,4.07,0,153,0,0,13,1.08,23,217,236,51,0.78,25.8,25,5,0,0.061,0.093,10.469,0.54,0.31,0.3,0,75
5119,500,"Chicken, roasting, dark meat, meat only, raw","CHICKEN,ROASTING,DK MEAT,MEAT ONLY,RAW",,,,"30% bone, 14% skin, 9% separable fat",53,,6.25,4.27,9.02,3.87,Poultry Products,18.74,3.61,0,113,0,0,9,1.15,21,178,227,95,1.65,13.5,60,,0,0.072,0.173,5.878,0.32,0.34,2.4,0,72
5120,500,"Chicken, roasting, dark meat, meat only, cooked, roasted","CHICKEN,ROASTING,DK MEAT,MEAT ONLY,CKD,RSTD",,,,"35% bone, 10% skin, 1% separable fat",46,,6.25,4.27,9.02,3.87,Poultry Products,23.25,8.75,0,178,,0,11,1.33,20,171,224,95,2.13,19.6,54,,0,0.063,0.192,5.736,0.31,0.27,,0,75
5121,500,"Chicken, stewing, meat and skin, and giblets and neck, raw","CHICKEN,STEWING,MEAT&SKN,&GIBLETS&NECK,RAW",,,,"27% bone, 5% separable fat",32,,6.25,4.27,9.02,3.87,Poultry Products,17.48,19.52,0.19,251,,0,10,1.51,20,173,204,71,1.37,12.5,1102,,3.1,0.111,0.251,6.383,0.35,1.26,,0,87
5122,500,"Chicken, stewing, meat and skin, and giblets and neck, cooked, stewed","CHICKEN,STEWING,MEAT & SKN,& GIBLETS & NECK,CKD,STWD",,,Y,"29% bone, 2% separable fat",31,,6.25,4.27,9.02,3.87,Poultry Products,24.88,11.91,0,214,0,0,13,1.64,19,151,171,67,1.96,21.4,609,1,1,0.054,0.221,5.677,0.234,0.95,1.9,0,107
5123,500,"Chicken, stewing, meat and skin, raw","CHICKEN,STEWING,MEAT&SKN,RAW",,,,Bone,30,,6.25,4.27,9.02,3.87,Poultry Products,17.55,20.33,0,258,0,0,10,1.04,20,172,204,71,1.19,14.4,178,,0,0.114,0.167,6.262,0.33,0.32,2.4,0,71
5124,500,"Chicken, stewing, meat and skin, cooked, stewed","CHICKEN,STEWING,MEAT&SKN,CKD,STWD",,,,Bone,32,,6.25,4.27,9.02,3.87,Poultry Products,26.88,18.87,0,285,,0,13,1.37,20,180,182,73,1.77,19.7,131,,0,0.094,0.235,5.798,0.25,0.23,,0,79
5125,500,"Chicken, stewing, meat only, raw","CHICKEN,STEWING,MEAT ONLY,RAW",,,,"Bone 30%, skin 12%, separable fat 8%",50,,6.25,4.27,9.02,3.87,Poultry Products,21.26,6.32,0,148,0,0,10,1.09,24,209,251,79,1.4,15.7,105,,3.3,0.149,0.207,7.477,0.44,0.38,2,0,63
5126,500,"Chicken, stewing, meat only, cooked, stewed","CHICKEN,STEWING,MEAT ONLY,CKD,STWD",,,,"Bone, 32%, skin, 16%",48,,6.25,4.27,9.02,3.87,Poultry Products,30.42,11.89,0,237,0,0,13,1.43,22,204,202,78,2.06,25.2,112,,0,0.112,0.277,6.408,0.31,0.26,3.1,0,83
5127,500,"Chicken, stewing, giblets, raw","CHICKEN,STEWING,GIBLETS,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,17.89,9.21,2.13,168,,0,10,5.93,18,198,226,77,3.01,56.1,10497,,11.4,0.097,1.106,8.53,0.52,10.83,,0,240
5128,500,"Chicken, stewing, giblets, cooked, simmered","CHICKEN,STEWING,GIBLETS,CKD,SIMMRD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,25.73,9.3,0.11,194,,0,13,6.44,20,223,154,56,4.28,90.4,9536,,5.5,0.09,1.047,4.971,0.41,9.48,,0,355
5129,500,"Chicken, stewing, light meat, meat only, raw","CHICKEN,STEWING,LT MEAT,MEAT ONLY,RAW",,,,"26% bone, 14% skin, 4% separable fat",44,,6.25,4.27,9.02,3.87,Poultry Products,23.1,4.21,0,137,0,0,11,0.92,26,231,261,53,0.6,17.8,70,,1.8,0.132,0.123,9.915,0.57,0.4,2.4,0,47
5130,500,"Chicken, stewing, light meat, meat only, cooked, stewed","CHICKEN,STEWING,LT MEAT,MEAT ONLY,CKD,STWD",,,,"26% bone, 16% skin",42,,6.25,4.27,9.02,3.87,Poultry Products,33.04,7.98,0,213,,0,14,1.19,23,225,199,58,0.83,28.7,73,,0,0.094,0.196,8.538,0.39,0.27,,0,70
5131,500,"Chicken, stewing, dark meat, meat only, raw","CHICKEN,STEWING,DK MEAT,MEAT ONLY,RAW",,,,"33% bone, 11% skin, 10% separable fat",54,,6.25,4.27,9.02,3.87,Poultry Products,19.7,8.12,0,157,0,0,10,1.22,23,190,242,101,2.08,13.5,135,,4.6,0.163,0.279,5.405,0.34,0.37,2.4,0,77
5132,500,"Chicken, stewing, dark meat, meat only, cooked, stewed","CHICKEN,STEWING,DK MEAT,MEAT ONLY,CKD,STWD",,,,"36% bone, 15% skin",51,,6.25,4.27,9.02,3.87,Poultry Products,28.14,15.28,0,258,,0,12,1.64,22,187,204,95,3.12,21.8,145,,0,0.128,0.347,4.556,0.24,0.25,,0,95
5133,500,"Chicken, capons, meat and skin and giblets and neck, raw","CHICKEN,CAPONS,MEAT&SKN&GIBLETS&NECK,RAW",,,,Bone,27,,6.25,4.27,9.02,3.87,Poultry Products,18.51,16.9,0.08,232,,0,11,1.41,21,181,213,47,1.32,12.2,905,,2.6,0.065,0.183,7.074,0.36,1.01,,0,87
5134,500,"Chicken, capons, meat and skin and giblets and neck, cooked, roasted","CHICKEN,CAPONS,MEAT&SKN&GIBLETS&NECK,CKD,RSTD",,,,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,28.35,11.67,0.04,226,,0,15,1.79,23,239,243,50,1.94,19.3,734,,0.4,0.07,0.219,8.415,0.41,0.36,,0,103
5135,500,"Chicken, capons, meat and skin, raw","CHICKEN,CAPONS,MEAT&SKN,RAW",,,,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,18.77,17.07,0,234,0,0,11,1.09,21,183,217,45,1.17,14.6,129,,1.7,0.064,0.127,7.273,0.36,0.34,2.4,0,75
5136,500,"Chicken, capons, meat and skin, cooked, roasted","CHICKEN,CAPONS,MEAT&SKN,CKD,RSTD",,,,Bone,29,,6.25,4.27,9.02,3.87,Poultry Products,28.96,11.65,0,229,,0,14,1.49,24,246,255,49,1.74,21.6,68,,0,0.07,0.17,8.947,0.43,0.33,,0,86
5137,500,"Chicken, capons, giblets, raw","CHICKEN,CAPONS,GIBLETS,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.28,5.18,1.42,130,,0,10,6.25,18,207,226,77,3.38,55.3,14566,,18.4,0.097,1.119,6.984,0.47,12.95,,0,292
5138,500,"Chicken, capons, giblets, cooked, simmered","CHICKEN,CAPONS,GIBLETS,CKD,SIMMRD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,26.39,5.4,0.76,164,,0,13,6.8,20,235,153,55,4.67,95,13266,,9,0.095,1.061,4.12,0.38,1.14,,0,434
5139,500,"Duck, domesticated, meat and skin, raw","DUCK,DOMESTICATED,MEAT&SKN,RAW",,,Y,Bone,28,Anas platyrhynchos,6.25,4.27,9.02,3.87,Poultry Products,11.49,39.34,0,404,0,0,11,2.4,15,139,209,63,1.36,12.4,168,26,2.8,0.197,0.21,3.934,0.19,0.25,5.5,0,76
5140,500,"Duck, domesticated, meat and skin, cooked, roasted","DUCK,DOMESTICATED,MEAT&SKN,CKD,RSTD",,,Y,Bone,35,,6.25,4.27,9.02,3.87,Poultry Products,18.99,28.35,0,337,0,0,11,2.7,16,156,204,59,1.86,20,210,3,0,0.174,0.269,4.825,0.18,0.3,5.1,0,84
5141,500,"Duck, domesticated, meat only, raw","DUCK,DOMESTICATED,MEAT ONLY,RAW",,,Y,"28% bone, 38% skin and separable fat",66,,6.25,4.27,9.02,3.87,Poultry Products,18.28,5.95,0.94,135,0,0,11,2.4,19,203,271,74,1.9,13.9,79,3,5.8,0.36,0.45,5.3,0.34,0.4,2.8,0,77
5142,500,"Duck, domesticated, meat only, cooked, roasted","DUCK,DOMESTICATED,MEAT ONLY,CKD,RSTD",,,Y,"35% bone, 27% skin and separable fat",62,,6.25,4.27,9.02,3.87,Poultry Products,23.48,11.2,0,201,0,0,12,2.7,20,203,252,65,2.6,22.4,77,4,0,0.26,0.47,5.1,0.25,0.4,3.8,0,89
5143,500,"Duck, domesticated, liver, raw","DUCK,DOMESTICATED,LIVER,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.74,4.64,3.53,136,,0,11,30.53,24,269,230,140,3.07,67,39907,,4.5,0.562,0.892,6.5,0.76,54,,0,515
5144,500,"Duck, wild, meat and skin, raw","DUCK,WILD,MEAT&SKN,RAW",,,,"38% bone, 2% handling loss",40,,6.25,4.27,9.02,3.87,Poultry Products,17.42,15.2,0,211,,0,5,4.16,20,168,249,56,0.77,12.8,88,,5.2,0.351,0.269,3.317,0.53,0.65,,0,80
5145,500,"Duck, wild, breast, meat only, raw","DUCK,WILD,BREAST,MEAT ONLY,RAW",,,,"15% bone, 31% skin and separable fat",46,,6.25,4.27,9.02,3.87,Poultry Products,19.85,4.25,0,123,,0,3,4.51,22,186,268,57,0.74,13.9,53,,6.2,0.416,0.31,3.444,0.63,0.76,,0,77
5146,500,"Goose, domesticated, meat and skin, raw","GOOSE,DOMESTICATED,MEAT&SKN,RAW",,,,Bone,19,Anser anser,6.25,4.27,9.02,3.87,Poultry Products,15.86,33.62,0,371,,0,12,2.5,18,234,308,73,1.72,14.4,55,,4.2,0.085,0.245,3.608,0.39,0.34,,0,80
5147,500,"Goose, domesticated, meat and skin, cooked, roasted","GOOSE,DOMESTICATED,MEAT&SKN,CKD,RSTD",,,Y,Bone,28,,6.25,4.27,9.02,3.87,Poultry Products,25.16,21.92,0,305,0,0,13,2.83,22,270,329,70,2.62,21.8,70,3,0,0.077,0.323,4.168,0.37,0.41,5.1,0,91
5148,500,"Goose, domesticated, meat only, raw","GOOSE,DOMESTICATED,MEAT ONLY,RAW",,,,"19% bone, 34% skin and separable fat",53,,6.25,4.27,9.02,3.87,Poultry Products,22.75,7.13,0,161,,0,13,2.57,24,312,420,87,2.34,16.8,40,,7.2,0.129,0.377,4.278,0.64,0.49,,0,84
5149,500,"Goose, domesticated, meat only, cooked, roasted","GOOSE,DOMESTICATED,MEAT ONLY,CKD,RSTD",,,,"28% bone, 17% skin and separable fat",45,,6.25,4.27,9.02,3.87,Poultry Products,28.97,12.67,0,238,,0,14,2.87,25,309,388,76,3.17,25.5,40,,0,0.092,0.39,4.081,0.47,0.49,,0,96
5150,500,"Goose, liver, raw","GOOSE,LIVER,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,16.37,4.28,6.32,133,,0,43,30.53,24,261,230,140,3.07,68.1,30998,,4.5,0.562,0.892,6.5,0.76,54,,0,515
5151,500,"Guinea hen, meat and skin, raw","GUINEA HEN,MEAT&SKN,RAW",,,,Bone,17,Numida meleagris,6.25,4.27,9.02,3.87,Poultry Products,23.4,6.45,0,158,,0,11,0.84,22,153,193,67,1.13,16.3,92,,1.3,0.059,0.102,7.667,0.38,0.34,,0,74
5152,500,"Guinea hen, meat only, raw","GUINEA HEN,MEAT ONLY,RAW",,,,"17% bone, 19% skin and separable fat",36,,6.25,4.27,9.02,3.87,Poultry Products,20.64,2.47,0,110,,0,11,0.77,24,169,220,69,1.2,17.5,41,,1.7,0.067,0.112,8.782,0.47,0.37,,0,63
5153,500,"Pheasant, raw, meat and skin","PHEASANT,RAW,MEAT&SKN",,,,Bone,14,Phasianus colchicus,6.25,4.27,9.02,3.87,Poultry Products,22.7,9.29,0,181,,0,12,1.15,20,214,243,40,0.96,15.7,177,,5.3,0.072,0.143,6.426,0.66,0.77,,0,71
5154,500,"Pheasant, raw, meat only","PHEASANT,RAW,MEAT ONLY",,,,"14% bone, 10% skin",24,,6.25,4.27,9.02,3.87,Poultry Products,23.57,3.64,0,133,,0,13,1.15,20,230,262,37,0.97,16.2,165,,6,0.077,0.153,6.759,0.74,0.84,,0,66
5155,500,"Pheasant, breast, meat only, raw","PHEASANT,BREAST,MEAT ONLY,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,24.37,3.25,0,133,,0,3,0.79,21,200,242,33,0.63,16.7,147,,6,0.081,0.119,8.554,0.74,0.84,,0,58
5156,500,"Pheasant, leg, meat only, raw","PHEASANT,LEG,MEAT ONLY,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,22.2,4.3,0,134,,0,29,1.78,20,280,296,45,1.53,15.3,195,,6,0.07,0.21,3.7,0.74,0.84,,0,80
5157,500,"Quail, meat and skin, raw","QUAIL,MEAT AND SKIN,RAW",,,,Bone,10,Coturnix spp. and Colinus spp.,6.25,4.27,9.02,3.87,Poultry Products,19.63,12.05,0,192,,0,13,3.97,23,275,216,53,2.42,16.6,243,,6.1,0.244,0.26,7.538,0.6,0.43,,0,76
5158,500,"Quail, meat only, raw","QUAIL,MEAT ONLY,RAW",,,,"10% bone, 14% skin",24,,6.25,4.27,9.02,3.87,Poultry Products,21.76,4.53,0,134,,0,13,4.51,25,307,237,51,2.7,17.4,57,,7.2,0.283,0.285,8.2,0.53,0.47,,0,70
5159,500,"Quail, breast, meat only, raw","QUAIL,BREAST,MEAT ONLY,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,22.59,2.99,0,123,,0,10,2.31,28,228,260,55,2.7,18.8,37,,5.1,0.24,0.243,8.2,0.53,0.47,,0,58
5160,500,"Squab, (pigeon), meat and skin, raw","SQUAB,(PIGEON),MEAT&SKN,RAW",,,,Bone,23,Columba spp.,6.25,4.27,9.02,3.87,Poultry Products,18.47,23.8,0,294,,0,12,3.54,22,248,199,54,2.2,13.3,243,,5.2,0.212,0.224,6.046,0.41,0.4,,0,95
5161,500,"Squab, (pigeon), meat only, raw","SQUAB,(PIGEON),MEAT ONLY,RAW",,,,"23% bone, 12% skin",35,,6.25,4.27,9.02,3.87,Poultry Products,17.5,7.5,0,142,,0,13,4.51,25,307,237,51,2.7,13.5,94,,7.2,0.283,0.285,6.86,0.53,0.47,,0,90
5162,500,"Squab, (pigeon), light meat without skin, raw","SQUAB,(PIGEON),LT MEAT WO/SKN,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,21.76,4.52,0,134,,0,10,2.31,28,228,260,55,2.7,15.5,57,,5.1,0.24,0.243,7.322,0.53,0.47,,0,90
5165,500,"Turkey, whole, meat and skin, raw","TURKEY,WHL,MEAT & SKN,RAW",,,Y,Bone and connective tissue 29%,29,,6.25,4.27,9.02,3.87,Poultry Products,21.64,5.64,0.13,143,0.07,0,11,0.86,25,183,224,112,1.78,21.3,56,12,0,0.048,0.185,7.631,0.599,1.22,0,0,72
5166,500,"Turkey, whole, meat and skin, cooked, roasted","TURKEY,WHL,MEAT & SKN,CKD,RSTD",,,Y,Bone connective tissue 31%,31,,6.25,4.27,9.02,3.87,Poultry Products,28.55,7.39,0.06,189,0,0,14,1.09,30,223,239,103,2.48,29.8,39,15,0,0.045,0.281,9.573,0.616,1.02,0,0,109
5167,500,"Turkey, whole, meat only, raw","TURKEY,WHL,MEAT ONLY,RAW",,,Y,"Bone and connective tissue 29%, Skin and separable fat 11%",41,,6.25,4.27,9.02,3.87,Poultry Products,22.64,1.93,0.14,112,0.07,0,11,0.86,27,190,235,118,1.84,22.6,30,8,0,0.05,0.192,8.1,0.652,1.24,0,0,67
5168,500,"Turkey, whole, meat only, cooked, roasted","TURKEY,WHL,MEAT ONLY,CKD,RSTD",,,Y,"Bone and connective tissue 31%, Skin and separable fat 7%",38,,6.25,4.27,9.02,3.87,Poultry Products,29.06,3.84,0,159,0,0,13,1.03,29,222,239,101,2.51,30.7,14,10,0,0.047,0.28,9.5,0.643,0.94,0,0,101
5169,500,"Turkey, skin from whole, (light and dark), raw","TURKEY,SKN FROM WHL,(LIGHT & DARK),RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,12.96,38.93,0.16,407,0.1,0,13,0.85,11,120,124,62,1.1,10.1,284,46,0,0.021,0.11,3.905,0.166,0.88,0,0,122
5170,500,"Turkey, skin from whole (light and dark), roasted","TURKEY,SKN FROM WHL (LIGHT & DARK),RSTD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,23.94,39.31,0.57,459,0,0,21,1.63,33,233,242,116,2.14,21.1,262,54,0,0.029,0.29,10.235,0.375,1.71,0,0,177
5171,500,"Turkey, whole, giblets, raw","TURKEY,WHL,GIBLETS,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.18,5.09,0.07,124,0,0,18,5.92,22,223,198,136,3.23,49.3,13129,34,0,0.149,1.393,8.694,0.654,13.06,0,0,333
5172,500,"Turkey, whole, giblets, cooked, simmered","TURKEY,WHL,GIBLETS,CKD,SIMMRD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,26.44,6.61,0,173,0,0,18,3.39,25,249,177,117,4.29,71.1,15397,0,0,0.171,1.543,8.647,0.546,15.89,0,0,521
5173,500,"Turkey, gizzard, all classes, raw","TURKEY,GIZZARD,ALL CLASSES,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.8,3.37,0,111,0,0,16,2.78,19,164,185,147,3.03,28.8,154,19,6.2,0.061,0.327,6.233,0.198,3.61,0,0,271
5174,500,"Turkey, gizzard, all classes, cooked, simmered","TURKEY,GIZZARD,ALL CLASSES,CKD,SIMMRD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,26.45,4.64,0,155,0,0,17,3.68,21,187,193,127,3.92,44.1,37,0,6.3,0.057,0.357,6.45,0.175,3.91,0,0,452
5175,500,"Turkey, heart, all classes, raw","TURKEY,HEART,ALL CLASSES,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,16.7,7.44,0.4,140,0,0,18,3.7,21,183,179,129,3.21,35.4,305,17,3,0.165,1.13,6.44,0.479,13.3,0,0,225
5176,500,"Turkey, heart, all classes, cooked, simmered","TURKEY,HEART,ALL CLASSES,CKD,SIMMRD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,24.88,7.52,0,174,0,0,21,6.96,28,241,203,140,4.6,56.8,54,0,0,0.236,1.54,7.76,0.608,13.9,0,0,359
5177,500,"Turkey, liver, all classes, raw","TURKEY,LIVER,ALL CLASSES,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.26,5.5,0,128,0,0,20,8.94,24,279,214,131,3.37,68.7,26901,50,24.5,0.206,2.247,11.233,1.04,19.73,0,0,415
5178,500,"Turkey, liver, all classes, cooked, simmered","TURKEY,LIVER,ALL CLASSES,CKD,SIMMRD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,27,8.18,0,189,0,0,19,1.79,26,312,153,98,4.53,102.3,35836,,22.6,0.256,2.687,11.09,0.882,28.17,0,0,648
5179,500,"Turkey from whole, neck, meat only, raw","TURKEY FROM WHL,NECK,MEAT ONLY,RAW",,,,Bone and connective tissue 60%,60,,6.25,4.27,9.02,3.87,Poultry Products,16.51,6.04,0,125,0,0,24,1.01,15,160,133,233,3.39,28.6,43,13,0,0.051,0.211,4.924,0.364,1.76,0,0,115
5180,500,"Turkey from whole, neck, meat only, cooked, simmered","TURKEY FROM WHL,NECK,MEAT ONLY,CKD,SIMMRD",,,Y,Bone and connective tissue 53%,53,,6.25,4.27,9.02,3.87,Poultry Products,22.48,7.36,0,162,0,0,58,1.18,18,182,114,246,4.03,36.2,0,12,0,0.048,0.288,5.88,0.375,1.42,0,0,128
5181,500,"Turkey from whole, light meat, meat and skin, raw","TURKEY FROM WHL,LT MEAT,MEAT & SKN,RAW",,,,Bone and Conncetive tissue 32%,32,,6.25,4.27,9.02,3.87,Poultry Products,21.96,7.43,0.15,161,0.06,0,11,0.75,25,188,223,105,1.25,20.7,62,11,0,0.038,0.139,8.968,0.711,0.67,0,0,67
5182,500,"Turkey from whole, light meat, meat and skin, cooked, roasted","TURKEY FROM WHL,LT MEAT,MEAT & SKN,CKD,RSTD",,,Y,Bone and connective tissue 20%,20,,6.25,4.27,9.02,3.87,Poultry Products,29.55,5.57,0.05,177,0,0,11,0.8,32,230,248,101,1.76,29.3,35,14,0,0.035,0.213,11.608,0.767,0.5,0,0,89
5183,500,"Turkey, dark meat, meat and skin, raw","TURKEY,DK MEAT,MEAT & SKN,RAW",,,,Bone and connective tissue 38%,48,,6.25,4.27,9.02,3.87,Poultry Products,19.81,8.97,0.15,161,0.1,0,11,1,22,166,208,113,2.32,20.2,86,19,0,0.055,0.229,5.378,0.391,1.84,0,0,87
5184,500,"Turkey, dark meat from whole, meat and skin, cooked, roasted","TURKEY,DK MEAT FROM WHL,MEAT & SKN,CKD,RSTD",,,Y,Bone and connective tissue 38%,38,,6.25,4.27,9.02,3.87,Poultry Products,27.27,9.95,0.07,206,0,0,17,1.45,27,215,228,105,3.35,30.2,47,15,0,0.057,0.365,7.103,0.43,1.66,0,0,134
5185,500,"Turkey from whole, light meat, raw","TURKEY FROM WHL,LT MEAT,RAW",,,,"Bone and connective tissue 20%, skin and separable fat 12%",29,,6.25,4.27,9.02,3.87,Poultry Products,23.66,1.48,0.14,114,0.05,0,11,0.73,28,201,242,113,1.28,22.7,20,5,0,0.042,0.145,9.924,0.813,0.63,0,0,57
5186,500,"Turkey, all classes, light meat, cooked, roasted","TURKEY,ALL CLASSES,LT MEAT,CKD,RSTD",,,Y,"Bone and connective tissue 20%, Skin and separable fat 7%",27,,6.25,4.27,9.02,3.87,Poultry Products,30.13,2.08,0,147,0,0,9,0.71,32,230,249,99,1.72,30.2,11,10,0,0.035,0.205,11.75,0.807,0.37,0,0,80
5187,500,"Turkey from whole, dark meat, meat only, raw","Turkey from whole, dark meat, meat only, raw",,,,"Bone and connective tissue 38%, skin and separable fat 10%",48,,,,,,Poultry Products,21.28,2.5,0.15,108,0.1,0,11,1.04,25,176,226,124,2.59,22.4,43,13,0,0.062,0.255,5.696,0.44,2.05,0,0,79
5188,500,"Turkey, from whole, dark meat, cooked, roasted","TURKEY,FROM WHL,DK MEAT,CKD,RSTD",,,Y,Bone and connective tissue 39% Skin and separable fat 7%,46,,6.25,4.27,9.02,3.87,Poultry Products,27.71,6.04,0,173,0,0,17,1.43,27,212,227,104,3.51,31.4,18,10,0,0.06,0.375,6.685,0.438,1.65,0,0,128
5190,500,"Turkey, all classes, back, meat and skin, cooked, roasted","TURKEY,ALL CLASSES,BACK,MEAT&SKN,CKD,RSTD",,,Y,Bone,41,,6.25,4.27,9.02,3.87,Poultry Products,26.59,14.38,0.16,244,0,0,33,2.19,22,189,260,73,3.92,37.8,0,1,0,0.054,0.224,3.446,0.3,0.34,4.5,0,91
5191,500,"Turkey, all classes, breast, meat and skin, raw","TURKEY,ALL CLASSES,BREAST,MEAT&SKN,RAW",,,,Bone,10,,6.25,4.27,9.02,3.87,Poultry Products,21.89,7.02,0,157,,0,13,1.2,24,186,275,59,1.57,22.4,6,,0,0.058,0.115,5.2,0.48,0.42,,0,65
5192,500,"Turkey, all classes, breast, meat and skin, cooked, roasted","TURKEY,ALL CLASSES,BREAST,MEAT&SKN,CKD,RSTD",,,,Bone,8,,6.25,4.27,9.02,3.87,Poultry Products,28.71,7.41,0,189,,0,21,1.4,27,210,288,63,2.03,29.1,0,,0,0.057,0.131,6.365,0.48,0.36,,0,74
5193,500,"Turkey, all classes, leg, meat and skin, raw","TURKEY,ALL CLASSES,LEG,MEAT&SKN,RAW",,,,Bone,17,,6.25,4.27,9.02,3.87,Poultry Products,19.54,6.72,0,144,,0,17,1.72,21,177,273,74,3.09,26.4,3,,0,0.077,0.211,2.947,0.34,0.39,,0,71
5194,500,"Turkey, all classes, leg, meat and skin, cooked, roasted","TURKEY,ALL CLASSES,LEG,MEAT&SKN,CKD,RSTD",,,Y,Bone,19,,6.25,4.27,9.02,3.87,Poultry Products,27.87,9.82,0,208,0,0,32,2.3,23,199,280,77,4.27,37.8,0,4,0,0.06,0.241,3.561,0.33,0.36,0,0,85
5195,500,"Turkey, all classes, wing, meat and skin, raw","TURKEY,ALL CLASSES,WING,MEAT&SKN,RAW",,,,Bone,33,,6.25,4.27,9.02,3.87,Poultry Products,20.22,12.32,0,197,,0,14,1.26,21,165,240,55,1.54,22.4,11,,0,0.05,0.11,4.425,0.41,0.39,,0,70
5196,500,"Turkey, all classes, wing, meat and skin, cooked, roasted","TURKEY,ALL CLASSES,WING,MEAT&SKN,CKD,RSTD",,,Y,Bone,34,,6.25,4.27,9.02,3.87,Poultry Products,27.38,12.43,0,229,0,0,24,1.46,25,197,266,61,2.1,29.9,0,4,0,0.05,0.134,5.732,0.42,0.34,0,0,81
5200,500,"Turkey, fryer-roasters, meat and skin, cooked, roasted","TURKEY,FRYER-ROASTERS,MEAT&SKN,CKD,RSTD",,,Y,Bone,25,,6.25,4.27,9.02,3.87,Poultry Products,28.26,5.72,0,172,0,0,22,1.95,25,198,250,66,2.89,33.8,0,1,0,0.043,0.183,4.922,0.42,0.37,0.8,0,105
5215,500,"Turkey, back from whole bird, meat only, raw","TURKEY,BACK FROM WHL BIRD,MEAT ONLY,RAW",,,,"Bone and connective tissue 50%, skin and separable fat 12%",62,,6.25,4.27,9.02,3.87,Poultry Products,21.28,2.5,0.15,113,0.1,0,11,1.04,25,176,226,124,2.59,22.4,43,13,0,0.062,0.255,5.696,0.44,2.05,0,0,79
5216,500,"Turkey, back, from whole bird, meat only, roasted","TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,RSTD",,,Y,"Bone and connective tissue 54%, Skin and separable fat 7%",42,,6.25,4.27,9.02,3.87,Poultry Products,27.71,6.04,0,173,0,0,17,1.43,27,212,227,104,3.51,31.4,18,10,0,0.06,0.375,6.685,0.438,1.65,0,0,128
5219,500,"Turkey, breast, from whole bird, meat only, raw","TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,RAW",,,,"Bone and connective tissue 12%, Skin and separable fat 10%",22,,6.25,4.27,9.02,3.87,Poultry Products,23.66,1.48,0.14,114,0.05,0,11,0.73,28,201,242,113,1.28,22.7,20,5,0,0.042,0.145,9.924,0.813,0.63,0,0,57
5220,500,"Turkey, breast, from whole bird, meat only, roasted","TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,RSTD",,,Y,"Bone and connective tissue 13%, Skin and separable fat 6%",19,,6.25,4.27,9.02,3.87,Poultry Products,30.13,2.08,0,147,0,0,9,0.71,32,230,249,99,1.72,30.2,11,10,0,0.035,0.205,11.75,0.807,0.39,0,0,80
5227,500,"Turkey, wing, from whole bird, meat only, raw","TURKEY,WING,FROM WHL BIRD,MEAT ONLY,RAW",,,,"Bone and connective tissue 44%, skin and separable fat 16%",60,,6.25,4.27,9.02,3.87,Poultry Products,23.66,1.48,0.14,114,0.05,0,11,0.73,28,201,242,113,1.28,22.7,20,5,0,0.042,0.145,9.924,0.813,0.63,,0,57
5228,500,"Turkey, wing, from whole bird, meat only, roasted","TURKEY,WING,FROM WHL BIRD,MEAT ONLY,RSTD",,,Y,"Bone and connective tissue 48%, skin and separable fat 11%",59,,6.25,4.27,9.02,3.87,Poultry Products,30.13,2.08,0,147,0,0,9,0.71,32,230,249,99,1.72,30.2,11,10,0,0.035,0.205,11.75,0.807,0.81,0,0,80
5236,500,"Turkey, young hen, skin only, cooked, roasted","TURKEY,YOUNG HEN,SKN ONLY,CKD,RSTD",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,19.03,44.45,0,482,,0,32,1.82,15,133,155,44,2.06,144.1,0,,0,0.021,0.133,2.801,0.07,0.24,,0,106
5277,500,"Chicken, canned, meat only, with broth","CHICKEN,CND,MEAT ONLY,W/BROTH",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,21.77,7.95,0,165,0,0,14,1.58,12,111,138,503,1.41,15.8,117,5,2,0.015,0.129,6.329,0.35,0.29,1.8,0,62
5282,500,"Pate de foie gras, canned (goose liver pate), smoked","PATE DE FOIE GRAS,CND (GOOSE LIVER PATE),SMOKED",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,11.4,43.84,4.67,462,,0,70,5.5,13,200,138,697,0.92,44,3333,,2,0.088,0.299,2.51,0.06,9.4,,0,150
5284,500,"Turkey, canned, meat only, with broth","TURKEY,CND,MEAT ONLY,W/BROTH",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,23.68,6.86,1.47,169,0,0,12,1.86,20,162,224,518,2.37,25.9,0,11,2,0.014,0.171,6.622,0.33,0.28,0.7,0,66
5285,500,"Turkey, diced, light and dark meat, seasoned","TURKEY,DICED,LT&DK MEAT,SEASONED",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,18.7,6,1,138,,0,1,1.8,17,240,310,850,2.02,26.1,0,,0,0.04,0.11,4.8,0.28,0.24,,0,55
5286,500,"Turkey and gravy, frozen","TURKEY AND GRAVY,FROZEN",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,5.88,2.63,4.61,67,,0,14,0.93,8,81,61,554,0.7,19.2,42,,0,0.024,0.127,1.799,0.1,0.24,,0,18
5293,500,"Turkey breast, pre-basted, meat and skin, cooked, roasted","TURKEY BREAST,PRE-BASTED,MEAT&SKN,CKD,RSTD",,,,Bone,8,,6.25,4.27,9.02,3.87,Poultry Products,22.16,3.46,0,126,,0,9,0.66,21,214,248,397,1.53,25.7,0,,0,0.053,0.133,9.067,0.32,0.32,,0,42
5294,500,"Turkey thigh, pre-basted, meat and skin, cooked, roasted","TURKEY THIGH,PRE-BASTED,MEAT&SKN,CKD,RSTD",,,,Bone,13,,6.25,4.27,9.02,3.87,Poultry Products,18.8,8.54,0,157,,0,8,1.51,17,171,241,437,4.12,27.9,0,,0,0.083,0.255,2.409,0.23,0.24,,0,62
5295,500,"Turkey roast, boneless, frozen, seasoned, light and dark meat, raw","TURKEY RST,BNLESS,FRZ,SEASONED,LT&DK MEAT,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,17.6,2.2,6.4,120,,0,1,2.1,20,158,360,678,1.91,26.5,0,,0,0.04,0.12,4.4,0.38,0.35,,0,53
5300,500,"Turkey sticks, breaded, battered, fried","TURKEY STKS,BREADED,BATTERED,FRIED",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,14.2,16.9,17,279,,,14,2.2,15,234,260,838,1.46,20.7,40,,0,0.1,0.18,2.1,0.2,0.23,,20,64
5301,500,"Poultry, mechanically deboned, from backs and necks with skin, raw","POULTRY,MECHANICALLY DEBONED,FROM BACKS&NECKS W/SKN,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,11.39,24.73,0,272,,0,138,1.57,12,132,104,40,1.29,10.7,245,,1.5,0.05,0.129,4.63,0.19,0.25,,0,130
5302,500,"Poultry, mechanically deboned, from backs and necks without skin, raw","POULTRY,MECHANICALLY DEBONED,FROM BACKS&NECKS WO/SKN,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,13.79,15.48,0,199,,0,123,1.73,13,154,128,51,1.82,14.4,107,,3,0.071,0.175,6.246,0.32,0.35,,0,104
5303,500,"Poultry, mechanically deboned, from mature hens, raw","POULTRY,MECHANICALLY DEBONED,FROM MATURE HENS,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,14.72,19.98,0,243,,0,187,1.22,12,132,104,40,1.9,15.7,149,,2,0.096,0.14,5.254,0.28,0.27,,0,143
5304,500,"Turkey, mechanically deboned, from turkey frames, raw","TURKEY,MECHANICALLY DEBONED,FROM TURKEY FRAMES,RAW",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,13.29,15.96,0,201,,0,145,1.61,13,115,173,48,2.9,26.5,0,,0,0.048,0.134,1.969,0.21,0.26,,0,95
5305,500,"Ground turkey, raw","GROUND TURKEY,RAW",,,,,0,,,,,,Poultry Products,19.66,7.66,0,148,0,0,19,1.09,23,200,237,58,2.35,21.9,66,14,0,0.066,0.156,6.733,0.564,1,0,0,69
5306,500,"Ground turkey, cooked","GROUND TURKEY,CKD",,,Y,,0,,,,,,Poultry Products,27.37,10.4,0,203,0,0,28,1.52,30,254,294,78,3.11,31.1,79,8,0,0.077,0.211,8.724,0.633,1.34,0,0,93
5307,500,"Chicken, cornish game hens, meat and skin, raw","CHICKEN,CORNISH GAME HENS,MEAT&SKN,RAW",,,,Bone,39,,6.25,4.27,9.02,3.87,Poultry Products,17.15,14.02,0,200,0,0,11,0.78,18,140,236,61,1.15,11.8,108,,0.5,0.073,0.17,5.675,0.295,0.33,2.4,0,101
5308,500,"Chicken, cornish game hens, meat and skin, cooked, roasted","CHICKEN,CORNISH GAME HENS,MEAT&SKN,CKD,RSTD",,,Y,Bone,37,,6.25,4.27,9.02,3.87,Poultry Products,22.27,18.21,0,259,0,0,13,0.91,18,146,245,64,1.49,15.5,106,2,0.5,0.067,0.199,5.897,0.307,0.28,2.4,0,131
5309,500,"Chicken, cornish game hens, meat only, raw","CHICKEN,CORNISH GAME HENS,MEAT ONLY,RAW",,,,"39% bone, 13% skin, 5% separable fat",57,,6.25,4.27,9.02,3.87,Poultry Products,20.04,3.33,0,116,0,0,12,0.74,21,160,269,68,1.31,15.8,75,,0.6,0.092,0.216,6.744,0.385,0.4,2.4,0,91
5310,500,"Chicken, cornish game hens, meat only, cooked, roasted","CHICKEN,CORNISH GAME HENS,MEAT ONLY,CKD,RSTD",,,Y,"37% bone, 9% skin",46,,6.25,4.27,9.02,3.87,Poultry Products,23.3,3.87,0,134,0,0,13,0.77,19,149,250,63,1.53,20.8,65,5,0.6,0.075,0.227,6.273,0.358,0.3,2.4,0,106
5311,500,"Chicken, canned, no broth","CHICKEN,CANNED,NO BROTH",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,25.3,8.1,0.9,185,0,0,14,1.3,19,153,153,482,2.5,18.4,177,5,0,0,0.1,2.4,0.19,1,2.3,0,50
5312,500,"Chicken, wing, frozen, glazed, barbecue flavored","CHICKEN,WING,FRZ,GLAZED,BARBECUE FLAV",,,,"Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%",33,,6.25,4.27,9.02,3.87,Poultry Products,19.67,12.67,3.34,211,2.04,0.6,28,2.41,20,205,190,615,1.14,33.2,58,,0,0.074,0.242,5.5,0.142,0.4,,0,126
5313,500,"Chicken, wing, frozen, glazed, barbecue flavored, heated (microwave)","CHICKEN,WING,FRZ,GLAZED,BARBECUE FLAV,HTD (MICROWAVE)",,,,"Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%",33,,6.25,4.27,9.02,3.87,Poultry Products,25.34,13.9,3.84,248,2.1,0.9,38,2.74,27,272,254,837,1.55,41.7,68,,0.5,0.081,0.296,7.1,0.21,0.48,,0,156
5314,500,"Chicken, broilers or fryers, breast, skinless, boneless, meat only, with added solution, raw","CKN,BROILERS/FRYERS,BRST,SKNLS,BNLS,MEAT ONLY,W ADDED SLN,RW",,,Y,,0,,6.25,,,,Poultry Products,20.32,3,0,108,0,0,5,0.34,25,198,332,173,0.63,26.4,36,2,0,0.068,0.127,7.583,0.761,0.19,0,0,64
5315,500,"Duck, young duckling, domesticated, White Pekin, breast, meat and skin, boneless, cooked, roasted","DUCK,YNG DUCKLING,DOM,WH PEKIN,BRST,MEAT&SKN,BNLESS,CKD,RSTD",,,,,0,Anas platyrhynchos,6.25,4.27,9.02,,Poultry Products,24.5,10.85,0,202,,,8,3.26,,,,84,,26.4,,,2.8,,,7.855,,,,,136
5316,500,"Duck, young duckling, domesticated, White Pekin, breast, meat only, boneless, cooked without skin, broiled","DUCK,YNG DUCKL,DOM,WH PEKIN,BRST,MEAT,BNLESS,CKD WO/SKN,BRLD",,,,,0,Anas platyrhynchos,6.25,4.27,9.02,,Poultry Products,27.6,2.5,0,140,,,9,4.49,,,,105,,29,,,3.2,,,10.35,,,,,143
5317,500,"Duck, young duckling, domesticated, White Pekin, leg, meat and skin, bone in, cooked, roasted","DUCK,YNG DUCKLING,DOM,WH PEKIN,LEG,MEAT&SKN,BONE IN,CKD,RSTD",,,,Bone,31,Anas platyrhynchos,6.25,4.27,9.02,,Poultry Products,26.75,11.4,0,217,,,10,2.08,,,,110,,21.8,,,1.5,,,5.77,,,,,114
5318,500,"Duck, young duckling, domesticated, White Pekin, leg, meat only, bone in, cooked without skin, braised","DUCK,YNG DUCKL,DOM,WH PEKIN,LEG,MEAT,BONE IN,CKD WO/SKN,BRSD",,,,Bone,34,Anas platyrhynchos,6.25,4.27,9.02,,Poultry Products,29.1,5.96,0,178,,,10,2.33,,,,108,,21.6,,,2.3,,,5.33,,,,,105
5319,500,"Chicken, broiler, rotisserie, BBQ, drumstick, meat only","CHICKEN,BROILER,ROTISSERIE,BBQ,DRUMSTK,MEAT ONLY",,,Y,"Bone and connective tissue 29%, skin and separable fat 12%",41,,,,,,Poultry Products,27.71,6.76,0,172,0,0,20,1.05,23,248,291,403,2.86,27.4,33,0,0,0.065,0.229,5.745,0.184,0.47,0,0,155
5320,500,"Chicken, wing, frozen, glazed, barbecue flavored, heated (conventional oven)","CHICKEN,WING,FRZ,GLAZED,BBQ FLAV,HTD (CONVENTIONAL OVEN)",,,,"Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%",33,,6.25,4.27,9.02,3.87,Poultry Products,22.24,14.87,3.36,242,1.94,0.5,28,1.97,21,233,218,559,1.3,34.2,69,,0,0.117,0.26,6.03,0.183,0.55,,0,136
5323,500,"Chicken patty, frozen, uncooked","CHICKEN PATTY,FRZ,UNCKD",,,,,0,,,,,,Poultry Products,14.33,20.04,13.61,292,0,1.2,20,0.93,25,196,248,518,0.94,21.4,37,,0,0.073,0.054,6.63,0.155,0.23,11.1,0,45
5324,500,"Chicken patty, frozen, cooked","CHICKEN PATTY,FRZ,CKD",,,Y,,0,,,,,,Poultry Products,14.85,19.58,12.84,287,0,0.3,19,0.95,24,208,261,532,1.05,23.3,0,11,0,0.083,0.072,4.764,0.183,0.29,4.2,0,43
5326,500,"Chicken breast tenders, breaded, cooked, microwaved","CHICKEN BREAST TENDERS,BREADED,CKD,MICROWAVED",,,,,0,,6.25,,,,Poultry Products,16.35,12.89,17.56,252,0,0,14,1,26,216,225,446,0.77,30.6,0,,0,0.324,0.098,6.514,0.037,0.44,4.2,0,45
5327,500,"Chicken breast tenders, breaded, uncooked","CHICKEN BREAST TENDERS,BREADED,UNCKD",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,14.73,15.75,15.01,263,0.37,1.1,19,1.11,23,211,214,536,0.78,24.7,0,9,0.8,0.211,0.091,5.71,0.041,0.27,14.7,0,41
5332,500,"Chicken, ground, raw","CHICKEN,GROUND,RAW",,,,,0,,6.25,,,,Poultry Products,17.44,8.1,0.04,143,0,0,6,0.82,21,178,522,60,1.47,10.2,0,,0,0.109,0.241,5.575,0.512,0.56,0.8,0,86
5333,500,"Chicken, ground, crumbles, cooked, pan-browned","CHICKEN,GROUND,CRUMBLES,CKD,PAN-BROWNED",,,,,0,,6.25,3.87,9.04,4.27,Poultry Products,23.28,10.92,0,189,0,0,8,0.93,28,234,677,75,1.92,14.3,0,,0,0.121,0.302,7.107,0.538,0.51,2.1,0,107
5334,500,"Chicken, broiler, rotisserie, BBQ, thigh, meat only","CHICKEN,BROILER,ROTISSERIE,BBQ,THIGH,MEAT ONLY",,,Y,"Bone and connective tissue 14%, skin and separable fat 15%",29,,,,,,Poultry Products,24.09,10.74,0,193,0,0,13,0.97,21,216,262,335,2,23.1,44,0,0,0.055,0.234,5.441,0.176,0.45,0,0,128
5335,500,"Chicken, feet, boiled","CHICK,FEET,BOILED",,,Y,,0,,6.25,4.27,9.02,3.87,Poultry Products,19.4,14.6,0.2,215,0,0,88,0.91,5,83,31,67,0.69,3.6,100,8,0,0.06,0.2,0.4,0.01,0.47,0.2,0,84
5336,500,"USDA Commodity Chicken, canned, meat only, drained","USDA CMDTY CHICK,CND,MEAT ONLY,DRND",,,,,0,,,,,,Poultry Products,27.52,5.72,0,162,0,0,12,1.16,22,156,189,271,1.94,24.5,41,,0,0.051,0.171,6.505,0.266,0.23,2,0,83
5337,500,"USDA Commodity, Chicken, canned, meat only, with water","USDA CMDTY,CHICK,CND,MEAT ONLY,W/ H2O",USDA Commodity A532 (12.5 oz can) and A507(50 oz can),,,,0,,,,,,Poultry Products,22.02,4.58,0,129,0,0,10,0.93,18,125,151,251,1.55,19.6,33,,0,0.041,0.137,5.204,0.213,0.18,1.6,0,67
5338,500,"USDA Commodity, Chicken, canned, meat only, with broth","USDA CMDTY,CHICK,CND,MEAT ONLY,W/ BROTH",,,,,0,,,,,,Poultry Products,22.41,4.69,0.23,133,0.03,0,10,0.97,18,131,168,256,1.57,19.6,33,,0,0.041,0.143,5.471,0.215,0.2,1.6,0,67
5339,500,"Chicken, broiler, rotisserie, BBQ, wing, meat only","CHICKEN,BROILER,ROTISSERIE,BBQ,WING,MEAT ONLY",,,Y,"Bone and connective tissue 32%, skin and separable fat 25%",57,,6.25,,,,Poultry Products,28.34,7.79,0.54,184,0.53,0,32,0.97,24,264,322,725,2.05,51.1,37,0,0,0.092,0.138,7.676,0.184,0.39,0,0,134
5341,500,"Chicken, broilers or fryers, back, meat only, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,ROTISSERIE,ORI",,,,"40.14% bone and cartilage, 16.08% skin and separable fat",56,,,,,,Poultry Products,25.34,11.54,0,205,0,0,38,0.97,21,250,309,661,2.04,48.3,57,,0,0.08,0.21,6,0.14,0.71,0,0,123
5342,500,"Chicken, broilers or fryers, breast, meat only, cooked, rotisserie, original seasoning","CKN,BRLERS/FRYERS,BRST,MT ONLY,CKD,ROTISSERIE,ORIG SEASONING",,,Y,"Bone and Connective tissue 26%, skin 10%",36,,,,,,Poultry Products,28,2.79,0,137,0,0,13,0.45,25,235,303,313,0.86,39.1,17,1,0,0.045,0.207,9.233,0.24,0.27,3.4,0,86
5343,500,"Chicken, broilers or fryers, drumstick, meat only, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,ROTISSERIE,",,,,"29.34% bone and cartilage, 11.75% skin and separable fat",41,,,,,,Poultry Products,28.74,6.81,0,176,0,0,21,1.09,24,257,301,417,2.96,38.2,34,,0,0.067,0.237,5.958,0.19,0.49,0,0,160
5344,500,"Chicken, broilers or fryers, skin only, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,ROTISSERIE,ORIGINAL",,,,,0,,6.25,,,,Poultry Products,17.66,37.24,0.11,406,0.11,0,25,0.98,26,248,245,381,1.03,18.5,186,,0,0.036,0.121,5.737,0.138,0.59,0,0,141
5345,500,"Chicken, broilers or fryers, thigh, meat only, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,ROTISSERIE,OR",,,,"14.24% bone and cartilage, 14.88% skin and separable fat",29,,,,,,Poultry Products,24.06,11.09,0,196,0,0,13,0.97,21,217,264,337,2.01,27,45,,0,0.055,0.233,5.433,0.176,0.45,0,0,130
5346,500,"Chicken, broilers or fryers, wing, meat only, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,ROTISSERIE,ORI",,,,"32.51% bone and cartilage, 24.10% skin and separable fat",57,,,,,,Poultry Products,27.69,9.53,0,197,0,0,32,0.97,24,264,322,725,2.05,51.1,37,,0,0.09,0.135,7.5,0.18,0.38,0,0,140
5347,500,"Chicken, broilers or fryers, back, meat and skin, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,BACK,MEAT & SKN,CKD,ROTISSERIE,OR",,,,,0,,,,,,Poultry Products,23.23,18.59,0.03,260,0.03,0,35,0.97,23,249,291,584,1.77,40.1,92,,0,0.068,0.185,5.928,0.139,0.68,0,0,128
5348,500,"Chicken, broilers or fryers, breast, meat and skin, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,BREAST,MEAT & SKN,CKD,ROTISSERIE,",,,,,0,,,,,,Poultry Products,27.48,8.18,0.02,184,0.02,0,15,0.55,26,255,289,347,0.92,30.6,41,,0,0.078,0.133,9.397,0.299,0.32,0,0,96
5349,500,"Chicken, broilers or fryers, drumstick, meat and skin, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT & SKN,CKD,ROTISSERIE",,,,,0,,,,,,Poultry Products,26.86,11.98,0.02,215,0.02,0,21,1.07,25,255,291,411,2.63,34.8,60,,0,0.062,0.218,5.921,0.181,0.51,0,0,156
5351,500,"Chicken, broilers or fryers, thigh, meat and skin, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,THIGH,MEAT & SKN,CKD,ROTISSERIE,O",,,,,0,,,,,,Poultry Products,22.93,15.7,0.02,233,0.02,0,15,0.97,22,222,260,345,1.84,25.5,70,,0,0.052,0.213,5.487,0.169,0.47,0,0,132
5352,500,"Chicken, broilers or fryers, wing, meat and skin, cooked, rotisserie, original seasoning","CHICKEN,BROILERS OR FRYERS,WING,MEAT & SKN,CKD,ROTISSERIE,OR",,,,,0,,,,,,Poultry Products,24.34,18.77,0.04,266,0.04,0,29,0.97,24,258,296,610,1.71,40.2,87,,0,0.072,0.13,6.912,0.166,0.45,0,0,140
5353,500,"USDA Commodity, chicken fajita strips, frozen","USDA CMDTY,CHICK FAJITA STRIPS,FRZ",,,,,0,,,,,,Poultry Products,18.56,5.73,2.23,135,0,0,13,0.99,22,277,284,799,1.37,16.7,0,,0,0.1,0.213,4.779,0.387,0.54,0.2,0,88
5354,500,"USDA Commodity, turkey taco meat, frozen, cooked","USDA CMDTY,TURKEY TACO MEAT,FRZ,CKD",,,,,0,,,,,,Poultry Products,16.8,7.58,3.03,148,0,0,69,1.8,27,180,297,632,2.52,17.9,0,,0,0.078,0.334,2.982,0.3,2.17,0,0,71
5356,500,"Chicken, broiler, rotisserie, BBQ, skin","CHICKEN,BROILER,ROTISSERIE,BBQ,SKIN",,,Y,,0,,,,,,Poultry Products,15.19,35.15,0.7,378,0.7,0,34,0.86,22,230,223,335,0.76,16.6,171,0,0,0.054,0.199,7.082,0.259,0.55,0,0,120
5357,500,"Chicken, broiler, rotisserie, BBQ, back meat and skin","CHICKEN,BROILER,ROTISSERIE,BBQ,BACK MEAT & SKN",,,Y,Bone and connective tissue 37%,37,,,,,,Poultry Products,20.29,18.86,0.4,251,0.4,0,33,0.83,19,217,254,509,1.51,35.4,79,5,0,0.065,0.185,5.621,0.153,0.6,0,0,118
5358,500,"Chicken, broiler, rotisserie, BBQ, breast meat and skin","CHICKEN,BROILER,ROTISSERIE,BBQ,BREAST MEAT & SKN",,,Y,Bone and connective tissue 11%,11,,,,,,Poultry Products,26.37,7.67,0.09,175,0.09,0,16,0.51,25,244,276,329,0.86,22.3,37,0,0,0.078,0.139,9.303,0.307,0.3,0,0,90
5359,500,"Chicken, broiler, rotisserie, BBQ, drumstick meat and skin","CHICKEN,BROILER,ROTISSERIE,BBQ,DRUMSTK MEAT & SKN",,,Y,Bone and connective tissue 29%,29,,,,,,Poultry Products,25.65,11.46,0.12,206,0.12,0,22,1.02,23,245,279,392,2.52,25.7,56,0,0,0.063,0.224,5.966,0.196,0.49,0,0,149
5361,500,"Chicken, broiler, rotisserie, BBQ, thigh meat and skin","CHICKEN,BROILER,ROTISSERIE,BBQ,THIGH MEAT & SKN",,,Y,Bone and connective tissue 14%,14,,,,,,Poultry Products,22.51,15.08,0.12,226,0.12,0,16,0.95,21,218,255,335,1.78,22,67,0,0,0.055,0.227,5.732,0.191,0.47,0,0,127
5362,500,"Chicken, broiler, rotisserie, BBQ, wing meat and skin","CHICKEN,BROILER,ROTISSERIE,BBQ,WING MEAT & SKN",,,Y,Bone and connective tissue 32%,32,,,,,,Poultry Products,23.42,18.04,0.6,257,0.6,0,33,0.93,23,251,285,579,1.57,38.2,87,0,0,0.078,0.161,7.454,0.212,0.45,0,0,129
5363,500,"Ruffed Grouse, breast meat, skinless, raw","RUFFED GROUSE,BREAST MEAT,SKINLESS,RAW",Ruffed grouse,,,,0,Bonasa umbellus,,,,,Poultry Products,25.94,0.88,0,112,0,0,5,0.58,32,229,311,50,0.51,,16,,0,0.042,0.28,11.6,1.275,2.9,,,40
5600,500,"USDA Commodity, turkey ham, dark meat, smoked, frozen","USDA COMMODITY,TURKEY HAM,DK MEAT,SMOKED,FRZ",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,16.3,4,3.1,118,1.2,0,7,1,16,289,253,909,2.1,38.2,53,,0,0.23,0.27,4.12,0.06,0.8,,,64
5621,500,"Emu, ground, raw","EMU,GROUND,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,22.77,4.03,0,134,0,0,7,4.02,24,222,320,56,3.48,30.5,0,,0,0.27,0.457,7.485,0.642,6.75,,0,69
5622,500,"Emu, ground, cooked, pan-broiled","EMU,GROUND,CKD,PAN-BROILED",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,28.43,4.65,0,163,0,0,8,5.01,29,269,375,65,4.56,43.5,0,,0,0.318,0.545,8.925,0.833,8.52,3.6,0,87
5623,500,"Emu, fan fillet, raw","EMU,FAN FILLET,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,22.5,0.8,0,103,0,0,3,4.5,42,236,300,120,3.5,32.5,0,,0,0.267,0.451,7.397,0.634,6.67,,0,71
5624,500,"Emu, fan fillet, cooked, broiled","EMU,FAN FILLET,CKD,BRLD",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,31.27,2.3,0,154,0,0,6,4.56,30,272,397,53,3.19,46.1,0,,0,0.35,0.599,9.814,0.916,9.37,,0,82
5625,500,"Emu, flat fillet, raw","EMU,FLAT FILLET,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,22.25,0.74,0,102,0,0,3,5,31,229,240,150,3,31.5,0,,0,0.245,0.414,6.786,0.582,6.12,,0,71
5626,500,"Emu, full rump, raw","EMU,FULL RUMP,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,22.83,1.64,0,112,0,0,4,4.96,40,236,330,90,3.59,32.5,15,,0,0.36,0.458,7.504,0.643,2.24,,0,85
5627,500,"Emu, full rump, cooked, broiled","EMU,FULL RUMP,CKD,BRLD",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,33.67,2.68,0,168,0,0,7,6.89,34,323,324,110,4.32,52.1,11,,0,0.43,0.645,10.569,0.987,2.2,,0,129
5628,500,"Emu, inside drum, raw","EMU,INSIDE DRUM,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,22.22,1.49,0,108,0,0,4,5.23,26,229,318,102,4.33,31.4,17,,0,0.42,0.446,7.304,0.626,2.26,,0,67
5629,500,"Emu, inside drums, cooked, broiled","EMU,INSIDE DRUMS,CKD,BRLD",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,32.38,2.01,0,156,0,0,6,7.27,33,307,312,118,5.09,49.6,10,,0,0.41,0.621,10.164,0.949,2.4,,0,91
5630,500,"Emu, outside drum, raw","EMU,OUTSIDE DRUM,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,23.08,0.48,0,103,0,0,3,4.5,29,225,320,100,4.5,36.3,0,,0,0.258,0.442,7.245,0.676,6.92,,0,78
5631,500,"Emu, oyster, raw","EMU,OYSTER,RAW",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,22.81,4.86,0,141,0,0,4,5.5,30,217,250,150,6,29.8,0,,0,0.271,0.458,7.499,0.643,6.76,,0,81
5632,500,"Emu, top loin, cooked, broiled","EMU,TOP LOIN,CKD,BRLD",,,,,0,Dromaius novaehollandiae,6.25,4.27,9.02,3.87,Poultry Products,29.07,3.13,0,152,0,0,9,5.07,30,274,374,58,3.42,43.5,0,,0,0.325,0.557,9.124,0.852,8.71,,0,88
5641,500,"Ostrich, ground, raw","OSTRICH,GROUND,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,20.22,8.7,0,165,0,0,7,2.91,20,199,291,72,3.51,33,0,,0,0.182,0.267,4.377,0.475,4.61,,0,71
5642,500,"Ostrich, ground, cooked, pan-broiled","OSTRICH,GROUND,CKD,PAN-BROILED",,,Y,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,26.15,7.07,0,175,0,0,8,3.43,23,224,323,80,4.33,33.5,0,4,0,0.213,0.268,6.557,0.501,5.74,3.5,0,83
5643,500,"Ostrich, fan, raw","OSTRICH,FAN,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,21.81,2.65,0,117,0,0,6,4.38,22,211,308,75,3.71,34.9,0,,0,0.196,0.288,4.722,0.513,4.97,,0,73
5644,500,"Ostrich, inside leg, raw","OSTRICH,INSIDE LEG,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,22.39,1.72,0,111,0,0,5,2.3,22,220,320,72,3.87,36.4,0,,0,0.201,0.295,4.847,0.526,5.1,,0,66
5645,500,"Ostrich, inside leg, cooked","OSTRICH,INSIDE LEG,CKD",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,29.01,1.94,0,141,0,0,6,3.12,25,244,352,83,4.71,36.5,0,,0,0.237,0.298,7.274,0.555,6.36,,0,73
5646,500,"Ostrich, inside strip, raw","OSTRICH,INSIDE STRIP,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,23.69,2.87,0,127,0,0,5,4.2,23,226,330,76,3.98,37.5,0,,0,0.213,0.312,5.129,0.557,5.4,,0,73
5647,500,"Ostrich, inside strip, cooked","OSTRICH,INSIDE STRIP,CKD",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,29.37,4.26,0,164,0,0,5,4.8,26,253,366,73,4.9,37.9,0,,0,0.24,0.301,7.364,0.562,6.44,,0,97
5648,500,"Ostrich, outside leg, raw","OSTRICH,OUTSIDE LEG,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,22.86,1.96,0,115,0,0,5,2.65,23,221,322,90,3.89,36.6,0,,0,0.205,0.302,4.949,0.537,5.21,,0,65
5649,500,"Ostrich, outside strip, raw","OSTRICH,OUTSIDE STRIP,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,23.36,2.21,0,120,0,0,5,3.69,23,229,333,70,4.02,37.9,0,,0,0.21,0.308,5.058,0.549,5.33,,0,79
5650,500,"Ostrich, outside strip, cooked","OSTRICH,OUTSIDE STRIP,CKD",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,28.55,3.83,0,156,0,0,5,4.3,26,254,367,72,4.91,38,0,,0,0.233,0.293,7.158,0.546,6.26,,0,93
5651,500,"Ostrich, oyster, raw","OSTRICH,OYSTER,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,21.55,3.67,0,125,0,0,6,3.86,21,204,297,83,3.59,33.8,0,,0,0.194,0.284,4.665,0.507,4.91,,0,73
5652,500,"Ostrich, oyster, cooked","OSTRICH,OYSTER,CKD",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,28.81,3.97,0,159,0,0,6,4.9,29,281,409,81,4.94,46.5,0,,0,0.235,0.296,7.224,0.551,6.32,,0,90
5653,500,"Ostrich, round, raw","OSTRICH,RND,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,21.99,2.4,0,116,0,0,5,3.54,22,216,315,72,3.8,35.8,0,,0,0.198,0.29,4.761,0.517,5.01,,0,71
5654,500,"Ostrich, tenderloin, raw","OSTRICH,TENDERLOIN,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,22.07,3.19,0,123,0,0,6,4.88,22,220,320,86,3.87,36.4,0,,0,0.198,0.291,4.778,0.519,5.03,,0,80
5655,500,"Ostrich, tip trimmed, raw","OSTRICH,TIP RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,21.85,2.3,0,114,0,0,5,2.86,22,213,310,67,3.74,35.2,0,,0,0.196,0.288,4.73,0.514,4.98,,0,72
5656,500,"Ostrich, tip trimmed, cooked","OSTRICH,TIP CKD",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,28.49,2.57,0,145,0,0,6,2.79,25,251,362,80,4.85,37.5,0,,0,0.232,0.292,7.143,0.545,6.25,,0,85
5657,500,"Ostrich, top loin, raw","OSTRICH,TOP LOIN,RAW",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,21.67,2.95,0,119,0,0,6,3.13,22,214,312,81,3.76,35.4,0,,0,0.195,0.286,4.691,0.509,4.94,,0,75
5658,500,"Ostrich, top loin, cooked","OSTRICH,TOP LOIN,CKD",,,,,0,Struthio camelus,6.25,4.27,9.02,3.87,Poultry Products,28.12,3.87,0,155,0,0,6,3.31,25,245,353,77,4.72,36.6,0,,0,0.229,0.289,7.051,0.538,6.17,3.4,0,93
5661,500,"Chicken, liver, all classes, cooked, pan-fried","CHICKEN,LIVER,ALL CLASSES,CKD,PAN-FRIED",,,,,0,,6.25,4.27,9.02,3.87,Poultry Products,25.78,6.43,1.11,172,0,0,10,12.88,27,442,315,92,4.01,88.2,14378,,2.7,0.292,2.313,13.925,0.84,21.13,0,0,564
5662,500,"Ground turkey, fat free, raw","GROUND TURKEY,FAT FREE,RAW",,,,,0,,,,,,Poultry Products,23.57,1.95,0,112,0,0,3,0.77,29,227,295,51,1.76,22.1,25,14,0,0.062,0.105,9.708,0.857,0.51,0,0,55
5663,500,"Ground turkey, fat free, pan-broiled crumbles","GROUND TURKEY,FAT FREE,PAN-BROILED CRUMBLES",,,,,0,,,,,,Poultry Products,31.69,2.71,0,151,0,0,6,1.02,35,290,357,61,2.2,31.4,30,8,0,0.082,0.135,12.55,1.08,0.7,0,0,71
5664,500,"Ground turkey, fat free, patties, broiled","GROUND TURKEY,FAT FREE,PATTIES,BRLD",,,,,0,,,,,,Poultry Products,28.99,2.48,0,138,0,0,6,0.78,35,264,339,59,2.19,28,25,8,0,0.067,0.145,10.707,0.908,0.67,0,0,65
5665,500,"Ground turkey, 93% lean, 7% fat, raw","GROUND TURKEY,93% LN,7% FAT,RAW",,,,,0,,,,,,Poultry Products,18.73,8.34,0,150,0,0,21,1.17,21,193,213,69,2.53,19,73,14,0,0.067,0.185,5.417,0.35,1.2,0,0,74
5666,500,"Ground turkey, 93% lean, 7% fat, pan-broiled crumbles","GROUND TURKEY,93% LN,7% FAT,PAN-BROILED CRUMBLES",,,,,0,,,,,,Poultry Products,27.1,11.6,0,213,0,0,31,1.56,29,259,304,90,3.77,28.4,101,8,0,0.088,0.262,8.095,0.497,1.9,0,0,104
5667,500,"Ground turkey, 93% lean, 7% fat, patties, broiled","GROUND TURKEY,93% LN,7% FAT,PATTIES,BRLD",,,,,0,,,,,,Poultry Products,25.86,11.45,0,207,0,0,29,1.73,25,210,247,91,3.71,27.5,105,8,0,0.08,0.232,6.64,0.471,1.8,0,0,106
5668,500,"Ground turkey, 85% lean, 15% fat, raw","GROUND TURKEY,85% LN,15% FAT,RAW",,,,,0,,,,,,Poultry Products,16.9,12.54,0,180,0,0,33,1.32,19,179,202,54,2.75,24.6,101,14,0,0.067,0.177,5.075,0.485,1.3,0,0,78
5669,500,"Ground turkey, 85% lean, 15% fat, pan-broiled crumbles","GROUND TURKEY,85% LN,15% FAT,PAN-BROILED CRUMBLES",,,,,0,,,,,,Poultry Products,25.11,17.45,0,258,0,0,49,1.98,28,263,276,85,3.56,36.1,117,8,0,0.08,0.26,7.72,0.462,1.6,0,0,106
5670,500,"Ground turkey, 85% lean, 15% fat, patties, broiled","GROUND TURKEY,85% LN,15% FAT,PATTIES,BRLD",,,,,0,,,,,,Poultry Products,25.88,16.2,0,249,0,0,48,2.04,25,235,242,81,3.25,35.1,97,8,0,0.067,0.232,6.632,0.383,1.4,0,0,105
5671,500,"Chicken, broilers or fryers, dark meat, drumstick, meat only, cooked, braised","CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT OLY,CKD,BRSD",,,,"Bone and cartilage 32%, Separable fat and skin 9%",41,,,,,,Poultry Products,23.93,5.95,0,149,0,0,12,0.94,22,184,239,117,2.54,27.9,24,2,0,0.088,0.18,5.046,0.372,0.41,0.2,0,132
5672,500,"Chicken, broilers or fryers, dark meat, thigh, meat only, cooked, braised","CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT ONLY,CKD,BRSD",,,,"Bone and cartilage 16%, Skin and separable fat 16%",32,,,,,,Poultry Products,24.55,8.63,0,176,0,0,12,1.27,25,201,266,77,1.87,29.2,27,13,0,0.087,0.182,5.742,0.436,0.42,0.3,0,141
5673,500,"Chicken, skin (drumsticks and thighs), cooked, braised","CHICKEN,SKN (DRUMSTICKS & THIGHS),CKD,BRSD",,,,,0,,,,,,Poultry Products,14.61,42.76,0,443,0,0,9,1,14,130,161,75,0.74,16,161,4,0,0.05,0.055,3.4,0.179,0.45,0.4,0,130
5674,500,"Chicken, skin (drumsticks and thighs), raw","CHICKEN,SKN (DRUMSTICKS & THIGHS),RAW",,,,,0,,,,,,Poultry Products,9.58,44.23,0.79,440,0,0,6,0.37,8,95,119,51,0.65,10.1,196,6,0,0.04,0.032,2.565,0.116,0.65,0.4,0,105
5675,500,"Chicken, skin (drumsticks and thighs), cooked, roasted","CHICKEN,SKN (DRUMSTICKS & THIGHS),CKD,RSTD",,,,,0,,,,,,Poultry Products,16.57,43.99,0,462,0,0,10,0.9,16,151,181,85,0.86,17.4,181,6,0,0.052,0.062,3.917,0.197,0.5,0.5,0,132
5676,500,"Chicken, broilers or fryers, dark meat, drumstick, meat and skin, cooked, braised","CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MT & SKN,CKD,BRSD",,,,Bone and cartilage 32%,32,,,,,,Poultry Products,22.72,10.73,0,187,0,0,12,0.94,21,177,229,111,2.3,26.4,42,2,0,0.083,0.164,4.832,0.347,0.41,0.3,0,132
5677,500,"Chicken, broilers or fryers, dark meat, thigh, meat and skin, cooked, braised","CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT & SKN,CKD,BRSD",,,,Bone and cartilage 16%,16,,,,,,Poultry Products,22.57,15.43,0,229,0,0,11,1.21,23,187,245,76,1.64,26.6,54,11,0,0.08,0.157,5.276,0.385,0.43,0.3,0,139
5678,500,"Chicken, dark meat, drumstick, meat only, with added solution, raw","CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,RAW",,,Y,"Bone and Cartilage 34%, Skin and separable fat 9%",43,,,,,,Poultry Products,19.19,3.26,0,106,0,0,9,0.72,16,143,192,152,2,22.4,28,7,0,0.098,0.243,4.94,0.385,0.42,0,0,92
5679,500,"Chicken, dark meat, drumstick, meat only, with added solution, cooked, roasted","CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and Cartilage 27%, Skin and separable fat 8%",74,,6.25,,,,Poultry Products,25.34,5,0,146,0,0,12,1.1,20,197,250,190,2.64,30.8,20,6,0,0.102,0.297,5.913,0.413,0.41,0,0,124
5680,500,"Chicken, dark meat, drumstick, meat only, with added solution, cooked, braised","CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,CKD,BRSD",,,Y,"Bone and cartilage 30%, Skin and separable fat 9%",39,,,,,,Poultry Products,22.99,6.33,0,149,0,0,14,0.78,21,170,229,169,2.34,29.8,23,2,0,0.08,0.16,5.07,0.31,0.31,3.7,0,135
5681,500,"Chicken, dark meat, thigh, meat only, with added solution, cooked, braised","CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,CKD,BRSD",,,Y,"Bone and cartilage 15%, Skin and separable fat 18%",33,,,,,,Poultry Products,23,7.96,0,164,0,0,12,1.07,24,203,290,197,1.86,27.2,25,12,0,0.08,0.14,6.33,0.308,0.34,0.2,0,126
5682,500,"Chicken, dark meat, thigh, meat only, with added solution, raw","CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,RAW",,,Y,"Bone and cartilage 32%, skin and separable fat 24%",56,,,,,,Poultry Products,19.11,3.69,0,110,0,0,8,0.6,21,175,234,156,1.53,20.9,19,3,0,0.087,0.23,5.3,0.433,0.56,0,0,87
5683,500,"Chicken, dark meat, thigh, meat only, with added solution, cooked, roasted","CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and connective tissue 16%, Skin and separable fat 15%",31,,,,,,Poultry Products,24.23,7.73,0,164,0,0,10,0.98,24,202,268,177,1.9,33.7,27,13,0,0.091,0.272,6.343,0.444,0.37,0,0,122
5684,500,"Chicken, skin (drumsticks and thighs), with added solution, cooked, braised","CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,CKD,BRSD",,,Y,,0,,,,,,Poultry Products,12.26,38.94,1,403,0,0,14,0.65,12,112,146,139,0.63,15.6,147,3,0,0.05,0.04,3.3,0.144,0.27,0.4,0,124
5685,500,"Chicken, skin (drumsticks and thighs), with added solution, raw","CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,RAW",,,Y,,0,,,,,,Poultry Products,11.11,37.9,0.01,386,0,0,7,0.51,7,88,101,139,0.62,10.8,186,14,0,0.035,0.06,2.655,0.113,0.68,0,0,113
5686,500,"Chicken, skin (drumsticks and thighs), with added solution, cooked, roasted","CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,CKD,RSTD",,,Y,,0,,,,,,Poultry Products,20.31,37.6,0.44,421,0,0,15,1.17,18,176,198,162,1.51,20,176,6,0,0.057,0.125,4.045,0.185,0.56,0.5,0,154
5687,500,"Chicken, dark meat, drumstick, meat and skin, with added solution, cooked, braised","CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,CKD,BRSD",,,Y,Bone and Cartilage 30%,30,,,,,,Poultry Products,21.55,10.71,0.13,183,0,0,14,0.76,20,162,218,165,2.11,27.9,40,3,0,0.076,0.144,4.832,0.288,0.3,3.3,0,133
5688,500,"Chicken, dark meat, drumstick, meat and skin, with added solution, raw","CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,RAW",,,Y,"Bone and cartilage 34%, bone and connective tissue 34%",68,,,,,,Poultry Products,18.03,8.24,0,146,0,0,8,0.69,15,135,179,150,1.8,20.8,50,8,0,0.089,0.217,4.612,0.346,0.45,0,0,95
5689,500,"Chicken, dark meat, drumstick, meat and skin, with added solution, cooked, roasted","CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and Cartilage 40%, bone and connective tissue 26%",66,,,,,,Poultry Products,24.72,9,0.05,180,0,0,13,1.11,20,194,244,186,2.5,29.5,39,7,0,0.096,0.276,5.684,0.385,0.43,0,0,128
5690,500,"Chicken, dark meat, thigh, meat and skin, with added solution, cooked, braised","CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,CKD,BRSD",,,Y,Bone and cartilage 15%,15,,,,,,Poultry Products,20.7,14.62,0.21,215,0,0,12,0.98,21,183,259,185,1.6,24.7,52,10,0,0.074,0.119,5.679,0.273,0.32,0.3,0,125
5691,500,"Chicken, dark meat, thigh, meat and skin, with added solution, raw","CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,RAW",,,Y,"Bone and cartilage 15%, bone and connective tissue 17%",32,,,,,,Poultry Products,16.56,14.58,0,197,0,0,8,0.57,16,147,191,151,1.24,17.7,72,7,0,0.071,0.176,4.458,0.331,0.6,0,0,95
5692,500,"Chicken, dark meat, thigh, meat and skin, with added solution, cooked, roasted","CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and cartilage 17%, bone and connective tissue 16%",33,,,,,,Poultry Products,23.47,13.81,0.09,214,0,0,11,1.02,23,197,254,174,1.82,31.1,56,14,0,0.084,0.243,5.898,0.394,0.41,0,0,128
5693,500,"Chicken, broiler, rotisserie, BBQ, back meat only","CHICKEN,BROILER,ROTISSERIE,BBQ,BACK MEAT ONLY",,,Y,"Bone and connective tissue 37%, skin and separable fat 14%",51,,,,,,Poultry Products,21.85,13.87,0.31,212,0.31,0,33,0.82,18,212,263,563,1.74,41.1,51,0,0,0.069,0.181,5.175,0.121,0.61,0,0,117
5694,500,"Turkey, dark meat from whole, meat only, with added solution, raw","TURKEY,DK MEAT FROM WHL,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 34%, Skin and separable fat 13%",47,,,,,,Poultry Products,19.27,4.12,0.1,115,0.1,0,15,0.9,21,191,226,167,2.68,22.4,43,13,0,0.06,0.247,5.745,0.425,2.05,0,,79
5695,500,"Turkey, dark meat, meat only, with added solution, cooked, roasted","TURKEY,DK MEAT,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and connective tissue 36%, Skin and separable fat 9%",45,,,,,,Poultry Products,26.1,6,0,158,0,0,16,1.07,24,208,227,201,3.4,31.4,18,10,0,0.056,0.335,6.827,0.435,1.65,0,0,105
5696,500,"Turkey from whole, light meat, meat only, with added solution, raw","TURKEY FROM WHL,LT MEAT,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 18%, Skin and separable fat 13%",31,,,,,,Poultry Products,21.54,1.66,0,101,0.05,0,14,0.54,25,236,242,206,1.3,22.7,20,5,0,0.033,0.145,9.924,0.775,0.63,0,,54
5697,500,"Turkey from whole, light meat, meat only, with added solution, cooked, roasted","TURKEY FROM WHL,LT MEAT,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and connective tissue 18%, Skin and separable fat 7%",25,,,,,,Poultry Products,26.97,2.08,0,127,0,0,13,0.55,30,255,249,238,1.49,30.2,11,10,0,0.038,0.208,11.75,0.697,1.7,0,0,69
5698,500,"Turkey, skin from whole (light and dark), with added solution, raw","TURKEY,SKN FROM WHL (LIGHT & DARK),W/ ADDED SOLN,RAW",,,,,0,,,,,,Poultry Products,12.29,36.8,0.21,381,0.1,0,13,0.57,9,99,107,138,0.82,10.1,284,46,0,0.016,0.095,3.26,0.16,0.88,0,,94
5699,500,"Turkey, skin from whole, (light and dark), with added solution, roasted","TURKEY,SKN FROM WHL,(LIGHT & DARK),W/ ADDED SOLN,RSTD",,,Y,,0,,,,,,Poultry Products,22.15,40.31,0,451,0,0,25,1.08,28,244,263,234,1.61,21.1,262,54,0,0.024,0.235,7.295,0.29,1.59,0,0,144
5700,500,"Turkey, dark meat from whole, meat and skin, with added solution, raw","TURKEY,DK MEAT FROM WHL,MEAT & SKN,W/ ADDED SOLN,RAW",,,,Bone and connective tissue 34%,34,,,,,,Poultry Products,17.84,10.83,0.15,169,0.1,0,14,0.83,18,172,202,161,2.3,19.9,93,20,0,0.051,0.216,5.235,0.37,1.81,0,,82
5701,500,"Turkey, dark meat from whole, meat and skin, with added solution, cooked, roasted","TURKEY,DK MEAT FROM WHL,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD",,,Y,Bone and Connective tissue 37%,37,,,,,,Poultry Products,25.55,10.81,0,199,0,0,17,1.08,25,213,232,206,3.15,30,52,16,0,0.052,0.321,6.893,0.415,1.64,0,0,110
5702,500,"Turkey from whole, light meat, meat and skin, with added solution, raw","TURKEY FROM WHL,LT MEAT,MEAT & SKN,W/ ADDED SOLN,RAW",,,,Bone and connective tissue 18%,18,,,,,,Poultry Products,20.02,7.42,0.14,147,0.06,0,14,0.54,22,214,220,195,1.22,20.6,64,11,0,0.03,0.137,8.832,0.675,0.67,0,,60
5703,500,"Turkey from whole, light meat, meat and skin, with added solution, cooked, roasted","TURKEY FROM WHL,LT MEAT,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD",,,Y,Bone and connective tissue 18%,18,,,,,,Poultry Products,26.52,5.64,0,157,0,0,14,0.6,30,254,250,237,1.5,29.3,35,14,0,0.036,0.211,11.336,0.659,1.69,0,0,76
5704,500,"Turkey, whole, meat only, with added solution, raw","TURKEY,WHL,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 34%, Skin and separable fat 13%",47,,,,,,Poultry Products,20.87,2.39,0.14,105,0.06,0,14,0.64,24,223,237,194,1.7,22.6,27,7,0,0.041,0.175,8.69,0.672,1.05,0,,61
5705,500,"Turkey, whole, meat only, with added solution, roasted","TURKEY,WHL,MEAT ONLY,W/ ADDED SOLN,RSTD",,,Y,"Bone and connective tissue 36%, Skin and separable fat 9%",45,,,,,,Poultry Products,26.61,3.7,0,140,0,0,14,0.77,27,235,239,223,2.28,30.7,14,10,0,0.045,0.261,9.721,0.589,1.68,0,0,84
5706,500,"Turkey, whole, meat and skin, with added solution, raw","TURKEY,WHL,MEAT & SKN,W/ ADDED SOLN,RAW",,,,Bone and connective tissue 34%,34,,,,,,Poultry Products,19.03,9.1,0.15,158,0.08,0,14,0.67,21,195,211,180,1.68,20.2,78,15,0,0.039,0.17,7.246,0.54,1.16,0,,70
5707,500,"Turkey, whole, meat and skin, with added solution, roasted","TURKEY,WHL,MEAT & SKN,W/ ADDED SOLN,RSTD",,,Y,Bone and connective tissue 36%,36,,,,,,Poultry Products,26.09,8.01,0,176,0,0,15,0.81,27,236,242,224,2.2,29.6,43,15,0,0.043,0.257,9.436,0.554,1.67,0,0,91
5708,500,"Turkey, retail parts, breast, meat only, with added solution, raw","TURKEY,RTL PARTS,BREAST,MEAT ONLY,W/ ADDED SOLN,RAW",,,Y,"Bone and connective tissue 15%, Skin and separable fat 10%",25,,,,,,Poultry Products,21.99,2.53,0,111,0,0,8,0.41,25,181,237,124,1.1,22.3,17,8,0,0.049,0.155,10,0.84,0.33,0,0,60
5709,500,"Turkey, retail parts, breast, meat only, with added solution, cooked, roasted","TURKEY,RTL PARTS,BREAST,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD",,,Y,"Bone and connective tissue 17%, Skin and separable fat 7%",24,,,,,,Poultry Products,27.94,2.08,0,130,0,0,15,0.59,27,219,264,184,1.33,28.9,8,6,0,0.045,0.195,11.5,0.734,0.3,0,0,74
5710,500,"Turkey, retail parts, breast, meat only, raw","TURKEY,RTL PARTS,BREAST,MEAT ONLY,RAW",,,,"Bone and connective tissue 14%, Skin and separable fat 11%",25,,,,,,Poultry Products,23.34,2.33,0,114,0,0,9,0.76,27,185,267,74,1.16,22.1,16,7,0,0.052,0.165,10.295,0.814,1.35,0,,53
5711,500,"Turkey, retail parts, breast, meat only, cooked, roasted","TURKEY,RTL PARTS,BREAST,MEAT ONLY,CKD,RSTD",,,Y,"Bone and connective tissue 12%, Skin and separable fat 8%",20,,,,,,Poultry Products,29.51,1.97,0,136,0,0,14,0.97,28,253,297,114,1.52,30.7,9,10,0,0.043,0.19,11.75,0.83,1.76,0,0,70
5712,500,"Turkey, retail parts, wing, meat only, raw","TURKEY,RTL PARTS,WING,MEAT ONLY,RAW",,,,"Bone and connective tissue 37%, Skin and separable fat 18%",55,,,,,,Poultry Products,22.48,2.49,0,112,0,0,6,0.6,19,147,222,69,2.61,21.6,17,7,0,0.038,0.127,6.377,0.705,0.92,0,,66
5713,500,"Turkey, retail parts, wing, meat only, cooked, roasted","TURKEY,RTL PARTS,WING,MEAT ONLY,CKD,RSTD",,,Y,"Bone and connective tissue 38%, Skin and separable fat 14%",52,,,,,,Poultry Products,30.17,5.51,0,170,0,0,12,0.82,21,180,207,103,3.24,30.6,25,28,0,0.039,0.18,8.47,0.654,1.25,0,0,97
5714,500,"Turkey, skin, from retail parts, from dark meat, raw","TURKEY,SKN,FROM RTL PARTS,FROM DK MEAT,RAW",,,,,0,,,,,,Poultry Products,14.35,35.83,0,380,0,0,4,0.76,7,80,93,78,0.88,11.2,263,30,0,0.026,0.08,2.745,0.114,1.95,0,,111
5715,500,"Turkey, skin, from retail parts, from dark meat, cooked, roasted","TURKEY,SKN,FROM RTL PARTS,FROM DK MEAT,CKD,RSTD",,,,,0,,,,,,Poultry Products,24.58,35.03,0,414,0,0,6,1.65,24,230,225,106,1.65,20.2,198,31,0,0.046,0.235,5.4,0.287,1.85,0,,139
5716,500,"Turkey, retail parts, drumstick, meat only, raw","TURKEY,RTL PARTS,DRUMSTK,MEAT ONLY,RAW",,,,"Bone and connective tissue 33%, Skin and separable fat 6%",39,,,,,,Poultry Products,20.52,3.97,0,118,0,0,10,1.18,22,158,220,87,3.12,21.2,68,17,0,0.051,0.3,5.003,0.361,1.9,0,,79
5717,500,"Turkey, retail parts, thigh, meat only, raw","TURKEY,RTL PARTS,THIGH,MEAT ONLY,RAW",,,,"Bone and connective tissue 19%, Skin and separable fat 13%",32,,,,,,Poultry Products,20.6,3.69,0,116,0,0,4,1.42,22,177,269,75,2.95,21.5,63,20,0,0.059,0.307,6.183,0.482,2.17,0,,78
5718,500,"Turkey, breast, from whole bird, meat only, with added solution, roasted","TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD",,,Y,"Bone and connective tissue 10%, skin and separable fat 6%",16,,,,,,Poultry Products,26.97,2.08,0,127,0,0,13,0.55,30,255,249,238,1.49,30.2,11,10,0,0.038,0.208,11.75,0.697,0.79,0,0,69
5719,500,"Turkey, back, from whole bird, meat only, with added solution, raw","TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 47%, Skin and separable fat 16%",63,,,,,,Poultry Products,19.27,4.12,0.15,115,0.1,0,15,0.9,21,191,226,167,2.68,22.4,43,13,0,0.06,0.247,5.745,0.425,2.05,0,,79
5720,500,"Turkey, back, from whole bird, meat only, with added solution, roasted","TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD",,,Y,"Bone and connective tissue 49%, skin and separable fat 12%",61,,,,,,Poultry Products,26.97,2.08,0,127,0,0,13,0.55,30,255,249,238,1.49,30.2,11,10,0,0.038,0.208,11.75,0.697,1.7,0,0,69
5721,500,"Turkey, breast, from whole bird, meat only, with added solution, raw","TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 10%, Skin and separable fat 11%",22,,6.25,,,,Poultry Products,21.54,1.66,0.14,102,0.05,0,14,0.54,25,236,242,206,1.3,22.7,20,5,0,0.033,0.145,9.924,0.775,0.63,0,,54
5722,500,"Turkey, retail parts, thigh, meat only, cooked, roasted","TURKEY,RTL PARTS,THIGH,MEAT ONLY,CKD,RSTD",,,Y,"Bone and connective tissue 14%, Skin and separable fat 9%",23,,,,,,Poultry Products,25.14,6.25,0.46,159,0,0,4,1.59,23,200,296,104,3.26,29.3,19,10,0,0.05,0.323,6.903,0.484,1.63,0,0,116
5723,500,"Turkey, retail parts, drumstick, meat only, cooked, roasted","TURKEY,RTL PARTS,DRUMSTK,MEAT ONLY,CKD,RSTD",,,Y,"Bone and connective tissue 29%, Skin and separable fat 7%",36,,,,,,Poultry Products,28.61,6.52,0,173,0,0,17,1.57,24,193,257,112,4.5,31,20,11,0,0.065,0.353,5.593,0.41,2.53,0,0,118
5724,500,"Turkey, drumstick, from whole bird, meat only, with added solution, raw","TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 30%, Skin and separable fat 8%",38,,,,,,Poultry Products,19.27,4.12,0.15,115,0.1,0,15,0.9,21,191,226,167,2.68,22.4,43,13,0,0.06,0.247,5.745,0.425,2.05,,,79
5725,500,"Turkey, drumstick, from whole bird, meat only, with added solution, roasted","TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD",,,Y,"Bone and connective tissue 34%, Skin and separable fat 6%",40,,,,,,Poultry Products,26.1,6,0,158,0,0,16,1.07,24,208,227,201,3.4,31.4,18,10,0,0.056,0.335,6.827,0.435,1.65,0,0,105
5726,500,"Turkey, thigh, from whole bird, meat only, with added solution, raw","TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 16%, Skin and separable fat 14%",30,,,,,,Poultry Products,19.27,4.12,0.15,115,0.1,0,15,0.9,21,191,226,167,2.68,22.4,43,13,0,0.06,0.247,5.745,0.425,2.05,0,,79
5727,500,"Turkey, retail parts, breast, meat and skin, with added solution, raw","TURKEY,RTL PARTS,BREAST,MEAT & SKN,W/ ADDED SOLN,RAW",,,Y,Bone and connective tissue 15%,15,,,,,,Poultry Products,20.79,6.75,0.03,144,0.01,0,9,0.43,23,171,221,126,1.07,20.8,50,13,0,0.045,0.148,9.171,0.756,0.4,0,0,64
5728,500,"Turkey, thigh, from whole bird, meat only, with added solution, roasted","TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD",,,Y,"Bone and connective tissue 16%, skin and separable fat 8%",24,,,,,,Poultry Products,26.1,6,0,158,0,0,16,1.07,24,208,227,201,3.4,31.4,18,10,0,0.056,0.335,6.827,0.435,1.65,0,0,105
5729,500,"Turkey, wing, from whole bird, meat only, with added solution, raw","TURKEY,WING,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW",,,,"Bone and connective tissue 36%, skin and separable fat 19%",55,,,,,,Poultry Products,21.54,1.66,0.14,102,0.05,0,14,0.54,25,236,242,206,1.3,22.7,20,5,0,0.033,0.145,9.924,0.775,0.63,0,,54
5730,500,"Turkey, wing, from whole bird, meat only, with added solution, roasted","TURKEY,WING,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD",,,Y,"Bone and connective tissue 47%, skin and separable fat 12%",59,,,,,,Poultry Products,26.97,2.08,0,127,0,0,13,0.55,30,255,249,238,1.49,30.2,11,10,0,0.038,0.208,11.75,0.697,1.7,0,0,69
5732,500,"Turkey, retail parts, breast, meat and skin, raw","TURKEY,RTL PARTS,BREAST,MEAT & SKN,RAW",,,Y,Bone and connective tissue 14%,14,,,,,,Poultry Products,21.88,7.45,0,155,0,0,9,0.77,24,176,247,72,1.15,20.4,54,12,0,0.048,0.157,9.4,0.724,1.28,0,0,63
5733,500,"Turkey, retail parts, breast, meat and skin, cooked, roasted","TURKEY,RTL PARTS,BREAST,MEAT & SKN,CKD,RSTD",,,Y,Bone and connective tissue 12%,12,,,,,,Poultry Products,29.01,5.33,0.05,164,0,0,15,1.03,29,251,292,114,1.57,29.8,32,14,0,0.042,0.199,11.614,0.789,1.75,0,0,79
5734,500,"Turkey, retail parts, wing, meat and skin, raw","TURKEY,RTL PARTS,WING,MEAT & SKN,RAW",,,,Bone and connective tissue 38%,38,,,,,,Poultry Products,19.53,13.79,0.05,202,0.03,0,8,0.68,17,139,192,67,2.14,18,100,19,0,0.033,0.121,5.61,0.538,0.91,0,0,84
5735,500,"Turkey, retail parts, wing, meat and skin, cooked, roasted","TURKEY,RTL PARTS,WING,MEAT & SKN,CKD,RSTD",,,Y,Bone and connective tissue 38%,38,,,,,,Poultry Products,28.74,13.29,0.13,235,0,0,14,1,24,192,215,106,2.99,28.4,80,34,0,0.037,0.205,8.876,0.59,1.36,0,0,115
5736,500,"Turkey, retail parts, drumstick, meat and skin, raw","TURKEY,RTL PARTS,DRUMSTK,MEAT & SKN,RAW",,,,Bone and connective tissue 33%,33,,,,,,Poultry Products,19.96,6.84,0,141,0,0,9,1.14,21,151,208,86,2.92,20.3,86,18,0,0.049,0.28,4.8,0.339,1.9,0,0,82
5737,500,"Turkey, retail parts, drumstick, meat and skin, cooked, roasted","TURKEY,RTL PARTS,DRUMSTK,MEAT & SKN,CKD,RSTD",,,Y,Bone and connective tissue 29%,29,,,,,,Poultry Products,28.21,9.37,0,197,0,0,16,1.58,24,196,254,112,4.22,29.9,38,13,0,0.063,0.341,5.574,0.398,2.46,0,0,120
5738,500,"Turkey, drumstick, from whole bird, meat only, raw","TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,RAW",,,,"Bone and connective tissue 38%, Skin and separable fat 6%",44,,,,,,Poultry Products,23.66,1.48,0.14,109,0.05,0,11,0.73,28,201,242,113,1.28,22.7,20,5,0,0.042,0.145,9.924,0.813,0.63,0,,57
5739,500,"Turkey, drumstick, from whole bird, meat only, roasted","TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,RSTD",,,Y,"Bone and connective tissue 37%, Skin and separable fat 5%",42,,,,,,Poultry Products,30.13,2.08,0,139,0,0,9,0.71,32,230,249,99,1.72,30.2,11,10,0,0.035,0.205,11.75,0.807,1.9,0,0,80
5740,500,"Turkey, thigh, from whole bird, meat only, raw","TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,RAW",,,,"Bone and connective tissue 20%, Skin and separable fat 10%",30,,,,,,Poultry Products,21.28,2.5,0.15,108,0.1,0,11,1.04,25,176,226,124,2.59,22.4,43,13,0,0.062,0.255,5.696,0.44,2.05,0,,79
5741,500,"Turkey, thigh, from whole bird, meat only, roasted","TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,RSTD",,,Y,"Bone and connective tissue 36%, Skin and separable fat 7%",43,,,,,,Poultry Products,27.71,6.04,0,165,0,0,17,1.43,27,212,227,104,3.51,31.4,18,10,0,0.06,0.375,6.685,0.438,1.65,0,0,128
5742,500,"Turkey, retail parts, thigh, meat and skin, raw","TURKEY,RTL PARTS,THIGH,MEAT & SKN,RAW",,,,Bone and connective tissue 19%,19,,,,,,Poultry Products,19.54,9.16,0,161,0,0,4,1.31,20,161,239,75,2.6,19.8,97,21,0,0.053,0.268,5.599,0.419,2.13,0,,83
5743,500,"Turkey, retail parts, thigh, meat and skin, cooked, roasted","TURKEY,RTL PARTS,THIGH,MEAT & SKN,CKD,RSTD",,,Y,Bone and connective tissue 14%,14,,,,,,Poultry Products,23.95,9.5,0.41,183,0,0,4,1.5,21,187,273,101,3,27.3,46,13,0,0.047,0.297,6.446,0.444,1.67,0,0,116
5744,500,"Turkey, back, from whole bird, meat and skin, with added solution, raw","TURKEY,BACK,FROM WHL BIRD,MEAT & SKN,W/ ADDED SOLN,RAW",,,,Bone and connective tissue 47%,47,,,,,,Poultry Products,16.86,15.41,0.15,206,0.1,0,14,0.78,17,159,185,157,2.04,18.1,126,24,0,0.045,0.194,4.887,0.333,1.65,0,,84
5745,500,"Turkey, back, from whole bird, meat and skin, with added solution, roasted","TURKEY,BACK,FROM WHL BIRD,MEAT & SKN,W/ ADDED SOLN,RSTD",,,Y,Bone and connective tissue 49%,49,,,,,,Poultry Products,25.8,11.36,0,205,0,0,15,0.68,29,252,252,237,1.52,28,72,21,0,0.034,0.215,10.669,0.598,1.68,0,0,87
5746,500,"Chicken, broiler or fryers, breast, skinless, boneless, meat only, cooked, braised","CHICkN,BROILR OR FRYRS,BRST,SKNLSS,BNLESS,MEAT ONLY,CKD,BRSD",,,,,0,,,,,,Poultry Products,32.06,3.24,0,157,0,0,6,0.49,32,241,343,47,0.96,31.9,33,1,0,0.098,0.187,9.45,0.921,0.2,4.3,,116
5747,500,"Chicken, broiler or fryers, breast, skinless, boneless, meat only, cooked, grilled","CHCKN,BROLR OR FRYRS,BRST,SKNLSS,BNLESS,MEAT ONLY,CKD,GRILLD",,,,,0,,,,,,Poultry Products,30.54,3.17,0,151,0,0,5,0.45,34,258,391,52,0.9,28.4,32,1,0,0.107,0.213,12.133,1.157,0.21,0,,104
5748,500,"Chicken, broiler or fryers, breast, skinless, boneless, meat only, with added solution, cooked, braised","CKN,BRLER OR FRYERS,BRST,SKNLS,BNLS,MT ONLY,W ADDED SLN,BRSD",,,,,0,,,,,,Poultry Products,28.24,3.61,0,145,0,0,5,0.43,28,217,313,172,0.8,40.2,31,1,0,0.075,0.167,9.173,0.962,0.17,,,99
5749,500,"Chicken, broiler or fryers, breast, skinless, boneless, meat only, with added solution, cooked, grilled","CKN,BRLER/FRYERS,BRST,SKNLS,BNLS,MT ONLY,W ADDED SLN,GRILLED",,,,,0,,,,,,Poultry Products,29.5,3.39,0,148,0,0,6,0.43,31,249,420,215,0.82,42.4,32,1,0,0.079,0.227,11.067,0.984,0.2,,,106
6001,600,"Soup, cream of asparagus, canned, condensed","SOUP,CRM OF ASPARAGUS,CND,COND",,,Y,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",1.82,3.26,8.52,69,0.72,0.4,23,0.64,3,31,138,669,0.7,1.9,441,0,2.2,0.043,0.062,0.62,0.01,0.04,22,0,4
6002,600,"Soup, black bean, canned, condensed","SOUP,BLACK BEAN,CND,COND",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",4.83,1.32,15.42,91,2.49,6.8,35,1.5,33,75,250,970,1.1,,445,,0.2,0.042,0.039,0.41,0.07,0,1.8,0,0
6003,600,"CAMPBELL'S Red and White, Beefy Mushroom Soup, condensed","CAMPBELL'S RED & WHITE,BEEFY MUSHROOM SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.59,4.76,40,0.79,0,0,0.29,,,48,706,,,,,0,,,,,,,,4
6004,600,"Soup, bean with pork, canned, condensed","SOUP,BEAN W/ PORK,CND,COND",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",5.88,4.42,16.97,129,3,5.9,60,1.53,33,98,375,672,0.77,6.4,662,0,1.2,0.065,0.025,0.421,0.031,0.03,2.4,0,2
6006,600,"Soup, bean with frankfurters, canned, condensed","SOUP,BEAN W/ FRANKFURTERS,CND,COND",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",7.6,5.31,16.75,142,,4.6,66,1.78,37,126,363,831,0.9,6.9,662,,0.7,0.083,0.049,0.78,0.1,0.06,,0,9
6007,600,"Soup, bean with ham, canned, chunky, ready-to-serve","SOUP,BEAN W/ HAM,CND,CHUNKY,RTS",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",5.19,3.5,11.16,95,,4.6,32,1.33,19,59,175,400,0.44,6.9,1626,,1.8,0.06,0.06,0.7,0.05,0.03,,0,9
6008,600,"Soup, beef broth or bouillon canned, ready-to-serve","SOUP,BF BROTH OR BOUILLON CND,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.14,0.22,0.04,7,0,0,6,0.17,2,13,54,372,0,0.7,0,0,0,0.002,0.021,0.78,0.01,0.07,0,0,0
6009,600,"Soup, beef noodle, canned, condensed","SOUP,BF NOODLE,CND,COND",,,Y,,0,,6.25,4.1,8.9,4.1,"Soups, Sauces, and Gravies",3.85,2.46,7.16,67,2.06,0.6,12,0.88,5,37,79,653,1.23,5.9,202,0,0.3,0.055,0.047,0.849,0.03,0.16,1.6,12,4
6010,600,"Soup, cream of celery, canned, condensed","SOUP,CRM OF CELERY,CND,COND",,,Y,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",1.32,4.46,7.03,72,1.35,0.6,32,0.5,5,30,98,516,0.12,1.8,282,0,0.2,0.023,0.039,0.265,0.01,0.04,17.2,0,11
6011,600,"Soup, cheese, canned, condensed","SOUP,CHS,CND,COND",,,Y,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",0.8,3.92,11.3,82,3.73,2.2,36,0.15,12,33,37,692,0.15,3.6,235,0,0.2,0.013,0.105,0.31,0.02,0,4.7,0,3
6013,600,"Soup, chicken broth, canned, condensed","SOUP,CHICK BROTH,CND,COND",,,Y,,0,,6.25,4.2,9,4,"Soups, Sauces, and Gravies",4.42,1.04,0.75,31,0.35,0,6,0.41,2,60,170,621,0.2,2.3,0,0,0,0.006,0.046,2.23,0.02,0.2,0,0,1
6014,600,"CAMPBELL'S Red and White, Broccoli Cheese Soup, condensed","CAMPBELL'S RED & WHITE,BROCCOLI CHS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,3.63,9.68,81,2.42,0,32,0,,,234,661,8.47,,806,,1,,,,,,,,4
6015,600,"Soup, chicken, canned, chunky, ready-to-serve","SOUP,CHICK,CND,CHUNKY,RTS",,,Y,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",5.06,2.64,6.88,71,0.87,0.6,10,0.69,3,45,70,354,0.4,2.5,511,0,0.5,0.034,0.069,1.76,0.02,0.1,2.5,0,12
6016,600,"Soup, cream of chicken, canned, condensed","SOUP,CRM OF CHICK,CND,COND",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",2.38,5.77,7.16,90,0.54,0,14,1.06,4,31,49,702,0.29,1.9,182,0,0.1,0.013,0.046,0.392,0,0,4.1,0,8
6017,600,"Soup, chicken gumbo, canned, condensed","SOUP,CHICK GUMBO,CND,COND",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",2.1,1.14,6.67,45,1.93,1.6,19,0.71,3,20,60,693,0.3,6.7,98,,4,0.2,0.3,0.53,0.05,0.02,5.7,0,3
6018,600,"Soup, chunky chicken noodle, canned, ready-to-serve","SOUP,CHUNKY CHICK NOODLE,CND,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",3.09,1.16,4.46,41,0.38,0.8,11,0.35,7,36,117,306,0.17,4.9,1224,0,0.4,0.018,0.02,1.196,0.05,0.08,1.7,3,5
6019,600,"Soup, chicken noodle, canned, condensed","SOUP,CHICK NOODLE,CND,COND",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",2.37,1.55,6.07,48,0,0.9,6,0.67,8,38,48,681,0.28,6.3,410,0,0,0.079,0.07,1.222,0.042,0.12,0,10,8
6022,600,"Soup, chicken rice, canned, chunky, ready-to-serve","SOUP,CHICK RICE,CND,CHUNKY,RTS",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",5.11,1.33,5.41,53,0.6,0.4,14,0.78,4,30,45,370,0.4,4.5,2418,0,1.6,0.01,0.041,1.71,0.02,0.13,7.2,0,5
6023,600,"Soup, chicken with rice, canned, condensed","SOUP,CHICK W/ RICE,CND,COND",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.84,1.56,11.57,68,0.23,0.9,41,0.25,10,42,34,645,0.18,4.1,498,0,0,0.014,0.02,0.918,0.02,0.13,0.3,0,4
6024,600,"Soup, chicken and vegetable, canned, ready-to-serve","SOUP,CHICK & VEG,CND,RTS",,,Y,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",1.97,0.73,4.68,33,1.01,0.9,14,0.25,8,35,133,229,0.22,3,1044,0,0,0.017,0.098,0.906,0.072,0.11,2.2,0,3
6025,600,"Soup, chicken vegetable, canned, condensed","SOUP,CHICK VEG,CND,COND",,,Y,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",2.94,2.32,7.01,61,1.26,0.7,14,0.71,5,33,126,706,0.3,4.5,2136,0,0.8,0.036,0.046,1.004,0.039,0.1,3.3,0,7
6026,600,"Soup, chili beef, canned, condensed","SOUP,CHILI BF,CND,COND",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",5.09,2.53,18.86,117,5.09,2.5,33,1.62,19,113,400,788,1.56,5,1149,,3.1,0.045,0.058,0.813,0.12,0.3,3.2,0,10
6027,600,"Soup, clam chowder, manhattan style, canned, chunky, ready-to-serve","SOUP,CLAM CHOWDER,MANHATTAN STYLE,CND,CHUNKY,RTS",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",3.02,1.41,7.84,56,1.67,1.2,28,1.1,8,35,160,417,0.7,6.7,1340,0,5.1,0.024,0.026,0.77,0.11,3.3,3.3,0,6
6028,600,"Soup, clam chowder, manhattan, canned, condensed","SOUP,CLAM CHOWDER,MANHATTAN,CND,COND",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",1.74,1.76,9.74,61,2.7,1.2,19,1.3,8,33,150,698,0.74,7.5,762,,3.2,0.024,0.032,0.65,0.08,3.23,5.5,0,2
6029,600,"CAMPBELL'S, HEALTHY REQUEST, chicken with rice, condensed","CAMPBELL'S,HEALTHY REQUEST,CHICK W/ RICE,COND",,Campbell Soup Co.,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.59,1.19,7.19,46,0.79,0.8,0,0,4,33,484,325,0.2,1.7,595,0,1,0.01,0.025,1.059,0.037,0.07,0.7,0,4
6030,600,"Soup, clam chowder, new england, canned, condensed","SOUP,CLAM CHOWDER,NEW ENGLAND,CND,COND",,,Y,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",3.17,2.06,10.32,72,0.38,0.7,16,2.48,13,260,221,516,0.37,6.3,58,0,4.1,0.125,0.165,1.55,0.104,9.47,0.8,0,6
6032,600,"Soup, beef broth bouillon and consomme, canned, condensed","SOUP,BF BROTH BOUILLON & CONSOMME,CND,COND",,,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",2.52,0,0.32,11,0,0,7,0.43,4,26,125,694,0.01,1.4,0,,0.7,0.017,0.023,0.58,0.02,0.14,0,0,0
6037,600,"Soup, lentil with ham, canned, ready-to-serve","SOUP,LENTIL W/HAM,CND,RTS",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",3.74,1.12,8.16,56,,,17,1.07,9,74,144,532,0.3,0.3,145,,1.7,0.07,0.045,0.545,0.09,0.12,,0,3
6038,600,"CAMPBELL'S, Cheddar Cheese Soup, condensed","CAMPBELL'S,CHEDDAR CHS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.8,3.92,11.44,84,3.73,2.2,36,0.15,12,33,37,692,0.15,,1024,,0.2,,,,,,,,3
6039,600,"Soup, minestrone, canned, chunky, ready-to-serve","SOUP,MINESTRONE,CND,CHUNKY,RTS",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",2.13,1.17,8.64,53,2.17,2.4,25,0.74,6,46,255,288,0.6,2.2,1783,0,2,0.023,0.049,0.491,0.1,0,3.2,9,2
6040,600,"Soup, minestrone, canned, condensed","SOUP,MINESTRONE,CND,COND",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",3.48,2.05,9.17,68,1.5,0.8,28,0.75,6,46,255,516,0.6,2.8,1708,0,0.9,0.044,0.036,0.77,0.08,0,7.8,16,1
6041,600,"CAMPBELL'S Red and White, Chicken and Dumplings Soup, condensed","CAMPBELL'S RED&WHITE,CHICK & DUMPLINGS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.98,7.94,56,0.79,0.8,0,0.29,,,,603,,,397,,0,,,,,,,,8
6042,600,"Soup, mushroom barley, canned, condensed","SOUP,MUSHROOM BARLEY,CND,COND",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",1.5,1.8,9.6,61,,,10,0.4,7,50,76,573,0.4,,158,,0,0.02,0.07,0.7,0.14,0,,0,0
6043,600,"Soup, cream of mushroom, canned, condensed","SOUP,CRM OF MUSHROOM,CND,COND",,,Y,,0,,6.25,3.9,8.8,4,"Soups, Sauces, and Gravies",1.35,5.3,6.8,79,0.4,0.7,12,0.18,3,24,64,691,0.11,2.9,8,9,0,0.012,0.016,0.345,0.015,0,19.6,0,0
6044,600,"Soup, mushroom with beef stock, canned, condensed","SOUP,MUSHROOM W/ BF STOCK,CND,COND",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",2.51,3.21,7.41,68,2.28,0.1,8,0.67,7,29,126,773,1.1,3.7,194,0,0.8,0.028,0.076,0.96,0.03,0,2.3,0,6
6045,600,"Soup, onion, canned, condensed","SOUP,ONION,CND,COND",,,Y,,0,,6.25,2.5,8.5,4,"Soups, Sauces, and Gravies",3.06,1.42,6.68,46,2.72,0.7,22,0.55,2,9,56,516,0.5,3.5,11,0,1,0.027,0.02,0.49,0.04,0,0.4,0,0
6046,600,"Soup, cream of onion, canned, condensed","SOUP,CRM OF ONION,CND,COND",,,Y,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",2.2,4.2,10.4,88,3.64,0.4,27,0.5,5,30,98,637,0.12,2.3,113,0,1,0.04,0.06,0.4,0.02,0.04,2.2,0,12
6047,600,"CAMPBELL'S Red and White, Chicken and Stars Soup, condensed","CAMPBELL'S RED & WHITE,CHICK & STARS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.59,8.73,56,0.79,0.8,0,0.29,,,444,381,,,397,,0,,,,,,,,4
6048,600,"Soup, oyster stew, canned, condensed","SOUP,OYSTER STEW,CND,COND",,,,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",1.72,3.13,3.32,48,,0,18,0.8,4,39,40,722,8.4,6.8,58,,2.6,0.017,0.029,0.19,0.01,1.79,,0,11
6049,600,"Soup, pea, green, canned, condensed","SOUP,PEA,GRN,CND,COND",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",6.54,2.23,20.18,125,6.52,3.9,21,1.48,30,95,145,680,1.3,7.4,25,0,1.3,0.082,0.052,0.943,0.04,0,0.4,0,0
6050,600,"Soup, pea, split with ham, canned, chunky, ready-to-serve","SOUP,PEA,SPLIT W/HAM,CND,CHUNKY,RTS",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",4.62,1.66,11.17,77,1.91,1.7,14,0.89,16,74,127,301,1.3,4.1,2030,0,2.9,0.048,0.039,1.05,0.09,0.1,7.5,0,3
6051,600,"Soup, pea, split with ham, canned, condensed","SOUP,PEA,SPLIT W/ HAM,CND,COND",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",7.68,3.28,20.81,141,,1.7,16,1.7,36,159,297,630,0.99,7.4,331,,1.1,0.11,0.056,1.098,0.05,0.2,,0,6
6053,600,"Soup, cream of potato, canned, condensed","SOUP,CRM OF POTATO,CND,COND",,,Y,,0,,6.25,3.9,8.8,4,"Soups, Sauces, and Gravies",1.51,1.88,12.79,74,1.44,1.3,17,0.34,13,41,165,604,0.15,1.9,68,0,0.2,0.028,0.029,0.43,0.03,0.04,1.1,0,1
6054,600,"CAMPBELL'S Red and White, Chicken Alphabet Soup, condensed","CAMPBELL'S RED & WHITE,CHICK ALPHABET SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.19,9.52,56,0.79,0.8,0,0.29,,,659,381,,,595,,1,,,,,,,,4
6056,600,"Soup, cream of shrimp, canned, condensed","SOUP,CRM OF SHRIMP,CND,COND",,,,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",2.22,4.14,6.53,72,,0.2,14,0.42,7,26,47,685,0.6,4.5,126,,0,0.015,0.022,0.34,0.03,0.47,,0,13
6057,600,"CAMPBELL'S Red and White, Chicken Broth, condensed","CAMPBELL'S RED&WHITE,CHICK BROTH,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.81,0.81,0.81,16,0.81,0,0,0,,,,621,,,0,,0,,,,,,,,4
6058,600,"CAMPBELL'S Red and White, Chicken Gumbo Soup, condensed","CAMPBELL'S RED & WHITE,CHICK GUMBO SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.59,0.79,7.94,48,1.59,0.8,16,0,,,,690,,,79,,0,,,,,,,,4
6061,600,"Soup, tomato beef with noodle, canned, condensed","SOUP,TOMATO BF W/ NOODLE,CND,COND",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",3.55,3.42,16.87,112,,1.2,14,0.89,6,45,176,731,0.6,4,425,,0,0.067,0.071,1.49,0.07,0.15,,9,3
6062,600,"CAMPBELL'S, Red and White, Chicken Noodle Soup, condensed","CAMPBELL'S,RED & WHITE,CHICK NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.37,1.53,5.97,47,0,,6,0.69,8,38,44,683,0.28,,,,,,,,,,,,8
6063,600,"Soup, tomato rice, canned, condensed","SOUP,TOMATO RICE,CND,COND",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",1.64,2.12,17.08,93,5.9,1.3,18,0.62,4,26,257,635,0.4,1.8,421,0,11.5,0.048,0.039,0.822,0.06,0,3,0,1
6064,600,"Soup, turkey, chunky, canned, ready-to-serve","SOUP,TURKEY,CHUNKY,CND,RTS",,,,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",4.33,1.87,5.96,57,,,21,0.81,10,44,153,391,0.9,,3032,,2.7,0.015,0.045,1.52,0.13,0.9,,0,4
6067,600,"Soup, chunky vegetable, canned, ready-to-serve","SOUP,CHUNKY VEG,CND,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.14,0.36,7.9,39,1.56,1.1,18,0.51,10,29,180,267,0.23,2.9,1049,0,0.7,0.029,0.043,0.542,0.065,0,8.1,0,0
6068,600,"Soup, vegetarian vegetable, canned, condensed","SOUP,VEGETARIAN VEG,CND,COND",,,Y,,0,,6.25,2.5,8.5,4,"Soups, Sauces, and Gravies",1.72,1.58,9.78,59,3.13,0.5,17,0.88,6,28,171,516,0.38,3.5,2842,0,1.2,0.044,0.037,0.747,0.045,0,4.2,0,0
6070,600,"Soup, chunky beef, canned, ready-to-serve","SOUP,CHUNKY BF,CND,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",3.97,1.11,10.08,66,0.67,0.6,13,0.97,2,50,140,338,1.1,2.5,1088,0,2.9,0.024,0.063,1.127,0.055,0.26,3.1,0,6
6071,600,"Soup, vegetable beef, canned, condensed","SOUP,VEG BF,CND,COND",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",4.45,1.51,8.11,63,0.89,1.6,13,0.89,5,32,138,706,1.23,2.2,3104,0,1.9,0.029,0.039,0.823,0.06,0.25,5.6,0,4
6072,600,"Soup, vegetable with beef broth, canned, condensed","SOUP,VEG W/ BF BROTH,CND,COND",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",2.42,1.56,10.7,66,1.64,1.3,14,0.79,5,32,157,515,0.65,2.2,1707,0,1.9,0.042,0.037,0.789,0.046,0,2.3,0,1
6075,600,"Soup, beef broth or bouillon, powder, dry","SOUP,BF BROTH OR BOUILLON,PDR,DRY",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",15.97,8.89,17.4,213,16.71,0,60,1,51,320,446,26000,0,27.6,0,0,0,0.07,0.243,4.467,0.2,1,3.2,0,10
6076,600,"Soup, beef broth, cubed, dry","SOUP,BEEF BROTH,CUBED,DRY",,,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",17.3,4,16.1,170,14.51,0,60,2.23,50,225,403,24000,0.21,27.6,1,0,0,0.2,0.24,3.3,0.2,1,0,0,4
6080,600,"Soup, chicken broth or bouillon, dry","SOUP,CHICK BROTH OR BOUILLON,DRY",,,Y,,0,,6.25,4.2,9,4,"Soups, Sauces, and Gravies",16.66,13.88,18.01,267,17.36,0,187,1.03,56,166,309,23875,0.09,28,2,0,1.1,0.1,0.43,2.46,0.1,0.3,0,0,13
6081,600,"Soup, chicken broth cubes, dry","SOUP,CHICK BROTH CUBES,DRY",,,,,0,,6.25,4.2,9,4,"Soups, Sauces, and Gravies",14.6,4.7,23.5,198,0,0,190,1.87,56,191,374,24000,0.2,27.9,2,,1,0.19,0.38,3.9,0.1,0.3,0,0,13
6082,600,"CAMPBELL'S Red and White, Chicken NOODLEO's Soup, condensed","CAMPBELL'S RED & WHITE,CHICK NOODLEO'S SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.98,11.9,71,1.59,0.8,,0.57,,,429,381,,,397,,0,,,,,,,,16
6084,600,"CAMPBELL'S Red and White, Chicken Vegetable Soup, condensed","CAMPBELL'S RED & WHITE,CHICK VEG SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,0.79,11.9,63,2.38,1.6,16,0.29,,,127,706,,,1984,,0,,,,,,,,4
6091,600,"CAMPBELL'S Red and White, Beef Broth, condensed","CAMPBELL'S RED & WHITE,BF BROTH,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.42,0,0.81,12,0.81,0,0,0,,,32,694,,,,,,,,,,,,,0
6094,600,"Soup, onion, dry, mix","SOUP,ONION,DRY,MIX",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",7.48,0.34,65.07,293,4.65,6.6,143,1.25,60,211,721,8031,1.12,5,15,0,3.4,0.279,0.274,1.472,0.582,0,1.4,0,0
6097,600,"CAMPBELL'S Red and White, Beef Consomme, condensed","CAMPBELLS RED & WHITE,BF CONSOMME,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.23,0,0.81,16,0.81,0,0,0,,,32,653,,,,,,,,,,,,,0
6101,600,"Soup, cream of vegetable, dry, powder","SOUP,CRM OF VEG,DRY,PDR",,,Y,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",8,24.1,52.1,446,17.51,3,134,2.6,48,228,408,4957,1.6,20.7,11996,0,16.6,5.18,0.45,2.2,0.1,0.5,32.9,0,2
6112,600,"Sauce, teriyaki, ready-to-serve","SAUCE,TERIYAKI,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",5.93,0.02,15.56,89,14.1,0.1,25,1.7,61,154,225,3833,0.1,1.1,0,0,0,0.03,0.07,1.27,0.1,0,0,0,0
6114,600,"Gravy, au jus, canned","GRAVY,AU JUS,CANNED",,,,,0,,6.25,3.5,9,3.9,"Soups, Sauces, and Gravies",1.2,0.2,2.5,16,,0,4,0.6,2,30,81,478,1,0.4,0,,1,0.02,0.06,0.9,0.01,0.1,,0,0
6115,600,"Gravy, au jus, dry","GRAVY,AU JUS,DRY",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",9.2,9.63,47.49,313,,,140,9.3,56,153,279,11588,0.7,6.2,10,,1,0.472,0.324,4.087,0.174,0.32,,0,4
6116,600,"Gravy, beef, canned, ready-to-serve","GRAVY,BF,CND,RTS",,,Y,,0,,6.25,3.5,9,3.9,"Soups, Sauces, and Gravies",3.75,2.36,4.81,53,0.21,0.4,6,0.7,2,30,81,560,1,1,3,0,0,0.032,0.036,0.66,0.01,0.1,0.1,0,3
6117,600,"CAMPBELL'S Red and White, Bean with Bacon Soup, condensed","CAMPBELL'S RED & WHITE,BEAN W/ BACON SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",6.25,2.34,19.53,125,3.13,6.3,47,1.41,,,375,672,,,391,,2.8,,,,,,,,4
6118,600,"Gravy, brown, dry","GRAVY,BROWN,DRY",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",10.74,9.61,59.38,367,,2,132,1.72,34,203,262,4843,1.11,6.1,27,,0.3,0.18,0.39,3.7,0.1,0.7,,17,3
6119,600,"Gravy, chicken, canned or bottled, ready-to-serve","GRVY, CHCKN, CNND BTTLD, RTS",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",0.71,2.62,5.29,48,0.3,0.1,10,0.09,3,20,42,389,0.08,0.4,3,0,0,0.024,0.053,0.285,0.025,0,0.6,0,5
6120,600,"Gravy, chicken, dry","GRAVY,CHICKEN,DRY",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",11.27,9.73,62.09,381,,,146,1.33,40,249,404,4152,1.39,5.2,308,,0.6,0.249,0.634,4.018,0.202,0.48,,16,19
6121,600,"Gravy, mushroom, canned","GRAVY,MUSHROOM,CANNED",,,,,0,,6.25,3.4,8.9,4,"Soups, Sauces, and Gravies",1.26,2.71,5.47,50,,0.4,7,0.66,2,15,106,570,0.7,1.9,0,,0,0.033,0.063,0.671,0.02,0,,0,0
6122,600,"Gravy, mushroom, dry, powder","GRAVY,MUSHROOM,DRY,PDR",,,Y,,0,,6.25,3.4,8.9,4,"Soups, Sauces, and Gravies",10,4,64.66,328,3.26,4.8,230,1,34,203,262,6580,1.54,5.3,1,0,7,0.2,0.4,3.7,0.1,0.7,0.2,17,3
6123,600,"Gravy, onion, dry, mix","GRAVY,ONION,DRY,MIX",,,,,0,,6.25,3.5,9,3.9,"Soups, Sauces, and Gravies",9,3,67.64,322,,6,280,1,34,203,262,4186,0.88,6.1,0,,7,0.2,0.4,3.7,0.1,0.7,,17,2
6124,600,"Gravy, pork, dry, powder","GRAVY,PORK,DRY,PDR",,,Y,,0,,,4,9,4,"Soups, Sauces, and Gravies",8.78,8.63,63.57,367,24.73,2.4,139,3.94,34,188,235,5356,1.06,6.1,117,0,1.4,0.16,0.283,2.27,0.086,0.51,0.4,15,10
6125,600,"Gravy, turkey, canned, ready-to-serve","GRAVY,TURKEY,CND,RTS",,,Y,,0,,6.25,3.4,8.9,4,"Soups, Sauces, and Gravies",2.6,2.1,5.1,51,0.21,0.4,4,0.7,2,29,109,577,0.8,0.6,0,0,0,0.02,0.08,1.3,0.01,0.1,0,0,2
6126,600,"Gravy, turkey, dry","GRAVY,TURKEY,DRY",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",10.42,7.19,65.12,367,,,146,3.29,44,254,428,4392,1.26,5.2,35,,0.2,0.211,0.45,2.77,0.204,0.58,,16,14
6127,600,"Gravy, unspecified type, dry","GRAVY,UNSPEC TYPE,DRY",,,,,0,,6.25,3.4,8.9,4,"Soups, Sauces, and Gravies",13,8,58,344,,,150,1,45,203,262,5730,1.4,6.1,0,,7,0.2,0.432,3.7,0.1,0.7,,17,4
6128,600,"Soup, chicken noodle, dry, mix","SOUP,CHICK NOODLE,DRY,MIX",,,Y,,0,,6.25,4.1,8.9,4.1,"Soups, Sauces, and Gravies",15.42,6.51,62.32,377,1.9,3.2,55,2.44,38,195,306,3643,1.65,32.4,44,0,0,0.575,0.381,4.88,0.236,0.75,0.1,62,74
6142,600,"Sauce, sofrito, prepared from recipe","SAUCE,SOFRITO,PREP FROM RECIPE",,,,,0,,,,,,"Soups, Sauces, and Gravies",12.8,18.2,5.46,237,,1.7,20,0.94,25,139,401,1145,1.41,,,,20.4,0.284,0.212,2.918,0.364,,,0,
6143,600,"USDA Commodity, spaghetti sauce, meatless, canned","USDA COMMODITY,SPAGHETTI SAU,MEATLESS,CND",,,,,0,,,,,,"Soups, Sauces, and Gravies",1.2,0.9,8.7,48,4.7,,20,0.9,13,25,292,590,0.21,,335,,3.9,0.03,0.12,0.73,0.06,0,,,0
6145,600,"CAMPBELL'S Red and White, Beef Noodle Soup, condensed","CAMPBELL'S RED & WHITE,BF NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.17,1.59,6.35,56,0.79,0.8,0,0.57,,,63,651,,,,,0,,,,,,,,8
6146,600,"CAMPBELL'S Red and White, Beef with Vegetables and Barley Soup, condensed","CAMPBELL'S RED & WHITE,BF W/ VEG & BARLEY SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.97,1.19,11.9,71,1.59,2.4,0,0.57,,,119,706,,,992,,0,,,,,,,,8
6147,600,"Soup, beef mushroom, canned, condensed","SOUP,BF MUSHROOM,CND,COND",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",4.6,2.4,5.2,61,,0.2,4,0.7,7,29,126,709,1.1,,0,,0,0.02,0.06,0.9,0.04,0.16,,0,5
6149,600,"Soup, chicken mushroom, canned, condensed","SOUP,CHICK MUSHROOM,CND,COND",,,Y,,0,,6.25,4,9,4.2,"Soups, Sauces, and Gravies",1.61,4.84,11.95,100,0.79,3.2,23,0.7,7,22,56,669,0.8,2.9,33,0,0,0.02,0.09,1.3,0.04,0.05,1.1,0,8
6150,600,"Sauce, barbecue","SAUCE,BARBECUE",,,Y,,0,,6.25,,,,"Soups, Sauces, and Gravies",0.82,0.63,40.77,172,33.24,0.9,33,0.64,13,20,232,1027,0.17,1.3,224,0,0.6,0.023,0.056,0.597,0.075,0,1.8,0,0
6151,600,"Sauce, plum, ready-to-serve","SAUCE,PLUM,READY-TO-SERVE",,,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",0.89,1.04,42.81,184,,0.7,12,1.43,12,22,259,538,0.19,0.4,43,,0.5,0.018,0.084,1.014,0.078,0,,0,0
6152,600,"Sauce, pizza, canned, ready-to-serve","SAUCE,PIZZA,CND,RTS",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",2.18,1.15,8.66,54,3.78,2,54,0.9,21,50,354,348,0.25,,667,,11.3,0.061,0.053,1.421,0.136,0.02,,,0
6158,600,"Soup, tomato bisque, canned, condensed","SOUP,TOMATO BISQUE,CND,COND",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",1.76,1.95,18.47,96,,0.8,31,0.64,7,47,325,698,0.46,,562,,4.6,0.051,0.055,0.894,0.07,0,,0,4
6159,600,"Soup, tomato, canned, condensed","SOUP,TOMATO,CND,COND",,,Y,,0,,6.25,2.8,8.7,3.8,"Soups, Sauces, and Gravies",1.46,0.44,15.22,66,8.23,1.1,13,0.59,14,31,562,377,0.18,3,392,0,12.9,0.042,0.015,0.858,0.086,0,3.2,0,0
6164,600,"Sauce, salsa, ready-to-serve","SAUCE,SALSA,RTS",,,Y,,0,,6.25,2.44,8.87,3.57,"Soups, Sauces, and Gravies",1.52,0.17,6.64,29,4.01,1.9,30,0.42,15,33,275,711,0.18,0.9,461,0,1.9,0.033,0.032,1.091,0.172,0,4.3,0,0
6165,600,"Sauce, homemade, white, thin","SAUCE,HOMEMADE,WHITE,THIN",,,Y,,0,,6.25,4.2,8.7,3.9,"Soups, Sauces, and Gravies",3.77,6.73,7.4,105,4.78,0.1,126,0.21,15,101,163,328,0.42,3.3,262,49,0.8,0.055,0.184,0.261,0.041,0.3,0.6,4,8
6166,600,"Sauce, homemade, white, medium","SAUCE,HOMEMADE,WHITE,MED",,,Y,,0,,6.25,4.2,8.7,3.9,"Soups, Sauces, and Gravies",3.84,10.63,9.17,147,4.38,0.2,118,0.33,14,98,156,354,0.41,4.1,377,48,0.8,0.069,0.185,0.402,0.04,0.28,0.9,3,7
6167,600,"Sauce, homemade, white, thick","SAUCE,HOMEMADE,WHITE,THICK",,,Y,,0,,6.25,4.2,8.7,3.9,"Soups, Sauces, and Gravies",3.99,13.83,11.61,186,3.98,0.3,111,0.5,14,96,149,373,0.4,5.2,469,47,0.7,0.088,0.19,0.589,0.038,0.26,1.2,5,6
6168,600,"Sauce, ready-to-serve, pepper or hot","SAUCE,RTS,PEPPER OR HOT",,,,,0,,6.25,2.44,8.37,3.57,"Soups, Sauces, and Gravies",0.51,0.37,1.75,11,1.26,0.3,8,0.48,5,11,144,2643,0.11,0,162,,74.8,0.036,0.082,0.254,0.157,0,2.4,0,0
6169,600,"Sauce, ready-to-serve, pepper, TABASCO","SAUCE,RTS,PEPPER,TABASCO",,,Y,,0,,6.25,2.44,8.37,3.57,"Soups, Sauces, and Gravies",1.29,0.76,0.8,12,0.13,0.6,12,1.16,12,23,128,633,0.16,0.5,1640,0,4.5,0.032,0.084,0.178,0.154,0,0.2,1,0
6170,600,"Soup, stock, beef, home-prepared","SOUP,STOCK,BEEF,HOME-PREPARED",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.97,0.09,1.2,13,0.54,0,8,0.27,7,31,185,198,0.17,1.2,0,0,0,0.033,0.091,0.872,0.055,0,0.1,0,0
6172,600,"Soup, stock, chicken, home-prepared","SOUP,STOCK,CHICK,HOME-PREPARED",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2.52,1.2,3.53,36,1.58,0,3,0.21,4,27,105,143,0.14,2.2,3,0,0.2,0.035,0.085,1.584,0.061,0,0.2,0,3
6174,600,"Soup, stock, fish, home-prepared","SOUP,STOCK,FISH,HOME-PREPARED",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",2.26,0.81,0,16,0,0,3,0.01,7,56,144,156,0.06,1,6,0,0.1,0.033,0.076,1.186,0.037,0.69,0,0,1
6175,600,"Sauce, hoisin, ready-to-serve","SAUCE,HOISIN,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",3.31,3.39,44.08,220,27.26,2.8,32,1.01,24,38,119,1615,0.32,1.8,6,0,0.4,0.004,0.217,1.17,0.062,0,0.5,0,3
6176,600,"Sauce, oyster, ready-to-serve","SAUCE,OYSTER,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.35,0.25,10.92,51,0,0.3,32,0.18,4,22,54,2733,0.09,4.4,0,0,0.1,0.01,0.124,1.474,0.016,0.41,0,0,0
6177,600,"Soup, minestrone, canned, reduced sodium, ready-to-serve","SOUP,MINESTRONE,CND,RED NA,RTS",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2,0.8,9,50,2.13,2.4,20,0.72,13,34,186,215,0.32,2.1,665,0,5.7,0.06,0.04,0.64,0.06,0,5.8,1,0
6178,600,"USDA Commodity, salsa","USDA COMMODITY,SALSA",,,,,0,,,,,,"Soups, Sauces, and Gravies",1.5,0.2,7,36,,1.4,12,2.24,16,30,270,430,0.17,0.4,550,,4,0.05,0.03,1.08,0.149,0,,0,0
6179,600,"Sauce, fish, ready-to-serve","SAUCE,FISH,READY-TO-SERVE",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",5.06,0.01,3.64,35,3.64,0,43,0.78,175,7,288,7851,0.2,9.1,12,0,0.5,0.012,0.057,2.313,0.396,0.48,0,0,0
6180,600,"Soup, shark fin, restaurant-prepared","SOUP,SHARK FIN,REST-PREP",,,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",3.2,2,3.8,46,,0,10,0.94,7,21,53,501,0.82,,0,,0.1,0.027,0.039,0.493,0.026,0.19,,0,2
6182,600,"Soup, cream of mushroom, canned, condensed, reduced sodium","SOUP,CRM OF MUSHROOM,CND,COND,RED NA",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.21,1.69,8.1,52,2.13,0.6,13,0.48,5,51,374,383,0.36,1.8,8,0,0,0.042,0.192,0.17,0.04,0.02,0.4,2,3
6183,600,"Soup, chicken broth, less/reduced sodium, ready to serve","SOUP,CHICK BROTH,LESS/REDUCED NA,READY TO SERVE",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.36,0,0.38,7,0.22,0,8,0.26,1,18,85,231,0.08,0,0,0,0.4,0.002,0.014,0.686,0.006,0.06,0,0,0
6188,600,"Soup, beef broth, less/reduced sodium, ready to serve","SOUP,BF BROTH,LESS/REDUCED NA,READY TO SERVE",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.14,0.07,0.2,6,0.2,0,3,0.04,1,9,20,225,0.24,0,0,0,0,0.016,0.073,0.41,0.075,0,0,0,0
6189,600,"Sauce, teriyaki, ready-to-serve, reduced sodium","SAUCE,TERIYAKI,RTS,RED NA",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",5.93,0.02,15.58,89,14.1,0.1,25,1.7,61,154,225,1778,0.1,0.8,1,0,0,0.03,0.07,1.27,0.1,0,0,0,0
6190,600,"Soup, bean & ham, canned, reduced sodium, prepared with water or ready-to-serve","SOUP,BEAN&HAM,CND,RED NA,PREP W/H2O OR RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",4.19,1.03,13.66,81,3.17,4,38,1.02,19,13,158,187,0.53,4.3,702,0,1.1,0.056,0.029,0.324,0.046,0.03,5.1,0,2
6192,600,"Split pea soup, canned, reduced sodium, prepared with water or ready-to serve","SPLIT PEA SOUP,CND,RED NA,PREP W/ H2O OR READY-TO SERVE",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",3.85,0.92,11.83,71,5.06,1.9,17,0.77,14,54,183,166,0.4,0.3,552,0,0,0.07,0.029,0.457,0.073,0.01,36.1,0,2
6193,600,"Split pea with ham soup, canned, reduced sodium, prepared with water or ready-to-serve","SPLIT PEA W/ HAM SOUP,CND,RED NA,PREP W/ H2O OR RTS",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",4,0.7,11.4,68,1.57,1.9,16,0.7,14,54,204,196,0.49,0.3,415,0,1,0.083,0.038,0.695,0.048,0.03,2.6,0,3
6194,600,"Soup, chicken broth, ready-to-serve","SOUP,CHICK BROTH,RTS",,,Y,,0,,,4,9,4,"Soups, Sauces, and Gravies",0.64,0.21,0.44,6,0.43,0,4,0.07,1,4,18,371,0.07,0.4,2,0,0,0.021,0.059,0.219,0,0.02,0,0,2
6195,600,"CAMPBELL'S, HEALTHY REQUEST, cream of chicken soup, condensed","CAMPBELL'S,HEALTHY REQUEST,CRM OF CHICK SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3,1.5,7.5,50,0.8,0.4,8,0.2,6,31,590,347,0.07,,571,,0.2,,,,,,,,4
6201,600,"Soup, cream of asparagus, canned, prepared with equal volume milk","SOUP,CRM OF ASPARAGUS,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",2.55,3.3,6.61,65,,0.3,70,0.35,8,62,145,420,0.37,,242,,1.6,0.041,0.111,0.355,0.026,0.2,,0,9
6208,600,"Soup, chicken vegetable with potato and cheese, chunky, ready-to-serve","SOUP,CHICK VEG W/POTATO&CHS,CHUNKY,RTS",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.16,4.46,5.2,65,0.64,0.3,15,0.16,5,19,73,416,0.16,3.7,375,0,4,0.015,0.017,0.346,0.042,0.02,2.3,0,7
6209,600,"CAMPBELL'S, 98% Fat Free Cream of Broccoli Soup, condensed","CAMPBELL'S,98% FAT FREE CRM OF BROCCOLI SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,1.61,8.06,56,0.81,1.6,16,0,,,,565,,,81,,0,,,,,,,,4
6210,600,"Soup, cream of celery, canned, prepared with equal volume milk","SOUP,CRM OF CELERY,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",2.29,3.91,5.86,66,,0.3,75,0.28,9,61,125,272,0.08,1.9,186,,0.6,0.03,0.1,0.176,0.026,0.2,,0,13
6211,600,"Soup, cheese, canned, prepared with equal volume milk","SOUP,CHS,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",3.77,5.8,6.47,92,,0.4,115,0.32,8,100,136,406,0.27,2.8,495,,0.5,0.025,0.133,0.2,0.031,0.17,,0,19
6212,600,"CAMPBELL'S, 25% Less Sodium Chicken Noodle Soup, condensed","CAMPBELL'S,25% LESS NA CHICK NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.9,1.29,6.3,49,0.6,0.8,12,0.6,9,35,66,446,0.2,,176,,0,,,,,,,,12
6213,600,"CAMPBELL'S Red and White, 25% Less Sodium Tomato Soup, condensed","CAMPBELL'S RED&WHITE,25% LESS NA TOMATO SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,0,16.13,73,9.68,0.8,0,0.29,,,290,387,,,403,,4.8,,,,,,,,
6214,600,"CAMPBELL'S, 25% Less Sodium Cream of Mushroom Soup, condensed","CAMPBELL'S,25% LESS NA CRM OF MUSHROOM SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,6.45,6.45,89,0.81,1.6,0,0,,,105,524,,,,,,,,,,,,,4
6215,600,"CAMPBELL'S, 98% Fat Free Broccoli Cheese Soup, condensed","CAMPBELL'S,98% FAT FREE BROCCOLI CHS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,1.21,9.68,56,2.42,0.8,32,0,,,573,387,8.47,,806,,0,,,,,,,,4
6216,600,"Soup, cream of chicken, canned, prepared with equal volume milk","SOUP,CRM OF CHICK,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",3.01,4.62,6.04,77,,0.1,73,0.27,7,61,110,362,0.27,,288,,0.5,0.03,0.104,0.372,0.027,0.22,,0,11
6217,600,"Soup, vegetable, canned, low sodium, condensed","SOUP,VEG,CND,LO NA,COND",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2.2,0.9,12.11,65,4.31,2.1,20,0.66,25,45,433,385,0.4,4,1721,0,0.8,0.109,0.092,1.54,0.167,0,4.2,1,0
6218,600,"CAMPBELL'S, 98% Fat Free Cream of Celery Soup, condensed","CAMPBELL'S,98% FAT FREE CRM OF CELERY SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.81,2.42,7.26,56,0.81,1.6,16,,,,484,387,,,81,,,,,,,,,,4
6219,600,"CAMPBELL'S, 98% Fat Free Cream of Chicken Soup, condensed","CAMPBELL'S,98% FAT FREE CRM OF CHICK SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.8,2.02,7.46,55,0.5,0.4,11,0.23,6,23,33,575,0.17,,415,,0.2,,,,,,,,4
6220,600,"PREGO Pasta, Chunky Garden Mushroom and Green Pepper Italian Sauce, ready-to-serve","PREGO PASTA,CHNKY GRD MSHRM & GRN PPPR ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,2.31,10,69,7.69,2.3,15,0.55,,,308,362,,,385,,2.8,,,,,,,,0
6221,600,"PREGO Pasta, Chunky Garden Mushroom Supreme Italian Sauce, ready-to-serve","PREGO PASTA,CHUNKY GARDEN MUSHROOM ITALIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,2.31,10,69,7.69,2.3,0,0.55,,,354,354,,,385,,1.8,,,,,,,,0
6222,600,"PREGO Pasta, Diced Onion and Garlic Italian Sauce, ready-to-serve","PREGO PASTA,DICED ONION & GARLIC ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,3.46,13.85,92,9.23,2.3,31,0.55,,,338,369,,,577,,0.9,,,,,,,,0
6223,600,"PREGO Pasta, Flavored with Meat Italian Sauce, ready-to-serve","PREGO PASTA,FLAV W/ MEAT ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,1.92,10,62,7.69,2.3,15,0.83,,,277,369,,,385,,1.8,,,,,,,,4
6224,600,"PREGO Pasta, Fresh Mushroom Italian Sauce, ready-to-serve","PREGO PASTA,FRSH MUSHROOM ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,1.15,10,54,8.46,2.3,15,0.55,,,269,369,,,385,,1.8,,,,,,,,0
6225,600,"PREGO Pasta, Garlic Supreme Italian Sauce, ready-to-serve","PREGO PASTA,GARLIC SUPREME ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,3.08,13.08,85,10,2.3,31,0.83,,,315,408,,,385,,0.9,,,,,,,,0
6226,600,"PREGO Pasta, Italian Sausage and Garlic Italian Sauce, ready-to-serve","PREGO PASTA,ITAL SAUSGE & GARLIC ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.4,2.4,10.4,72,8,2.4,16,0.58,,,312,384,,,400,,1,,,,,,,,4
6228,600,"PREGO Pasta, Mini Meatball Italian Sauce, ready-to-serve","PREGO PASTA,MINI MEATBALL ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.08,2.31,10,77,7.69,2.3,15,0.83,,,277,369,,,385,,1.8,,,,,,,,4
6229,600,"PREGO Pasta, Mushroom and Garlic Italian Sauce, ready-to-serve","PREGO PASTA,MUSHRM & GRLIC ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,1.92,10,62,7.69,2.3,15,0.55,,,331,362,,,385,,0.9,,,,,,,,0
6230,600,"Soup, clam chowder, new england, canned, prepared with equal volume low fat (2%) milk","SOUP,CLAM CHOWDER,NEW ENG,CND,PREP W/ EQ VLM LOFAT (2%) MILK",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",3.24,2.02,7.46,61,2.81,0.3,70,1.21,12,173,179,273,0.43,4.4,127,25,2.1,0.081,0.176,0.794,0.07,4.84,0.5,0,7
6231,600,"PREGO Pasta, Mushroom and Parmesan Italian Sauce, ready-to-serve","PREGO PASTA,MUSHRM & PARMESAN ITALIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.4,2.8,17.6,104,10.4,2.4,48,0.86,,,376,384,,,600,,1,,,,,,,,4
6232,600,"PREGO Pasta, Organic Mushroom Italian Sauce, ready-to-serve","PREGO PASTA,ORGANIC MUSHROOM ITALIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.6,2.4,10.4,72,7.2,3.2,16,0.58,,,360,376,,,600,,3.8,,,,,,,,0
6233,600,"PREGO Pasta, Organic Tomato and Basil Italian Sauce, ready-to-serve","PREGO PASTA,ORGNIC TOMATO & BASIL ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.6,2.4,10.4,72,7.2,3.2,32,0.58,,,320,376,,,600,,4.8,,,,,,,,0
6234,600,"PREGO Pasta, Heart Smart- Ricotta Parmesan Italian Sauce, ready-to-serve","PREGO PASTA,HEART SMRT- RICOTTA PMESAN ITLN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.4,2,10.4,72,8,2.4,48,0.58,,,328,288,,,400,,1.9,,,,,,,,4
6235,600,"P REGO Pasta, Roasted Garlic and Herb Italian Sauce, ready-to-serve","PREGO PASTA,RSTD GARLIC & HERB ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,2.31,10,69,6.92,2.3,15,0.55,,,308,354,,,577,,1.8,,,,,,,,0
6236,600,"PREGO Pasta, Roasted Garlic Parmesan Italian Sauce, ready-to-serve","PREGO PASTA,RSTD GARLIC PARMESAN ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.31,0.77,10,77,7.69,2.3,31,0.55,,,308,369,,,577,,0.9,,,,,,,,4
6237,600,"PREGO Pasta, Heart Smart- Roasted Red Pepper and Garlic Italian Sauce, ready-to-serve","PREGO PASTA,H ST- RSTD RED PR GRLIC ITLIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.6,1.2,10.4,56,7.2,2.4,16,0.58,,,328,288,,,800,,1.9,,,,,,,,0
6239,600,"PREGO Pasta, Tomato, Basil and Garlic Italian Sauce, ready-to-serve","PREGO PASTA,TOMATO,BASIL & GARLIC ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.6,2,9.6,64,7.2,2.4,16,0.58,,,320,336,,,400,,1,,,,,,,,0
6240,600,"PREGO Pasta, Zesty Mushroom Italian Sauce, ready-to-serve","PREGO PASTA,ZESTY MUSHROOM ITALIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,2.69,13.85,85,9.23,2.3,15,0.28,,,354,408,,,385,,0,,,,,,,,0
6241,600,"CAMPBELL'S CHUNKY Microwavable Bowls, Beef with Country Vegetables Soup, ready-to-serve","CAMPBELL'S,CHNKY MICRO BOWLS,BF W/ CONTRY VEG,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",4.08,1.22,8.57,61,1.22,2,8,0.29,,,,367,,,2041,,0.5,,,,,,,,8
6242,600,"CAMPBELL'S CHUNKY Microwavable Bowls, Chicken and Dumplings Soup, ready-to-serve","CAMPBELL'S CHUNKY MICROWAVABLE BWLS,CHCK DMPLINGS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,3.67,7.35,78,0.82,1.2,8,0,,,,363,,,1020,,0,,,,,,,,10
6243,600,"Soup, cream of mushroom, canned, prepared with equal volume low fat (2%) milk","SOUP,CRM OF MUSHROOM,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2.36,3.58,5.76,65,2.82,0.3,68,0.1,7,59,103,357,0.31,2.7,102,29,0.1,0.026,0.104,0.214,0.027,0.28,9.6,0,4
6244,600,"CAMPBELL'S CHUNKY Microwavable Bowls, Classic Chicken Noodle, ready-to-serve","CAMPBELL'S, CHNKY MICRO BOWLS,CLSSC CHIC NOODL,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,1.22,5.71,45,1.22,0.8,8,0,,,,322,,,1224,,0,,,,,,,,10
6245,600,"CAMPBELL'S CHUNKY Microwavable Bowls, Grilled Chicken and Sausage Gumbo, ready-to-serve","CAMPBELL'S, CHNKY MICRO BOWL,GRLLD CHIC&SAUS GMBO,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,1.63,7.35,57,2.04,0.4,16,0.15,,,,318,,,163,,0,,,,,,,,6
6246,600,"Soup, cream of onion, canned, prepared with equal volume milk","SOUP,CRM OF ONION,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",2.74,3.78,7.4,75,,0.3,72,0.28,9,62,125,405,0.25,,182,,1,0.039,0.11,0.244,0.03,0.2,,0,13
6248,600,"Soup, oyster stew, canned, prepared with equal volume milk","SOUP,OYSTER STEW,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",2.51,3.24,3.99,55,,0,68,0.43,8,66,96,425,4.22,,92,,1.8,0.027,0.095,0.137,0.026,1.07,,0,13
6249,600,"Soup, pea, green, canned, prepared with equal volume milk","SOUP,PEA,GRN,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",4.97,2.77,12.69,94,,1.1,68,0.79,22,94,148,352,0.69,,140,,1.1,0.061,0.105,0.528,0.041,0.17,,0,7
6250,600,"CAMPBELL'S CHUNKY Microwavable Bowls, New England Clam Chowder, ready-to-serve","CAMPBELL'S, CHNKY MICRO BOWL,NEW ENGL CLM CHOW,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,4.9,6.94,82,0.41,1.2,33,0.73,,,,355,,,0,,0,,,,,,,,4
6251,600,"CAMPBELL'S CHUNKY Microwavable Bowls, Old Fashioned Vegetable Beef Soup, ready-to-serve","CAMPBELL'S,CHUNKY MICRO BOWLS,OLD FASH VEG BF,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,0.61,5.71,41,1.63,1.2,16,0.44,,,,359,,,1224,,0,,,,,,,,4
6252,600,"CAMPBELL'S CHUNKY Microwavable Bowls, Sirloin Burger with Country Vegetables Soup, ready-to-serve","CAMPBELL'S,CHUNKY MICRO BOWLS,SIRL BRGER W/CNTRY VEG,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,1.43,7.35,57,1.63,1.2,8,0.44,,,,327,,,1020,,0,,,,,,,,6
6253,600,"Soup, cream of potato, canned, prepared with equal volume milk","SOUP,CRM OF POTATO,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,3.9,8.8,4,"Soups, Sauces, and Gravies",2.33,2.6,6.92,60,,0.2,67,0.22,7,65,130,230,0.27,,179,,0.5,0.033,0.095,0.259,0.036,0.2,,0,9
6256,600,"Soup, cream of shrimp, canned, prepared with equal volume low fat (2%) milk","SOUP,CRM OF SHRIMP,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK",,,Y,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",2.78,3.23,5.64,61,2.62,0.1,69,0.22,9,60,95,354,0.54,3.5,147,25,0.1,0.028,0.107,0.211,0.034,0.5,0.1,0,10
6264,600,"Sauce, white, thin, prepared-from-recipe, with butter","SAUCE,WHITE,THIN,PREPARED-FROM-RECIPE,W/ BUTTER",NFSMI Recipe No. G-08,,,,0,,,,,,"Soups, Sauces, and Gravies",3.95,2.56,8.29,72,5.29,0.1,131,0.22,12,110,167,184,0.47,4.7,286,,0,0.068,0.208,0.319,0.037,0.55,0.2,4,8
6285,600,"Sauce, sweet and sour, prepared-from-recipe","SAUCE,SWT & SOUR,PREPARED-FROM-RECIPE",NFSMI Recipe No. G-05,,,,0,,,,,,"Soups, Sauces, and Gravies",1.84,0.58,16.72,79,10.81,0.4,16,0.67,13,30,193,347,0.18,1.6,110,,5,0.042,0.063,1.178,0.087,0,1,0,1
6307,600,"Sauce, barbecue, KRAFT, original","SAUCE,BARBECUE,KRAFT,ORIGINAL",,"Kraft Foods, Inc.",,,0,,,,,,"Soups, Sauces, and Gravies",0.74,0.62,40.77,172,32.26,0.4,47,0.79,15,19,247,1242,0.16,,196,,0.2,0.023,0.05,0.52,0.083,,,,
6309,600,"CAMPBELL'S, Chicken with Rice Soup, condensed","CAMPBELL'S,CHICK W/ RICE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.84,1.64,11.28,68,0.23,0.9,41,0.25,10,42,34,645,0.18,,479,,0,,,,,,,,4
6311,600,"CAMPBELL'S Red and White, Chicken Won Ton Soup, condensed","CAMPBELL'S RED&WHITE,CHICK WON TON SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,0.79,6.35,40,0.79,0,0,0.29,,,56,690,,,79,,0,,,,,,,,4
6312,600,"CAMPBELL'S Red and White, Cream of Asparagus Soup, condensed","CAMPBELL'S RED & WHITE,CRM OF ASPARAGUS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,5.65,7.26,89,1.61,2.4,0,,,,56,669,,,161,,0,,,,,,,,4
6314,600,"Soup, HEALTHY CHOICE Chicken Noodle Soup, canned","SOUP,HEALTHY CHOIC CHICK NOODLE SOUP,CND",,"ConAgra, Inc.",,,0,,,,,,"Soups, Sauces, and Gravies",3.69,0.63,5.2,41,0.57,0.8,8,0,,,,195,,,568,,0,,,,,,,,5
6315,600,"Soup, HEALTHY CHOICE Chicken and Rice Soup, canned","SOUP,HEALTHY CHOIC CHICK & RICE SOUP,CND",,"ConAgra, Inc.",,,0,,,,,,"Soups, Sauces, and Gravies",2.53,0.55,5.71,37,0.37,0.8,15,0.09,,,,181,,,334,,1,,,,,,,,7
6316,600,"Soup, HEALTHY CHOICE Garden Vegetable Soup, canned","SOUP,HEALTHY CHOIC GARDEN VEG SOUP,CND",,"ConAgra, Inc.",,,0,,,,,,"Soups, Sauces, and Gravies",2.13,0.21,10.04,51,2.13,1.9,16,0,,,,195,,,618,,1,,,,,,,,1
6317,600,"Gravy, CAMPBELL'S, beef, fat free","GRAVY,CAMPBELL'S,BF,FAT FREE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0,5.08,25,,0,,,,,,508,,,,,,,,,,,,,0
6318,600,"Gravy, CAMPBELL'S, country style cream","GRAVY,CAMPBELL'S,COUNTRY STYLE CRM",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,5.08,5.08,76,1.69,0,0,0,,,,322,,,0,,0,,,,,,,,8
6319,600,"Gravy, CAMPBELL'S, country style sausage","GRAVY,CAMPBELL'S,COUNTRY STYLE SAUSAGE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.39,10.17,5.08,119,1.69,0,0,0,,,,458,,,0,,0,,,,,,,,17
6320,600,"Gravy, CAMPBELL'S, chicken, fat free","GRAVY,CAMPBELL'S,CHICK,FAT FREE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0,5.08,25,,,,,,,,525,,,169,,,,,,,,,,8
6321,600,"Gravy, CAMPBELL'S, golden pork","GRAVY,CAMPBELL'S,GOLDEN PORK",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,5.08,5.08,76,1.69,0,0,0,,,,525,,,0,,0,,,,,,,,8
6322,600,"Gravy, CAMPBELL'S, mushroom","GRAVY,CAMPBELL'S,MUSHROOM",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,1.69,5.08,34,1.69,,,,,,,475,,,,,,,,,,,,,8
6323,600,"Gravy, CAMPBELL'S, turkey, fat free","GRAVY,CAMPBELL'S,TURKEY,FAT FREE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.67,0,6.67,33,,,,,,,,483,,,,,,,,,,,,,8
6324,600,"Gravy, CAMPBELL'S, beef, microwavable","GRAVY,CAMPBELL'S,BF,MICROWAVABLE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,1.69,5.08,42,1.69,0,0,0,,,,475,,,0,,0,,,,,,,,0
6325,600,"Gravy, CAMPBELL'S, chicken, microwavable","GRAVY,CAMPBELL'S,CHICK,MICROWAVABLE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,5,5,67,1.67,0,0,0,,,,433,,,333,,0,,,,,,,,8
6326,600,"Gravy, CAMPBELL'S, turkey","GRAVY,CAMPBELL'S,TURKEY",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,1.69,5.08,42,1.69,0,0,0,,,,458,,,0,,0,,,,,,,,0
6327,600,"Gravy, FRANCO-AMERICAN, beef, slow roast, fat free","GRAVY,FRANCO-AMERICAN,BF,SLOW RST,FAT FREE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0,5.08,34,,,,,,,,508,,,,,,,,,,,,,8
6328,600,"Gravy, FRANCO-AMERICAN, chicken, slow roast, fat free","GRAVY,FRANCO-AMERICAN,CHICK,SLOW RST,FAT FREE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0,6.78,34,,,,,,,,424,,,169,,,,,,,,,,8
6329,600,"Gravy, FRANCO-AMERICAN, beef, slow roast","GRAVY,FRANCO-AMERICAN,BF,SLOW RST",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0.85,5.08,42,0,0,0,0,,,,525,,,0,,0,,,,,,,,8
6330,600,"Gravy, FRANCO-AMERICAN, chicken, slow roast","GRAVY,FRANCO-AMERICAN,CHICK,SLOW RST",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0.85,5.08,34,,,,,,,,407,,,169,,,,,,,,,,8
6331,600,"Gravy, FRANCO-AMERICAN, turkey, slow roast","GRAVY,FRANCO-AMERICAN,TURKEY,SLOW RST",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0.85,6.78,42,,,,,,,,542,,,,,,,,,,,,,8
6332,600,"Gravy, CAMPBELL'S, turkey, microwavable","GRAVY,CAMPBELL'S,TURKEY,MICROWAVABLE",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.67,1.67,5,42,1.67,0,0,0,,,,450,,,0,,0,,,,,,,,0
6333,600,"CAMPBELL'S Red and White, Cream of Broccoli Soup, condensed","CAMPBELL'S RED & WHITE,CRM OF BROCCOLI SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,4.03,9.68,73,2.42,0.8,16,0.29,,,77,605,,,242,,1,,,,,,,,4
6334,600,"CAMPBELL'S Red and White, Cream of Celery Soup, condensed","CAMPBELL'S RED & WHITE,CRM OF CELERY SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.81,4.84,7.26,73,0.81,2.4,16,0,,,460,516,,,242,,0,,,,,,,,4
6336,600,"CAMPBELL'S, Cream of Chicken Soup, condensed","CAMPBELL'S,CRM OF CHICK SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.76,7.98,6.03,103,0.33,4.1,13,0.27,4,28,49,624,0.14,,197,,0,,,,,,,,9
6337,600,"CAMPBELL'S, Cream of Chicken with Herbs Soup, condensed","CAMPBELL'S,CRM OF CHICK W/ HERBS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,3.23,7.26,65,0.81,0,0,,,,,645,,,403,,0,,,,,,,,8
6338,600,"CAMPBELL'S, Cream of Mushroom Soup, condensed","CAMPBELL'S,CRM OF MUSHROOM SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.29,5.5,6.59,81,0.4,0.6,8,0.16,3,19,67,697,0.11,2.9,8,9,0.5,0.01,0.017,0.363,0.018,,22.5,,0
6339,600,"CAMPBELL'S, Cream of Mushroom with Roasted Garlic Soup, condensed","CAMPBELL'S,CRM OF MUSHROOM W/ RSTD GARLIC SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,2.02,8.06,56,0.81,1.6,16,0,,,484,387,,,,,0,,,,,,,,4
6340,600,"CAMPBELL'S Red and White, Cream of Onion Soup, condensed","CAMPBELL'S RED & WHITE,CRM OF ONION SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.81,4.84,8.06,81,3.23,2.4,0,0,,,48,645,,,161,,0,,,,,,,,4
6341,600,"CAMPBELL'S, Cream of Potato Soup, condensed","CAMPBELL'S,CRM OF POTATO SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.51,1.35,13.25,71,1.44,1.3,17,0.34,13,41,165,604,0.15,,0,,0.2,,,,,,,,1
6342,600,"CAMPBELL'S Red and White, Cream of Shrimp Soup, condensed","CAMPBELL'S RED & WHITE,CRM OF SHRIMP SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.42,4.84,6.45,81,0,0,0,0,,,24,694,,,0,,0,,,,,,,,16
6343,600,"CAMPBELL'S Red and White, Creamy Chicken Noodle Soup, condensed","CAMPBELL'S RED&WHITE,CREAMY CHICK NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.23,5.65,8.87,97,0.81,3.2,16,0.29,,,56,702,,,806,,0,,,,,,,,12
6349,600,"CAMPBELL'S Red and White, SCOOBY-DOO Soup, condensed","CAMPBELL'S RED & WHITE,SCOOBY-DOO SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.59,8.73,56,0.79,0.8,16,0.57,,,40,627,,,397,,0,,,,,,,,4
6350,600,"CAMPBELL'S Red and White, DOUBLE NOODLE in Chicken Broth Soup, condensed","CAMPBELL'S RED & WHITE,DOUBLE NOODLE IN CHICK BROTH SOP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.59,15.87,87,0.79,0.8,0,0.57,,,667,381,,,397,,0,,,,,,,,8
6351,600,"CAMPBELL'S Red and White, Old Fashioned Tomato Rice Soup, condensed","CAMPBELL'S RED & WHITE,OLD FASHIONED TOMATO RICE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.79,1.59,18.25,87,7.94,0.8,0,0.29,,,119,611,,,397,,1.9,,,,,,,,0
6353,600,"CAMPBELL'S Red and White, Fiesta Nacho Cheese Soup, condensed","CAMPBELL'S RED & WHITE,FIESTA NACHO CHS SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.42,6.45,8.06,97,1.61,0.8,65,0,,,81,637,,,403,,0,,,,,,,,8
6354,600,"CAMPBELL'S Red and White, French Onion Soup, condensed","CAMPBELL'S RED & WHITE,FRENCH ONION SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.59,1.19,4.76,36,3.17,0.8,16,0,,,444,516,,,0,,0,,,,,,,,4
6355,600,"CAMPBELL'S Red and White, Golden Mushroom Soup, condensed","CAMPBELL'S RED & WHITE,GOLDEN MUSHROOM SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,2.82,8.06,65,0.81,0.8,0,,,,548,524,,,403,,0,,,,,,,,0
6357,600,"CAMPBELL'S Red and White, GOLDFISH Pasta with Chicken in Chicken Broth, condensed","CAMPBELL'S RED & WHITE,GOLDFISH PASTA W/ CHICK",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.59,9.52,63,0.79,0.8,,0.29,,,429,381,,,397,,0,,,,,,,,4
6358,600,"Soup, tomato bisque, canned, prepared with equal volume milk","SOUP,TOMATO BISQUE,CND,PREP W/ EQ VOLUME MILK",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",2.51,2.63,11.73,79,,0.2,74,0.35,10,69,241,442,0.25,,350,,2.8,0.045,0.107,0.499,0.056,0.17,,0,9
6359,600,"Soup, tomato, canned, prepared with equal volume low fat (2%) milk","SOUP,TOMATO,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK",,,Y,,0,,6.25,2.8,8.7,3.8,"Soups, Sauces, and Gravies",2.42,1.24,9.82,55,6.59,0.5,68,0.3,13,63,343,206,0.34,2.7,287,25,6.3,0.041,0.103,0.461,0.061,0.28,1.6,0,4
6361,600,"CAMPBELL'S Red and White, Green Pea Soup, condensed","CAMPBELL'S RED & WHITE,GRN PEA SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",7.03,2.34,21.88,141,4.69,3.1,16,1.13,,,305,680,,,156,,0,,,,,,,,0
6363,600,"CAMPBELL'S, Homestyle Chicken Noodle Soup, condensed","CAMPBELL'S,HOMESTYLE CHICK NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.36,1.28,7.53,51,1.11,0.8,11,0.38,8,43,22,739,0.15,,446,,0.1,,,,,,,,8
6364,600,"CAMPBELL'S Red and White, Manhattan Clam Chowder, condensed","CAMPBELL'S RED & WHITE,MANHATTAN CLAM CHOWDER,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.59,0.4,9.52,48,1.59,1.6,16,0.57,,,198,698,,,794,,1,,,,,,,,0
6365,600,"CAMPBELL'S Red and White, Mega Noodle in Chicken Broth, condensed","CAMPBELL'S RED & WHITE,MEGA NOODLE IN CHICK BROTH,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,1.59,11.9,71,0.79,0.8,0,0.57,,,437,381,,,595,,0,,,,,,,,12
6366,600,"CAMPBELL'S Red and White, Minestrone Soup, condensed","CAMPBELL'S RED & WHITE,MINESTRONE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.17,0.79,13.49,71,2.38,2.4,16,0.86,,,833,516,,,794,,0,,,,,,,,4
6367,600,"CAMPBELL'S Red and White, New England Clam Chowder, condensed","CAMPBELL'S RED & WHITE,NEW ENGLAND CLAM CHOWDER,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.17,1.98,10.32,71,0.79,0.8,16,0.57,,,516,516,,,,,0,,,,,,,,4
6373,600,"CAMPBELL'S Red and White, Vegetarian Vegetable Soup, condensed","CAMPBELL'S RED & WHITE,VEGETARIAN VEG SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,0.4,14.29,71,4.76,1.6,16,0.57,,,698,516,,,1984,,0,,,,,,,,0
6374,600,"CAMPBELL'S Red and White, Vegetable Soup, condensed","CAMPBELL'S RED & WHITE,VEG SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.17,0.4,16.67,79,5.56,2.4,16,0.57,,,579,516,,,2381,,,,,,,,,,4
6375,600,"CAMPBELL'S, Vegetable Beef Soup, condensed","CAMPBELL'S,VEG BF SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.79,0.26,11.8,65,1.7,2.1,13,0.6,5,20,169,656,0.64,,601,,1.2,,,,,,,,3
6377,600,"CAMPBELL'S, Tomato Soup, condensed","CAMPBELL'S,TOMATO SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.46,0.44,15.22,71,8.23,1.1,13,0.59,14,31,562,377,0.18,3,323,,4.8,0.042,0.015,0.858,,,,,0
6379,600,"CAMPBELL'S Red and White, Tomato Bisque, condensed","CAMPBELL'S RED & WHITE,TOMATO BISQUE,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.59,2.78,18.25,103,11.9,0.8,32,0.29,,,,698,,,238,,4.8,,,,,,,,4
6380,600,"CAMPBELL'S Red and White, Split Pea with Ham and Bacon Soup, condensed","CAMPBELL'S RED & WHITE,SPLIT PEA W/ HAM & BACON SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",7.81,1.56,23.44,141,3.13,3.1,16,1.13,,,352,664,,,234,,0,,,,,,,,4
6383,600,"CAMPBELL'S CHUNKY Soups, Baked Potato with Cheddar & Bacon Bits Soup","CAMPBELL'S CHUNKY SOUPS,BKD POTATO CHEDDAR BACON BITS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.04,3.67,9.39,78,1.25,0.8,16,0.29,,,,322,,,41,,0,,,,,,,,4
6384,600,"CAMPBELL'S CHUNKY Soups, Baked Potato with Steak & Cheese Soup","CAMPBELL'S CHUNKY SOUPS,BKD POTATO W/ STEAK & CHS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,4.08,8.57,82,1.22,1.2,8,0.59,,,,343,,,0,,0,,,,,,,,6
6387,600,"CAMPBELL'S CHUNKY Soups, Beef Rib Roast with Potatoes & Herbs Soup","CAMPBELL'S CHUNKY SOUPS,BF RIB RST POTATOES HERBS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,0.41,6.94,44,2.45,0.8,8,0.29,,,,363,,,918,,0.5,,,,,,,,4
6388,600,"CAMPBELL'S CHUNKY Soups, Beef with Country Vegetables Soup","CAMPBELL'S CHUNKY SOUPS,BF W/ COUNTRY VEG SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,1.22,7.35,53,1.63,1.2,8,0.59,,,,376,,,2449,,0,,,,,,,,6
6389,600,"CAMPBELL'S CHUNKY Soups, Beef with White and Wild Rice Soup","CAMPBELL'S CHUNKY SOUPS,BF W/ WHITE & WILD RICE SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,0.61,9.8,57,2.04,0.8,8,0.44,,,,363,,,1020,,0,,,,,,,,4
6391,600,"CAMPBELL'S CHUNKY, Creamy Chicken and Dumplings Soup","CAMPBELL'S CHUNKY,CREAMY CHICK & DUMPLINGS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.32,3.19,7.09,66,1.09,1.5,16,0.49,18,36,50,339,0.28,,716,,0,,,,,,,,12
6392,600,"CAMPBELL'S CHUNKY Soups, Chicken Broccoli Cheese & Potato Soup","CAMPBELL'S CHUNKY SOUPS,CHICK BROCCOLI CHS & POTATO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,4.49,8.16,86,2.45,1.2,8,0,,,,359,,,204,,0,,,,,,,,8
6393,600,"CAMPBELL'S CHUNKY Soups, Chicken Corn Chowder","CAMPBELL'S CHUNKY SOUPS,CHICK CORN CHOWDER",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,4.08,8.16,82,1.22,0.8,8,0.29,,,,351,,,816,,0,,,,,,,,6
6395,600,"CAMPBELL'S CHUNKY, Classic Chicken Noodle Soup","CAMPBELL'S CHUNKY,CLASSIC CHICK NOODLE SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.41,1.3,5.41,47,0.41,1,11,0.34,7,35,90,325,0.18,5.7,,,0,0.017,0.023,1.352,,,,,8
6396,600,"CAMPBELL'S CHUNKY Soups, Fajita Chicken with Rice & Beans Soup","CAMPBELL'S CHUNKY SOUPS,FAJITA CHICK W/ RICE & BNS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,0.61,9.39,53,2.86,0.8,8,0.44,,,,347,,,1224,,0,,,,,,,,6
6398,600,"CAMPBELL'S CHUNKY Soups, Firehouse - Hot & Spicy Beef & Bean Chili","CAMPBELL'S CHUNKY SOUPS,FIREHOUSE - HOT SPICY BF BEAN CHILI",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",6.12,3.27,10.2,95,2.86,2.4,16,0.73,,,,355,,,204,,0.5,,,,,,,,10
6399,600,"CAMPBELL'S CHUNKY Soups, Grilled Chicken & Sausage Gumbo Soup","CAMPBELL'S CHUNKY SOUPS,GRILLED CHICK SAUSAGE GUMBO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,1.22,8.57,57,1.63,0.8,8,0.15,,,,347,,,163,,0,,,,,,,,8
6400,600,"CAMPBELL'S CHUNKY Soups, Grilled Chicken with Vegetables & Pasta Soup","CAMPBELL'S CHUNKY SOUPS,GRILLED CHICK VEG & PASTA SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,1.02,5.71,41,0.82,0.8,8,0.15,,,,359,,,1224,,0,,,,,,,,6
6401,600,"Soup, cream of asparagus, canned, prepared with equal volume water","SOUP,CRM OF ASPARAGUS,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",0.94,1.68,4.38,35,,0.2,12,0.33,2,16,71,402,0.36,,182,,1.1,0.022,0.032,0.319,0.005,0.02,,0,2
6402,600,"Soup, black bean, canned, prepared with equal volume water","SOUP,BLACK BEAN,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2.42,0.66,7.71,46,1.24,3.4,19,0.75,17,38,125,487,0.55,0,222,0,0.1,0.021,0.02,0.205,0.035,0,0.9,0,0
6403,600,"CAMPBELL'S CHUNKY Soups, Grilled Sirloin Steak with Hearty Vegetables Soup","CAMPBELL'S CHUNKY SOUPS,GRILLED SIRLOIN STEAK HEARTY VEG SP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,0.82,7.76,51,1.63,1.6,8,0.44,,,,363,,,1224,,0.5,,,,,,,,4
6404,600,"Soup, bean with pork, canned, prepared with equal volume water","SOUP,BEAN W/ PORK,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",2.88,2.16,8.31,63,1.47,2.9,31,0.75,17,48,147,349,0.38,3.1,324,0,0.6,0.032,0.012,0.206,0.015,0.01,1.2,0,1
6405,600,"CAMPBELL'S CHUNKY, HEALTHY REQUEST Chicken Noodle Soup","CAMPBELL'S CHUNKY,HEALTHY REQUEST CHICK NOODLE SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.97,0.97,5.88,41,1.12,0.8,12,0.34,8,36,317,161,0.47,,491,,0.5,,,,,,,,8
6406,600,"Soup, bean with frankfurters, canned, prepared with equal volume water","SOUP,BEAN W/ FRANKFURTERS,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",3.99,2.79,8.8,75,,,35,0.94,19,66,191,437,0.47,3.4,348,,0.4,0.044,0.026,0.41,0.053,0.03,,0,5
6408,600,"CAMPBELL'S CHUNKY Soups, HEALTHY REQUEST Vegetable Soup","CAMPBELL'S CHUNKY SOUPS,HEALTHY REQUEST VEG SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.63,0.41,9.8,49,3.27,1.6,24,0.44,,,,167,,,1633,,0,,,,,,,,0
6409,600,"Soup, beef noodle, canned, prepared with equal volume water","SOUP,BF NOODLE,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,4.1,8.9,4.1,"Soups, Sauces, and Gravies",1.93,1.23,3.58,34,1.03,0.3,8,0.44,3,19,40,325,0.62,3,101,0,0.2,0.028,0.024,0.425,0.015,0.08,0.8,6,2
6410,600,"Soup, cream of celery, canned, prepared with equal volume water","SOUP,CRM OF CELERY,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",0.68,2.29,3.62,37,,0.3,16,0.26,3,15,50,254,0.06,0.9,126,,0.1,0.012,0.02,0.136,0.005,0.1,,0,6
6411,600,"Soup, cheese, canned, prepared with equal volume water","SOUP,CHS,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4.1,8.8,3.9,"Soups, Sauces, and Gravies",2.19,4.24,4.26,63,,0.4,57,0.3,2,55,62,388,0.26,1.8,440,,0,0.007,0.055,0.161,0.01,0,,0,12
6413,600,"Soup, chicken broth, canned, prepared with equal volume water","SOUP,CHICK BROTH,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,4.2,9,4,"Soups, Sauces, and Gravies",2.02,0.57,0.38,16,0.29,0,4,0.21,1,30,86,306,0.1,0,0,0,0,0.004,0.029,1.372,0.01,0.1,0,0,0
6414,600,"CAMPBELL'S CHUNKY Soups, Hearty Bean 'N' Ham Soup","CAMPBELL'S CHUNKY SOUPS,HEARTY BEAN 'N' HAM SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",4.49,0.82,12.24,74,2.04,3.3,24,0.73,,,,318,,,1020,,0,,,,,,,,4
6415,600,"CAMPBELL'S CHUNKY Soups, Hearty Beef Barley Soup","CAMPBELL'S CHUNKY SOUPS,HEARTY BF BARLEY SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.89,0.92,8.98,56,1.17,1,10,0.49,10,55,129,308,0.54,2.2,157,,0.8,0.027,0.085,1.047,0.094,0.17,,,4
6416,600,"Soup, cream of chicken, canned, prepared with equal volume water","SOUP,CRM OF CHICK,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",1.41,3.02,3.8,48,,0.1,14,0.25,1,15,36,347,0.26,,230,,0.1,0.012,0.025,0.336,0.007,0.04,,0,4
6417,600,"Soup, chicken gumbo, canned, prepared with equal volume water","SOUP,CHICK GUMBO,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",1.08,0.59,3.43,23,1.02,0.8,10,0.37,2,10,31,391,0.15,3.3,55,0,2,0.01,0.02,0.272,0.026,0.01,2.6,0,2
6418,600,"CAMPBELL'S CHUNKY Soups, Hearty Chicken with Vegetables Soup","CAMPBELL'S CHUNKY SOUPS,HEARTY CHICK W/ VEG SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,0.82,6.94,45,1.22,1.2,8,0,,,,290,,,1224,,0,,,,,,,,6
6419,600,"Soup, chicken noodle, canned, prepared with equal volume water","SOUP,CHICK NOODLE,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,4.1,8.9,4.1,"Soups, Sauces, and Gravies",1.16,0.76,2.97,24,0,0.5,5,0.33,4,18,24,335,0.14,3.1,201,0,0,0.039,0.034,0.598,0.021,0.06,0,5,4
6423,600,"Soup, chicken with rice, canned, prepared with equal volume water","SOUP,CHICK W/ RICE,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.45,0.78,2.92,24,0.08,0.3,9,0.31,0,9,41,238,0.11,2.1,170,0,0.1,0.007,0.01,0.459,0.01,0.07,0.1,0,3
6426,600,"Soup, chili beef, canned, prepared with equal volume water","SOUP,CHILI BF,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",2.49,1.24,9.23,57,2.49,1.2,18,0.79,10,55,196,388,0.77,2.4,563,0,1.5,0.022,0.028,0.398,0.059,0.15,1.6,0,5
6428,600,"Soup, clam chowder, manhattan, canned, prepared with equal volume water","SOUP,CLAM CHOWDER,MANHATTAN,CND,PREP W/EQ VOLUME H2O",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",0.85,0.86,4.77,30,1.32,0.6,11,0.64,4,16,74,226,0.36,3.7,373,0,1.6,0.012,0.016,0.318,0.039,1.58,2.7,0,1
6429,600,"CAMPBELL'S CHUNKY Soups, Manhattan Clam Chowder","CAMPBELL'S CHUNKY SOUPS,MANHATTAN CLAM CHOWDER",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.04,1.43,7.76,52,1.63,1.2,16,0.44,,,,339,,,1633,,0,,,,,,,,2
6430,600,"Soup, clam chowder, new england, canned, prepared with equal volume water","SOUP,CLAM CHOWDER,NEW ENGLAND,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.55,1.01,5.05,35,0.19,0.3,9,1.22,7,127,108,254,0.18,3.1,29,0,2,0.061,0.081,0.759,0.051,4.63,0.4,0,3
6431,600,"CAMPBELL'S CHUNKY, New England Clam Chowder","CAMPBELL'S CHUNKY,NEW ENGLAND CLAM CHOWDER",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.46,3.85,9.01,81,0,1.2,12,0.55,11,40,115,353,0.27,3,6,,0.4,0.015,0.015,0.47,,,,,4
6432,600,"Soup, beef broth, bouillon, consomme, prepared with equal volume water","SOUP,BF BROTH,BOUILLON,CONSOMME,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",2.22,0,0.73,12,,0,4,0.22,0,13,64,264,0.15,,0,,0.4,0.009,0.012,0.295,0.01,0,,0,0
6433,600,"CAMPBELL'S CHUNKY Soups, Old Fashioned Potato Ham Chowder","CAMPBELL'S CHUNKY SOUPS,OLD FASHIONED POTATO HAM CHOWDER",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,4.49,6.94,78,0.41,1.2,8,0.15,,,,327,,,0,,1,,,,,,,,8
6434,600,"CAMPBELL'S CHUNKY Soups, Old Fashioned Vegetable Beef Soup","CAMPBELL'S CHUNKY SOUPS,OLD FASHIONED VEG BF SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.16,1.23,6.24,49,1.15,1.3,17,0.54,10,48,163,346,0.59,3,2595,,0,0.015,0.016,1.002,,,,,6
6437,600,"CAMPBELL'S CHUNKY Soups, Roadhouse - Beef & Bean Chili","CAMPBELL'S CHUNKY SOUPS,ROADHOUSE - BF BEAN CHILI",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",6.12,3.27,10.2,95,2.86,2.4,16,0.73,,,,359,,,204,,0.5,,,,,,,,10
6438,600,"CAMPBELL'S CHUNKY Soups, Salisbury Steak with Mushrooms & Onions Soup","CAMPBELL'S CHUNKY SOUPS,SALISBURY STEAK MUSHRMS ONIONS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,1.84,7.76,57,2.45,0.8,8,0.44,,,,327,,,1020,,0,,,,,,,,6
6439,600,"CAMPBELL'S CHUNKY Soups, Savory Chicken with White & Wild Rice Soup","CAMPBELL'S CHUNKY SOUPS,SAVORY CHICK WHITE WILD RICE SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,0.82,7.35,45,0.41,0.8,8,0,,,,331,,,1020,,0,,,,,,,,4
6440,600,"Soup, minestrone, canned, prepared with equal volume water","SOUP,MINESTRONE,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",1.77,1.04,4.66,34,,0.4,14,0.38,3,23,130,254,0.31,,970,,0.5,0.022,0.018,0.391,0.041,0,,8,1
6441,600,"CAMPBELL'S CHUNKY Soups, Savory Pot Roast Soup","CAMPBELL'S CHUNKY SOUPS,SAVORY POT RST SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,0.41,8.16,49,1.63,0.8,8,0.29,,,,322,,,1429,,0.5,,,,,,,,4
6442,600,"Soup, mushroom barley, canned, prepared with equal volume water","SOUP,MUSHROOM BARLEY,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.6,8.9,4,"Soups, Sauces, and Gravies",0.77,0.93,4.8,30,,0.3,5,0.21,4,25,38,365,0.2,,81,,0,0.01,0.036,0.36,0.07,0,,0,0
6443,600,"Soup, cream of mushroom, canned, prepared with equal volume water","SOUP,CRM OF MUSHROOM,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.9,8.8,4,"Soups, Sauces, and Gravies",0.66,2.59,3.33,39,0.2,0.3,7,0.09,2,12,31,340,0.06,1.4,4,4,0,0.006,0.008,0.169,0.007,0,9.6,0,0
6444,600,"Soup, mushroom with beef stock, canned, prepared with equal volume water","SOUP,MUSHROOM W/ BF STOCK,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.29,1.65,3.81,35,,0.3,4,0.34,4,15,65,397,0.57,,514,,0.4,0.014,0.039,0.494,0.015,0,,0,3
6446,600,"Soup, cream of onion, canned, prepared with equal volume water","SOUP,CRM OF ONION,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",1.13,2.16,5.2,44,,0.4,14,0.26,2,15,49,380,0.06,,121,,0.5,0.021,0.031,0.206,0.01,0.02,,0,6
6447,600,"CAMPBELL'S CHUNKY Soups, Savory Vegetable Soup","CAMPBELL'S CHUNKY SOUPS,SAVORY VEG SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.22,0.41,8.98,44,2.45,1.6,16,0.29,,,,314,,,1633,,0,,,,,,,,0
6448,600,"Soup, oyster stew, canned, prepared with equal volume water","SOUP,OYSTER STEW,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",0.87,1.59,1.69,24,,,9,0.41,2,20,20,407,4.27,,29,,1.3,0.009,0.015,0.097,0.005,0.91,,0,6
6449,600,"Soup, pea, green, canned, prepared with equal volume water","SOUP,PEA,GRN,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",3.2,1.09,9.88,61,3.19,1.9,12,0.73,15,47,71,336,0.64,3.6,12,0,0.6,0.04,0.025,0.462,0.02,0,0.2,0,0
6451,600,"Soup, pea, split with ham, canned, prepared with equal volume water","SOUP,PEA,SPLIT W/ HAM,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",4.08,1.74,11.05,75,,0.9,9,0.9,19,84,158,398,0.52,,176,,0.6,0.058,0.03,0.583,0.027,0.1,,0,3
6453,600,"Soup, cream of potato, canned, prepared with equal volume water","SOUP,CRM OF POTATO,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.9,8.8,4,"Soups, Sauces, and Gravies",0.72,0.97,4.7,30,,0.2,8,0.2,1,19,56,238,0.26,,118,,0,0.014,0.015,0.221,0.015,0.02,,0,2
6454,600,"CAMPBELL'S CHUNKY Soups, Grilled Steak- Steak Chili with Beans","CAMPBELL'S CHUNKY SOUPS,GRILLED STEAK- STEAK CHILI W/ BNS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",6.53,1.22,11.02,81,3.67,2.9,16,0.73,,,,355,,,306,,0.5,,,,,,,,6
6456,600,"Soup, cream of shrimp, canned, prepared with equal volume water","SOUP,CRM OF SHRIMP,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",1.11,2.07,3.27,36,0.24,0.1,9,0.21,4,13,24,391,0.3,2.3,63,0,0,0.008,0.011,0.17,0.015,0.24,0,0,7
6457,600,"CAMPBELL'S CHUNKY Soups, Slow Roasted Beef with Mushrooms Soup","CAMPBELL'S CHUNKY SOUPS,SLOW RSTD BF W/ MUSHROOMS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,0.61,7.35,48,2.04,1.2,8,0.44,,,,339,,,1224,,0.5,,,,,,,,6
6459,600,"CAMPBELL'S CHUNKY Soups, Split Pea 'N' Ham Soup","CAMPBELL'S CHUNKY SOUPS,SPLIT PEA 'N' HAM SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",4.9,1.02,12.24,78,2.04,2,8,0.59,,,,318,,,1020,,1,,,,,,,,4
6461,600,"Soup, tomato beef with noodle, canned, prepared with equal volume water","SOUP,TOMATO BF W/ NOODLE,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",1.78,1.71,8.44,56,0.73,0.6,9,0.45,3,23,88,367,0.3,2,219,0,0,0.034,0.036,0.745,0.035,0.08,0,5,2
6462,600,"CAMPBELL'S CHUNKY Soups, Steak 'N' Potato Soup","CAMPBELL'S CHUNKY SOUPS,STEAK 'N' POTATO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.27,0.82,7.35,49,0.41,1.2,0,0.44,,,,376,,,0,,0,,,,,,,,6
6463,600,"Soup, tomato rice, canned, prepared with equal volume water","SOUP,TOMATO RICE,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.7,8.9,4,"Soups, Sauces, and Gravies",0.82,1.06,8.54,47,2.95,0.7,11,0.31,2,13,129,319,0.2,0.9,210,0,5.8,0.024,0.02,0.411,0.03,0,1.5,0,1
6465,600,"Soup, turkey noodle, canned, prepared with equal volume water","SOUP,TURKEY NOODLE,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4.1,8.9,4.1,"Soups, Sauces, and Gravies",1.6,0.82,3.54,28,,0.3,5,0.39,2,20,31,334,0.24,4.4,120,,0.1,0.03,0.026,0.572,0.015,0.06,,7,2
6466,600,"Soup, turkey vegetable, canned, prepared with equal volume water","SOUP,TURKEY VEG,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",1.28,1.26,3.58,30,,0.2,7,0.32,2,17,73,376,0.25,,1014,,0,0.012,0.016,0.417,0.02,0.07,,0,1
6468,600,"Soup, vegetarian vegetable, canned, prepared with equal volume water","SOUP,VEGETARIAN VEG,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,2.5,8.5,4,"Soups, Sauces, and Gravies",0.86,0.79,4.89,28,1.57,0.3,10,0.44,3,14,86,338,0.19,1.8,1421,0,0.6,0.022,0.019,0.374,0.023,0,2.1,0,0
6470,600,"CAMPBELL'S Low Sodium Soups, Chicken Broth","CAMPBELL'S LO NA SOUPS,CHICK BROTH",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.01,0.34,0.34,10,0.34,0,0,0,,,77,47,,,,,,,,,,,,,2
6471,600,"Soup, vegetable beef, canned, prepared with equal volume water","SOUP,VEG BF,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",2.23,0.76,4.06,31,0.45,0.8,8,0.45,3,16,69,349,0.62,1.1,1552,0,1,0.015,0.02,0.412,0.03,0.13,2.8,0,2
6472,600,"Soup, vegetable with beef broth, canned, prepared with equal volume water","SOUP,VEG W/ BF BROTH,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",1.21,0.78,5.35,33,0.82,0.7,9,0.4,3,16,79,253,0.33,1.1,853,0,1,0.021,0.019,0.395,0.023,0,1.2,0,1
6475,600,"Soup, beef broth or bouillon, powder, prepared with water","SOUP,BF BROTH OR BOUILLON,PDR,PREP W/H2O",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",0.21,0.08,0.25,3,0.2,0,4,0.02,2,3,6,382,0.01,0.3,0,0,0,0.002,0.003,0.049,0.003,0.01,0,0,0
6476,600,"Soup, beef broth, cubed, prepared with water","SOUP,BF BROTH,CUBED,PREP W/H2O",,,,,0,,6.25,4,8.9,4,"Soups, Sauces, and Gravies",0.21,0.08,0.25,3,0.2,0,4,0.02,2,3,6,260,0.01,0.3,0,0,0,0.002,0.003,0.049,0.003,0.01,0,0,0
6480,600,"Soup, chicken broth or bouillon, dry, prepared with water","SOUP,CHICK BROTH OR BOUILLON,DRY,PREP W/ H2O",,,Y,,0,,6.25,4.2,9,4,"Soups, Sauces, and Gravies",0.28,0.23,0.3,4,0.29,0,6,0.02,2,3,6,401,0.01,0.5,0,0,0,0.002,0.007,0.041,0.002,0,0,0,0
6481,600,"Soup, chicken broth cubes, dry, prepared with water","SOUP,CHICK BROTH CUBES,DRY,PREP W/ H2O",,,,,0,,6.25,4.2,9,4,"Soups, Sauces, and Gravies",0.39,0.12,0.62,5,,,5,0.05,1,5,10,326,0.01,,7,,0,0.005,0.01,0.103,0,0.01,,0,0
6482,600,"CAMPBELL'S Low Sodium Soups, Chicken with Noodles Soup","CAMPBELL'S LO NA SOUPS,CHICK W/ NOODLES SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.93,1.48,5.57,52,1.31,0.7,7,0.35,,,161,46,,,492,,0,,,,,,,,10
6483,600,"Soup, cream of chicken, dry, mix, prepared with water","SOUP,CRM OF CHICK,DRY,MIX,PREP W/ H2O",,,Y,,0,,6.25,4.3,8.9,3.9,"Soups, Sauces, and Gravies",0.68,2.04,5.11,41,1.59,0.1,29,0.1,2,37,82,454,0.6,3.1,156,0,0.2,0.04,0.078,1,0.02,0.1,5.6,0,1
6487,600,"CAMPBELL'S Low Sodium Soups, Cream of Mushroom Soup","CAMPBELL'S LO NA SOUPS,CRM OF MUSHROOM SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.01,2.68,6.38,54,2.01,0,13,,,,57,20,,,,,,,,,,,,,5
6494,600,"Soup, onion, dry, mix, prepared with water","SOUP,ONION,DRY,MIX,PREP W/ H2O",,,Y,,0,,6.25,2.5,8.5,4,"Soups, Sauces, and Gravies",0.32,0.01,2.77,12,0.2,0.3,9,0.05,4,9,31,346,0.05,0.2,1,0,0.1,0.012,0.012,0.063,0.025,0,0.1,0,0
6497,600,"CAMPBELL'S Red and White - Microwaveable Bowls, Chicken Noodle Soup","CAMPBELL'S RED & WHITE - MCRWVEABLE BOWLS,CHICK NOODLE SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.63,0.82,4.08,30,0,0.4,0,0.29,,,,355,,,204,,0,,,,,,,,6
6498,600,"Soup, tomato, dry, mix, prepared with water","SOUP,TOMATO,DRY,MIX,PREP W/ H2O",,,Y,,0,,6.25,2.8,8.7,3.8,"Soups, Sauces, and Gravies",0.93,0.61,7.17,38,3.9,0.4,29,0.18,10,33,111,356,0.13,1.1,314,0,2,0.105,0.175,0.926,0.058,0.06,0.8,0,2
6502,600,"CAMPBELL'S Red and White - Microwaveable Bowls, Chicken Rice Soup","CAMPBELL'S RED & WHITE - MICROWAVEABLE BOWLS,CHICK RICE SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.82,0.41,5.71,30,0.41,0.4,8,0.29,,,,327,,,204,,0,,,,,,,,2
6503,600,"CAMPBELL'S Red and White - Microwaveable Bowls, Creamy Tomato Soup","CAMPBELL'S RED & WHITE - MCRWVEABLE BOWLS,CREAMY TOMATO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.22,2.04,10.2,64,6.53,1.2,16,0.15,,,,306,,,204,,2.4,,,,,,,,2
6504,600,"CAMPBELL'S Red and White - Microwaveable Bowls, Tomato Soup","CAMPBELL'S RED & WHITE - MICROWAVEABLE BOWLS,TOMATO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.22,0,9.8,44,7.35,1.2,8,0.15,,,,322,,,163,,2.4,,,,,,,,0
6505,600,"CAMPBELL'S Red and White - Microwaveable Bowls, Vegetable Beef Soup","CAMPBELL'S RED & WHITE - MICROWAVEABLE BOWLS,VEG BF SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.04,0.2,6.12,34,0.82,1.2,0,0.15,,,,359,,,408,,0,,,,,,,,4
6509,600,CAMPBELL'S Homestyle Butternut Squash Bisque,CAMPBELL'S HOMESTYLE BUTTERNUT SQUASH BISQUE,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.41,1.22,7.76,45,4.9,0.4,8,0.15,,,,265,,,204,,0,,,,,,,,4
6528,600,"Soup, chicken noodle, dry, mix, prepared with water","SOUP,CHICK NOODLE,DRY,MIX,PREP W/ H2O",,,Y,,0,,6.25,4.1,8.9,4.1,"Soups, Sauces, and Gravies",0.84,0.55,3.67,23,0.31,0.1,2,0.2,3,12,13,229,0.08,3.8,11,0,0,0.081,0.03,0.431,0.01,0.02,1.4,6,4
6529,600,CAMPBELL'S Homestyle Light New England Clam Chowder,CAMPBELL'S HOMESTYLE LT NEW ENGLAND CLAM CHOWDER,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,1.63,6.12,49,0.41,0.8,8,0.59,,,,322,,,0,,0,,,,,,,,4
6537,600,CAMPBELL'S Homestyle HEALTHY REQUEST Mexican Style Chicken Tortilla,CAMPBELL'S HOMESTYLE HR MEXICAN STYLE CHICK TORTILLA,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,1.02,7.76,53,1.22,1.2,16,0.44,,,216,167,,,122,,0.5,,,,,,,,4
6541,600,CAMPBELL'S Homestyle Italian-Style Wedding Soup,CAMPBELL'S HOMESTYLE ITALIAN-STYLE WEDDING SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,1.43,6.12,49,1.22,0.8,16,0.44,,,,322,,,204,,0,,,,,,,,6
6543,600,CAMPBELL'S Homestyle Mexican Style Chicken Tortilla Soup,CAMPBELL'S HOMESTYLE MEXICAN STYLE CHICK TORTILLA SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.86,0.82,8.16,53,1.63,1.2,8,0.15,,,,347,,,82,,0,,,,,,,,4
6544,600,CAMPBELL'S Homestyle Minestrone Soup,CAMPBELL'S HOMESTYLE MINESTRONE SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.63,0.41,7.35,41,2.45,1.6,16,0.44,,,,322,,,612,,0,,,,,,,,0
6545,600,CAMPBELL'S Homestyle New England Clam Chowder,CAMPBELL'S HOMESTYLE NEW ENGLAND CLAM CHOWDER,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.33,4.23,5.68,70,0,0.8,14,0.56,13,31,337,363,0.27,4.3,0,,0,0.015,0.015,0.422,,,,,4
6546,600,CAMPBELL'S Homestyle Potato Broccoli Cheese Soup,CAMPBELL'S HOMESTYLE POTATO BROCCOLI CHS SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.22,3.67,6.94,65,1.22,1.2,16,0.29,,,,265,,,41,,1,,,,,,,,2
6547,600,"Soup, beef mushroom, canned, prepared with equal volume water","SOUP,BF MUSHROOM,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.8,9,4,"Soups, Sauces, and Gravies",2.37,1.23,2.6,30,,0.1,2,0.36,4,14,63,386,0.6,,0,,1.9,0.016,0.023,0.391,0.02,0.08,,0,3
6548,600,CAMPBELL'S Homestyle Chicken with White & Wild Rice Soup,CAMPBELL'S HOMESTYLE CHICK W/ WHITE & WILD RICE SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,0.41,6.94,41,1.22,0.4,8,0.15,,,,322,,,408,,0,,,,,,,,4
6549,600,"Soup, chicken mushroom, canned, prepared with equal volume water","SOUP,CHICK MUSHROOM,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,4,9,4.2,"Soups, Sauces, and Gravies",1.8,3.75,3.8,54,,0.1,12,0.36,4,11,63,327,0.4,,465,,0,0.01,0.046,0.668,0.02,0.02,,0,4
6558,600,"Soup, tomato bisque, canned, prepared with equal volume water","SOUP,TOMATO BISQUE,CND,PREP W/ EQ VOLUME H2O",,,,,0,,6.25,3.9,8.8,3.9,"Soups, Sauces, and Gravies",0.92,1.02,9.6,50,,0.2,16,0.33,4,24,169,424,0.24,,292,,2.4,0.027,0.029,0.465,0.036,0,,0,2
6559,600,"Soup, tomato, canned, prepared with equal volume water, commercial","SOUP,TOMATO,CND,PREP W/EQ VOLUME H2O,COMM",,,Y,,0,,6.25,2.8,8.7,3.8,"Soups, Sauces, and Gravies",0.71,0.21,7.45,32,4.03,0.5,8,0.29,7,15,275,186,0.09,1.5,192,0,6.3,0.02,0.007,0.42,0.042,0,1.5,0,0
6580,600,CAMPBELL'S Homestyle Vegetable Medley Soup,CAMPBELL'S HOMESTYLE VEG MEDLEY SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.22,0.2,7.35,37,3.27,1.2,16,0.29,,,,322,,,816,,0,,,,,,,,0
6583,600,"Soup, ramen noodle, any flavor, dry","SOUP,RAMEN NOODLE,ANY FLAVOR,DRY",,,Y,,0,,,4,9,4,"Soups, Sauces, and Gravies",10.17,17.59,60.26,440,1.98,2.9,21,4.11,25,115,181,1855,0.6,23.1,12,0,0.3,0.448,0.255,5.401,0.038,0.25,8.9,70,0
6584,600,"Soup, broccoli cheese, canned, condensed, commercial","SOUP,BROCCOLI CHS,CND,COND,COMM",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2.1,5.3,7.7,87,2.12,1.8,41,0.3,13,42,207,661,0.26,1.5,825,0,2,0.02,0.04,0.248,0.064,0.02,51.8,0,4
6585,600,"CAMPBELL'S Soup on the Go, Vegetable with Mini Round Noodles Soup","CAMPBELL'S SOUP ON THE GO,VEG W/ MINI RND NOODLES SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.66,0.16,6.89,33,4.59,0.3,7,0.24,,,308,213,,,246,,0.4,,,,,,,,2
6586,600,"CAMPBELL'S Soup on the Go, Chicken & Stars Soup","CAMPBELL'S SOUP ON THE GO,CHICK & STARS SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.98,0.49,3.28,23,0.33,0.3,7,0.12,,,,315,,,164,,1.2,,,,,,,,2
6587,600,"CAMPBELL'S Soup on the Go, Chicken with Mini Noodles Soup","CAMPBELL'S SOUP ON THE GO,CHICK W/ MINI NOODLES SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.31,0.66,3.61,26,0.66,0.7,0,0,,,,321,,,492,,0.8,,,,,,,,3
6588,600,"CAMPBELL'S Soup on the Go, Classic Tomato Soup","CAMPBELL'S SOUP ON THE GO,CLASSIC TOMATO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.98,0.16,10.16,46,6.56,0.7,0,0.12,,,,210,,,164,,11.8,,,,,,,,0
6589,600,"CAMPBELL'S Soup on the Go, Creamy Broccoli Soup","CAMPBELL'S SOUP ON THE GO,CREAMY BROCCOLI SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.66,3.61,4.26,52,1.31,1,13,0.12,,,,289,,,33,,0,,,,,,,,2
6590,600,"CAMPBELL'S Soup on the Go, Creamy Chicken Soup","CAMPBELL'S SOUP ON THE GO,CREAMY CHICK SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.98,2.95,3.28,43,0.33,0.7,0,0,,,,289,,,98,,0,,,,,,,,2
6592,600,"CAMPBELL'S Soup on the Go, Creamy Tomato Soup","CAMPBELL'S SOUP ON THE GO,CREAMY TOMATO SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.98,1.64,9.84,59,7.21,0.7,13,0.12,,,295,213,,,164,,9.8,,,,,,,,2
6594,600,"CAMPBELL'S Soup on the Go, New England Clam Chowder","CAMPBELL'S SOUP ON THE GO,NEW ENGLAND CLAM CHOWDER",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.66,3.61,4.26,52,0.66,1,7,0.24,,,,292,,,0,,0,,,,,,,,2
6595,600,"CAMPBELL'S Soup on the Go, Vegetable Beef Soup","CAMPBELL'S SOUP ON THE GO,VEG BF SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.98,0.33,3.28,20,1.64,0.3,7,0.12,,,,305,,,131,,0,,,,,,,,2
6596,600,"CAMPBELL'S Soup on the Go, Cheesy Potato with Bacon Flavor Soup","CAMPBELL'S SOUP ON THE GO,CHEESY POTATO W/ BACON FLAVOR SOUP",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.66,1.97,5.25,43,1.31,0.3,7,0.12,,,,292,,,0,,0,,,,,,,,3
6597,600,"PACE, Chipotle Chunky Salsa","PACE,CHIPOTLE CHUNKY SALSA",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,6.25,25,6.25,3.1,0,0,,,,719,,,625,,0,,,,,,,,0
6598,600,"PACE, Cilantro Chunky Salsa","PACE,CILANTRO CHUNKY SALSA",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,6.25,25,6.25,3.1,0,0,,,,844,,,313,,0,,,,,,,,0
6599,600,"PACE, Enchilada Sauce","PACE,ENCHILADA SAU",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.67,0,8.33,40,6.67,1.7,,0.6,,,,867,,,667,,2,,,,,,,,0
6600,600,"PACE, Green Taco Sauce","PACE,GRN TACO SAU",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,6.25,25,6.25,,,,,,,625,,,,,,,,,,,,,0
6601,600,"PACE, Lime & Garlic Chunky Salsa","PACE,LIME & GARLIC CHUNKY SALSA",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,9.38,38,6.25,3.1,0,0,,,,656,,,625,,5.6,,,,,,,,0
6602,600,"PACE, Organic Picante Sauce","PACE,ORGANIC PICANTE SAU",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,6.25,25,6.25,3.1,,,,,,688,,,625,,,,,,,,,,0
6603,600,"PACE, Picante Sauce","PACE,PICANTE SAU",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,6.25,25,6.25,3.1,,,,,,781,,,313,,,,,,,,,,0
6604,600,"PACE, Red Taco Sauce","PACE,RED TACO SAU",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,12.5,50,6.25,0,0,0,,,,813,,,625,,0,,,,,,,,0
6605,600,"PACE, Thick & Chunky Salsa","PACE,THICK & CHUNKY SALSA",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,6.25,25,6.25,3.1,,,,,,719,,,313,,,,,,,,,,0
6609,600,"SWANSON BROTH, Certified Organic Vegetable Broth","SWANSON BROTH,CERT ORGANIC VEG BROTH",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,0,1.28,5,0.85,0,0,0,,,,234,,,213,,0,,,,,,,,0
6611,600,"Soup, SWANSON, beef broth, lower sodium","SOUP,SWANSON,BF BROTH,LOWER NA",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.2,0.08,0.21,6,0.2,,2,0.04,1,10,23,180,0.32,0,0,,,0.02,0.085,0.5,0.107,0,,,0
6615,600,"Soup, SWANSON, vegetable broth","SOUP,SWANSON,VEG BROTH",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.23,0.07,1.02,6,0.57,0,3,0.08,1,3,20,303,0.03,,289,,0.4,0.02,0.015,0.11,0.007,,,,0
6617,600,CAMPBELL'S Homestyle Light Italian-Style Wedding Soup,CAMPBELL'S HOMESTYLE LT ITALIAN-STYLE WEDDING SOUP,,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.45,0.61,4.49,33,0.82,0.4,16,0.44,,,,322,,,408,,0,,,,,,,,4
6618,600,"Sauce, peanut, made from coconut, water, sugar, peanuts","SAUCE,PNUT,MADE FROM COCNT,H2O,SUGAR,PNUTS",,,Y,,0,,,4,9,4,"Soups, Sauces, and Gravies",2.02,6.34,28.46,179,18.8,1.1,9,0.38,19,35,99,319,0.3,2.7,0,0,0,0.07,0.04,1.355,0.085,0,1,0,0
6619,600,"SMART SOUP, Santa Fe Corn Chowder","SMART SOUP,SANTA FE CORN CHOWDER",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",2,0.71,11.2,55,3.6,2,23,1,,,,131,,,,,0,,,,,,,,0
6620,600,"SMART SOUP, French Lentil","SMART SOUP,FRENCH LENTIL",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",2.9,1.06,9.5,53,2.6,2.9,23,1,,,,131,,,,,0,,,,,,,,0
6621,600,"SMART SOUP, Greek Minestrone","SMART SOUP,GREEK MINESTRONE",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",1.7,0.53,8.4,40,2.7,2.7,21,1,,,,138,,,,,0,,,,,,,,0
6622,600,"SMART SOUP, Indian Bean Masala","SMART SOUP,INDIAN BEAN MASALA",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",3.3,0.88,10.5,57,2.3,2.6,22,1,,,,92,,,,,0,,,,,,,,0
6623,600,"SMART SOUP, Moroccan Chick Pea","SMART SOUP,MOROCCAN CHICK PEA",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",2,1.06,9.7,51,4.2,3.1,23,1,,,,148,,,,,0,,,,,,,,0
6624,600,"SMART SOUP, Thai Coconut Curry","SMART SOUP,THAI COCNT CURRY",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",0.8,1.06,6.5,36,3.7,1,19,0,,,,141,,,,,0,,,,,,,,0
6625,600,"SMART SOUP, Vietnamese Carrot Lemongrass","SMART SOUP,VIETNAMESE CARROT LEMONGRASS",,Smart Soup,,,0,,6.25,,,,"Soups, Sauces, and Gravies",1.3,1.06,8.2,44,4.4,1.5,23,0,,,,145,,,,,0,,,,,,,,0
6626,600,"Sauce, pesto, ready-to-serve, refrigerated","SAUCE,PESTO,RTS,REFR",,,,,0,,,,,,"Soups, Sauces, and Gravies",9.83,37.6,10.09,418,6.33,1.8,306,0.57,47,273,560,603,1.33,,1544,,0,0.17,0.717,0.523,0.133,,151.1,,
6627,600,"Sauce, pesto, ready-to-serve, shelf stable","SAUCE,PESTO,RTS,SHELF STABLE",,,,,0,,,,,,"Soups, Sauces, and Gravies",5,42.42,6.14,426,1.92,1.7,173,0.88,45,132,205,998,0.88,5.5,1802,,0.1,0.093,0.307,0.738,0.178,,193.8,,
6628,600,"Sauce, pesto, BUITONI, pesto with basil, ready-to-serve, refrigerated","SAUCE,PESTO,BUITONI,PESTO W/ BASIL,RTS,REFR",,"Nestle USA, Inc.",,,0,,,,,,"Soups, Sauces, and Gravies",9.83,37.6,10.09,418,6.33,1.8,306,0.57,47,273,560,603,1.33,,1544,,0,0.17,0.717,0.523,0.133,,151.1,,
6629,600,"Sauce, pesto, CLASSICO, basil pesto, ready-to-serve","SAUCE,PESTO,CLASSICO,BASIL PESTO,RTS",,Classico,,,0,,,,,,"Soups, Sauces, and Gravies",4.16,36.38,6.93,372,2.6,2.1,166,0.71,40,97,195,1028,0.68,5.5,1929,,0,0.097,0.273,0.877,0.267,,193.8,,
6630,600,"Sauce, pesto, MEZZETTA, NAPA VALLEY BISTRO, basil pesto, ready-to-serve","SAUCE,PESTO,MEZZETTA,NAPA VALLEY BISTRO,BASIL PESTO,RTS",,Mezzetta,,,0,,,,,,"Soups, Sauces, and Gravies",6.69,49.88,5.12,496,1.25,1.3,202,0.99,43,149,205,897,1,,1674,,0.2,0.09,0.34,0.6,0.09,,,,
6631,600,"Sauce, hot chile, sriracha","SAUCE,HOT CHILE,SRIRACHA",,,,,0,,,,,,"Soups, Sauces, and Gravies",1.93,0.93,19.16,93,15.11,2.2,18,1.64,16,46,321,2124,0.24,0.4,2574,,26.9,0.077,0.222,1.248,0.455,,10.9,,
6632,600,"Sauce, hot chile, sriracha, CHA! BY TEXAS PETE","SAUCE,HOT CHILE,SRIRACHA,CHA! BY TEXAS PETE",,TW Garner Food Company,,,0,,,,,,"Soups, Sauces, and Gravies",2.02,0.98,22.73,108,15.65,2.1,15,1.46,16,46,302,2903,0.23,,2773,,4.8,0.105,0.245,1.125,0.47,,,,
6633,600,"Sauce, hot chile, sriracha, TUONG OT SRIRACHA","SAUCE,HOT CHILE,SRIRACHA,TUONG OT SRIRACHA",,"Huy Fong Foods, Inc.",,,0,,,,,,"Soups, Sauces, and Gravies",1.86,0.9,15.87,79,10.48,2.2,20,1.92,16,46,341,1540,0.25,0.4,2764,,57.9,0.06,0.213,1.43,0.465,,14.6,,
6700,600,"Soup, vegetable broth, ready to serve","SOUP,VEG BROTH,READY TO SERVE",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",0.24,0.07,0.93,5,0.55,0,3,0.06,1,3,19,296,0.03,0,238,0,0.4,0.023,0.022,0.11,0.007,0,0.7,0,0
6720,600,"Sauce, cheese sauce mix, dry","SAUCE,CHS SAU MIX,DRY",,,,,0,,,,,,"Soups, Sauces, and Gravies",7.68,18.33,60.52,438,10.26,1,204,0.5,36,283,428,3202,1.11,,202,,0.9,0.211,0.678,2.399,0.182,0.46,,0,23
6725,600,"Soup, chicken corn chowder, chunky, ready-to-serve, single brand","SOUP,CHICK CORN CHOWDER,CHUNKY,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",3.1,6.3,7.5,99,,0.9,,,,,,299,,,1150,,,,,,,,,,11
6726,600,"Soup, chicken mushroom chowder, chunky, ready-to-serve, single brand","SOUP,CHICK MUSHROOM CHOWDER,CHUNKY,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",3,4.4,7.1,80,,1.4,,0.48,,,,339,,,0,,2,,,,,,,,6
6728,600,"Soup, potato ham chowder, chunky, ready-to-serve, single brand","SOUP,POTATO HAM CHOWDER,CHUNKY,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",2.7,5.2,5.6,80,,0.6,,0.7,,,,364,,,0,,,,,,,,,,9
6729,600,"Soup, sirloin burger with vegetables, ready-to-serve, single brand","SOUP,SIRLOIN BURGER W/VEG,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",4.2,3.7,6.8,77,,2.3,,0.87,,,,361,,,1250,,,,,,,,,,11
6730,600,"Soup, split pea with ham, chunky, reduced fat, reduced sodium, ready-to-serve, single brand","SOUP,SPLIT PEA W/ HAM,CHUNKY,RED FAT,RED NA,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",5.2,1.1,11.3,76,,,,0.92,,,,343,,,2625,,4.2,,,,,,,,6
6731,600,"Soup, bean with bacon, condensed, single brand","SOUP,BEAN W/BACON,COND,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",6.5,2.1,18,117,,4.6,,1.37,,,,672,,,183,,,,,,,,,,3
6733,600,"Soup, beef with vegetables and barley, canned, condensed, single brand","SOUP,BF W/VEG&BARLEY,CND,COND,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",3.9,1.4,8.2,61,,,,,,,,707,,,567,,,,,,,,,,6
6734,600,"Soup, chicken with star-shaped pasta, canned, condensed, single brand","SOUP,CHICK W/STAR-SHAPED PASTA,CND,COND,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",2.3,1.4,7.1,50,,,,,,,,732,,,433,,,,,,,,,,4
6736,600,"Soup, cream of chicken, canned, condensed, single brand","SOUP,CRM OF CHICK,CND,COND,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",2.4,6.5,7.7,99,,,,,,,,788,,,0,,,,,,,,,,7
6738,600,"Soup, split pea with ham and bacon, canned, condensed, single brand","SOUP,SPLIT PEA W/HAM&BACON,CND,COND,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",8.6,2.3,21.2,140,,3,,1.59,,,,729,,,150,,,,,,,,,,3
6739,600,"Soup, vegetable beef, canned, condensed, single brand","SOUP,VEG BF,CND,COND,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",3.8,0.8,7.7,53,,,,,,,,555,,,1367,,,,,,,,,,5
6740,600,"Soup, chicken vegetable, chunky, reduced fat, reduced sodium, ready-to-serve, single brand","SOUP,CHICK VEG,CHUNKY,RED FAT,RED NA,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",2.7,0.5,6.3,40,,,,,,,,192,,,1283,,,,,,,,,,4
6742,600,"Soup, vegetable beef, microwavable, ready-to-serve, single brand","SOUP,VEG BF,MICROWAVABLE,RTS,SINGLE BRAND",,,,,0,,,,,,"Soups, Sauces, and Gravies",6.2,0.7,3.3,44,,1.5,,,,,,376,,,650,,,,,,,,,,3
6748,600,"Soup, PROGRESSO, beef barley, traditional, ready to serve","SOUP,PROGRESSO,BF BARLEY,TRADITIONAL,READY TO SERVE",,General Mills Inc.,,,0,,,,,,"Soups, Sauces, and Gravies",2.71,1,6.69,47,1.27,0.9,12,0.39,9,44,110,284,0.45,2.2,401,,0.3,0.027,0.086,0.82,0.063,0.14,,,3
6749,600,"Soup, beef and vegetables, canned, ready-to-serve","SOUP,BF & VEG,CND,RTS",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",3.18,1.16,6.16,48,1.25,1.2,18,0.51,10,48,174,326,0.56,3,2290,1,3.6,0.015,0.016,0.978,0.126,0.17,6,0,7
6930,600,"Sauce, cheese, ready-to-serve","SAUCE,CHS,RTS",,,,,0,,,,,,"Soups, Sauces, and Gravies",6.71,13.29,6.83,174,0.42,0.5,184,0.21,9,157,30,828,0.98,3.2,316,,0.4,0.006,0.114,0.024,0.017,0.14,,0,29
6931,600,"Sauce, pasta, spaghetti/marinara, ready-to-serve","SAUCE,PASTA,SPAGHETTI/MARINARA,RTS",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.39,1.61,7.43,50,4.91,1.8,26,0.73,18,34,320,437,0.2,1.4,617,0,2,0.024,0.061,3.917,0.173,0,13.9,0,2
6932,600,"PREGO Pasta, Traditional Italian Sauce, ready-to-serve","PREGO PASTA,TRADITIONAL ITALIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,1.15,10,54,7.69,2.3,15,0.55,,,292,369,,,385,,1.8,,,,,,,,0
6955,600,"Soup, cream of chicken, canned, condensed, reduced sodium","SOUP,CRM OF CHICK,CND,COND,RED NA",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.8,1.3,9.5,58,0.39,0.4,11,0.2,2,23,272,357,0.13,6.3,432,0,0,0.005,0.022,0.637,0.012,0.05,0.7,0,6
6956,600,"Soup, tomato, canned, condensed, reduced sodium","SOUP,TOMATO,CND,COND,RED NA",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.61,0.56,13.41,65,8.11,1.2,13,1.11,14,29,229,22,0.25,5.1,392,0,12.9,0.039,0.063,1.032,0.086,0,3.2,0,0
6957,600,"Gravy, brown instant, dry","GRAVY,BROWN INST,DRY",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",8.53,11.85,59.78,380,9.23,3.2,116,7.4,32,212,367,5053,0.96,9.3,1,0,1.9,0.236,0.473,2.261,0.282,0.33,0.3,43,12
6958,600,"Gravy, instant beef, dry","GRAVY,INST BF,DRY",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",9.8,9.48,61.1,369,23.9,4.3,141,6.27,41,239,450,5203,0.76,18,8,0,0.9,0.187,0.514,1.075,0.138,0.62,0.4,20,11
6959,600,"Gravy, instant turkey, dry","GRAVY,INST TURKEY,DRY",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",11.72,14.66,57.56,409,7.6,3.8,115,9.57,30,203,306,4090,1.13,19.4,63,0,0.9,0.13,0.264,1.181,0.205,0.37,2,15,24
6960,600,"Sauce, alfredo mix, dry","SAUCE,ALFREDO MIX,DRY",,,,,0,,,,,,"Soups, Sauces, and Gravies",15.32,36.35,36.52,535,5.4,2,467,0.94,32,415,254,2590,1.49,9.3,213,,0,0.156,0.054,2.07,0.134,0.38,6.2,0,56
6961,600,"Sauce, peppers, hot, chili, mature red, canned","SAUCE,PEPPERS,HOT,CHILI,MATURE RED,CND",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",0.9,0.6,3.9,21,2.55,0.7,9,0.5,12,16,564,25,0.15,0.2,458,0,30,0.01,0.09,0.6,0.14,0,6.7,0,0
6962,600,"Sauce, chili, peppers, hot, immature green, canned","SAUCE,CHILI,PEPPERS,HOT,IMMAT GRN,CND",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",0.7,0.1,5,20,2.55,1.9,5,0.4,12,14,564,25,0.15,0.2,584,0,68,0.03,0.03,0.7,0.14,0,7.1,0,0
6963,600,Fish broth,FISH BROTH,,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2,0.6,0.4,16,0.09,0,30,0.21,1,30,86,318,0.1,0.7,4,0,0,0,0.03,1.37,0.01,0.1,0.2,0,0
6964,600,"Soup, tomato, low sodium, with water","SOUP,TOMATO,LO NA,W/H2O",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",0.79,0.28,6.57,30,3.97,0.6,8,0.54,7,14,112,33,0.12,2.5,192,0,6.3,0.019,0.031,0.505,0.042,0,1.5,0,0
6965,600,"Soup, pea, low sodium, prepared with equal volume water","SOUP,PEA,LO NA,PREP W/ EQ VOLUME H2O",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",3.2,1.09,9.88,62,3.19,1.9,12,0.73,15,47,71,10,0.64,3.6,12,0,0.6,0.04,0.025,0.462,0.02,0,0.2,0,0
6966,600,"Soup, chicken noodle, low sodium, canned, prepared with equal volume water","SOUP,CHICK NOODLE,LO NA,CND,PREP W/ EQ VOLUME H2O",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.27,0.95,2.95,25,0.27,0.2,6,0.66,4,17,22,173,0.16,4.8,201,0,0,0.055,0.045,0.54,0.02,0.02,0,6,5
6967,600,"Soup, vegetable soup, condensed, low sodium, prepared with equal volume water","SOUP,VEG SOUP,COND,LO NA,PREP W/ EQ VOLUME H2O",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1.1,0.45,6.06,33,2.15,1.1,12,0.33,13,23,217,194,0.2,2,860,0,0.4,0.055,0.046,0.77,0.084,0,2.1,0,0
6968,600,"Soup, cream of mushroom, low sodium, ready-to-serve, canned","SOUP,CRM OF MUSHROOM,LO NA,RTS,CND",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",1,3.7,4.53,53,1.72,0.2,19,0.21,2,20,41,20,0.24,0.6,24,0,0.4,0.02,0.04,0.3,0.01,0.02,0.8,2,1
6969,600,"Potato soup, instant, dry mix","POTATO SOUP,INST,DRY MIX",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",9.2,3.1,76.14,343,10,7.6,172,2.38,62,279,1248,2400,0.91,12.3,60,0,16,0.11,0.22,4.27,0.16,0,13.9,4,12
6970,600,"Soup, chicken broth, low sodium, canned","SOUP,CHICK BROTH,LO NA,CND",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2,0.6,1.2,16,0.13,0,4,0.21,1,30,86,30,0.1,0,0,0,0,0,0.03,1.37,0.01,0.1,0,0,0
6971,600,"Sauce, worcestershire","SAUCE,WORCESTERSHIRE",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",0,0,19.46,78,10.03,0,107,5.3,13,60,800,980,0.19,0.5,79,0,13,0.07,0.13,0.7,0,0,1,0,0
6972,600,"Sauce, tomato chili sauce, bottled, with salt","SAUCE,TOMATO CHILI SAU,BTLD,W/SALT",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",2.5,0.3,19.79,92,13.33,2.4,20,0.8,12,52,370,1338,0.16,1.1,680,0,16,0.09,0.07,1.6,0.16,0,5.2,0,0
6974,600,"Soup, vegetable chicken, canned, prepared with water, low sodium","SOUP,VEG CHICK,CND,PREP W/ H2O,LO NA",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",5.1,2,8.76,69,1.42,0.4,11,0.61,4,44,153,35,0.9,5.1,2496,0,2.3,0.02,0.07,1.37,0.04,0.1,6.2,2,7
6976,600,"Sauce, pasta, spaghetti/marinara, ready-to-serve, low sodium","SAUCE,PASTA,SPAGHETTI/MARINARA,RTS,LO NA",,,Y,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.41,1.48,8.06,51,5.5,1.8,27,0.78,18,34,319,30,0.2,1.1,650,0,2,0.024,0.061,3.917,0.173,0,13.9,0,2
6977,600,"Gravy, meat or poultry, low sodium, prepared","GRAVY,MEAT OR POULTRY,LO NA,PREP",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",3.8,2.4,6.16,53,0.01,0.3,6,0.7,2,30,81,18,1,0.6,0,0,0,0.03,0.04,0.66,0.01,0.1,0,0,3
6978,600,"Soup, beef and mushroom, low sodium, chunk style","SOUP,BF & MUSHROOM,LO NA,CHUNK STYLE",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",4.3,2.3,9.58,69,0.84,0.2,13,0.97,2,50,140,25,1.1,2.2,1967,0,3,0.04,0.11,1.13,0.06,0.26,3.5,0,6
6980,600,"Soup, beef stroganoff, canned, chunky style, ready-to-serve","SOUP,BF STROGANOFF,CND,CHUNKY STYLE,RTS",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",5.1,4.6,9,98,1.68,0.6,20,0.88,2,50,140,435,1.1,7.6,820,0,0,0.04,0.09,0.1,0.06,0.26,102.8,10,21
6981,600,"Soup, bouillon cubes and granules, low sodium, dry","SOUP,BOUILLON CUBES&GRANULES,LO NA,DRY",,,Y,,0,,,,,,"Soups, Sauces, and Gravies",16.7,13.89,64.88,438,14.47,0.2,187,1.03,56,166,309,1067,0.09,27.6,500,0,1.1,0.1,0.43,2.46,0.1,0.3,66.9,0,13
6982,600,"Soup, ramen noodle, beef flavor, dry","SOUP,RAMEN NOODLE,BF FLAVOR,DRY",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",10.06,17.73,60.34,441,1.99,3,21,3.93,25,115,177,1727,0.61,19.6,,,0.6,0.479,0.258,5.139,0.037,,9,,
6983,600,"Soup, ramen noodle, chicken flavor, dry","SOUP,RAMEN NOODLE,CHICK FLAVOR,DRY",,,,,0,,,4,9,4,"Soups, Sauces, and Gravies",10.22,17.52,60.23,439,1.96,2.9,22,4.21,25,115,183,1923,0.59,24.7,,,0,0.433,0.254,5.536,0.039,,,,
6984,600,"Soup, SWANSON Chicken Broth 99% Fat Free","SOUP,SWANSON CHICK BROTH 99% FAT FREE",,Campbell Soup Co.,,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",0.54,0.17,0.14,4,0.15,0,4,0.14,1,11,30,409,0.02,2.2,,,0,0.007,0.021,0.558,0.014,0.2,0,,0
6985,600,"Gravy, HEINZ Home Style, savory beef","GRAVY,HEINZ HOME STYLE,SAVORY BF",,"H.J. Heinz, Co.",,,0,,6.25,4,9,4,"Soups, Sauces, and Gravies",1.09,1.13,6.24,39,0.52,0.7,6,0.13,3,10,22,587,0.15,2.2,,,0,0.007,0.022,0.172,0.014,0.09,,,2
6986,600,"CAMPBELL'S HEALTHY REQUEST, Chicken Noodle Soup, condensed","CAMPBELL'S HEALTHY REQUEST,CHICK NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.4,1.3,6.51,47,0.89,1,12,0.69,5,25,350,334,0.2,,346,,0.3,,,,,,,,10
6987,600,"HEALTHY REQUEST, Cream of Celery Soup, condensed","HEALTHY REQUEST,CRM OF CELERY,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.81,1.61,9.68,56,1.61,0.8,81,0,,,484,331,,,161,,0,,,,,,,,4
6988,600,"CAMPBELL'S HEALTHY REQUEST, Cream of Mushroom Soup, condensed","CAMPBELL'S HEALTHY REQUEST,CRM OF MUSHROOM SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.29,1.7,8.6,55,1.79,1,71,0.3,13,56,596,327,0.07,,0,,0.1,,,,,,,,0
6989,600,"CAMPBELL'S HEALTHY REQUEST, Homestyle Chicken Noodle Soup, condensed","CAMPBELL'S HEALTHY REQUEST,HOMESTYLE CHICK NOODLE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.7,1,7.8,51,0.6,0.6,13,0.4,6,69,299,317,0.2,,407,,0.6,,,,,,,,7
6990,600,"HEALTHY REQUEST, Minestrone Soup, condensed","HEALTHY REQUEST,MINESTRONE SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",2.38,0.4,11.9,63,3.17,2.4,32,0.86,,,659,325,,,794,,0,,,,,,,,0
6991,600,"HEALTHY REQUEST, Tomato Soup, condensed","HEALTHY REQUEST,TOMATO SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.61,1.21,13.71,73,8.06,0.8,0,0,,,565,331,,,323,,4.8,,,,,,,,0
6992,600,"HEALTHY REQUEST, Vegetable Soup, condensed","HEALTHY REQUEST,VEG SOUP,COND",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",3.17,0.79,15.87,79,3.97,2.4,16,0.57,,,683,325,,,1984,,,,,,,,,,0
6994,600,"PREGO Pasta, Chunky Garden Combination Italian Sauce, ready-to-serve","PREGO PASTA,CHUNKY GARDEN COMB ITALIAN SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.54,1.15,10,54,7.69,2.3,15,0.55,,,308,362,,,769,,1.8,,,,,,,,0
6995,600,"PREGO Pasta, Chunky Garden Tomato, Onion and Garlic Italian Sauce, ready-to-serve","PREGO PASTA,CHNKY GRDN TMTO,ON & GRLIC ITAL SAU,RTS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.6,2.4,10.4,72,8,2.4,16,0.58,,,320,376,,,400,,2.9,,,,,,,,0
6996,600,"Gravy, CAMPBELL'S, au jus","GRAVY,CAMPBELL'S,AU JUS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,0,0,8,,,,,,,,390,,,,,,,,,,,,,0
6997,600,"Gravy, CAMPBELL'S, beef","GRAVY,CAMPBELL'S,BF",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",1.69,1.69,5.08,42,1.69,0,0,0,,,,458,,,0,,0,,,,,,,,8
6998,600,"Gravy, CAMPBELL'S, brown with onions","GRAVY,CAMPBELL'S,BROWN W/ ONIONS",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0,1.69,6.78,42,3.39,0,,,,,,559,,,,,,,,,,,,,0
6999,600,"Gravy, CAMPBELL'S, chicken","GRAVY,CAMPBELL'S,CHICK",,Campbell Soup Co.,,,0,,,,,,"Soups, Sauces, and Gravies",0.79,2.73,5.87,51,0.94,,12,0.12,3,15,55,424,0.09,0.4,,,,0.01,0.047,0.297,0.02,0,0.2,,6
7001,700,"Barbecue loaf, pork, beef","BARBECUE LOAF,PORK,BEEF",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.84,8.9,6.4,173,,0,55,1.16,17,132,329,1334,2.46,21.3,68,36,0,0.36,0.248,2.266,0.26,1.68,,0,37
7002,700,"Beerwurst, beer salami, pork and beef","BEERWURST,BEER SALAMI,PORK & BF",,,Y,,0,,6.25,4.27,9.02,3.68,Sausages and Luncheon Meats,14,22.53,3.76,277,0,0.9,27,1.73,19,135,244,881,2.21,17.4,10,36,0.6,0.246,0.173,2.975,0.23,1.16,1.3,0,62
7003,700,"Beerwurst, beer salami, pork","BEERWURST,BEER SALAMI,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.24,18.8,2.06,238,,0,8,0.76,13,103,253,1240,1.72,20.9,0,36,0,0.554,0.192,3.254,0.35,0.87,,0,59
7004,700,"Sausage, Berliner, pork, beef",SAUSAGE BERLINER PORK BF,,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.27,17.2,2.59,230,2.35,0,12,1.15,15,130,283,1297,2.47,14.1,0,13,0,0.38,0.213,3.11,0.2,2.67,1.6,0,46
7005,700,Blood sausage,BLOOD SAUSAGE,,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.6,34.5,1.29,379,1.29,0,6,6.4,8,22,38,680,1.3,15.5,0,52,0,0.07,0.13,1.2,0.04,1,0,0,120
7006,700,"Bockwurst, pork, veal, raw",BOCKWURST PORK VEAL RAW,,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,14.03,25.87,2.95,301,1.33,1,41,1.15,26,169,270,756,2.07,11.3,256,0,3.2,0.193,0.233,5.616,0.378,0.86,70.2,0,93
7007,700,"Bologna, beef","BOLOGNA,BF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,10.91,26.13,4.29,299,2.05,0,21,1.29,13,154,351,1013,1.93,11.6,90,28,15.2,0.03,0.065,2.321,0.157,1.19,2.4,0,57
7008,700,"Bologna, beef and pork","BOLOGNA,BF & PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.2,24.59,5.49,308,4.42,0,85,1.21,17,163,315,960,2.3,24.6,84,32,0.8,0.217,0.185,2.521,0.297,1.82,0.3,0,60
7010,700,"Bologna, pork","BOLOGNA,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.3,19.87,0.73,247,0,0,11,0.77,14,139,281,907,2.03,12.7,0,56,0,0.523,0.157,3.9,0.27,0.93,0.3,0,59
7011,700,"Bologna, turkey",BOLOGNA TURKEY,,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,11.42,16.05,4.68,209,2.9,0.5,123,3,16,114,135,1071,1.3,15.4,32,26,13.3,0.049,0.095,2.607,0.243,0.23,0.3,0,75
7013,700,"Bratwurst, pork, cooked","BRATWURST,PORK,CKD",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,13.72,29.18,2.85,333,0,0,28,0.53,21,208,348,846,3.25,39.7,6,44,0,0.459,0.307,4.795,0.327,0.73,3.4,0,74
7014,700,"Braunschweiger (a liver sausage), pork","BRAUNSCHWEIGER (A LIVER SAUSAGE),PORK",,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,14.5,28.5,3.1,327,0,0,9,11.2,11,168,199,977,2.81,58,14051,48,0,0.249,1.525,8.368,0.33,20.09,1.6,0,180
7015,700,"Brotwurst, pork, beef, link","BROTWURST,PORK,BF,LINK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.3,27.8,2.98,323,2.98,0,48,1.03,16,134,281,1112,2.1,17,0,11,0,0.25,0.23,3.3,0.13,2.05,0,0,63
7016,700,"Cheesefurter, cheese smokie, pork, beef","CHEESEFURTER,CHS SMOKIE,PORK,BF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.1,29,1.51,328,1.51,0,58,1.08,13,178,206,1082,2.25,15.7,19,12,0,0.25,0.16,2.9,0.13,1.73,1.6,0,68
7018,700,Chicken spread,CHICKEN SPRD,,,,,0,,6.25,4,4,4,Sausages and Luncheon Meats,18.01,17.56,4.05,158,0.47,0.3,16,0.87,12,89,106,722,1.15,10.8,99,,0,0.009,0.114,2.748,0.15,0.13,,0,56
7019,700,"Chorizo, pork and beef","CHORIZO,PORK AND BEEF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,24.1,38.27,1.86,455,0,0,8,1.59,18,150,398,1235,3.41,21.1,0,61,0,0.63,0.3,5.131,0.53,2,1.6,0,88
7020,700,"Corned beef loaf, jellied","CORNED BEEF LOAF,JELLIED",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,22.9,6.1,0,153,,0,11,2.04,11,73,101,953,4.09,17.2,0,,0,0,0.11,1.76,0.12,1.27,,0,47
7021,700,"Dutch brand loaf, chicken, pork and beef","DUTCH BRAND LOAF,CHICK,PORK & BF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12,22.91,3.93,273,0.9,0.3,7,0.16,15,119,210,786,2.53,18.4,110,0,1.4,0.134,0.134,3.384,0.236,0.9,1.2,0,60
7022,700,"Frankfurter, beef, unheated","FRANKFURTER,BF,UNHTD","hot dog, frank, wiener",,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,11.16,28.3,3.36,316,1.31,0,12,1.2,9,152,316,992,2.03,10.3,0,36,0,0.018,0.043,2.028,0.185,1.38,1.8,0,55
7024,700,"Frankfurter, chicken","FRANKFURTER,CHICKEN","hot dog, wiener, frank",,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.51,16.19,2.74,223,2.98,0,74,1.17,20,162,202,1027,1.11,23,0,21,0,0.057,0.257,4.687,0.323,0.54,0,3,96
7025,700,"Frankfurter, turkey","FRANKFURTER,TURKEY","hot dog, wiener, frank",,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12.23,17.29,3.81,223,1.21,0,148,1.47,14,172,392,911,1.84,15.1,0,23,0,0.036,0.181,3.68,0.143,0.82,0,1,77
7026,700,"Ham, chopped, canned","HAM,CHOPPED,CANNED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.06,18.83,0.26,239,0,0,7,0.95,13,139,284,1280,1.83,18.6,0,24,2,0.535,0.165,3.2,0.32,0.7,0,0,49
7027,700,"Ham, chopped, not canned","HAM,CHOPPED,NOT CANNED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.5,10.3,4.2,180,0,0,7,0.83,16,155,319,1039,1.94,17.4,0,29,0,0.632,0.204,3.88,0.35,0.92,0,0,59
7028,700,"Ham, sliced, packaged (96% fat free, water added)","HAM,SLICED,PACKAGED (96% FAT FREE,H2O ADDED)",,,Y,,0,,,,,,Sausages and Luncheon Meats,16.9,3.4,0.55,100,0,0,5,0.58,18,261,490,1279,1.58,31.6,0,28,0,0.336,0.266,5.697,0.394,0.36,0,0,41
7029,700,"Ham, sliced, regular (approximately 11% fat)","HAM,SLICED,REG (APPROX 11% FAT)",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.6,8.6,3.83,163,0,1.3,24,1.02,22,153,287,1143,1.35,20.7,0,29,4,0.626,0.178,2.904,0.329,0.42,0,0,57
7030,700,"Ham, minced","HAM,MINCED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.28,20.68,1.84,263,0,0,10,0.79,16,157,311,1245,1.9,20,0,26,0,0.712,0.19,4.162,0.26,0.95,0,0,70
7031,700,Ham salad spread,HAM SALAD SPREAD,,,Y,,0,,6.25,4.27,9.02,3.68,Sausages and Luncheon Meats,8.68,15.53,10.64,216,0,0,8,0.59,10,120,150,1075,1.1,17.8,0,26,0,0.435,0.12,2.095,0.15,0.76,0,0,37
7032,700,Ham and cheese loaf or roll,HAM&CHS LOAF OR ROLL,,,Y,,0,,6.25,4.27,9.02,3.68,Sausages and Luncheon Meats,13.6,18.7,4,241,0,0,58,0.91,16,253,294,1000,2,34.6,0,44,0,0.601,0.187,3.452,0.26,0.81,0,0,58
7033,700,Ham and cheese spread,HAM AND CHEESE SPREAD,,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.18,18.53,2.28,245,,0,217,0.76,18,495,162,1197,2.25,33.6,304,,0,0.318,0.22,2.153,0.13,0.73,,0,61
7034,700,"Headcheese, pork","HEADCHEESE,PORK",,,Y,,0,,6.25,4.27,9.02,3.68,Sausages and Luncheon Meats,13.83,10.9,0,157,0,0,16,1.5,9,56,31,941,0.97,0.1,0,37,0,0.023,0.115,0.44,0.19,1.05,3.4,0,69
7036,700,"Sausage, Italian, pork, raw","SAUSAGE,ITALIAN,PORK,RAW",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.25,31.33,0.65,346,,0,18,1.18,14,142,253,731,1.79,24.8,0,,2,0.568,0.168,3.25,0.3,0.91,,0,76
7038,700,"Knackwurst, knockwurst, pork, beef",KNACKWURST KNOCKWURST PORK BF,,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,11.1,27.7,3.2,307,0,0,11,0.66,11,98,199,930,1.66,13.5,0,44,0,0.342,0.14,2.734,0.17,1.18,1.6,0,60
7039,700,"Lebanon bologna, beef",LEBANON BOLOGNA BF,,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,19.03,10.44,0.44,172,0,0,20,2.15,20,192,330,1374,3.84,15.7,39,10,0.9,0.101,0.165,3.223,0.391,2.9,0.3,0,55
7040,700,"Liver cheese, pork","LIVER CHEESE,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,15.2,25.6,2.1,304,,0,8,10.83,12,207,226,1225,3.7,36.5,17490,,3,0.212,2.227,11.768,0.47,24.55,,0,174
7041,700,"Liver sausage, liverwurst, pork","LIVER SAUSAGE,LIVERWURST,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.1,28.5,2.2,326,,0,26,6.4,12,230,170,860,2.3,58,27667,,0,0.272,1.03,4.3,0.19,13.46,,0,158
7043,700,"Roast beef, deli style, prepackaged, sliced","ROAST BF,DELI STYLE,PREPACKAGED,SLICED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,18.62,3.69,0.64,115,0.29,0,5,2.05,20,242,647,853,3.2,14.7,11,1,0,0.043,0.213,5.581,0.46,2.04,1.6,0,51
7044,700,"USDA Commodity, luncheon meat, canned","USDA CMDTY,LUNCHEON MEAT,CND",,,,,0,,,,,,Sausages and Luncheon Meats,17.5,12.77,1.04,189,0,0,5,0.97,18,170,300,820,2.15,38.3,0,,0,0.128,0.213,5.225,0.272,0.92,0,0,78
7045,700,"Luncheon meat, pork, canned","LUNCHEON MEAT,PORK,CANNED",,,Y,,0,,6.25,4.27,9.02,3.68,Sausages and Luncheon Meats,12.5,30.3,2.1,334,0,0,6,0.72,10,82,215,1289,1.48,28,0,22,1,0.367,0.194,3.126,0.21,0.9,0,0,62
7046,700,"Turkey breast, low salt, prepackaged or deli, luncheon meat","TURKEY BREAST,LO SALT,PREPACKAGED OR DELI,LUNCHEON MEAT",,,Y,,0,,6.25,4,9,4,Sausages and Luncheon Meats,21.81,0.83,3.51,109,3.51,0.5,8,0.63,21,162,211,772,1.33,22.8,33,2,5.7,0.13,0.32,0.11,0.128,0.09,0,0,44
7050,700,"Mortadella, beef, pork","MORTADELLA,BEEF,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.37,25.39,3.05,311,0,0,18,1.4,11,97,163,1246,2.1,22.6,0,41,0,0.119,0.153,2.673,0.13,1.48,1.6,0,56
7051,700,"Olive loaf, pork","OLIVE LOAF,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,11.8,16.5,9.2,235,0,0,109,0.54,19,127,297,964,1.38,16.4,200,44,0,0.295,0.26,1.835,0.23,1.26,3.4,0,38
7052,700,"Pastrami, turkey","PASTRAMI,TURKEY",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.3,6.21,3.34,139,3.34,0.1,11,4.2,14,200,345,1123,2.16,16.1,12,10,8.1,0.055,0.25,3.527,0.27,0.24,0,0,68
7053,700,"Pate, chicken liver, canned","PATE,CHICKEN LIVER,CANNED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,13.45,13.1,6.55,201,0,0,10,9.19,13,175,95,386,2.14,46.1,724,0,10,0.052,1.401,7.517,0.26,8.07,0,0,391
7054,700,"Pate, goose liver, smoked, canned","PATE,GOOSE LIVER,SMOKED,CND",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,11.4,43.84,4.67,462,,0,70,5.5,13,200,138,697,0.92,44,3333,,0,0.088,0.299,2.51,0.06,9.4,,0,150
7055,700,"Pate, liver, not specified, canned","PATE,LIVER,NOT SPECIFIED,CND",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.2,28,1.5,319,,0,70,5.5,13,200,138,697,2.85,41.6,3300,,2,0.03,0.6,3.3,0.06,3.2,,0,255
7056,700,"Peppered loaf, pork, beef",PEPPERED LOAF PORK BF,,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,17.3,6.37,4.53,149,4.61,0,54,1.07,20,170,394,732,3.23,11.3,0,32,0,0.38,0.3,3.08,0.27,1.96,1.6,0,46
7057,700,"Pepperoni, beef and pork, sliced","PEPPERONI,BF & PORK,SLICED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,19.25,46.28,1.18,504,0,0,19,1.33,18,158,274,1582,2.44,29,0,52,0,0.271,0.257,4.987,0.362,1.3,5.8,0,97
7058,700,"Pickle and pimiento loaf, pork","PICKLE&PIMIENTO LOAF,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,11.23,15.95,8.46,225,8.46,1.5,109,1.33,34,153,371,1040,1.68,7.9,260,33,7.8,0.392,0.115,2.486,0.418,0.54,5.1,0,58
7059,700,"Polish sausage, pork","POLISH SAUSAGE,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.1,28.72,1.63,326,,0,12,1.44,14,136,237,876,1.93,17.7,0,,1,0.502,0.148,3.443,0.19,0.98,,0,70
7060,700,"Luxury loaf, pork","LUXURY LOAF,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,18.4,4.8,4.9,141,,0,36,1.05,20,185,377,1225,3.05,21.5,0,28,0,0.707,0.297,3.482,0.31,1.37,,0,36
7061,700,"Mother's loaf, pork","MOTHER'S LOAF,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12.07,22.3,7.53,282,,0,43,1.32,16,129,225,1127,1.43,35.1,0,40,1,0.55,0.17,3.123,0.18,1.05,,0,45
7062,700,"Picnic loaf, pork, beef","PICNIC LOAF,PORK,BEEF",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,14.92,16.64,4.76,232,,0,47,1.02,15,125,267,1164,2.18,35.7,0,48,0,0.374,0.242,2.306,0.3,1.5,,0,38
7063,700,"Pork sausage, link/patty, unprepared","PORK SAUSAGE,LINK/PATTY,UNPREP",,,,,0,,,,,,Sausages and Luncheon Meats,15.39,24.8,0.93,288,0.93,0,8,1.02,15,133,307,739,2.01,17.8,92,57,0,0.223,0.147,5.418,0.174,0.92,0.3,0,70
7064,700,"Pork sausage, link/patty, cooked, pan-fried","PORK SAUSAGE,LINK/PATTY,CKD,PAN-FRIED",,,Y,,0,,,,,,Sausages and Luncheon Meats,18.53,27.25,1.42,325,1.09,0,9,1.2,16,149,342,814,2.45,20.7,93,58,0,0.256,0.176,6.119,0.195,0.98,0,0,86
7065,700,"Pork and beef sausage, fresh, cooked","PORK&BF SAUSAGE,FRSH,CKD",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,13.8,36.25,2.7,396,0,0,10,1.13,12,107,189,929,1.87,14.4,0,28,0,0.357,0.147,3.367,0.05,0.43,1.6,0,71
7066,700,"Turkey sausage, reduced fat, brown and serve, cooked (include BUTTERBALL breakfast links turkey sausage)","TURKEY SAUSAGE,RED FAT,BROWN&SERVE,CKD",,,Y,,0,,,,,,Sausages and Luncheon Meats,17,10.3,10.92,204,0,0.3,31,1.8,21,164,207,721,2.31,20.8,8,17,0,0.066,0.151,2.137,0.234,0.28,0,0,58
7067,700,Poultry salad sandwich spread,POULTRY SALAD SNDWCH SPRD,,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,11.64,13.52,7.41,200,0,0,10,0.61,10,33,183,653,1.04,10.9,140,8,1,0.024,0.071,1.669,0.11,0.38,0,0,30
7068,700,"Salami, cooked, beef",SALAMI CKD BF,,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12.6,22.2,1.9,261,1.5,0,6,2.2,13,205,188,1140,1.77,14.6,0,48,0,0.103,0.189,3.238,0.18,3.06,1.3,0,71
7069,700,"Salami, cooked, beef and pork","SALAMI,CKD,BF&PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,21.85,25.9,2.4,336,0.96,0,15,1.56,19,191,316,1740,2.93,31.3,0,41,0,0.367,0.357,6.053,0.459,1.52,3.2,0,89
7070,700,"Salami, cooked, turkey","SALAMI,COOKED,TURKEY",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,19.2,9.21,1.55,172,1.12,0.1,40,1.25,22,266,216,1107,2.32,26.4,6,24,0,0.426,0.303,3.979,0.427,0.99,1.3,0,76
7071,700,"Salami, dry or hard, pork","SALAMI,DRY OR HARD,PORK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,22.58,33.72,1.6,407,,0,13,1.3,22,229,378,2260,4.2,25.4,0,,0,0.93,0.33,5.6,0.55,2.8,,0,79
7072,700,"Salami, dry or hard, pork, beef","SALAMI,DRY OR HARD,PORK,BF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,21.07,31.65,0.72,378,0.26,0,24,1.36,20,192,363,1756,2.67,33.6,36,36,0,0.386,0.196,6.105,0.441,1.15,0,0,108
7073,700,"Sandwich spread, pork, beef","SANDWICH SPREAD,PORK,BEEF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,7.66,17.34,11.94,235,0,0.2,12,0.79,8,59,110,1013,1.02,9.7,87,22,0,0.172,0.134,1.73,0.12,1.12,1.6,0,38
7074,700,"Smoked link sausage, pork","SMOKED LINK SAUSAGE,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,11.98,28.23,0.94,309,0.94,0,11,0.59,11,157,483,827,1.31,18.3,0,43,0,0.212,0.18,2.807,0.179,0.66,0,0,61
7075,700,"Sausage, smoked link sausage, pork and beef","SAUSAGE,SMOKED LINK SAUSAGE,PORK & BF",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,12,28.73,2.42,320,0,0,12,0.75,13,121,179,911,1.26,0,74,44,0,0.192,0.106,2.94,0.163,0.58,0,0,58
7077,700,"Smoked link sausage, pork and beef, nonfat dry milk added","SMOKED LINK SAUSAGE,PORK&BF,NONFAT DRY MILK",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,13.28,27.61,1.92,313,,0,41,1.47,16,137,286,1173,1.96,13.9,0,,0,0.193,0.214,2.845,0.18,1.57,,0,65
7078,700,"Thuringer, cervelat, summer sausage, beef, pork","THURINGER,CERVELAT,SMMR SAUSAGE,BF,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,17.45,30.43,3.33,362,0.85,0,9,2.04,14,111,260,1300,2.56,20.3,0,44,16.6,0.15,0.33,4.31,0.26,5.5,1.3,0,74
7081,700,"Turkey breast, sliced, prepackaged","TURKEY BREAST,SLICED,PREPACKAGED",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,16.33,2.37,2.34,100,3.28,0,7,0.34,20,234,401,922,0.8,13,0,2,0,0.038,0.145,7.15,0.41,0.37,0,0,50
7083,700,"Sausage, Vienna, canned, chicken, beef, pork","SAUSAGE,VIENNA,CND,CHICK,BF,PORK",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,10.5,19.4,2.6,230,0,0,10,0.88,7,49,101,879,1.6,16.9,0,25,0,0.087,0.107,1.613,0.12,1.02,1.6,0,87
7088,700,"Honey roll sausage, beef","HONEY ROLL SAUSAGE,BEEF",,,,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,18.58,10.5,2.18,182,,0,9,2.2,16,137,291,1322,3.25,15.6,0,40,0,0.08,0.182,4.165,0.27,2.35,,0,50
7089,700,"Sausage, Italian, pork, cooked","SAUSAGE,ITALIAN,PORK,CKD",,,Y,,0,,6.25,4.27,9.02,3.87,Sausages and Luncheon Meats,19.12,27.31,4.27,344,1.86,0.1,21,1.43,18,170,304,743,2.39,22,16,41,0.1,0.623,0.233,4.165,0.33,1.3,3.4,0,57