Files
PetitTetonMeteor/server/importMissing.js

5469 lines
121 KiB
JavaScript

Meteor.methods({
"importMissingSales": async function() {
console.log("Importing Missing Sales...");
try {
let products = await Products.find({}).fetchAsync();
let venues = await Venues.find({}).fetchAsync();
let measures = await Measures.find({}).fetchAsync();
let productNameMap = {};
let venueNameMap = {};
let measureNameMap = {};
for(let i = 0; i < products.length; i++) {
productNameMap[products[i].name] = products[i]._id;
}
for(let i = 0; i < venues.length; i++) {
venueNameMap[venues[i].name] = venues[i]._id;
}
for(let i = 0; i < measures.length; i++) {
measureNameMap[measures[i].name] = measures[i]._id;
}
for(let i = 0; i < missingData.length; i++) {
missingData[i].createdAt = new Date(missingData[i].createdAt);
missingData[i].measureId = measureNameMap[missingData[i].measure];
missingData[i].productId = productNameMap[missingData[i].product];
missingData[i].venueId = venueNameMap[missingData[i].venue];
}
// Test Code
for(let i = 0; i < missingData.length; i++) {
if(!missingData[i].measureId || !missingData[i].productId || !missingData[i].venueId) {
console.log("This sale has errors:");
console.log(missingData[i]);
}
}
// Check for duplicates
for(let i = 0; i < missingData.length; i++) {
let next = missingData[i];
let count = Sales.find({date: next.date, measureId: next.measureId, productId: next.productId, venueId: next.venueId, price: next.price, amount: next.amount}).count();
if(count > 0) {
console.log("This sale has a duplicate:");
console.log(next);
}
}
//// Save the sales to the database.
//for(let i = 0; i < missingData.length; i++) {
// let next = missingData[i];
//
// // Remove the unnecessary props.
// delete next.measure;
// delete next.product;
// delete next.venue;
//
// // Insert in the db.
// Sales.insert(next, function(err, id) {
// if(err) console.log(err);
// }, {bypassCollection2: true});
//}
console.log("Finished Import");
} catch(err) {
console.log(err);
}
}
});
let missingData = [{
"date": 20160117,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Beef",
"measure": "Pounds",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160117,
"amount": 2,
"price": 8,
"venue": "Clement St",
"product": "Beef",
"measure": "Pounds",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160117,
"amount": 4.34,
"price": 1.8433179723502304,
"venue": "Clement St",
"product": "Beef",
"measure": "Pounds",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160102,
"amount": 1,
"price": 15,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160206,
"amount": 1,
"price": 29,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 15,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 15,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160130,
"amount": 1,
"price": 24,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160207,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 24,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 24.75,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 5.75,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 24,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 17,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 19.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 30.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160207,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 8.25,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 9.44,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 9,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 21,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 22.75,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160130,
"amount": 1,
"price": 20.25,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 1,
"price": 19,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 22,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 23,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 35.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 19.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 14.5,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 35,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 40,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 1,
"price": 50,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 38,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160102,
"amount": 1,
"price": 10.5,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160109,
"amount": 1,
"price": 10,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 10.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160130,
"amount": 1,
"price": 10.5,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 10.5,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 1,
"price": 30.75,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 10.25,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160417,
"amount": 1,
"price": 40,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 1,
"price": 40,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 30,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160513,
"amount": 1,
"price": 10,
"venue": "Mendocino",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 1,
"price": 20,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 7.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 11,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160513,
"amount": 1,
"price": 14.25,
"venue": "Mendocino",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160513,
"amount": 1,
"price": 10.25,
"venue": "Mendocino",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 9,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 1,
"price": 9,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 5.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160313,
"amount": 1,
"price": 7,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 5.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 7.25,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 1,
"price": 6,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 9,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 7,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 8.25,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 27.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 1,
"price": 6,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 23.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 11,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 1,
"price": 34.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 59,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 11,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 12.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 9.25,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 19.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 1,
"price": 10.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 1,
"price": 19,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 19.75,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 16,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 93.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160207,
"amount": 1,
"price": 21,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 30,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 30,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 7,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 25,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 14.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 27,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 13.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 14,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 12,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 32.5,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160520,
"amount": 1,
"price": 28,
"venue": "Mendocino",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 18.25,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 1,
"price": 48.3,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160522,
"amount": 1,
"price": 235.75,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 158.4,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160103,
"amount": 1,
"price": 28,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160109,
"amount": 1,
"price": 43.5,
"venue": "On Farm",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 49.75,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 14.5,
"venue": "Clement St",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 18.5,
"venue": "Boonville",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160312,
"amount": 1,
"price": 25,
"venue": "On Farm",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 15.5,
"venue": "Clement St",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 13.5,
"venue": "Clement St",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 14.75,
"venue": "Clement St",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 1,
"price": 20.16,
"venue": "On Farm",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 17.55,
"venue": "Unknown Restaurant",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160416,
"amount": 1,
"price": 62,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 1,
"price": 13.5,
"venue": "Boonville",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160102,
"amount": 1,
"price": 14,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160102,
"amount": 1,
"price": 8.75,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160123,
"amount": 1,
"price": 100.8,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160124,
"amount": 1,
"price": 19,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160130,
"amount": 1,
"price": 10.48,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 63.5,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160206,
"amount": 1,
"price": 6,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160206,
"amount": 1,
"price": 30.5,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 1,
"price": 4,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 39.75,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 41.75,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 14.5,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 90.25,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 16,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 46,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 58.9,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 6,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 5,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 15,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160312,
"amount": 1,
"price": 81.68,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 137.23,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 1,
"price": 52.25,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 1,
"price": 86.76,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 1,
"price": 44.25,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 13.5,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 71,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160402,
"amount": 1,
"price": 63.75,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 83.75,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160409,
"amount": 1,
"price": 69.5,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 5,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160409,
"amount": 1,
"price": 95.39,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160409,
"amount": 1,
"price": 107,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160416,
"amount": 1,
"price": 113.54,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160416,
"amount": 1,
"price": 38,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 15.75,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 80,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160430,
"amount": 1,
"price": 168,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 94.72,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160430,
"amount": 1,
"price": 127.58,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160430,
"amount": 1,
"price": 6,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 30.25,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 193.75,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160506,
"amount": 1,
"price": 99,
"venue": "Mendocino",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 197.39,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 1,
"price": 40.5,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 1,
"price": 84,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160513,
"amount": 1,
"price": 152,
"venue": "Mendocino",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 1,
"price": 130.07,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160521,
"amount": 1,
"price": 51,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160521,
"amount": 1,
"price": 88.65,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 1,
"price": 77.5,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160520,
"amount": 1,
"price": 218.75,
"venue": "Mendocino",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 20,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 1,
"price": 146.17,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 1,
"price": 80.5,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 22,
"venue": "On Farm",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 9,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 1,
"price": 42,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 1,
"price": 8,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160109,
"amount": 1,
"price": 32.75,
"venue": "On Farm",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160417,
"amount": 1,
"price": 8,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 15,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 6,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 47.75,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 1,
"price": 42.5,
"venue": "On Farm",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160402,
"amount": 1,
"price": 21,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 1,
"price": 58,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160417,
"amount": 1,
"price": 43.5,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 33.5,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 26.75,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 25,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 1,
"price": 20,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 16.5,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 26.75,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 22.5,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160430,
"amount": 1,
"price": 223.52,
"venue": "On Farm",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 13.5,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 1,
"price": 22,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 27.25,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160513,
"amount": 1,
"price": 21,
"venue": "Mendocino",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 1,
"price": 16,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160417,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 8.5,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 30,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160520,
"amount": 1,
"price": 44,
"venue": "Mendocino",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 1,
"price": 27.5,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 9.5,
"venue": "Boonville",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 20,
"venue": "Clement St",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 5.25,
"venue": "Boonville",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160206,
"amount": 1,
"price": 14,
"venue": "Boonville",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 1,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160416,
"amount": 1,
"price": 14,
"venue": "Boonville",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160123,
"amount": 1,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 2,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 2,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 2,
"price": 17,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160207,
"amount": 2,
"price": 17.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 2,
"price": 12.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 2,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 2,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 3,
"price": 13.916666666666666,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 4,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160116,
"amount": 0.5,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160123,
"amount": 1,
"price": 40,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 1,
"price": 40,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 40,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 30,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160402,
"amount": 1,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 2,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160409,
"amount": 2.5,
"price": 10,
"venue": "Unknown Restaurant",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 3,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160430,
"amount": 3,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 3,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160109,
"amount": 4,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160124,
"amount": 4,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160513,
"amount": 5,
"price": 10,
"venue": "Mendocino",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 5,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 6,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 19,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 22,
"price": 9.954545454545455,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 23.5,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 1,
"price": 18,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160417,
"amount": 28,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 30,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 1,
"price": 30,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 37,
"price": 9.81081081081081,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160522,
"amount": 1,
"price": 130.25,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 3.5,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160109,
"amount": 1,
"price": 4.75,
"venue": "On Farm",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 19,
"venue": "On Farm",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 1,
"price": 20,
"venue": "Clement St",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160506,
"amount": 1,
"price": 21,
"venue": "Mendocino",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160109,
"amount": 1,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160130,
"amount": 1,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 14,
"venue": "Boonville",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 14,
"venue": "Boonville",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160116,
"amount": 1,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 2,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 2,
"price": 10,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 2,
"price": 11.5,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 2,
"price": 22.875,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160207,
"amount": 2,
"price": 15,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 2,
"price": 15.5,
"venue": "Boonville",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 2,
"price": 12,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 2,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 4,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 4,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160102,
"amount": 1,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160206,
"amount": 1,
"price": 96,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 55,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 60,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 1,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 1,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 2,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 2,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160206,
"amount": 3,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 3,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160430,
"amount": 3,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 3.5,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160117,
"amount": 4,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160506,
"amount": 4,
"price": 10,
"venue": "Mendocino",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160520,
"amount": 5,
"price": 10,
"venue": "Mendocino",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160313,
"amount": 5,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 7.5,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160416,
"amount": 20,
"price": 1,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 23,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 28,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 29,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160416,
"amount": 35,
"price": 1,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160522,
"amount": 40,
"price": 10.025,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 3,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:24:25 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160102,
"amount": 1,
"price": 15,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160206,
"amount": 1,
"price": 29,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 24,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 24,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 14.5,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160102,
"amount": 1,
"price": 10.5,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 10.5,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 10.25,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 30,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 1,
"price": 20,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 16,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 32.5,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 12,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 18.5,
"venue": "Boonville",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 1,
"price": 13.5,
"venue": "Boonville",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160416,
"amount": 1,
"price": 62,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160102,
"amount": 1,
"price": 8.75,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160206,
"amount": 1,
"price": 30.5,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 39.75,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 41.75,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 46,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 16,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 1,
"price": 52.25,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 71,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160402,
"amount": 1,
"price": 63.75,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160409,
"amount": 1,
"price": 69.5,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 80,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160430,
"amount": 1,
"price": 168,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 193.75,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 1,
"price": 84,
"venue": "Boonville",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 20,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 9,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 47.75,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160402,
"amount": 1,
"price": 21,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 22.5,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 26.75,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 13.5,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 1,
"price": 16,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 1,
"price": 27.5,
"venue": "Boonville",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 9.5,
"venue": "Boonville",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 5.25,
"venue": "Boonville",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160206,
"amount": 1,
"price": 14,
"venue": "Boonville",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 14,
"venue": "Boonville",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160416,
"amount": 1,
"price": 14,
"venue": "Boonville",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 14,
"venue": "Boonville",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 2,
"price": 10,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 2,
"price": 11.5,
"venue": "Boonville",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 2,
"price": 15.5,
"venue": "Boonville",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 40,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 1,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160402,
"amount": 1,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 1,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 2,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160206,
"amount": 3,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 3,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 3,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160430,
"amount": 3,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 3,
"price": 10,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160416,
"amount": 20,
"price": 1,
"venue": "Boonville",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160513,
"amount": 1,
"price": 10,
"venue": "Mendocino",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160513,
"amount": 1,
"price": 10.25,
"venue": "Mendocino",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160513,
"amount": 1,
"price": 14.25,
"venue": "Mendocino",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160520,
"amount": 1,
"price": 28,
"venue": "Mendocino",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160506,
"amount": 1,
"price": 99,
"venue": "Mendocino",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160513,
"amount": 1,
"price": 152,
"venue": "Mendocino",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160520,
"amount": 1,
"price": 218.75,
"venue": "Mendocino",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160513,
"amount": 1,
"price": 21,
"venue": "Mendocino",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160520,
"amount": 1,
"price": 44,
"venue": "Mendocino",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160506,
"amount": 1,
"price": 21,
"venue": "Mendocino",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160506,
"amount": 4,
"price": 10,
"venue": "Mendocino",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160513,
"amount": 5,
"price": 10,
"venue": "Mendocino",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160520,
"amount": 5,
"price": 10,
"venue": "Mendocino",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160130,
"amount": 1,
"price": 24,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 24.75,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 8.25,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 9.44,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160130,
"amount": 1,
"price": 20.25,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160109,
"amount": 1,
"price": 10,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160130,
"amount": 1,
"price": 10.5,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 1,
"price": 30.75,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 7.25,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 30,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 1,
"price": 48.3,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 158.4,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 49.75,
"venue": "On Farm",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160109,
"amount": 1,
"price": 43.5,
"venue": "On Farm",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160312,
"amount": 1,
"price": 25,
"venue": "On Farm",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 1,
"price": 20.16,
"venue": "On Farm",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160102,
"amount": 1,
"price": 14,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160130,
"amount": 1,
"price": 10.48,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160206,
"amount": 1,
"price": 6,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 14.5,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160220,
"amount": 1,
"price": 90.25,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 5,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 1,
"price": 44.25,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 13.5,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160409,
"amount": 1,
"price": 107,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160416,
"amount": 1,
"price": 38,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 15.75,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160430,
"amount": 1,
"price": 6,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 30.25,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 1,
"price": 40.5,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160521,
"amount": 1,
"price": 51,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 1,
"price": 77.5,
"venue": "On Farm",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 22,
"venue": "On Farm",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160109,
"amount": 1,
"price": 32.75,
"venue": "On Farm",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 1,
"price": 42.5,
"venue": "On Farm",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160430,
"amount": 1,
"price": 223.52,
"venue": "On Farm",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160109,
"amount": 1,
"price": 4.75,
"venue": "On Farm",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 19,
"venue": "On Farm",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160109,
"amount": 1,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160130,
"amount": 1,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160116,
"amount": 1,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160123,
"amount": 1,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 2,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 2,
"price": 14,
"venue": "On Farm",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160116,
"amount": 0.5,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160102,
"amount": 1,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160123,
"amount": 1,
"price": 40,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160206,
"amount": 1,
"price": 96,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160213,
"amount": 1,
"price": 55,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 30,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 2,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 2,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160430,
"amount": 3,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 3.5,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160109,
"amount": 4,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 5,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 7.5,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160416,
"amount": 35,
"price": 1,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 3.5,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 3,
"price": 10,
"venue": "On Farm",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 17.55,
"venue": "Unknown Restaurant",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160123,
"amount": 1,
"price": 100.8,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 58.9,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 137.23,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160312,
"amount": 1,
"price": 81.68,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160319,
"amount": 1,
"price": 86.76,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160326,
"amount": 1,
"price": 83.75,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160409,
"amount": 1,
"price": 95.39,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160416,
"amount": 1,
"price": 113.54,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160423,
"amount": 1,
"price": 94.72,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160430,
"amount": 1,
"price": 127.58,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160507,
"amount": 1,
"price": 197.39,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160514,
"amount": 1,
"price": 130.07,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160521,
"amount": 1,
"price": 88.65,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160528,
"amount": 1,
"price": 146.17,
"venue": "Unknown Restaurant",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160409,
"amount": 2.5,
"price": 10,
"venue": "Unknown Restaurant",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160117,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Beef",
"measure": "Pounds",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160117,
"amount": 2,
"price": 8,
"venue": "Clement St",
"product": "Beef",
"measure": "Pounds",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160117,
"amount": 4.34,
"price": 1.8433179723502304,
"venue": "Clement St",
"product": "Beef",
"measure": "Pounds",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 15,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 15,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160207,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 5.75,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 17,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 19.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 30.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160207,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 9,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 21,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 22.75,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 1,
"price": 19,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 22,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 23,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 35.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 19.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 35,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 40,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 1,
"price": 50,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 38,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 10.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160417,
"amount": 1,
"price": 40,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 1,
"price": 40,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 7.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 11,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 1,
"price": 9,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 9,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160313,
"amount": 1,
"price": 7,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 5.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 5.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 9,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 1,
"price": 6,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 8.25,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 7,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 1,
"price": 6,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 27.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 11,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 23.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 1,
"price": 34.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 11,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 59,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 9.25,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 12.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 1,
"price": 10.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 19.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 19.75,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 1,
"price": 19,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 93.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160207,
"amount": 1,
"price": 21,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 30,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 7,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 14.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 25,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 13.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 27,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 14,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 18.25,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160522,
"amount": 1,
"price": 235.75,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160103,
"amount": 1,
"price": 28,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 14.5,
"venue": "Clement St",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 15.5,
"venue": "Clement St",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 14.75,
"venue": "Clement St",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 13.5,
"venue": "Clement St",
"product": "Chicken, Whole",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160124,
"amount": 1,
"price": 19,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 63.5,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 1,
"price": 4,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 6,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 1,
"price": 15,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 5,
"venue": "Clement St",
"product": "Produce",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 1,
"price": 80.5,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 1,
"price": 42,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 1,
"price": 8,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 24,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160417,
"amount": 1,
"price": 8,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 6,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 15,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 1,
"price": 58,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 33.5,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160417,
"amount": 1,
"price": 43.5,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 25,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 26.75,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 16.5,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 1,
"price": 20,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 27.25,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 1,
"price": 22,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 8.5,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160417,
"amount": 1,
"price": 10,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 1,
"price": 18,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 1,
"price": 30,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 1,
"price": 30,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160522,
"amount": 1,
"price": 130.25,
"venue": "Clement St",
"product": "Pork",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 1,
"price": 20,
"venue": "Clement St",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 1,
"price": 20,
"venue": "Clement St",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 1,
"price": 16,
"venue": "Clement St",
"product": "Pork, Bacon",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160131,
"amount": 1,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 1,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 1,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 1,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 2,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 2,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 2,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 2,
"price": 17,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 2,
"price": 22.875,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160207,
"amount": 2,
"price": 17.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160207,
"amount": 2,
"price": 15,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 2,
"price": 12.5,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 2,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 2,
"price": 12,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 3,
"price": 13.916666666666666,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 4,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 4,
"price": 10,
"venue": "Clement St",
"product": "Beef",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 4,
"price": 14,
"venue": "Clement St",
"product": "Pork, Sausage",
"measure": "Each",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160214,
"amount": 1,
"price": 40,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160221,
"amount": 1,
"price": 60,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160117,
"amount": 4,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160124,
"amount": 4,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160313,
"amount": 5,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160227,
"amount": 6,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 9,
"price": 46,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160320,
"amount": 10,
"price": 3,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160306,
"amount": 19,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160508,
"amount": 22,
"price": 9.954545454545455,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160424,
"amount": 23,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160515,
"amount": 23.5,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160327,
"amount": 28,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160417,
"amount": 28,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160403,
"amount": 29,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160410,
"amount": 30,
"price": 10,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160501,
"amount": 37,
"price": 9.81081081081081,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
},
{
"date": 20160522,
"amount": 40,
"price": 10.025,
"venue": "Clement St",
"product": "Eggs",
"measure": "Dozen Large",
"createdAt": "Sat Jan 28 2017 10:43:15 GMT-0800 (Pacific Standard Time)"
}];