diff --git a/.eslintrc.json b/.eslintrc.json index 1662f1c..98ce4f2 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -10,4 +10,4 @@ "sourceType": "module" }, "rules": {} -} \ No newline at end of file +} diff --git a/.gitignore b/.gitignore index 2fda96e..d2f464c 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,5 @@ openapi_key.py /__pycache__ classified_ingredients.csv /kroger_output +.DS_Store +node_modules/ \ No newline at end of file diff --git a/.husky/pre-commit b/.husky/pre-commit index 0dd9f79..b7807b0 100644 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,2 +1 @@ -npm run format -npm run lint \ No newline at end of file +npm run format \ No newline at end of file diff --git a/KrogerPipeline/kroger_catalogue.js b/KrogerPipeline/kroger_catalogue.js index 54d3fae..ccd28ac 100644 --- a/KrogerPipeline/kroger_catalogue.js +++ b/KrogerPipeline/kroger_catalogue.js @@ -1,441 +1,815 @@ /** * kroger_catalogue.js * - * A single self-contained program with two modes: + * Finds Kroger stores near a zip code, searches all food categories at + * each store, and writes the results to food_catalogue.csv. * - * ── MODE 1: Build / refresh the full food catalogue ─────────────────────────── - * - * node kroger_catalogue.js - * - * Searches all food categories across all search terms (no location filter) - * and writes every unique product to: - * kroger_output/catalogue/food_catalogue.csv - * - * Includes a `store_ids` column (empty initially) that gets populated in - * mode 2. Safe to re-run — new products are merged in, existing rows - * (including any accumulated store_ids) are preserved. - * - * ── MODE 2: Enrich catalogue with store availability ───────────────────────── + * Each product gets a price column (semicolon-separated) that matches the + * store_ids column order - so price[0] is the price at store_ids[0], etc. * + * Usage: * node kroger_catalogue.js --zipcode=90210 * node kroger_catalogue.js --zipcode=90210 --stores=5 - * node kroger_catalogue.js --zipcode=90210 --stores=all - * - * 1. Looks up Kroger stores near the zip code (default: up to 10). - * 2. For each store, re-runs every food search term WITH that store's - * locationId — this gets store-specific results in one pass. - * 3. Any product returned that already exists in the catalogue gets that - * store's locationId appended to its `store_ids` column. - * 4. Any brand-new product found (not in catalogue yet) is added as a new row. - * 5. Writes the updated catalogue back to food_catalogue.csv. + * node kroger_catalogue.js --zipcode=90210 --dry-run * - * Call cost: ~220 terms × N stores = ~2,200 calls for 10 stores (well within - * the 10,000/day limit). You can safely run several zip codes per day. - * - * FLAGS: - * --zipcode=XXXXX 5-digit US zip code for store enrichment mode - * --stores=10 Max stores to query near the zip (default: 10, or "all") - * --radius=25 Search radius in miles for store lookup (default: 25) - * --out=./kroger_output Output root directory (default: ./kroger_output) - * --categories=a,b Comma-separated category subset (default: all) - * --dry-run Only process first 3 terms per category - * --status Print catalogue stats and exit - * - * EXAMPLES: - * node kroger_catalogue.js # build catalogue - * node kroger_catalogue.js --zipcode=30301 # enrich: Atlanta - * node kroger_catalogue.js --zipcode=10001 --stores=5 # enrich: 5 NYC stores - * node kroger_catalogue.js --zipcode=90210 --stores=all # enrich: all stores near Beverly Hills - * node kroger_catalogue.js --status # stats only + * Flags: + * --zipcode=XXXXX (required) zip code to find stores near + * --stores=10 max stores to query (default: 10, or "all") + * --radius=25 search radius in miles (default: 25) + * --dry-run only do 3 terms per category, good for testing + * --status print catalogue stats and exit */ -import "dotenv/config"; -import fetch from "node-fetch"; -import fs from "fs"; -import path from "path"; -import readline from "readline"; -import { fileURLToPath } from "url"; - -const __filename = fileURLToPath(import.meta.url); -const __dirname = path.dirname(__filename); - -// ─── Configuration ───────────────────────────────────────────────────────────── - -const BASE_URL = "https://api.kroger.com/v1"; -const TOKEN_URL = `${BASE_URL}/connect/oauth2/token`; -const PRODUCTS_URL = `${BASE_URL}/products`; +import dotenv from 'dotenv'; +dotenv.config(); +import fetch from 'node-fetch'; +import fs from 'fs'; +import path from 'path'; +import readline from 'readline'; + +// --- Configuration --- +const BASE_URL = 'https://api.kroger.com/v1'; +const TOKEN_URL = `${BASE_URL}/connect/oauth2/token`; +const PRODUCTS_URL = `${BASE_URL}/products`; const LOCATIONS_URL = `${BASE_URL}/locations`; -const PAGE_LIMIT = 50; -const MAX_PAGES = 20; +const PAGE_LIMIT = 50; +const MAX_PAGES = 20; const REQUEST_DELAY_MS = 350; -const MAX_RETRIES = 3; -const RETRY_DELAY_MS = 2000; - -// ─── CLI Args ────────────────────────────────────────────────────────────────── +const MAX_RETRIES = 3; +const RETRY_DELAY_MS = 2000; +// --- CLI Args --- const args = process.argv.slice(2); function getArg(prefix) { - return (args.find((a) => a.startsWith(prefix)) ?? "").replace(prefix, "") || ""; + return ( + (args.find((a) => a.startsWith(prefix)) ?? '').replace(prefix, '') || '' + ); } -const outRoot = getArg("--out=") || "./kroger_output"; -const zipcodeArg = getArg("--zipcode="); -const storesArg = getArg("--stores="); // number or "all" -const radiusArg = parseInt(getArg("--radius=") || "25", 10); -const categoryFilter = getArg("--categories="); -const isDryRun = args.includes("--dry-run"); -const statusOnly = args.includes("--status"); - -const catalogueDir = path.join(outRoot, "catalogue"); -const catalogueFile = path.join(catalogueDir, "food_catalogue.csv"); +const outRoot = getArg('--out=') || './kroger_output'; +const zipcodeArg = getArg('--zipcode='); +const storesArg = getArg('--stores='); // number or "all" +const radiusArg = parseInt(getArg('--radius=') || '25', 10); +const categoryFilter = getArg('--categories='); +const isDryRun = args.includes('--dry-run'); +const statusOnly = args.includes('--status'); -const isEnrichMode = !!zipcodeArg; -const maxStores = storesArg === "all" ? Infinity : parseInt(storesArg || "10", 10); +const catalogueDir = path.join(outRoot, 'catalogue'); +const catalogueFile = path.join(catalogueDir, 'food_catalogue.csv'); -// ─── Food Categories ─────────────────────────────────────────────────────────── +const maxStores = + storesArg === 'all' ? Infinity : parseInt(storesArg || '10', 10); -// ─── Search Terms — aligned with Walmart pipeline classifier tags ───────────── +// --- Food Categories --- +// --- Search Terms - aligned with Walmart pipeline classifier tags --- // Keys ARE the classifier tags written to the CSV `classifier` column. // Terms are drawn directly from the INGREDIENT_RULES keyword sets in the // Walmart classifier, pruned to terms broad enough to return Kroger results. const FOOD_CATEGORIES = { - PRODUCE: [ - "fresh vegetable", "fresh fruit", "organic vegetable", "organic fruit", - "broccoli", "cauliflower", "spinach", "kale", "romaine", "mixed greens", - "brussels sprout", "cabbage", "carrot", "celery", "cucumber", "zucchini", - "bell pepper", "jalapeño", "cherry tomato", "roma tomato", - "red onion", "yellow onion", "shallot", "scallion", "leek", - "garlic bulb", "portobello", "shiitake", "cremini mushroom", - "asparagus", "artichoke", "beet", "turnip", "parsnip", - "sweet potato", "russet potato", "red potato", "yukon gold", - "corn on cob", "green bean", "snap pea", "snow pea", "eggplant", - "fennel", "radish", "apple", "pear", "orange", "lemon", "lime", - "banana", "mango", "pineapple", "papaya", "kiwi", - "strawberry", "blueberry", "raspberry", "blackberry", - "watermelon", "cantaloupe", "peach", "nectarine", "plum", "cherry", - "avocado", "pomegranate", + 'fresh vegetable', + 'fresh fruit', + 'organic vegetable', + 'organic fruit', + 'broccoli', + 'cauliflower', + 'spinach', + 'kale', + 'romaine', + 'mixed greens', + 'brussels sprout', + 'cabbage', + 'carrot', + 'celery', + 'cucumber', + 'zucchini', + 'bell pepper', + 'jalapeño', + 'cherry tomato', + 'roma tomato', + 'red onion', + 'yellow onion', + 'shallot', + 'scallion', + 'leek', + 'garlic bulb', + 'portobello', + 'shiitake', + 'cremini mushroom', + 'asparagus', + 'artichoke', + 'beet', + 'turnip', + 'parsnip', + 'sweet potato', + 'russet potato', + 'red potato', + 'yukon gold', + 'corn on cob', + 'green bean', + 'snap pea', + 'snow pea', + 'eggplant', + 'fennel', + 'radish', + 'apple', + 'pear', + 'orange', + 'lemon', + 'lime', + 'banana', + 'mango', + 'pineapple', + 'papaya', + 'kiwi', + 'strawberry', + 'blueberry', + 'raspberry', + 'blackberry', + 'watermelon', + 'cantaloupe', + 'peach', + 'nectarine', + 'plum', + 'cherry', + 'avocado', + 'pomegranate', ], FRESH_HERB: [ - "fresh basil", "fresh parsley", "fresh cilantro", "fresh thyme", - "fresh rosemary", "fresh mint", "fresh dill", "fresh chives", - "fresh tarragon", "fresh oregano", "fresh sage", - "fresh lemongrass", "fresh ginger root", + 'fresh basil', + 'fresh parsley', + 'fresh cilantro', + 'fresh thyme', + 'fresh rosemary', + 'fresh mint', + 'fresh dill', + 'fresh chives', + 'fresh tarragon', + 'fresh oregano', + 'fresh sage', + 'fresh lemongrass', + 'fresh ginger root', ], PROTEIN: [ - "chicken breast", "chicken thigh", "chicken wing", "chicken drumstick", - "ground chicken", "whole chicken", "ground turkey", "turkey breast", - "ground beef", "beef chuck", "beef brisket", "ribeye", "sirloin", - "flank steak", "skirt steak", "beef roast", "beef short rib", - "pork chop", "pork loin", "pork belly", "pork shoulder", - "pork tenderloin", "baby back rib", "spiral ham", "ham steak", - "lamb chop", "lamb leg", "ground lamb", - "salmon fillet", "tuna fillet", "tilapia", "cod fillet", "halibut", - "mahi mahi", "sea bass", "trout", "catfish", - "shrimp", "scallop", "lobster tail", "crab leg", "crab meat", - "clam", "mussel", "oyster", - "bacon", "pancetta", "prosciutto", "salami", "pepperoni", - "chorizo", "andouille", "bratwurst", "italian sausage", - "breakfast sausage", - "deli turkey", "deli ham", "deli roast beef", "deli chicken", - "lunch meat", - "extra firm tofu", "silken tofu", "tempeh", "seitan", "edamame", - "black bean", "pinto bean", "kidney bean", "chickpea", "lentil", - "split pea", "navy bean", "cannellini bean", - "large eggs", "cage free egg", "organic egg", "egg whites", + 'chicken breast', + 'chicken thigh', + 'chicken wing', + 'chicken drumstick', + 'ground chicken', + 'whole chicken', + 'ground turkey', + 'turkey breast', + 'ground beef', + 'beef chuck', + 'beef brisket', + 'ribeye', + 'sirloin', + 'flank steak', + 'skirt steak', + 'beef roast', + 'beef short rib', + 'pork chop', + 'pork loin', + 'pork belly', + 'pork shoulder', + 'pork tenderloin', + 'baby back rib', + 'spiral ham', + 'ham steak', + 'lamb chop', + 'lamb leg', + 'ground lamb', + 'salmon fillet', + 'tuna fillet', + 'tilapia', + 'cod fillet', + 'halibut', + 'mahi mahi', + 'sea bass', + 'trout', + 'catfish', + 'shrimp', + 'scallop', + 'lobster tail', + 'crab leg', + 'crab meat', + 'clam', + 'mussel', + 'oyster', + 'bacon', + 'pancetta', + 'prosciutto', + 'salami', + 'pepperoni', + 'chorizo', + 'andouille', + 'bratwurst', + 'italian sausage', + 'breakfast sausage', + 'deli turkey', + 'deli ham', + 'deli roast beef', + 'deli chicken', + 'lunch meat', + 'extra firm tofu', + 'silken tofu', + 'tempeh', + 'seitan', + 'edamame', + 'black bean', + 'pinto bean', + 'kidney bean', + 'chickpea', + 'lentil', + 'split pea', + 'navy bean', + 'cannellini bean', + 'large eggs', + 'cage free egg', + 'organic egg', + 'egg whites', ], DAIRY: [ - "whole milk", "skim milk", "2% milk", "lactose free milk", "organic milk", - "buttermilk", "evaporated milk", "condensed milk", "powdered milk", - "heavy cream", "heavy whipping cream", "half and half", "light cream", - "sour cream", "creme fraiche", - "cream cheese", "mascarpone", "ricotta", "cottage cheese", - "fresh mozzarella", "burrata", - "cheddar cheese", "parmesan", "romano cheese", "asiago", - "gruyere", "swiss cheese", "gouda", "havarti", "fontina", "provolone", - "brie", "camembert", "gorgonzola", "blue cheese", - "feta cheese", "queso fresco", "monterey jack", "pepper jack", - "unsalted butter", "salted butter", "european butter", "ghee", - "greek yogurt", "plain yogurt", "whole milk yogurt", "skyr", "kefir", + 'whole milk', + 'skim milk', + '2% milk', + 'lactose free milk', + 'organic milk', + 'buttermilk', + 'evaporated milk', + 'condensed milk', + 'powdered milk', + 'heavy cream', + 'heavy whipping cream', + 'half and half', + 'light cream', + 'sour cream', + 'creme fraiche', + 'cream cheese', + 'mascarpone', + 'ricotta', + 'cottage cheese', + 'fresh mozzarella', + 'burrata', + 'cheddar cheese', + 'parmesan', + 'romano cheese', + 'asiago', + 'gruyere', + 'swiss cheese', + 'gouda', + 'havarti', + 'fontina', + 'provolone', + 'brie', + 'camembert', + 'gorgonzola', + 'blue cheese', + 'feta cheese', + 'queso fresco', + 'monterey jack', + 'pepper jack', + 'unsalted butter', + 'salted butter', + 'european butter', + 'ghee', + 'greek yogurt', + 'plain yogurt', + 'whole milk yogurt', + 'skyr', + 'kefir', ], GRAIN: [ - "all purpose flour", "bread flour", "whole wheat flour", - "cake flour", "almond flour", "coconut flour", "oat flour", "rye flour", - "chickpea flour", "rice flour", "cassava flour", - "white rice", "brown rice", "jasmine rice", "basmati rice", - "arborio rice", "wild rice", - "spaghetti", "penne", "rigatoni", "fusilli", "farfalle", - "linguine", "fettuccine", "angel hair", "orzo", "macaroni", - "lasagna noodle", "egg noodle", "ramen noodle", "soba noodle", - "udon noodle", "rice noodle", - "rolled oats", "quick oats", "steel cut oats", - "cornmeal", "polenta", "grits", "semolina", - "panko", "plain breadcrumb", - "sandwich bread", "whole wheat bread", "sourdough bread", - "french bread", "pita bread", "naan", "flatbread", - "flour tortilla", "corn tortilla", - "quinoa", "farro", "bulgur", "couscous", "barley", "millet", + 'all purpose flour', + 'bread flour', + 'whole wheat flour', + 'cake flour', + 'almond flour', + 'coconut flour', + 'oat flour', + 'rye flour', + 'chickpea flour', + 'rice flour', + 'cassava flour', + 'white rice', + 'brown rice', + 'jasmine rice', + 'basmati rice', + 'arborio rice', + 'wild rice', + 'spaghetti', + 'penne', + 'rigatoni', + 'fusilli', + 'farfalle', + 'linguine', + 'fettuccine', + 'angel hair', + 'orzo', + 'macaroni', + 'lasagna noodle', + 'egg noodle', + 'ramen noodle', + 'soba noodle', + 'udon noodle', + 'rice noodle', + 'rolled oats', + 'quick oats', + 'steel cut oats', + 'cornmeal', + 'polenta', + 'grits', + 'semolina', + 'panko', + 'plain breadcrumb', + 'sandwich bread', + 'whole wheat bread', + 'sourdough bread', + 'french bread', + 'pita bread', + 'naan', + 'flatbread', + 'flour tortilla', + 'corn tortilla', + 'quinoa', + 'farro', + 'bulgur', + 'couscous', + 'barley', + 'millet', ], BAKING: [ - "baking soda", "baking powder", "cream of tartar", - "active dry yeast", "instant yeast", - "vanilla extract", "almond extract", "peppermint extract", - "cocoa powder", "dutch process cocoa", - "chocolate chips", "white chocolate chips", "baking chocolate", - "powdered sugar", "granulated sugar", "cane sugar", - "brown sugar", "turbinado sugar", "demerara sugar", - "corn syrup", "molasses", - "cake mix", "brownie mix", "pancake mix", "waffle mix", "muffin mix", + 'baking soda', + 'baking powder', + 'cream of tartar', + 'active dry yeast', + 'instant yeast', + 'vanilla extract', + 'almond extract', + 'peppermint extract', + 'cocoa powder', + 'dutch process cocoa', + 'chocolate chips', + 'white chocolate chips', + 'baking chocolate', + 'powdered sugar', + 'granulated sugar', + 'cane sugar', + 'brown sugar', + 'turbinado sugar', + 'demerara sugar', + 'corn syrup', + 'molasses', + 'cake mix', + 'brownie mix', + 'pancake mix', + 'waffle mix', + 'muffin mix', ], SPICE: [ - "black pepper", "white pepper", "peppercorn", - "sea salt", "kosher salt", "himalayan salt", "garlic salt", - "garlic powder", "onion powder", - "cumin", "paprika", "smoked paprika", "chili powder", - "cayenne", "red pepper flake", - "cinnamon", "nutmeg", "oregano", "thyme", "rosemary", - "basil dried", "bay leaf", "turmeric", "coriander", - "fennel seed", "cardamom", "clove", "allspice", - "ground ginger", "mustard seed", "ground mustard", "fenugreek", - "sumac", "za'atar", "herbs de provence", "italian seasoning", - "cajun seasoning", "taco seasoning", - "curry powder", "garam masala", "ras el hanout", "five spice", - "lemon pepper", "steak seasoning", "bbq rub", - "vanilla bean", "saffron", "dill weed", "marjoram", + 'black pepper', + 'white pepper', + 'peppercorn', + 'sea salt', + 'kosher salt', + 'himalayan salt', + 'garlic salt', + 'garlic powder', + 'onion powder', + 'cumin', + 'paprika', + 'smoked paprika', + 'chili powder', + 'cayenne', + 'red pepper flake', + 'cinnamon', + 'nutmeg', + 'oregano', + 'thyme', + 'rosemary', + 'basil dried', + 'bay leaf', + 'turmeric', + 'coriander', + 'fennel seed', + 'cardamom', + 'clove', + 'allspice', + 'ground ginger', + 'mustard seed', + 'ground mustard', + 'fenugreek', + 'sumac', + "za'atar", + 'herbs de provence', + 'italian seasoning', + 'cajun seasoning', + 'taco seasoning', + 'curry powder', + 'garam masala', + 'ras el hanout', + 'five spice', + 'lemon pepper', + 'steak seasoning', + 'bbq rub', + 'vanilla bean', + 'saffron', + 'dill weed', + 'marjoram', ], OIL_FAT: [ - "olive oil", "extra virgin olive oil", - "vegetable oil", "canola oil", "sunflower oil", "safflower oil", - "corn oil", "soybean oil", "peanut oil", "grapeseed oil", - "avocado oil", "coconut oil", "sesame oil", "toasted sesame oil", - "walnut oil", "flaxseed oil", "truffle oil", - "cooking spray", "nonstick spray", - "shortening", "lard", "duck fat", "beef tallow", - "vegan butter", + 'olive oil', + 'extra virgin olive oil', + 'vegetable oil', + 'canola oil', + 'sunflower oil', + 'safflower oil', + 'corn oil', + 'soybean oil', + 'peanut oil', + 'grapeseed oil', + 'avocado oil', + 'coconut oil', + 'sesame oil', + 'toasted sesame oil', + 'walnut oil', + 'flaxseed oil', + 'truffle oil', + 'cooking spray', + 'nonstick spray', + 'shortening', + 'lard', + 'duck fat', + 'beef tallow', + 'vegan butter', ], CONDIMENT: [ - "soy sauce", "tamari", "liquid aminos", "coconut aminos", - "fish sauce", "oyster sauce", "hoisin sauce", "worcestershire sauce", - "hot sauce", "sriracha", "tabasco", "cholula", "sambal oelek", "gochujang", - "apple cider vinegar", "white vinegar", "red wine vinegar", - "white wine vinegar", "balsamic vinegar", "rice vinegar", "malt vinegar", - "dijon mustard", "whole grain mustard", "yellow mustard", - "ketchup", "mayonnaise", "relish", - "bbq sauce", "barbecue sauce", "steak sauce", "buffalo sauce", - "teriyaki sauce", "ponzu sauce", "sweet chili sauce", "stir fry sauce", - "tahini", "miso paste", - "tomato paste", "marinara sauce", "pasta sauce", "alfredo sauce", "pesto", - "enchilada sauce", "salsa verde", "salsa jar", - "pickle", "dill pickle", "pickled jalapeno", "giardiniera", - "capers", "sun dried tomato", "roasted red pepper", - "horseradish", "wasabi paste", + 'soy sauce', + 'tamari', + 'liquid aminos', + 'coconut aminos', + 'fish sauce', + 'oyster sauce', + 'hoisin sauce', + 'worcestershire sauce', + 'hot sauce', + 'sriracha', + 'tabasco', + 'cholula', + 'sambal oelek', + 'gochujang', + 'apple cider vinegar', + 'white vinegar', + 'red wine vinegar', + 'white wine vinegar', + 'balsamic vinegar', + 'rice vinegar', + 'malt vinegar', + 'dijon mustard', + 'whole grain mustard', + 'yellow mustard', + 'ketchup', + 'mayonnaise', + 'relish', + 'bbq sauce', + 'barbecue sauce', + 'steak sauce', + 'buffalo sauce', + 'teriyaki sauce', + 'ponzu sauce', + 'sweet chili sauce', + 'stir fry sauce', + 'tahini', + 'miso paste', + 'tomato paste', + 'marinara sauce', + 'pasta sauce', + 'alfredo sauce', + 'pesto', + 'enchilada sauce', + 'salsa verde', + 'salsa jar', + 'pickle', + 'dill pickle', + 'pickled jalapeno', + 'giardiniera', + 'capers', + 'sun dried tomato', + 'roasted red pepper', + 'horseradish', + 'wasabi paste', ], CANNED_GOOD: [ - "canned tomato", "diced tomato", "crushed tomato", "whole peeled tomato", - "san marzano", "fire roasted tomato", - "canned black bean", "canned chickpea", "canned kidney bean", - "canned pinto bean", "canned navy bean", "canned cannellini", - "canned corn", "canned pumpkin", "canned artichoke", "canned mushroom", - "canned water chestnut", "canned green bean", - "coconut milk can", "coconut cream", - "chicken broth", "beef broth", "vegetable broth", - "chicken stock", "beef stock", "bone broth", - "canned tuna", "canned salmon", "canned sardine", "canned anchovy", - "canned crab", "canned clam", - "chipotle in adobo", "green chili can", + 'canned tomato', + 'diced tomato', + 'crushed tomato', + 'whole peeled tomato', + 'san marzano', + 'fire roasted tomato', + 'canned black bean', + 'canned chickpea', + 'canned kidney bean', + 'canned pinto bean', + 'canned navy bean', + 'canned cannellini', + 'canned corn', + 'canned pumpkin', + 'canned artichoke', + 'canned mushroom', + 'canned water chestnut', + 'canned green bean', + 'coconut milk can', + 'coconut cream', + 'chicken broth', + 'beef broth', + 'vegetable broth', + 'chicken stock', + 'beef stock', + 'bone broth', + 'canned tuna', + 'canned salmon', + 'canned sardine', + 'canned anchovy', + 'canned crab', + 'canned clam', + 'chipotle in adobo', + 'green chili can', ], SWEETENER: [ - "honey", "raw honey", "manuka honey", - "maple syrup", "pure maple syrup", - "agave nectar", "date syrup", - "stevia", "monk fruit sweetener", "erythritol", + 'honey', + 'raw honey', + 'manuka honey', + 'maple syrup', + 'pure maple syrup', + 'agave nectar', + 'date syrup', + 'stevia', + 'monk fruit sweetener', + 'erythritol', ], NUT_SEED: [ - "raw almonds", "sliced almonds", "slivered almonds", - "walnut halves", "pecans", "cashews", "pistachios", - "pine nuts", "hazelnuts", "macadamia nut", "brazil nut", - "peanut butter", "almond butter", "cashew butter", - "sunflower seed", "pumpkin seed", "pepita", - "sesame seed", "chia seed", "flaxseed", "hemp seed", "poppy seed", + 'raw almonds', + 'sliced almonds', + 'slivered almonds', + 'walnut halves', + 'pecans', + 'cashews', + 'pistachios', + 'pine nuts', + 'hazelnuts', + 'macadamia nut', + 'brazil nut', + 'peanut butter', + 'almond butter', + 'cashew butter', + 'sunflower seed', + 'pumpkin seed', + 'pepita', + 'sesame seed', + 'chia seed', + 'flaxseed', + 'hemp seed', + 'poppy seed', ], THICKENER: [ - "cornstarch", "arrowroot powder", "tapioca starch", - "unflavored gelatin", "agar agar", "xanthan gum", "guar gum", "pectin", + 'cornstarch', + 'arrowroot powder', + 'tapioca starch', + 'unflavored gelatin', + 'agar agar', + 'xanthan gum', + 'guar gum', + 'pectin', ], ALCOHOL: [ - "cooking wine", "dry sherry", "mirin", "sake", "rice wine", "shaoxing wine", + 'cooking wine', + 'dry sherry', + 'mirin', + 'sake', + 'rice wine', + 'shaoxing wine', ], OTHER_INGR: [ - "nutritional yeast", "dried mushroom", "nori sheet", "kombu", "wakame", - "dashi", "bonito flake", "matcha powder", - "rose water", "liquid smoke", - "raisins", "dried cranberry", "dried apricot", "dried fig", - "dried mango", "dried date", - "canned peach", "canned pear", "canned pineapple", - "lemon juice", "lime juice", - "jam", "jelly", "fruit preserves", "marmalade", "chutney", - "caramel sauce", "sweetened condensed milk", - "cream of mushroom soup", "cream of chicken soup", - "harissa", "red curry paste", "green curry paste", "yellow curry paste", - "coconut butter", "cacao nibs", "vital wheat gluten", "citric acid", + 'nutritional yeast', + 'dried mushroom', + 'nori sheet', + 'kombu', + 'wakame', + 'dashi', + 'bonito flake', + 'matcha powder', + 'rose water', + 'liquid smoke', + 'raisins', + 'dried cranberry', + 'dried apricot', + 'dried fig', + 'dried mango', + 'dried date', + 'canned peach', + 'canned pear', + 'canned pineapple', + 'lemon juice', + 'lime juice', + 'jam', + 'jelly', + 'fruit preserves', + 'marmalade', + 'chutney', + 'caramel sauce', + 'sweetened condensed milk', + 'cream of mushroom soup', + 'cream of chicken soup', + 'harissa', + 'red curry paste', + 'green curry paste', + 'yellow curry paste', + 'coconut butter', + 'cacao nibs', + 'vital wheat gluten', + 'citric acid', ], - }; -// ─── CSV Schema ──────────────────────────────────────────────────────────────── - +// --- CSV Schema --- const CSV_HEADERS = [ - "productId", - "upc", - "brand", - "description", - "categories", - "size", - "soldBy", - "temperature", - "soldInStore", - "countryOrigin", - "aisleLocations", - "itemsFacets", - "image_url", - "classifier", // ← Walmart classifier tag (PRODUCE, PROTEIN, DAIRY, etc.) - "search_keyword", // ← the specific term that first found this product - "store_ids", // ← semicolon-separated list of locationIds where found + 'productId', + 'upc', + 'brand', + 'description', + 'categories', + 'size', + 'soldBy', + 'temperature', + 'soldInStore', + 'countryOrigin', + 'aisleLocations', + 'itemsFacets', + 'image_url', + 'classifier', // ← Walmart classifier tag (PRODUCE, PROTEIN, DAIRY, etc.) + 'search_keyword', // ← the specific term that first found this product + 'store_ids', // ← semicolon-separated locationIds (in order found) + 'price', // ← semicolon-separated prices matching store_ids order ]; -// ─── Token Manager ───────────────────────────────────────────────────────────── - +// --- Token Manager --- class TokenManager { constructor(clientId, clientSecret) { - if (!clientId || !clientSecret) throw new Error( - "Missing KROGER_CLIENT_ID or KROGER_CLIENT_SECRET in .env" + if (!clientId || !clientSecret) + throw new Error( + 'Missing KROGER_CLIENT_ID or KROGER_CLIENT_SECRET in .env', + ); + this.credentials = Buffer.from(`${clientId}:${clientSecret}`).toString( + 'base64', ); - this.credentials = Buffer.from(`${clientId}:${clientSecret}`).toString("base64"); this.accessToken = null; - this.expiresAt = 0; + this.expiresAt = 0; } async getToken() { - if (this.accessToken && Date.now() < this.expiresAt - 60_000) return this.accessToken; - process.stdout.write(" Refreshing token... "); + if (this.accessToken && Date.now() < this.expiresAt - 60_000) + return this.accessToken; + process.stdout.write(' Refreshing token... '); const res = await fetch(TOKEN_URL, { - method: "POST", + method: 'POST', headers: { - "Content-Type": "application/x-www-form-urlencoded", + 'Content-Type': 'application/x-www-form-urlencoded', Authorization: `Basic ${this.credentials}`, }, - body: "grant_type=client_credentials&scope=product.compact", + body: 'grant_type=client_credentials&scope=product.compact', }); - if (!res.ok) throw new Error(`Token failed (${res.status}): ${await res.text()}`); + if (!res.ok) + throw new Error(`Token failed (${res.status}): ${await res.text()}`); const data = await res.json(); this.accessToken = data.access_token; - this.expiresAt = Date.now() + data.expires_in * 1000; + this.expiresAt = Date.now() + data.expires_in * 1000; console.log(`OK (${Math.round(data.expires_in / 60)} min)`); return this.accessToken; } } -// ─── Helpers ─────────────────────────────────────────────────────────────────── - -function sleep(ms) { return new Promise((r) => setTimeout(r, ms)); } +// --- Helpers --- +function sleep(ms) { + return new Promise((r) => setTimeout(r, ms)); +} function esc(v) { - if (v === null || v === undefined) return ""; + if (v === null || v === undefined) return ''; const s = String(v); - return (s.includes(",") || s.includes('"') || s.includes("\n")) - ? `"${s.replace(/"/g, '""')}"` : s; + return s.includes(',') || s.includes('"') || s.includes('\n') + ? `"${s.replace(/"/g, '""')}"` + : s; } function parseCsvLine(line) { const cols = []; - let cur = "", inQ = false; + let cur = '', + inQ = false; for (let i = 0; i < line.length; i++) { const ch = line[i]; if (ch === '"') { - if (inQ && line[i+1] === '"') { cur += '"'; i++; } - else inQ = !inQ; - } else if (ch === "," && !inQ) { cols.push(cur); cur = ""; } - else cur += ch; + if (inQ && line[i + 1] === '"') { + cur += '"'; + i++; + } else inQ = !inQ; + } else if (ch === ',' && !inQ) { + cols.push(cur); + cur = ''; + } else cur += ch; } cols.push(cur); return cols; } async function* streamCsvRows(filePath) { - const rl = readline.createInterface({ input: fs.createReadStream(filePath), crlfDelay: Infinity }); + const rl = readline.createInterface({ + input: fs.createReadStream(filePath), + crlfDelay: Infinity, + }); let headers = null; for await (const line of rl) { if (!line.trim()) continue; const cols = parseCsvLine(line); - if (!headers) { headers = cols; continue; } + if (!headers) { + headers = cols; + continue; + } const row = {}; - headers.forEach((h, i) => { row[h] = cols[i] ?? ""; }); + headers.forEach((h, i) => { + row[h] = cols[i] ?? ''; + }); yield row; } } -function productToFields(p, classifier = "", searchKeyword = "") { +function productToFields(p, classifier = '', searchKeyword = '') { const items = p.items?.[0] ?? {}; - const frontImg = (p.images ?? []).find((img) => img.perspective === "front" && img.featured); + const frontImg = (p.images ?? []).find( + (img) => img.perspective === 'front' && img.featured, + ); const imgUrl = frontImg - ? ((frontImg.sizes ?? []).find((s) => s.id === "large")?.url ?? frontImg.sizes?.[0]?.url ?? "") - : ""; + ? ((frontImg.sizes ?? []).find((s) => s.id === 'large')?.url ?? + frontImg.sizes?.[0]?.url ?? + '') + : ''; return { - productId: p.productId ?? "", - upc: p.upc ?? "", - brand: p.brand ?? "", - description: p.description ?? "", - categories: (p.categories ?? []).join("; "), - size: items.size ?? "", - soldBy: items.soldBy ?? "", - temperature: items.temperature?.indicator ?? "", - soldInStore: items.soldInStore ?? "", - countryOrigin: p.countryOrigin ?? "", - aisleLocations: (p.aisleLocations ?? []).map((a) => a.description).join("; "), - itemsFacets: (p.itemsFacets ?? []).join("; "), - image_url: imgUrl, - classifier: classifier, // e.g. PRODUCE, PROTEIN, DAIRY … - search_keyword: searchKeyword, // e.g. "chicken breast", "raw almonds" … - store_ids: "", // filled in during enrich mode + productId: p.productId ?? '', + upc: p.upc ?? '', + brand: p.brand ?? '', + description: p.description ?? '', + categories: (p.categories ?? []).join('; '), + size: items.size ?? '', + soldBy: items.soldBy ?? '', + temperature: items.temperature?.indicator ?? '', + soldInStore: items.soldInStore ?? '', + countryOrigin: p.countryOrigin ?? '', + aisleLocations: (p.aisleLocations ?? []) + .map((a) => a.description) + .join('; '), + itemsFacets: (p.itemsFacets ?? []).join('; '), + image_url: imgUrl, + classifier: classifier, // e.g. PRODUCE, PROTEIN, DAIRY … + search_keyword: searchKeyword, // e.g. "chicken breast", "raw almonds" … + store_ids: '', // filled in per store during collection + price: '', // filled in per store during collection }; } function rowToCsv(row) { - return CSV_HEADERS.map((h) => esc(row[h])).join(","); + return CSV_HEADERS.map((h) => esc(row[h])).join(','); } -// ─── API: Fetch products for a single search term ───────────────────────────── - +// --- API: Fetch products for a single search term --- async function fetchProductsForTerm(term, locationId, tokenMgr, dryRun) { const products = []; const maxPages = dryRun ? 1 : MAX_PAGES; for (let page = 0; page < maxPages; page++) { const params = new URLSearchParams({ - "filter.term": term, - "filter.limit": PAGE_LIMIT, + 'filter.term': term, + 'filter.limit': PAGE_LIMIT, }); - // Only send filter.start for pages after the first — some Kroger + // Only send filter.start for pages after the first - some Kroger // endpoints reject start=1 even though it should be a valid value - if (page > 0) params.set("filter.start", page * PAGE_LIMIT + 1); - if (locationId) params.set("filter.locationId", locationId); + if (page > 0) params.set('filter.start', page * PAGE_LIMIT + 1); + if (locationId) params.set('filter.locationId', locationId); let token = await tokenMgr.getToken(); let data; @@ -445,20 +819,28 @@ async function fetchProductsForTerm(term, locationId, tokenMgr, dryRun) { let res; try { res = await fetch(`${PRODUCTS_URL}?${params}`, { - headers: { Authorization: `Bearer ${token}`, Accept: "application/json" }, + headers: { + Authorization: `Bearer ${token}`, + Accept: 'application/json', + }, }); } catch (networkErr) { - if (attempt < MAX_RETRIES) { await sleep(RETRY_DELAY_MS * attempt); continue; } + if (attempt < MAX_RETRIES) { + await sleep(RETRY_DELAY_MS * attempt); + continue; + } throw networkErr; } if (res.status === 400) { - // Bad request — Kroger rejects certain terms or parameter combos. + // Bad request - Kroger rejects certain terms or parameter combos. // Not retryable; skip this term entirely. - const body = await res.text().catch(() => ""); + const body = await res.text().catch(() => ''); throw Object.assign( - new Error(`Skipped (400 Bad Request)${body ? ": " + body.slice(0, 120) : ""}`), - { code: "BAD_REQUEST" } + new Error( + `Skipped (400 Bad Request)${body ? ': ' + body.slice(0, 120) : ''}`, + ), + { code: 'BAD_REQUEST' }, ); } @@ -470,22 +852,27 @@ async function fetchProductsForTerm(term, locationId, tokenMgr, dryRun) { if (res.status === 429) { const wait = RETRY_DELAY_MS * attempt; - process.stdout.write(`[rate-limited, waiting ${wait/1000}s] `); + process.stdout.write(`[rate-limited, waiting ${wait / 1000}s] `); await sleep(wait); continue; } if (res.status === 500 || res.status === 503) { - if (attempt < MAX_RETRIES) { await sleep(RETRY_DELAY_MS * attempt); continue; } - throw new Error(`Server error ${res.status} after ${MAX_RETRIES} retries`); + if (attempt < MAX_RETRIES) { + await sleep(RETRY_DELAY_MS * attempt); + continue; + } + throw new Error( + `Server error ${res.status} after ${MAX_RETRIES} retries`, + ); } if (!res.ok) { - const body = await res.text().catch(() => ""); + const body = await res.text().catch(() => ''); throw new Error(`HTTP ${res.status}: ${body.slice(0, 120)}`); } - data = await res.json(); + data = await res.json(); pageOk = true; break; } @@ -501,8 +888,7 @@ async function fetchProductsForTerm(term, locationId, tokenMgr, dryRun) { return products; } -// ─── API: Look up stores near a zip code ────────────────────────────────────── - +// --- API: Look up stores near a zip code --- async function fetchStoresNearZip(zip, tokenMgr) { // Validate zip if (!/^\d{5}$/.test(zip)) { @@ -510,37 +896,43 @@ async function fetchStoresNearZip(zip, tokenMgr) { } const params = new URLSearchParams({ - "filter.zipCode.near": zip, - "filter.radiusInMiles": Math.min(radiusArg, 100), - "filter.limit": 200, + 'filter.zipCode.near': zip, + 'filter.radiusInMiles': Math.min(radiusArg, 100), + 'filter.limit': 200, }); const token = await tokenMgr.getToken(); const res = await fetch(`${LOCATIONS_URL}?${params}`, { - headers: { Authorization: `Bearer ${token}`, Accept: "application/json" }, + headers: { Authorization: `Bearer ${token}`, Accept: 'application/json' }, }); - if (!res.ok) throw new Error(`Location lookup failed (${res.status}): ${await res.text()}`); + if (!res.ok) + throw new Error( + `Location lookup failed (${res.status}): ${await res.text()}`, + ); - const data = await res.json(); - const stores = (data?.data ?? []).slice(0, maxStores === Infinity ? undefined : maxStores); + const data = await res.json(); + const stores = (data?.data ?? []).slice( + 0, + maxStores === Infinity ? undefined : maxStores, + ); if (stores.length === 0) { throw new Error( - `No stores found within ${radiusArg} miles of ${zip}. Try --radius=50` + `No stores found within ${radiusArg} miles of ${zip}. Try --radius=50`, ); } return stores.map((s) => ({ locationId: s.locationId, - name: s.name ?? "", - chain: s.chain ?? "", - address: `${s.address?.addressLine1 ?? ""}, ${s.address?.city ?? ""}, ${s.address?.state ?? ""} ${s.address?.zipCode ?? ""}`.trim(), + name: s.name ?? '', + chain: s.chain ?? '', + address: + `${s.address?.addressLine1 ?? ''}, ${s.address?.city ?? ''}, ${s.address?.state ?? ''} ${s.address?.zipCode ?? ''}`.trim(), })); } -// ─── Catalogue I/O ──────────────────────────────────────────────────────────── - -/** Load existing catalogue CSV into a Map: productId → row object */ +// --- Catalogue I/O --- +/** Load existing catalogue CSV into a Map: productId -> row object */ async function loadCatalogue() { const catalogue = new Map(); if (!fs.existsSync(catalogueFile)) return catalogue; @@ -553,19 +945,21 @@ async function loadCatalogue() { /** Write the full catalogue Map to disk */ function saveCatalogue(catalogue) { - const header = CSV_HEADERS.join(","); - const rows = Array.from(catalogue.values()).map(rowToCsv); - fs.writeFileSync(catalogueFile, [header, ...rows].join("\n"), "utf8"); + const header = CSV_HEADERS.join(','); + const rows = Array.from(catalogue.values()).map(rowToCsv); + fs.writeFileSync(catalogueFile, [header, ...rows].join('\n'), 'utf8'); } -// ─── Core: Run search terms and collect results ─────────────────────────────── - +// --- Core: Run search terms and collect results --- async function runSearchTerms(locationId, tokenMgr) { const categoryKeys = categoryFilter - ? categoryFilter.split(",").map((s) => s.trim()).filter((k) => FOOD_CATEGORIES[k]) + ? categoryFilter + .split(',') + .map((s) => s.trim()) + .filter((k) => FOOD_CATEGORIES[k]) : Object.keys(FOOD_CATEGORIES); - // productId → { product, classifier, search_keyword } + // productId -> { product, classifier, search_keyword } const results = new Map(); for (const classifier of categoryKeys) { @@ -577,19 +971,28 @@ async function runSearchTerms(locationId, tokenMgr) { for (const term of terms) { process.stdout.write(` "${term}" ... `); try { - const products = await fetchProductsForTerm(term, locationId, tokenMgr, isDryRun); + const products = await fetchProductsForTerm( + term, + locationId, + tokenMgr, + isDryRun, + ); let newCount = 0; for (const p of products) { if (p.productId && !results.has(p.productId)) { // Tag with the classifier and exact term that first found this product - results.set(p.productId, { product: p, classifier, search_keyword: term }); + results.set(p.productId, { + product: p, + classifier, + search_keyword: term, + }); newCount++; } } process.stdout.write(`${products.length} fetched, ${newCount} new\n`); await sleep(REQUEST_DELAY_MS); } catch (err) { - if (err.code === "BAD_REQUEST") { + if (err.code === 'BAD_REQUEST') { process.stdout.write(`skipped (400)\n`); } else { process.stdout.write(`ERROR: ${err.message}\n`); @@ -602,22 +1005,27 @@ async function runSearchTerms(locationId, tokenMgr) { return results; } -// ─── Status ─────────────────────────────────────────────────────────────────── - +// --- Status --- async function printStatus() { if (!fs.existsSync(catalogueFile)) { - console.log("\n No catalogue found. Run without --zipcode to build it first.\n"); + console.log( + '\n No catalogue found yet. Run with --zipcode to build one.\n', + ); return; } - const catalogue = await loadCatalogue(); + const catalogue = await loadCatalogue(); const storeIdSet = new Set(); - let withStores = 0; + let withStores = 0; for (const row of catalogue.values()) { if (row.store_ids) { withStores++; - row.store_ids.split(";").map((s) => s.trim()).filter(Boolean).forEach((id) => storeIdSet.add(id)); + row.store_ids + .split(';') + .map((s) => s.trim()) + .filter(Boolean) + .forEach((id) => storeIdSet.add(id)); } } @@ -625,160 +1033,137 @@ async function printStatus() { console.log(` File : ${catalogueFile}`); console.log(` Total products : ${catalogue.size.toLocaleString()}`); console.log(` With store data : ${withStores.toLocaleString()} products`); - console.log(` Stores indexed : ${storeIdSet.size.toLocaleString()} unique store IDs`); - console.log(` Coverage : ${catalogue.size ? Math.round((withStores / catalogue.size) * 100) : 0}% of products have at least 1 store\n`); + console.log( + ` Stores indexed : ${storeIdSet.size.toLocaleString()} unique store IDs`, + ); + console.log( + ` Coverage : ${catalogue.size ? Math.round((withStores / catalogue.size) * 100) : 0}% of products have at least 1 store\n`, + ); } -// ─── Mode 1: Build / refresh catalogue ─────────────────────────────────────── - +// finds stores near a zip, queries each one, and compiles the results into food_catalogue.csv +// price[i] corresponds to store_ids[i] - they're kept in the same order async function buildCatalogue(tokenMgr) { - console.log("\n── Build Mode: Full Food Catalogue ────────────────────────────────────────"); - console.log(` Output: ${catalogueFile}`); - console.log(` Dry run: ${isDryRun}\n`); - - // Load any existing catalogue so we don't lose accumulated store_ids - console.log(" Loading existing catalogue (if any)..."); - const catalogue = await loadCatalogue(); - const before = catalogue.size; - console.log(` ${before > 0 ? `Found ${before.toLocaleString()} existing products — will merge` : "No existing catalogue — creating fresh"}\n`); - - const freshProducts = await runSearchTerms(null, tokenMgr); - - // Merge: add new products, update metadata on existing ones (preserve store_ids) - let added = 0, updated = 0; - for (const [productId, { product: p, classifier, search_keyword }] of freshProducts) { - const fields = productToFields(p, classifier, search_keyword); - if (catalogue.has(productId)) { - const existing = catalogue.get(productId); - // Update product fields; preserve accumulated store_ids from previous runs - catalogue.set(productId, { ...fields, store_ids: existing.store_ids ?? "" }); - updated++; - } else { - catalogue.set(productId, fields); - added++; - } - } - - saveCatalogue(catalogue); - - console.log(`\n── Done ───────────────────────────────────────────────────────────────────`); - console.log(` Products added : ${added.toLocaleString()}`); - console.log(` Products updated : ${updated.toLocaleString()}`); - console.log(` Total in catalogue: ${catalogue.size.toLocaleString()}`); - console.log(` Saved to: ${catalogueFile}\n`); -} - -// ─── Mode 2: Enrich with store availability ─────────────────────────────────── - -async function enrichWithStores(tokenMgr) { const zip = zipcodeArg; - console.log(`\n── Enrich Mode: Store Availability near ${zip} ────────────────────────────`); - - if (!fs.existsSync(catalogueFile)) { - console.error(`\n ERROR: No catalogue found at ${catalogueFile}`); - console.error(` Run without --zipcode first to build the catalogue.\n`); - process.exit(1); - } + console.log(`\nBuilding food catalogue for stores near ${zip}`); + console.log(` Output: ${catalogueFile}`); + if (isDryRun) console.log(` Dry run: 3 terms per category only\n`); // 1. Find stores near zip console.log(`\n Finding stores within ${radiusArg} miles of ${zip}...`); const stores = await fetchStoresNearZip(zip, tokenMgr); - const storeLimit = maxStores === Infinity ? stores.length : Math.min(maxStores, stores.length); - console.log(`\n Found ${stores.length} store(s) — querying ${storeLimit}:\n`); + const storeLimit = + maxStores === Infinity ? stores.length : Math.min(maxStores, stores.length); + console.log( + `\n Found ${stores.length} store(s) - querying ${storeLimit}:\n`, + ); stores.slice(0, storeLimit).forEach((s, i) => { - console.log(` ${String(i+1).padStart(2)}. [${s.locationId}] ${s.name} (${s.chain})`); + console.log( + ` ${String(i + 1).padStart(2)}. [${s.locationId}] ${s.name} (${s.chain})`, + ); console.log(` ${s.address}`); }); - // 2. Load catalogue into memory - console.log(`\n Loading catalogue...`); + // 2. Load any existing catalogue so a crashed run can be resumed const catalogue = await loadCatalogue(); - console.log(` ${catalogue.size.toLocaleString()} products loaded.\n`); + if (catalogue.size > 0) { + console.log( + `\n Resuming from existing catalogue (${catalogue.size.toLocaleString()} products already saved).`, + ); + } - let totalMatched = 0, totalNew = 0, totalApiCalls = 0; + let totalNew = 0, + totalUpdated = 0; - // 3. For each store, run all search terms and match against catalogue + // 3. Query each store and record price + store_id together for (let i = 0; i < storeLimit; i++) { const store = stores[i]; - console.log(`\n [${i+1}/${storeLimit}] Searching store [${store.locationId}] ${store.name}...`); + console.log( + `\n [${i + 1}/${storeLimit}] Searching store [${store.locationId}] ${store.name}...`, + ); const storeProducts = await runSearchTerms(store.locationId, tokenMgr); - totalApiCalls += storeProducts.size; // rough approximation - let matchedThisStore = 0, newThisStore = 0; + let newThisStore = 0, + updatedThisStore = 0; + + for (const [ + productId, + { product: p, classifier, search_keyword }, + ] of storeProducts) { + const price = String(p.items?.[0]?.price?.regular ?? ''); - for (const [productId, { product: p, classifier, search_keyword }] of storeProducts) { if (catalogue.has(productId)) { - // Product already in catalogue — append this store's ID + // already seen from an earlier store - append this store's id and price const row = catalogue.get(productId); - const existing = row.store_ids - ? row.store_ids.split(";").map((s) => s.trim()).filter(Boolean) + const existingStores = row.store_ids + ? row.store_ids.split(';').filter(Boolean) : []; - if (!existing.includes(store.locationId)) { - existing.push(store.locationId); - row.store_ids = existing.join(";"); + if (!existingStores.includes(store.locationId)) { + row.store_ids = [...existingStores, store.locationId].join(';'); + row.price = row.price ? `${row.price};${price}` : price; } - matchedThisStore++; + updatedThisStore++; } else { - // New product found at this store — add to catalogue with store ID + // first time we've seen this product const fields = productToFields(p, classifier, search_keyword); fields.store_ids = store.locationId; + fields.price = price; catalogue.set(productId, fields); newThisStore++; } } - totalMatched += matchedThisStore; - totalNew += newThisStore; + totalNew += newThisStore; + totalUpdated += updatedThisStore; - console.log(`\n Store [${store.locationId}] done: ${storeProducts.size.toLocaleString()} products found, ${matchedThisStore.toLocaleString()} matched in catalogue, ${newThisStore.toLocaleString()} new`); + console.log( + `\n Store [${store.locationId}] done: ${storeProducts.size.toLocaleString()} products, ${newThisStore.toLocaleString()} new, ${updatedThisStore.toLocaleString()} updated`, + ); - // Save after every store so progress is never lost + // save after every store so we don't lose progress if something crashes saveCatalogue(catalogue); - console.log(` Catalogue saved (${catalogue.size.toLocaleString()} total products)`); + console.log( + ` Catalogue saved (${catalogue.size.toLocaleString()} total products)`, + ); } - // 4. Final summary - console.log(`\n── Done ───────────────────────────────────────────────────────────────────`); - console.log(` Stores searched : ${storeLimit}`); - console.log(` Catalogue matches: ${totalMatched.toLocaleString()}`); - console.log(` New products added: ${totalNew.toLocaleString()}`); + console.log( + `\n-- Done -------------------------------------------------------------------`, + ); + console.log(` Stores searched : ${storeLimit}`); + console.log(` New products : ${totalNew.toLocaleString()}`); + console.log(` Updated products : ${totalUpdated.toLocaleString()}`); console.log(` Total in catalogue: ${catalogue.size.toLocaleString()}`); - - // Show which products now have the most store coverage - let maxStoreCount = 0; - for (const row of catalogue.values()) { - const count = row.store_ids ? row.store_ids.split(";").filter(Boolean).length : 0; - if (count > maxStoreCount) maxStoreCount = count; - } - console.log(` Max stores for 1 product: ${maxStoreCount}`); console.log(` Saved to: ${catalogueFile}\n`); } -// ─── Main ────────────────────────────────────────────────────────────────────── - +// --- Main --- async function main() { - if (!fs.existsSync(catalogueDir)) fs.mkdirSync(catalogueDir, { recursive: true }); + if (!fs.existsSync(catalogueDir)) + fs.mkdirSync(catalogueDir, { recursive: true }); if (statusOnly) { await printStatus(); return; } + if (!zipcodeArg) { + console.error('\n Error: --zipcode=XXXXX is required.\n'); + console.error(' Example: node kroger_catalogue.js --zipcode=90210\n'); + process.exit(1); + } + const tokenMgr = new TokenManager( process.env.KROGER_CLIENT_ID, - process.env.KROGER_CLIENT_SECRET + process.env.KROGER_CLIENT_SECRET, ); - if (isEnrichMode) { - await enrichWithStores(tokenMgr); - } else { - await buildCatalogue(tokenMgr); - } + await buildCatalogue(tokenMgr); } main().catch((err) => { console.error(`\nFatal error: ${err.message}`); process.exit(1); -}); \ No newline at end of file +}); diff --git a/KrogerPipeline/kroger_stores.js b/KrogerPipeline/kroger_stores.js index dd34a60..983708d 100644 --- a/KrogerPipeline/kroger_stores.js +++ b/KrogerPipeline/kroger_stores.js @@ -32,38 +32,40 @@ * node kroger_stores.js --dry-run */ -import "dotenv/config"; -import fetch from "node-fetch"; -import fs from "fs"; -import path from "path"; -import { fileURLToPath } from "url"; +import 'dotenv/config'; +import fetch from 'node-fetch'; +import fs from 'fs'; +import path from 'path'; +import { fileURLToPath } from 'url'; const __filename = fileURLToPath(import.meta.url); -const __dirname = path.dirname(__filename); +const __dirname = path.dirname(__filename); // ─── Config ──────────────────────────────────────────────────────────────────── -const BASE_URL = "https://api.kroger.com/v1"; -const TOKEN_URL = `${BASE_URL}/connect/oauth2/token`; +const BASE_URL = 'https://api.kroger.com/v1'; +const TOKEN_URL = `${BASE_URL}/connect/oauth2/token`; const LOCATIONS_URL = `${BASE_URL}/locations`; -const MAX_LIMIT = 200; // Kroger API hard cap per request +const MAX_LIMIT = 200; // Kroger API hard cap per request const RETRY_DELAY_MS = 2000; -const MAX_RETRIES = 4; +const MAX_RETRIES = 4; // ─── CLI Args ────────────────────────────────────────────────────────────────── const args = process.argv.slice(2); function getArg(prefix) { - return (args.find((a) => a.startsWith(prefix)) ?? "").replace(prefix, "") || ""; + return ( + (args.find((a) => a.startsWith(prefix)) ?? '').replace(prefix, '') || '' + ); } -const isDryRun = args.includes("--dry-run"); -const outDir = getArg("--out=") || "./kroger_output"; -const storesDir = path.join(outDir, "stores"); -const chainArg = getArg("--chain=").toUpperCase(); -const radius = Math.min(parseInt(getArg("--radius=") || "100", 10), 100); -const concurrency = Math.min(parseInt(getArg("--concurrency=") || "5", 10), 10); +const isDryRun = args.includes('--dry-run'); +const outDir = getArg('--out=') || './kroger_output'; +const storesDir = path.join(outDir, 'stores'); +const chainArg = getArg('--chain=').toUpperCase(); +const radius = Math.min(parseInt(getArg('--radius=') || '100', 10), 100); +const concurrency = Math.min(parseInt(getArg('--concurrency=') || '5', 10), 10); // ─── US ZIP CODE GRID ────────────────────────────────────────────────────────── // ~280 zip codes chosen to give contiguous coverage of the entire continental @@ -74,104 +76,669 @@ const concurrency = Math.min(parseInt(getArg("--concurrency=") || "5", 10), 10); const GRID_ZIPS = [ // ── Pacific Northwest ────────────────────────────────────────────────────── - "98101","98201","98801","99201","99301","99401","97201","97401","97501","97701", - "97801","97901", + '98101', + '98201', + '98801', + '99201', + '99301', + '99401', + '97201', + '97401', + '97501', + '97701', + '97801', + '97901', // ── California ──────────────────────────────────────────────────────────── - "96001","95901","95501","94102","94601","95008","93401","93101","92101","91101", - "90001","90401","92501","92701","93301","93601","94201","94901","95201","95301", - "95701","96101", + '96001', + '95901', + '95501', + '94102', + '94601', + '95008', + '93401', + '93101', + '92101', + '91101', + '90001', + '90401', + '92501', + '92701', + '93301', + '93601', + '94201', + '94901', + '95201', + '95301', + '95701', + '96101', // ── Nevada / Arizona ────────────────────────────────────────────────────── - "89101","89301","89501","89701","89801","85001","85201","85301","85501","85701", - "86001","86301","86401","86501", + '89101', + '89301', + '89501', + '89701', + '89801', + '85001', + '85201', + '85301', + '85501', + '85701', + '86001', + '86301', + '86401', + '86501', // ── Alaska ──────────────────────────────────────────────────────────────── - "99501","99701","99901", + '99501', + '99701', + '99901', // ── Hawaii ──────────────────────────────────────────────────────────────── - "96801","96720","96740","96761", + '96801', + '96720', + '96740', + '96761', // ── Mountain West ───────────────────────────────────────────────────────── - "83201","83401","83701","84101","84301","84501","84601","84701","84901", - "85901","86001", + '83201', + '83401', + '83701', + '84101', + '84301', + '84501', + '84601', + '84701', + '84901', + '85901', + '86001', // ── Colorado / Wyoming / Montana / Idaho ────────────────────────────────── - "80202","80401","80501","80631","80901","81001","81201","81301","81401","81501", - "82001","82301","82601","82901","83001","83201","59001","59401","59601","59801", - "59901","82801","82901","83001", + '80202', + '80401', + '80501', + '80631', + '80901', + '81001', + '81201', + '81301', + '81401', + '81501', + '82001', + '82301', + '82601', + '82901', + '83001', + '83201', + '59001', + '59401', + '59601', + '59801', + '59901', + '82801', + '82901', + '83001', // ── New Mexico ──────────────────────────────────────────────────────────── - "87101","87401","87501","87701","87901","88001","88201","88401","88601", + '87101', + '87401', + '87501', + '87701', + '87901', + '88001', + '88201', + '88401', + '88601', // ── North / South Dakota / Nebraska / Kansas ────────────────────────────── - "57001","57201","57401","57601","57701","57901","58001","58201","58401","58601", - "58801","68001","68101","68401","68501","68801","69001","66101","66201","66401", - "66601","66801","67001","67201","67401","67601","67801","67901", + '57001', + '57201', + '57401', + '57601', + '57701', + '57901', + '58001', + '58201', + '58401', + '58601', + '58801', + '68001', + '68101', + '68401', + '68501', + '68801', + '69001', + '66101', + '66201', + '66401', + '66601', + '66801', + '67001', + '67201', + '67401', + '67601', + '67801', + '67901', // ── Oklahoma / Texas ────────────────────────────────────────────────────── - "73101","73401","73601","73801","74101","74401","74601","74801","75001","75201", - "75401","75601","75801","76001","76201","76401","76601","76801","77001","77201", - "77401","77601","77801","78101","78201","78401","78501","78701","78801","79101", - "79201","79401","79601","79701","79901", + '73101', + '73401', + '73601', + '73801', + '74101', + '74401', + '74601', + '74801', + '75001', + '75201', + '75401', + '75601', + '75801', + '76001', + '76201', + '76401', + '76601', + '76801', + '77001', + '77201', + '77401', + '77601', + '77801', + '78101', + '78201', + '78401', + '78501', + '78701', + '78801', + '79101', + '79201', + '79401', + '79601', + '79701', + '79901', // ── Minnesota / Wisconsin / Iowa ────────────────────────────────────────── - "55101","55301","55401","55601","55701","55801","56001","56201","56301","56401", - "56501","56601","56701","56801","57001","54101","54201","54401","54501","54601", - "54701","54901","52001","52101","52201","52301","52401","52501","52601","52701", - "52801", + '55101', + '55301', + '55401', + '55601', + '55701', + '55801', + '56001', + '56201', + '56301', + '56401', + '56501', + '56601', + '56701', + '56801', + '57001', + '54101', + '54201', + '54401', + '54501', + '54601', + '54701', + '54901', + '52001', + '52101', + '52201', + '52301', + '52401', + '52501', + '52601', + '52701', + '52801', // ── Illinois / Missouri ─────────────────────────────────────────────────── - "60601","60901","61101","61201","61401","61601","61701","61801","61901","62001", - "62201","62401","62601","62701","62801","62901","63101","63301","63401","63501", - "63601","63701","63801","63901","64101","64501","64701","64801","65101","65201", - "65401","65601","65701","65801","65901", + '60601', + '60901', + '61101', + '61201', + '61401', + '61601', + '61701', + '61801', + '61901', + '62001', + '62201', + '62401', + '62601', + '62701', + '62801', + '62901', + '63101', + '63301', + '63401', + '63501', + '63601', + '63701', + '63801', + '63901', + '64101', + '64501', + '64701', + '64801', + '65101', + '65201', + '65401', + '65601', + '65701', + '65801', + '65901', // ── Michigan ────────────────────────────────────────────────────────────── - "48101","48201","48401","48601","48701","48801","48901","49001","49101","49201", - "49301","49401","49501","49601","49701","49801","49901", + '48101', + '48201', + '48401', + '48601', + '48701', + '48801', + '48901', + '49001', + '49101', + '49201', + '49301', + '49401', + '49501', + '49601', + '49701', + '49801', + '49901', // ── Indiana / Ohio ──────────────────────────────────────────────────────── - "46201","46401","46501","46601","46701","46801","47201","47401","47601","47701", - "47901","43101","43201","43401","43501","43601","43701","43801","43901","44101", - "44201","44301","44401","44501","44601","44701","44801","44901","45101","45201", - "45301","45401","45501","45601","45701","45801","45901", + '46201', + '46401', + '46501', + '46601', + '46701', + '46801', + '47201', + '47401', + '47601', + '47701', + '47901', + '43101', + '43201', + '43401', + '43501', + '43601', + '43701', + '43801', + '43901', + '44101', + '44201', + '44301', + '44401', + '44501', + '44601', + '44701', + '44801', + '44901', + '45101', + '45201', + '45301', + '45401', + '45501', + '45601', + '45701', + '45801', + '45901', // ── Kentucky / Tennessee ────────────────────────────────────────────────── - "40201","40601","41001","41101","41201","41301","41401","41501","41601","41701", - "42001","42101","42201","42301","42401","42501","42601","42701","37011","37101", - "37201","37301","37401","37501","37601","37701","37801","37901","38001","38101", - "38201","38301","38401","38501","38601","38701","38801","38901", + '40201', + '40601', + '41001', + '41101', + '41201', + '41301', + '41401', + '41501', + '41601', + '41701', + '42001', + '42101', + '42201', + '42301', + '42401', + '42501', + '42601', + '42701', + '37011', + '37101', + '37201', + '37301', + '37401', + '37501', + '37601', + '37701', + '37801', + '37901', + '38001', + '38101', + '38201', + '38301', + '38401', + '38501', + '38601', + '38701', + '38801', + '38901', // ── Virginia / West Virginia / North Carolina ───────────────────────────── - "22201","22301","22601","22901","23101","23201","23401","23601","23801","24101", - "24201","24301","24401","24501","24601","24701","24801","24901","25101","25301", - "25501","25701","25801","25901","26101","26201","26301","26401","26501","26601", - "27101","27201","27301","27401","27501","27601","27701","27801","27901","28001", - "28101","28201","28301","28401","28501","28601","28701","28801","28901", + '22201', + '22301', + '22601', + '22901', + '23101', + '23201', + '23401', + '23601', + '23801', + '24101', + '24201', + '24301', + '24401', + '24501', + '24601', + '24701', + '24801', + '24901', + '25101', + '25301', + '25501', + '25701', + '25801', + '25901', + '26101', + '26201', + '26301', + '26401', + '26501', + '26601', + '27101', + '27201', + '27301', + '27401', + '27501', + '27601', + '27701', + '27801', + '27901', + '28001', + '28101', + '28201', + '28301', + '28401', + '28501', + '28601', + '28701', + '28801', + '28901', // ── South Carolina / Georgia ────────────────────────────────────────────── - "29101","29201","29301","29401","29501","29601","29701","29801","29901","30001", - "30101","30201","30301","30401","30501","30601","30701","30801","30901","31001", - "31101","31201","31301","31401","31501","31601","31701","31801","31901", + '29101', + '29201', + '29301', + '29401', + '29501', + '29601', + '29701', + '29801', + '29901', + '30001', + '30101', + '30201', + '30301', + '30401', + '30501', + '30601', + '30701', + '30801', + '30901', + '31001', + '31101', + '31201', + '31301', + '31401', + '31501', + '31601', + '31701', + '31801', + '31901', // ── Florida ─────────────────────────────────────────────────────────────── - "32004","32101","32201","32301","32401","32501","32601","32701","32801","32901", - "33101","33301","33401","33501","33601","33701","33801","33901","34101","34201", - "34401","34601","34701","34801","34901", + '32004', + '32101', + '32201', + '32301', + '32401', + '32501', + '32601', + '32701', + '32801', + '32901', + '33101', + '33301', + '33401', + '33501', + '33601', + '33701', + '33801', + '33901', + '34101', + '34201', + '34401', + '34601', + '34701', + '34801', + '34901', // ── Alabama / Mississippi ───────────────────────────────────────────────── - "35004","35101","35201","35401","35501","35601","35701","35801","35901","36001", - "36101","36201","36301","36401","36501","36601","36701","36801","36901","39001", - "39101","39201","39301","39401","39501", + '35004', + '35101', + '35201', + '35401', + '35501', + '35601', + '35701', + '35801', + '35901', + '36001', + '36101', + '36201', + '36301', + '36401', + '36501', + '36601', + '36701', + '36801', + '36901', + '39001', + '39101', + '39201', + '39301', + '39401', + '39501', // ── Louisiana / Arkansas ────────────────────────────────────────────────── - "70001","70101","70301","70401","70501","70601","70701","70801","70901","71001", - "71101","71201","71301","71601","71701","71801","71901","72001","72101","72201", - "72301","72401","72601","72701","72801","72901", + '70001', + '70101', + '70301', + '70401', + '70501', + '70601', + '70701', + '70801', + '70901', + '71001', + '71101', + '71201', + '71301', + '71601', + '71701', + '71801', + '71901', + '72001', + '72101', + '72201', + '72301', + '72401', + '72601', + '72701', + '72801', + '72901', // ── Great Lakes / Northeast ─────────────────────────────────────────────── - "53001","53201","53401","53501","53601","53701","53901","14001","14101","14201", - "14301","14601","14701","14801","14901","13201","13301","13401","12001","12101", - "12201","12301","12401","12501","12601","10001","10301","11001","07001","07101", - "07201","07301","07401","07501","07601","07701","07801","07901","08001","08101", - "08201","08301","08401","08501","08601","08701","08801","08901", + '53001', + '53201', + '53401', + '53501', + '53601', + '53701', + '53901', + '14001', + '14101', + '14201', + '14301', + '14601', + '14701', + '14801', + '14901', + '13201', + '13301', + '13401', + '12001', + '12101', + '12201', + '12301', + '12401', + '12501', + '12601', + '10001', + '10301', + '11001', + '07001', + '07101', + '07201', + '07301', + '07401', + '07501', + '07601', + '07701', + '07801', + '07901', + '08001', + '08101', + '08201', + '08301', + '08401', + '08501', + '08601', + '08701', + '08801', + '08901', // ── Pennsylvania ────────────────────────────────────────────────────────── - "15001","15101","15201","15301","15401","15501","15601","15701","15801","15901", - "16001","16101","16201","16301","16401","16501","16601","16701","16801","16901", - "17001","17101","17201","17301","17401","17501","17601","17701","17801","17901", - "18001","18101","18201","18301","18401","18501","18601","18701","18801","18901", - "19001","19101","19201","19301","19401", + '15001', + '15101', + '15201', + '15301', + '15401', + '15501', + '15601', + '15701', + '15801', + '15901', + '16001', + '16101', + '16201', + '16301', + '16401', + '16501', + '16601', + '16701', + '16801', + '16901', + '17001', + '17101', + '17201', + '17301', + '17401', + '17501', + '17601', + '17701', + '17801', + '17901', + '18001', + '18101', + '18201', + '18301', + '18401', + '18501', + '18601', + '18701', + '18801', + '18901', + '19001', + '19101', + '19201', + '19301', + '19401', // ── Maryland / Delaware / DC ────────────────────────────────────────────── - "20001","20601","20701","20801","20901","21001","21101","21201","21301","21401", - "21501","21601","21701","21801","21901","19701","19801","19901", + '20001', + '20601', + '20701', + '20801', + '20901', + '21001', + '21101', + '21201', + '21301', + '21401', + '21501', + '21601', + '21701', + '21801', + '21901', + '19701', + '19801', + '19901', // ── New England ─────────────────────────────────────────────────────────── - "06001","06101","06201","06301","06401","06501","06601","06701","06801","06901", - "01001","01101","01201","01301","01401","01501","01601","01701","01801","01901", - "02101","02201","02301","02401","02501","02601","02701","02801","02901","03001", - "03101","03201","03301","03401","03501","03601","03701","03801","03901","04001", - "04101","04201","04401","04601","04901","05001","05101","05201","05301","05401", - "05501","05601","05701","05801","05901", + '06001', + '06101', + '06201', + '06301', + '06401', + '06501', + '06601', + '06701', + '06801', + '06901', + '01001', + '01101', + '01201', + '01301', + '01401', + '01501', + '01601', + '01701', + '01801', + '01901', + '02101', + '02201', + '02301', + '02401', + '02501', + '02601', + '02701', + '02801', + '02901', + '03001', + '03101', + '03201', + '03301', + '03401', + '03501', + '03601', + '03701', + '03801', + '03901', + '04001', + '04101', + '04201', + '04401', + '04601', + '04901', + '05001', + '05101', + '05201', + '05301', + '05401', + '05501', + '05601', + '05701', + '05801', + '05901', ]; // ─── Token Manager ───────────────────────────────────────────────────────────── @@ -180,30 +747,36 @@ class TokenManager { constructor(clientId, clientSecret) { if (!clientId || !clientSecret) { throw new Error( - "Missing KROGER_CLIENT_ID or KROGER_CLIENT_SECRET.\n" + - "Set them in a .env file or as environment variables." + 'Missing KROGER_CLIENT_ID or KROGER_CLIENT_SECRET.\n' + + 'Set them in a .env file or as environment variables.', ); } - this.credentials = Buffer.from(`${clientId}:${clientSecret}`).toString("base64"); + this.credentials = Buffer.from(`${clientId}:${clientSecret}`).toString( + 'base64', + ); this.accessToken = null; - this.expiresAt = 0; + this.expiresAt = 0; } async getToken() { - if (this.accessToken && Date.now() < this.expiresAt - 60_000) return this.accessToken; - process.stdout.write(" Refreshing OAuth2 token... "); + if (this.accessToken && Date.now() < this.expiresAt - 60_000) + return this.accessToken; + process.stdout.write(' Refreshing OAuth2 token... '); const res = await fetch(TOKEN_URL, { - method: "POST", + method: 'POST', headers: { - "Content-Type": "application/x-www-form-urlencoded", + 'Content-Type': 'application/x-www-form-urlencoded', Authorization: `Basic ${this.credentials}`, }, - body: "grant_type=client_credentials&scope=product.compact", + body: 'grant_type=client_credentials&scope=product.compact', }); - if (!res.ok) throw new Error(`Token request failed (${res.status}): ${await res.text()}`); + if (!res.ok) + throw new Error( + `Token request failed (${res.status}): ${await res.text()}`, + ); const data = await res.json(); this.accessToken = data.access_token; - this.expiresAt = Date.now() + data.expires_in * 1000; + this.expiresAt = Date.now() + data.expires_in * 1000; console.log(`OK (valid ${Math.round(data.expires_in / 60)} min)`); return this.accessToken; } @@ -211,27 +784,29 @@ class TokenManager { // ─── Helpers ─────────────────────────────────────────────────────────────────── -function sleep(ms) { return new Promise((r) => setTimeout(r, ms)); } +function sleep(ms) { + return new Promise((r) => setTimeout(r, ms)); +} async function fetchLocationsForZip(zip, tokenMgr) { const params = new URLSearchParams({ - "filter.zipCode.near": zip, - "filter.radiusInMiles": radius, - "filter.limit": MAX_LIMIT, + 'filter.zipCode.near': zip, + 'filter.radiusInMiles': radius, + 'filter.limit': MAX_LIMIT, }); - if (chainArg) params.set("filter.chain", chainArg); + if (chainArg) params.set('filter.chain', chainArg); const url = `${LOCATIONS_URL}?${params}`; for (let attempt = 1; attempt <= MAX_RETRIES; attempt++) { const token = await tokenMgr.getToken(); const res = await fetch(url, { - headers: { Authorization: `Bearer ${token}`, Accept: "application/json" }, + headers: { Authorization: `Bearer ${token}`, Accept: 'application/json' }, }); if (res.status === 429) { const wait = RETRY_DELAY_MS * attempt; - process.stdout.write(`[429 wait ${wait/1000}s] `); + process.stdout.write(`[429 wait ${wait / 1000}s] `); await sleep(wait); continue; } @@ -240,7 +815,10 @@ async function fetchLocationsForZip(zip, tokenMgr) { continue; } if (!res.ok) { - if (attempt < MAX_RETRIES) { await sleep(RETRY_DELAY_MS); continue; } + if (attempt < MAX_RETRIES) { + await sleep(RETRY_DELAY_MS); + continue; + } throw new Error(`HTTP ${res.status} for zip ${zip}`); } @@ -263,7 +841,7 @@ async function processInBatches(zips, tokenMgr, allStores) { console.error(`\n Error for zip ${zip}: ${err.message}`); return []; } - }) + }), ); let newInBatch = 0; @@ -278,63 +856,114 @@ async function processInBatches(zips, tokenMgr, allStores) { done += batch.length; // Progress bar - const pct = Math.round((done / zips.length) * 100); - const bar = "█".repeat(Math.floor(pct / 5)) + "░".repeat(20 - Math.floor(pct / 5)); + const pct = Math.round((done / zips.length) * 100); + const bar = + '█'.repeat(Math.floor(pct / 5)) + '░'.repeat(20 - Math.floor(pct / 5)); process.stdout.write( - `\r [${bar}] ${pct}% | ${done}/${zips.length} zips | ${allStores.size} unique stores found` + `\r [${bar}] ${pct}% | ${done}/${zips.length} zips | ${allStores.size} unique stores found`, ); } - process.stdout.write("\n"); + process.stdout.write('\n'); } // ─── CSV ─────────────────────────────────────────────────────────────────────── function esc(v) { - if (v === null || v === undefined) return ""; + if (v === null || v === undefined) return ''; const s = String(v); - return s.includes(",") || s.includes('"') || s.includes("\n") - ? `"${s.replace(/"/g, '""')}"` : s; + return s.includes(',') || s.includes('"') || s.includes('\n') + ? `"${s.replace(/"/g, '""')}"` + : s; } const HEADERS = [ - "locationId","name","chain","phone", - "address_line1","address_line2","address_city","address_state","address_zipCode","address_county", - "geo_latitude","geo_longitude", - "hours_timezone","hours_gmtOffset","hours_open24", - "hours_monday_open","hours_monday_close","hours_monday_open24", - "hours_tuesday_open","hours_tuesday_close","hours_tuesday_open24", - "hours_wednesday_open","hours_wednesday_close","hours_wednesday_open24", - "hours_thursday_open","hours_thursday_close","hours_thursday_open24", - "hours_friday_open","hours_friday_close","hours_friday_open24", - "hours_saturday_open","hours_saturday_close","hours_saturday_open24", - "hours_sunday_open","hours_sunday_close","hours_sunday_open24", - "departments_count","departments_names","departments_ids","departments_json", + 'locationId', + 'name', + 'chain', + 'phone', + 'address_line1', + 'address_line2', + 'address_city', + 'address_state', + 'address_zipCode', + 'address_county', + 'geo_latitude', + 'geo_longitude', + 'hours_timezone', + 'hours_gmtOffset', + 'hours_open24', + 'hours_monday_open', + 'hours_monday_close', + 'hours_monday_open24', + 'hours_tuesday_open', + 'hours_tuesday_close', + 'hours_tuesday_open24', + 'hours_wednesday_open', + 'hours_wednesday_close', + 'hours_wednesday_open24', + 'hours_thursday_open', + 'hours_thursday_close', + 'hours_thursday_open24', + 'hours_friday_open', + 'hours_friday_close', + 'hours_friday_open24', + 'hours_saturday_open', + 'hours_saturday_close', + 'hours_saturday_open24', + 'hours_sunday_open', + 'hours_sunday_close', + 'hours_sunday_open24', + 'departments_count', + 'departments_names', + 'departments_ids', + 'departments_json', ]; -const DAYS = ["monday","tuesday","wednesday","thursday","friday","saturday","sunday"]; +const DAYS = [ + 'monday', + 'tuesday', + 'wednesday', + 'thursday', + 'friday', + 'saturday', + 'sunday', +]; function storeToRow(s) { - const addr = s.address ?? {}; - const geo = s.geolocation ?? {}; - const hrs = s.hours ?? {}; + const addr = s.address ?? {}; + const geo = s.geolocation ?? {}; + const hrs = s.hours ?? {}; const deps = s.departments ?? []; const dayFields = DAYS.flatMap((day) => { const d = hrs[day] ?? {}; - return [d.open ?? "", d.close ?? "", d.open24 ?? ""]; + return [d.open ?? '', d.close ?? '', d.open24 ?? '']; }); return [ - s.locationId, s.name, s.chain, s.phone, - addr.addressLine1, addr.addressLine2, addr.city, addr.state, addr.zipCode, addr.county, - geo.latitude, geo.longitude, - hrs.timezone, hrs.gmtOffset, hrs.open24, + s.locationId, + s.name, + s.chain, + s.phone, + addr.addressLine1, + addr.addressLine2, + addr.city, + addr.state, + addr.zipCode, + addr.county, + geo.latitude, + geo.longitude, + hrs.timezone, + hrs.gmtOffset, + hrs.open24, ...dayFields, deps.length, - deps.map((d) => d.name).join("; "), - deps.map((d) => d.departmentId).join("; "), + deps.map((d) => d.name).join('; '), + deps.map((d) => d.departmentId).join('; '), JSON.stringify(deps), - ].map(esc).join(","); + ] + .map(esc) + .join(','); } // ─── Main ────────────────────────────────────────────────────────────────────── @@ -342,7 +971,7 @@ function storeToRow(s) { async function main() { const tokenMgr = new TokenManager( process.env.KROGER_CLIENT_ID, - process.env.KROGER_CLIENT_SECRET + process.env.KROGER_CLIENT_SECRET, ); if (!fs.existsSync(storesDir)) fs.mkdirSync(storesDir, { recursive: true }); @@ -351,63 +980,86 @@ async function main() { const zips = [...new Set(GRID_ZIPS)]; const queryZips = isDryRun ? zips.slice(0, 10) : zips; - console.log("\nKroger Store Scraper"); - console.log(` Strategy : zip-code grid sweep (${queryZips.length} zip codes × ${radius}-mile radius)`); + console.log('\nKroger Store Scraper'); + console.log( + ` Strategy : zip-code grid sweep (${queryZips.length} zip codes × ${radius}-mile radius)`, + ); console.log(` Concurrency: ${concurrency} parallel requests`); - console.log(` Chain filter: ${chainArg || "(all chains)"}`); + console.log(` Chain filter: ${chainArg || '(all chains)'}`); console.log(` Output dir : ${path.resolve(storesDir)}`); - console.log(` Dry run : ${isDryRun}${isDryRun ? " (first 10 zips only)" : ""}\n`); + console.log( + ` Dry run : ${isDryRun}${isDryRun ? ' (first 10 zips only)' : ''}\n`, + ); const allStores = new Map(); // locationId → store object await processInBatches(queryZips, tokenMgr, allStores); if (allStores.size === 0) { - console.log(" No stores found. Check credentials or try --chain with a different value."); + console.log( + ' No stores found. Check credentials or try --chain with a different value.', + ); process.exit(0); } - const storeList = Array.from(allStores.values()) - .sort((a, b) => (a.chain ?? "").localeCompare(b.chain ?? "") || (a.locationId ?? "").localeCompare(b.locationId ?? "")); + const storeList = Array.from(allStores.values()).sort( + (a, b) => + (a.chain ?? '').localeCompare(b.chain ?? '') || + (a.locationId ?? '').localeCompare(b.locationId ?? ''), + ); // ── Write main CSV ───────────────────────────────────────────────────────── - const csvPath = path.join(storesDir, "kroger_stores.csv"); - fs.writeFileSync(csvPath, [HEADERS.join(","), ...storeList.map(storeToRow)].join("\n"), "utf8"); - console.log(`\n Saved ${storeList.length.toLocaleString()} stores → ${csvPath}`); + const csvPath = path.join(storesDir, 'kroger_stores.csv'); + fs.writeFileSync( + csvPath, + [HEADERS.join(','), ...storeList.map(storeToRow)].join('\n'), + 'utf8', + ); + console.log( + `\n Saved ${storeList.length.toLocaleString()} stores → ${csvPath}`, + ); // ── Per-chain CSVs ───────────────────────────────────────────────────────── const byChain = new Map(); for (const s of storeList) { - const key = (s.chain ?? "UNKNOWN").replace(/[^a-zA-Z0-9_]/g, "_"); + const key = (s.chain ?? 'UNKNOWN').replace(/[^a-zA-Z0-9_]/g, '_'); if (!byChain.has(key)) byChain.set(key, []); byChain.get(key).push(s); } - const chainDir = path.join(storesDir, "by_chain"); + const chainDir = path.join(storesDir, 'by_chain'); if (!fs.existsSync(chainDir)) fs.mkdirSync(chainDir); for (const [chain, chainStores] of byChain) { fs.writeFileSync( path.join(chainDir, `${chain}.csv`), - [HEADERS.join(","), ...chainStores.map(storeToRow)].join("\n"), - "utf8" + [HEADERS.join(','), ...chainStores.map(storeToRow)].join('\n'), + 'utf8', ); } console.log(` Per-chain CSVs → ${chainDir}/`); // ── Summary ──────────────────────────────────────────────────────────────── const sorted = [...byChain].sort((a, b) => b[1].length - a[1].length); - const summaryLines = ["chain,store_count", ...sorted.map(([c, arr]) => `${esc(c)},${arr.length}`), `TOTAL,${storeList.length}`]; - fs.writeFileSync(path.join(storesDir, "stores_summary.csv"), summaryLines.join("\n"), "utf8"); + const summaryLines = [ + 'chain,store_count', + ...sorted.map(([c, arr]) => `${esc(c)},${arr.length}`), + `TOTAL,${storeList.length}`, + ]; + fs.writeFileSync( + path.join(storesDir, 'stores_summary.csv'), + summaryLines.join('\n'), + 'utf8', + ); console.log(`\n Chain breakdown:`); for (const [chain, arr] of sorted) { console.log(` ${arr.length.toString().padStart(5)} ${chain}`); } - console.log(` ${"─".repeat(20)}`); + console.log(` ${'─'.repeat(20)}`); console.log(` ${storeList.length.toString().padStart(5)} TOTAL\n`); } main().catch((err) => { console.error(`\nFatal error: ${err.message}`); process.exit(1); -}); \ No newline at end of file +}); diff --git a/Walmart.sql b/Walmart.sql deleted file mode 100644 index 69d63af..0000000 --- a/Walmart.sql +++ /dev/null @@ -1,4058 +0,0 @@ -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10295164, 'DEL MONTE Fruit Naturals Red Grapefruit, 8 oz', 1.67, 'deleted_024000030362', 'Red Grapefruit in Extra Light Syrup 8 oz (227 g) Del Monte Fruit Naturals Red Grapefruit provides an effortless way to enjoy the refreshing taste of fruit. Each container holds delicious fruit picked at the very peak of ripeness. No artificial colors or flavors are added, just the great taste of fruit, naturally. Product of Mexico. Must be refrigerated. 8 oz (227 g) San Francisco, CA 94105 800-543-3090', 'DEL MONTE Fruit Naturals Red Grapefruit, 8 oz', 'Del Monte', 'https://i5.walmartimages.com/asr/4cd5b2f2-62fd-41d7-ba2a-f7e81ea01eb4_1.15cae25db4cf47d7327d567e168564ad.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4cd5b2f2-62fd-41d7-ba2a-f7e81ea01eb4_1.15cae25db4cf47d7327d567e168564ad.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4cd5b2f2-62fd-41d7-ba2a-f7e81ea01eb4_1.15cae25db4cf47d7327d567e168564ad.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10317531, 'Disney Garden Swt Apple Slices 5/2.8 Oz', 3.48, '877629001431', 'short description is not available', 'Disney Garden Swt Apple Slices 5/2.8 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/590950dc-9172-41a6-888c-2a1ea2ee17cf_1.2769b622ab980256b17ef4ae353bfdcb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/590950dc-9172-41a6-888c-2a1ea2ee17cf_1.2769b622ab980256b17ef4ae353bfdcb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/590950dc-9172-41a6-888c-2a1ea2ee17cf_1.2769b622ab980256b17ef4ae353bfdcb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10403799, 'Fresh Organic Limes, 1 lb Bag', 2.98, '681131091251', 'Add zest and flavor to your meals and beverages with these Fresh Organic Limes. Freshly squeezed limes are a key ingredient in many recipes, from homemade salsa to chicken dishes. The citrusy tropical flavor of these limes is sure to add a zing to all your cooked meals. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use them when baking cakes, cookies, and tarts. These limes are sold in a one-pound bag, so you\'ll have plenty for all your culinary creations. Enjoy the refreshing, tart flavor of Fresh Organic Limes.', 'Fresh and juicy limes USDA organic Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies, and tarts Refreshing, tart flavor Available in a 1-pound bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e97f54ec-fde8-49dc-a69e-e860c90deb29_5.8ae8d03d8dbd14578c04c6a33bd276d9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e97f54ec-fde8-49dc-a69e-e860c90deb29_5.8ae8d03d8dbd14578c04c6a33bd276d9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e97f54ec-fde8-49dc-a69e-e860c90deb29_5.8ae8d03d8dbd14578c04c6a33bd276d9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10416264, 'Wholly Guacamole Classic All Natural Hand-Scooped Hass Avocados', 1.98, '616112289587', 'All natural.Wholly Guacamole.America\'s #1.20 vitamins & minerals.classic.hand-scooped.Hass avocados.', 'Guacamole, Classic All natural. America\'s No. 1. 20 vitamins & minerals. Hand-scooped Hass avocados. Gluten free. 100% all natural ingredients (stuff you can pronounce) + 20 vitamins & minerals (stuff your body wants) + good fats (yes, good fats) + more potassium than a banana! Fresherized for flavor. Product of Mexico.', 'Unbranded', 'https://i5.walmartimages.com/asr/5b80d356-2a4e-412d-9223-4a246a897290_1.b398bb335aa2ffe76b8ea42dbcaac975.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5b80d356-2a4e-412d-9223-4a246a897290_1.b398bb335aa2ffe76b8ea42dbcaac975.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5b80d356-2a4e-412d-9223-4a246a897290_1.b398bb335aa2ffe76b8ea42dbcaac975.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10447832, 'Fresh Key Limes, 2 lb Bag', 4.47, '021492630513', 'Indulge in the vibrant, tangy flavor of our Fresh Key Limes. Sourced from the finest citrus groves, these key limes elevate your culinary creations with their unique taste. Each 2 lb bag is packed with juicy, vitamin-rich key limes that are perfect for juices, marinades, and desserts. Ideal for enhancing the taste of your seafood dishes or creating the perfect key lime pie, these limes are a versatile addition to your kitchen. With their refreshing zest, they are essential for crafting appealing beverages and delightful garnishes for a versatile cooking experience.', 'Fresh key limes in a 2 lb bag Perfect for juicing and baking Vibrant, tangy flavor enhances culinary creations Rich in vitamin C and antioxidants Ideal for crafting beverages and garnishes Versatile use in savory and sweet dishes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/473a2b53-01ff-4634-baab-0c19565f40a3.41902a0899256b07443382e4d12ead39.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/473a2b53-01ff-4634-baab-0c19565f40a3.41902a0899256b07443382e4d12ead39.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/473a2b53-01ff-4634-baab-0c19565f40a3.41902a0899256b07443382e4d12ead39.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10448538, 'Mango 20oz', 3.48, '077745235431', 'short description is not available', 'Mango 20oz', '', 'https://i5.walmartimages.com/asr/d61ba96b-ed3e-4e8b-8465-c45f7da7842f_1.2b49ce7eb2cb8f82dc1f70cec7d9701d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d61ba96b-ed3e-4e8b-8465-c45f7da7842f_1.2b49ce7eb2cb8f82dc1f70cec7d9701d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d61ba96b-ed3e-4e8b-8465-c45f7da7842f_1.2b49ce7eb2cb8f82dc1f70cec7d9701d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10449776, 'Ready Pac Foods Ready Pac Watermelon, 40 oz', 7.78, '054427100751', 'Watermelon 40 oz (1.13 kg) No preservatives. Keep refrigerated. 40 oz (1.13 kg) Irwindale, CA 91706 800-800-7822', 'Obim: Watermelon Salad, 40 oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/667ee4b6-a8c0-4ac5-a5f8-00e9206fbee9_1.996b95564e7f2f7570304d814e62d8cc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/667ee4b6-a8c0-4ac5-a5f8-00e9206fbee9_1.996b95564e7f2f7570304d814e62d8cc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/667ee4b6-a8c0-4ac5-a5f8-00e9206fbee9_1.996b95564e7f2f7570304d814e62d8cc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10451960, 'Natures Way Banana Keeper, Banana Holder', 3.98, '085865211013', 'Have a safe and designated place for your fruit with the Nature\'s Way Banana Keeper. It\'s made of a strong, durable material and is easy to use. This banana stand raises your fruit off of the counter, allowing them to hang naturally. This position lets the air flow freely around and through the bananas similar to hanging from a tree, helping them retain the proper pulp temperature and to ripen evenly. This stand also prevents the development of soft spots and damaging bruises. It keeps them fresher longer and gives them a better taste. It\'s dishwasher safe for easy care. Natures Way Banana Keeper:', 'Attractive design decorates and complements any decor Strong and durable Easy to clean Dishwasher safe Hanging banana holder keeps fruit fresh longer Prevents black bruises, soft spots Bananas taste better', 'Nature\'s Way', 'https://i5.walmartimages.com/asr/0799ff2d-7a25-42a2-9c9c-4a5f2fbfd0cc.3f00f5004a88ddbb52b6d01a5ac686e0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0799ff2d-7a25-42a2-9c9c-4a5f2fbfd0cc.3f00f5004a88ddbb52b6d01a5ac686e0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0799ff2d-7a25-42a2-9c9c-4a5f2fbfd0cc.3f00f5004a88ddbb52b6d01a5ac686e0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10795084, 'Del Monte Red Grapefruit, Jarred Fruit, 64 oz. Jar, Fresh Refrigerated Fruit', 8.97, '810051010657', 'Del Monte Red Grapefruit In Extra Light Syrup makes it easy to enjoy high quality fruit in minutes. The jarred fruit is packed with delicious, ripe grapefruit slices in extra light syrup for a ready to eat fruit snack you can feel good about. Del Monte grapefruit offers a good source of vitamin C, making them a convenient, wholesome and ready to eat citrus fruit option for busy nights. Picked and packed at the peak of freshness, peeled and sectioned, and immersed in extra light syrup, the jarred fruit slices are ideal as part of a quick lunch snack or as a flavorful addition to fruit cocktail. Each 64-ounce jar is easy to open, reseal, and store for a convenient fruit snack whenever you need delicious fruit on-the-go. Bring the wholesome goodness of Del Monte Red Grapefruit In Extra Light Syrup to your family.', 'One 64-ounce jar of Del Monte Red Grapefruit In Extra Light Syrup Bring wholesome goodness to your family with Del Monte Red Grapefruit Ideal for fruit cocktails Jarred fruits are easy to open, reseal and store as quick lunch snacks Made with red grapefruit picked at the peak of freshness and immersed in extra light syrup Jarred grapefruit makes a great ready-to-eat fruit snack for busy nights Easy way to have a citrus fruit snack in just minutes', 'Del Monte', 'https://i5.walmartimages.com/asr/fbf4937f-c1f9-4d16-b5e2-9350a1bb5d93.4ab2d5d5fd76d5b2977e9c084a5dcd03.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fbf4937f-c1f9-4d16-b5e2-9350a1bb5d93.4ab2d5d5fd76d5b2977e9c084a5dcd03.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fbf4937f-c1f9-4d16-b5e2-9350a1bb5d93.4ab2d5d5fd76d5b2977e9c084a5dcd03.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10805270, 'Marzetti Guacamole Veg Dip 12fo', 3.57, '070200520127', 'Veggie Dip, Guacamole 12 oz (340 g) 0g Trans fat! Made in USA. Keep refrigerated. Contains milk and egg. 12 oz (340 g) Columbus, OH 43229 2006 T. Marzetti Company', 'Marzetti Guacamole Veg Dip 12fo', 'Marzetti', 'https://i5.walmartimages.com/asr/44964b94-7638-448c-b54a-2645533deb14_1.37cba5df471089c87c6290690620b0d4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44964b94-7638-448c-b54a-2645533deb14_1.37cba5df471089c87c6290690620b0d4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44964b94-7638-448c-b54a-2645533deb14_1.37cba5df471089c87c6290690620b0d4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10813388, 'Washington Fuji Apples, 5 lb Bag', 7.88, 'deleted_033383007038', 'Apples 5 lb (2.27 kg) Grown near beautiful Lake Chelan in Washington State where crisp nights and warm days produce the best tasting apples grown anywhere. www.chelanfresh.com. Catch of the day! Grade meets or exceeds US ex. fancy. 2-1/2 in. min. diameter. Coated with food grade vegetable and/or shellac based wax to maintain freshness. www.chelanfresh.com. Fruits & veggies. More matters. May be coated with food grade vegetable and/or shellax based wax. Produce of USA. Product of USA. 5 lb (2.27 kg) Chelan, WA 98816', 'Apples Grown near beautiful Lake Chelan in Washington State where crisp nights and warm days produce the best tasting apples grown anywhere. www.chelanfresh.com. Catch of the day! Grade meets or exceeds US ex. fancy. 2-1/2 in. min. diameter. Coated with food grade vegetable and/or shellac based wax to maintain freshness. www.chelanfresh.com. Fruits & veggies. More matters. May be coated with food grade vegetable and/or shellax based wax. Produce of USA. Product of USA.', 'DreamBone', 'https://i5.walmartimages.com/asr/09e27ee4-d4d3-46f8-8b77-07e106f773c6_1.05e73d184f398941ca4dea54ba8e02b9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/09e27ee4-d4d3-46f8-8b77-07e106f773c6_1.05e73d184f398941ca4dea54ba8e02b9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/09e27ee4-d4d3-46f8-8b77-07e106f773c6_1.05e73d184f398941ca4dea54ba8e02b9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10813390, 'Fresh Green Seedless Grapes, 2 lb', 4.97, '033383250557', 'Treat yourself to the delicious, juicy flavor of Fresh Green Grapes. These grapes are bursting with sweet flavor, so you can easily enjoy a handful as a fresh snack any time of day. Enjoy them for breakfast, lunch, dinner, or dessert. They are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Fresh Green Grapes.', 'Fresh Green Seedless Grapes Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e227d687-d4b5-4f05-a61e-e55f8f526075.39679801746d29ef48d99c92d7e4bcef.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e227d687-d4b5-4f05-a61e-e55f8f526075.39679801746d29ef48d99c92d7e4bcef.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e227d687-d4b5-4f05-a61e-e55f8f526075.39679801746d29ef48d99c92d7e4bcef.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10813391, 'Fresh Black Seedless Grapes, 2 lb', 4.97, '033383250571', 'Table Black Seedless', 'Fresh Black Seedless Grapes, 2 lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b9205886-b551-4692-8bb3-7b856c9027fb.3946687e06ca38e836f8c0f8af6cf8b4.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b9205886-b551-4692-8bb3-7b856c9027fb.3946687e06ca38e836f8c0f8af6cf8b4.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b9205886-b551-4692-8bb3-7b856c9027fb.3946687e06ca38e836f8c0f8af6cf8b4.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10813392, 'Fresh Organic Red Seedless Grapes from California, 2 lb Package', 5.27, '851781005612', 'Marketside Organic Red Grapes are seedless for you convenience and deliver a pleasantly refreshing taste in every bite. These fresh grapes have a firm texture and a vibrant red color. Enjoy them as a healthy snack or use as an ingredient in sweet and savory dishes. Use them in salads, pies, tarts, chicken salad and more. They are great for health conscious individuals as they are USDA organic. They are also a nutrient dense fruit that is low in calories. This container comes with two pounds of grapes making it easy to stock up on your favorite fruit. Enjoy fresh from the farm flavors with Marketside Organic Red Grapes. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Fresh Organic Red Seedless Grapes Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Marketside', 'https://i5.walmartimages.com/asr/abaf57b8-4b92-4b87-9be4-8b77e031073f.167672647b84e3503555fa9f6f68405f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/abaf57b8-4b92-4b87-9be4-8b77e031073f.167672647b84e3503555fa9f6f68405f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/abaf57b8-4b92-4b87-9be4-8b77e031073f.167672647b84e3503555fa9f6f68405f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (11025598, 'Fresh Mandarin Oranges, 3 lb Bag', 3.97, '899783002024', 'Enjoy the juicy goodness of citrus when you eat a Fresh Mandarin Orange. Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Among the smallest fruits in the orange family, clementines have a pleasing sweet-tart flavor and are typically seedless. Generally a winter fruit, mandarins are now available year-round in most markets. Mandarins are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the mandarins hang out in a bowl on your counter or table to breathe. Compact and portable, mandarins are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious fresh mandarin on hand for an easy, healthy treat.', 'Fresh Clementines, 3 lb Bag Delicious, sweet, juicy citrus Pleasing sweet-tart flavor Easy to peel and segment Excellent source of vitamin C, potassium, and folic acid For maximum flavor, do not refrigerate Typically seedless You\'ll have plenty for everyone with this 3-pound bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6f74508d-b685-4657-b5a0-2d29ab6a026f.a8d3beade57c94b66b31d9cf87e12e13.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6f74508d-b685-4657-b5a0-2d29ab6a026f.a8d3beade57c94b66b31d9cf87e12e13.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6f74508d-b685-4657-b5a0-2d29ab6a026f.a8d3beade57c94b66b31d9cf87e12e13.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (13424464, 'Fresh Valencia Oranges, 4 lb, Bag', 3.97, '033383120584', 'Known for their sweet flavor, Valencia Oranges have a thin skin and are typically very juicy. It is the most popular orange for juicing. It\'s juice will remain perfectly sweet even after air exposure. With a balanced sweet-to-tart flavor ratio that carries over to their juice, Valencia Oranges are widely available during the spring and summer months. Use Valencia oranges to make fresh orange juice, or use their flesh, juice, and zest in baked goods, cocktails, sauces, and marinades. Keep some sunshine on hand with Valencia Oranges. Available in a 4 lb bag.', '4 lb bag of Valencia oranges Thin skin and very juicy Most popular orange for juicing Balanced sweet-to-tart flavor ratio Widely available during the spring and summer months Use their flesh, juice, and zest in baked goods, cocktails, sauces, and marinades', 'Fresh Produce', 'https://i5.walmartimages.com/asr/aa6059cd-c60c-4fd5-b4ee-52d402de51db.e50ceff4098f3006f5000acb3c8941d5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa6059cd-c60c-4fd5-b4ee-52d402de51db.e50ceff4098f3006f5000acb3c8941d5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa6059cd-c60c-4fd5-b4ee-52d402de51db.e50ceff4098f3006f5000acb3c8941d5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (13908231, 'Fresh Cranberries, 12 oz, Bag', 0.98, '854641003001', 'Savor the tart taste of Fresh Cranberries. Cranberries have a wonderful tart flavor that can easily take on the sweetness of your favorite sweetener. Use them to make a tart cranberry sauce, bake them into delicious cranberry and orange scones, combine with baked Brie for a gooey, sweet appetizer, or reduce them for a glaze to use on grilled chicken or turkey. They contain essential vitamins and nutrients like vitamin C, vitamin B, fiber, and antioxidants making them perfect for a healthy diet. Prior to use simply gently wash them with cool water, drain, and enjoy the zesty taste. Refrigerate the berries to keep them fresh and ready for use. Pick up a Fresh Cranberries container today and relish the delectable flavor.', 'Fresh Field Grown Cranberries, 12 oz Bag: Enjoy with your favorite sweetener, baked good, or savory dish Enjoy with your favorite sweetener, baked good, or savory dish Light, tart taste Healthy treat Prior to use gently wash them with cool water Refrigerate your berries in the original container to maintain freshness Light, tart taste Healthy treat Prior to use gently wash them with cool water Refrigerate your berries in the original container to maintain freshness Keep dry for optimal freshness Cranberries can be stored up to 4 weeks in the refrigerator and up to 1 year in the freezer Keep dry for optimal freshness Cranberries can be stored up to 4 weeks in the refrigerator and up to 1 year in the freezer', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f9943649-faa7-4963-972e-1bcc4b468b57.d540cac6a95f56e03208080aaeb56f75.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f9943649-faa7-4963-972e-1bcc4b468b57.d540cac6a95f56e03208080aaeb56f75.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f9943649-faa7-4963-972e-1bcc4b468b57.d540cac6a95f56e03208080aaeb56f75.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (15716498, 'Del Monte Red Grapefruit Fruit Cup Snacks, No Sugar Added, 6.5 oz Cup', 1.97, '024000507932', 'Del Monte Red Grapefruit Fruit Cup Snacks, 6.5 oz Cup is packed with delicious, wholesome fruit with no sugar added for a snack you can feel good about. These bite-sized grapefruit pieces are conveniently packaged in easy-to-open individual fruit cups for a quick on the go snack. Each of these no sugar added fruit cups is rich in Vitamin C and contains 60% less sugar than Red Grapefruit in artificially sweetened water. Easily pack these fruit cups in a school lunchbox for a tasty school snack, or grab a few to take on a weekend trip with the family. Each refrigerated fruit cup comes with an easy peel-off lid for a tasty fruit snack you can say yes to every day. Bring goodness to your family with Del Monte Red Grapefruit Fruit Cup Snacks.', 'One 6.5 oz cup of Del Monte Red Grapefruit Fruit Cup Snacks Enjoy the delicious taste of juicy Del Monte Red Grapefruit with no added sugar, in every fruit cup These bite-sized red grapefruit pieces are bursting with juicy flavor for a nourishing and convenient fruit snack Bring a pack of fruit cups for a weekend trip with the family, or pack some grapefruit cups in a school lunchbox for a tasty school snack Each individual grapefruit Fruit Cup Snack offers a rich source of Vitamin C', 'Del Monte', 'https://i5.walmartimages.com/asr/e4a819ce-d11a-4da1-8804-4c5780a2db54.96d188063be69a5385a805c43c5fc7b7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4a819ce-d11a-4da1-8804-4c5780a2db54.96d188063be69a5385a805c43c5fc7b7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4a819ce-d11a-4da1-8804-4c5780a2db54.96d188063be69a5385a805c43c5fc7b7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (19400486, 'Walmart Produce Wrapped Watermelon Quarters', 3.28, '826766125005', 'short description is not available', 'Walmart Produce Wrapped Watermelon Quarters', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bece1249-8c24-44f5-86c8-8f8ce4e93b1e_1.7e6368f068bb06ef75dc29fff55de3c9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bece1249-8c24-44f5-86c8-8f8ce4e93b1e_1.7e6368f068bb06ef75dc29fff55de3c9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bece1249-8c24-44f5-86c8-8f8ce4e93b1e_1.7e6368f068bb06ef75dc29fff55de3c9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (20554590, 'Del Monte Red Grapefruit Fruit Cup Snacks, 7 oz', 1.97, '810051010480', 'Del Monte Red Grapefruit Fruit Cup Snacks, 7 oz Cup is packed with delicious wholesome red grapefruit in extra light syrup for a snack you can feel good about. Del Monte Red Grapefruit comes conveniently packaged in easy-to-open individual fruit cups for a quick on the go snack. Each Del Monte Red Grapefruit cup offers a rich source of Vitamin C and is bursting with flavor, a nourishing snack the whole family will love. Enjoy the sweet taste of grapefruit goodness with every fun spoonful. Easily pack these fruit cups in a school lunchbox for a tasty school snack, or grab a few to take on a weekend trip with the family. Bring goodness to your family with Del Monte.', 'One 7 oz cup of Del Monte Red Grapefruit Fruit Cup Snacks Each Del Monte Red Grapefruit fruit snack cup offers a rich source of Vitamin C Del Monte Red Grapefruit cups are bursting with rich, fruity flavor for a nourishing and convenient snack Enjoy the delicious taste of juicy red grapefruit in extra light syrup Bring a pack of fruit cups for a weekend trip with the family, or pack some grapefruit cups in a school lunchbox for a tasty school snack', 'Del Monte', 'https://i5.walmartimages.com/asr/bbbd73a5-f22d-4d52-adc2-3625aa86b60b.1b42c719ba589a98f92b661d26a1adab.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bbbd73a5-f22d-4d52-adc2-3625aa86b60b.1b42c719ba589a98f92b661d26a1adab.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bbbd73a5-f22d-4d52-adc2-3625aa86b60b.1b42c719ba589a98f92b661d26a1adab.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (20680599, 'Concord Foods, Chiquita Banana Bread Mix, 13.7 oz', 2.64, '041409002479', 'Banana Bread Mix 13.7 OZ Pouch. Just add 2 fresh & ripe bananas, water and egg. Easy to make. Shelf-Stable in plastic pouch. No partially hydrogenated oils. No artificial flavors. No preservatives. For more tasty suggestions and Concord Foods recipes, visit our website at www.concordfoods.com. You Will Need: 1 cup mashed banana approx. 2 bananas (over-ripe); 1 large egg (lightly beaten); 1/3 cup water. 1. Pre-heat oven to 350 degrees F. Grease and lightly flour 8 x 4 inch loaf pan. 2. Stir contents of Chiquita Banana Bread pouch with water, lightly beaten egg and mashed bananas for 1-2 minutes or until all ingredients are wet. 3. Pour batter into greased and floured loaf pan. 4. Bake at 350 degrees for 45-50 minutes or until toothpick inserted into center comes out clean. If using a 9 x 5-inch baking pan adjust baking time to 40-45 minutes. Cool 20 minutes. Loosen edges with knife and remove from pan. Makes 12 servings! 13.7 oz (390 g). Pouch is #2 recyclable. Approved for store drop-off programs.', 'Banana Bread Mix Just add 2 fresh bananas, water and egg. Easy to make. No partially hydrogenated oils. No artificial flavors. No preservatives. Shelf-Stable Plastic Pouch .', 'Chiquita', 'https://i5.walmartimages.com/asr/9118f2e8-5ae8-491f-89a2-0f1044b657ff.eef1aa6ba2eb2b41db1d9c03d67f99ab.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9118f2e8-5ae8-491f-89a2-0f1044b657ff.eef1aa6ba2eb2b41db1d9c03d67f99ab.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9118f2e8-5ae8-491f-89a2-0f1044b657ff.eef1aa6ba2eb2b41db1d9c03d67f99ab.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (21968705, 'Fresh Melon Trio, 16 oz', 3.88, '717524777058', 'Introducing Del Monte® Melon Medley - a delightful fusion of three exquisite melons, featuring Del Monte\'s signature Quality®. This refreshing medley combines juicy cantaloupe (USA), succulent honeydew (USA), and thirst-quenching watermelon, creating a symphony of flavors and textures. Perfect for any occasion, the Del Monte® Melon Medley is a delightful way to enjoy the best of nature\'s offerings. Share this vibrant and delicious fruit blend with friends and family, or savor it alone as a healthy and satisfying treat. Experience the unparalleled taste of Del Monte® Melon Medley today!', 'No preservatives Introducing Del Monte® Melon Medley - a delightful fusion of three exquisite melons, featuring Del Monte\'s signature Quality®.&; This refreshing medley combines juicy cantaloupe (USA), succulent honeydew (USA), and thirst-quenching watermelon, creating a symphony of flavors and textures.&; Perfect for any occasion, the Del Monte® Melon Medley is a delightful way to enjoy the best of nature\'s offerings.&; Share this vibrant and delicious fruit blend with friends and family, or savor it alone as a healthy and satisfying treat. &Experience the unparalleled taste of Del Monte® Melon Medley today! Find this in your local Walmart! Delicious Melon Trio', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2974442f-942c-4f12-8415-34a58dadb530_1.f68cab08deeed20be25c17416c5e0d3f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2974442f-942c-4f12-8415-34a58dadb530_1.f68cab08deeed20be25c17416c5e0d3f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2974442f-942c-4f12-8415-34a58dadb530_1.f68cab08deeed20be25c17416c5e0d3f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (22142321, 'Melon Trio 9 Oz', 2.48, '826766255849', 'short description is not available', 'Melon Trio 9 Oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/fd2fac8a-5558-4c3d-97fa-60da7c4ade84_1.205ec17d75a91fd1299d4b9648117f00.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fd2fac8a-5558-4c3d-97fa-60da7c4ade84_1.205ec17d75a91fd1299d4b9648117f00.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fd2fac8a-5558-4c3d-97fa-60da7c4ade84_1.205ec17d75a91fd1299d4b9648117f00.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (22211097, 'Concorde Pears, each', 0.69, '887434030168', 'Concorde Pear', 'Concorde Pears', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7f4a1db5-89fb-487b-836a-1e0a27d2cf2c.48dee7b39cf8bd7a00d380d9a0d59543.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7f4a1db5-89fb-487b-836a-1e0a27d2cf2c.48dee7b39cf8bd7a00d380d9a0d59543.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7f4a1db5-89fb-487b-836a-1e0a27d2cf2c.48dee7b39cf8bd7a00d380d9a0d59543.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (22660282, 'Fresh Strawberries, 2 lb, Container', 5.97, '780353784047', 'The sweet, juicy flavor of Fresh Strawberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. They contain essential vitamins and nutrients like, vitamin C, dietary fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh Strawberries today and savor the delectable flavor.', 'Prior to serving gently wash the fruit and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'Fresh Produce', 'https://i5.walmartimages.com/asr/dd2bcd97-25af-4a91-9258-989853e16b2f_1.36dd4f1579a25d423741d9970de3ddac.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dd2bcd97-25af-4a91-9258-989853e16b2f_1.36dd4f1579a25d423741d9970de3ddac.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dd2bcd97-25af-4a91-9258-989853e16b2f_1.36dd4f1579a25d423741d9970de3ddac.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (22863044, 'Crunch Pak Flavorz Disney Sliced Apples w/Natural Grape Flavor, 10 oz/5 ct', 3.48, '732313089983', '', 'Crunch Pak Flavorz Disney Sliced Apples with Natural Grape Flavor: Healthy snack Mickey Mouse and friends', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8c6d6a4a-e270-4a7f-943e-a63991349810.a3c498abfce578c2a52cdc934757e23a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8c6d6a4a-e270-4a7f-943e-a63991349810.a3c498abfce578c2a52cdc934757e23a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8c6d6a4a-e270-4a7f-943e-a63991349810.a3c498abfce578c2a52cdc934757e23a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (24538641, 'Fresh Kiwi, 16 oz, Package', 3.12, '054107401000', 'Treat yourself to the delicious and refreshing taste of kiwi. Kiwi are known for their sweet, tangy, and soft flesh and nutritional benefits. They are packed with vitamin C, fiber, and antioxidants. They\'re also fat-free and have a low glycemic index. Enjoy a fresh kiwi with your breakfast to start your day off on the right foot or bring one to work and treat yourself to a scrumptious healthy snack at the office. You can also serve them up in a big fresh fruit salad with all your favorite fruits like strawberries, apples, blueberries and more. They\'re even perfect for topping pies, tres leches cakes, tarts and more for dessert. The possibilities are endless when you bring home Kiwi', 'Delicious sweet and tangy kiwi fruit Packed with Vitamin C, fiber and antioxidants with a scrumptious fruit taste Enjoy a fresh kiwi with your breakfast to start your day off on the right foot Bring one to work and treat yourself to a scrumptious healthy snack at the office Great for school lunches Perfect for topping desserts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/15bd81c7-5450-4d7a-8b58-a9256c868da0.4d15c3921b6f2774c1db0be4f5e39158.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/15bd81c7-5450-4d7a-8b58-a9256c868da0.4d15c3921b6f2774c1db0be4f5e39158.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/15bd81c7-5450-4d7a-8b58-a9256c868da0.4d15c3921b6f2774c1db0be4f5e39158.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (28826837, 'Marketside Fresh Cut Mango, 16 oz Tray', 5.44, '074641003171', 'Enjoy the sweet, tropical flavor of Marketside Mango. These precut pieces are great for breakfast, lunch, dessert, or when you want a snack. Mango is a good source of vitamin C making it an excellent healthy treat. You can eat it right out of the container, infuse them with water and mint for a refreshing drink, or chop them up and make a mouthwatering mango salsa with jalapenos, tomatoes, and red onion. With 16-ounces in each container, this mango is great for sharing with friends and family or keep it for yourself. It comes in a closable container to help maintain freshness. Bring home Marketside Mango today for a refreshing, healthy treat. Marketside provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Marketside item.', 'Marketside Mango 16 oz Comes in a re-closable container to help maintain freshness Great for breakfast, lunch, dessert, or when you want a snack No preservatives, artificial colors, or artificial flavors Convenient and portable Share with friends and family or keep for yourself Make a fruit bowl topped with whipped cream or a yogurt parfait Enjoy on their own or in a variety of recipes', 'Marketside', 'https://i5.walmartimages.com/asr/70a13b6e-8fc2-4689-8f7c-f116bd06db60.c6d1ff904eb5cdbe90ce7f35604cb74d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/70a13b6e-8fc2-4689-8f7c-f116bd06db60.c6d1ff904eb5cdbe90ce7f35604cb74d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/70a13b6e-8fc2-4689-8f7c-f116bd06db60.c6d1ff904eb5cdbe90ce7f35604cb74d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (28826839, 'Fresh Pineapple Rings, 8 oz', 1.99, '074641042002', '', 'Fresh Pineapple Rings: Cleaned and cut Ready to eat', 'Country Fresh', 'https://i5.walmartimages.com/asr/4a9ca2e9-fb23-4829-973e-c7e81891dab4_1.ec3705a43b639df9aea0d7a984ecf46a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4a9ca2e9-fb23-4829-973e-c7e81891dab4_1.ec3705a43b639df9aea0d7a984ecf46a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4a9ca2e9-fb23-4829-973e-c7e81891dab4_1.ec3705a43b639df9aea0d7a984ecf46a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (29823646, 'Concord Foods Lemon Juice from Concentrate, No Pulp, 4.5 oz', 0.98, '041409000055', 'Concord Foods Lemon Juice contains no pulp and will add zest and flavor to your favorite recipes. Use this lemon juice in sweet treats like lemon thumbprint cookies, lemon snowball cookies, or cheesecake lemon bars. You can also use it to add flavor to savory foods like lemon chicken, lemon spinach dip or a leafy green salad. There are 26 servings in each bottle which equates to the juice of almost three lemons. Enjoy the caffeine-free taste and versatility of Concord Foods Lemon Juice. Shelf-Stable (Refrigerate after opening).', 'Concord Foods Lemon Juice, From Concentrate, 4.5 FL OZ May be used in a variety of savory or sweet recipes Drizzle on fish or add to your favorite sauces Caffeine-free, no pulp Use to make refreshing beverages 3 tbsp. of juice equals 1 medium lemon Refrigerate after opening Shelf-Stable', 'Concord Foods', 'https://i5.walmartimages.com/asr/bc849737-899a-460b-bc58-d2d7a8158687.768b4d9d7a618e0a5e6a29aa31af28f5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc849737-899a-460b-bc58-d2d7a8158687.768b4d9d7a618e0a5e6a29aa31af28f5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc849737-899a-460b-bc58-d2d7a8158687.768b4d9d7a618e0a5e6a29aa31af28f5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (32176609, 'Fresh Green Seedless Grapes, 3 lb', 4.97, '854957001364', 'Treat yourself to the delicious, juicy flavor of Fresh Green Seedless Grapes. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Fresh Green Seedless Grapes.', 'Fresh Green Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/63e94312-19b8-4874-9e43-518a58288cee.7e323d21847755a8a1b7fe3f7ff8dad1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/63e94312-19b8-4874-9e43-518a58288cee.7e323d21847755a8a1b7fe3f7ff8dad1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/63e94312-19b8-4874-9e43-518a58288cee.7e323d21847755a8a1b7fe3f7ff8dad1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (32196592, 'Fresh Tomatillo Milpero, 1 Pound Bag', 2.52, '045255128581', 'Enjoy the delicious flavor of fresh Milpero Tomatillos. Milpero tomatillos are a miniaturized version of the tomatillo, about half the size of their cousin. The flavor is more concentrated with a sweeter, less acidic taste than the tomatillo. This versatile ingredient is perfect for a variety of mouthwatering dishes. Use them raw by chopping and mixing into a salsa for a tangy addition or puree them and pour over a pork butt in a slow cooker. After cooking for several hours, you\'ll have a tender, juicy pork butt that\'s great for taco or burritos. Simply shuck the husk off the tomatillos and wash then prepare them for your dish. With so many so many ways to prepare them, Milpero Tomatillos will become a staple in your dishes.', 'Milpero Tomatillos, Per Pound: A smaller, sweeter, less acidic version of the tomatillo Acidic, tangy flavor raw and a sweeter, less acidic taste cooked Versatile ingredient perfect for a variety of dishes Chop and mix with onions, cilantro, and lime juice for salsa Puree and pour over pork butt in a slow cooker for a tender and juicy protein for tacos and burritos Shuck off the husk, wash, and then prepare', 'Fresh Produce', 'https://i5.walmartimages.com/asr/116839f7-1173-4dfc-bd1c-5edbf81212f3.020e98934faa2f36ed2308046787fc1a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/116839f7-1173-4dfc-bd1c-5edbf81212f3.020e98934faa2f36ed2308046787fc1a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/116839f7-1173-4dfc-bd1c-5edbf81212f3.020e98934faa2f36ed2308046787fc1a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (33284077, 'Chiquita Juicy Red Apple Bites with Vanilla Flavored Yogurt Dip, 2.5 oz', 0.98, '074904201689', 'Get active with Chiquita Juicy Red Apple Bites with Vanilla Flavored Yogurt Dip. Apples are naturally packed with phytonutrients like phenols that can boost your immunity. Each bag contains one fabulous fruit serving of hardworking antioxidants like vitamin C that can produce anti-stress hormones and promote oxygen flow to pump up your energy. And why do Chiquita\'s apples look so good? Because they\'re soaked in a wonderful calcium and vitamin C wash that keeps them from turning brown. So activate your core and keep loving life with Chiquita Juicy Red Apple Bites.', 'Chiquita Juicy Red Apple Bites with Vanilla Flavored Yogurt Dip: Washes and ready to eat A great source of nutrition 60 calories per pack Excellent source of vitamin C 1-half cup of fruit', 'Chiquita', 'https://i5.walmartimages.com/asr/7abb6ab3-4dbf-4311-882d-b7383430faa7_1.f21abc2d87276ed3d3b352715a5c0975.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7abb6ab3-4dbf-4311-882d-b7383430faa7_1.f21abc2d87276ed3d3b352715a5c0975.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7abb6ab3-4dbf-4311-882d-b7383430faa7_1.f21abc2d87276ed3d3b352715a5c0975.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (33284079, 'Chiquita Juicy Red Apple Bites, 2 oz, 5 count', 4.87, '074904201719', 'Apple, Juicy Red 5 - 2 oz (56 g) packs 10 oz (280 g) Washed & ready to eat. 30 calories per pack. Excellent source of vitamin C. Questions? Comments? Call 1-800-242-5472 or visit www.chiquita.com. Product of USA. Keep refrigerated. 5 - 2 oz (56 g) packs 10 oz (280 g) 550 S. Caldwell St. Charlotte, NC 28202 800-242-5472 2012 Chiquita Brands LLC', 'Apple, Juicy Red Washed & ready to eat. 30 calories per pack. Excellent source of vitamin C. Questions? Comments? Call 1-800-242-5472 or visit www.chiquita.com. Product of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ec1f985d-b8bd-4371-a86e-9734ac397f7e.94a5304839aabcbb092fe21d12367e45.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec1f985d-b8bd-4371-a86e-9734ac397f7e.94a5304839aabcbb092fe21d12367e45.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec1f985d-b8bd-4371-a86e-9734ac397f7e.94a5304839aabcbb092fe21d12367e45.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (33338131, 'Broccoli Crown Bag, 16 oz', 1.68, 'deleted_027918701102', 'Tanimura & Antle Broccoli crowns are the premium cut of broccoli, trimmed just under the broccoli head. They are hand-harvested and trimmed on U.S. family farms for superior quality. Stand-up pouch provides protection against excessive in-store handling and allows you to clearly see the fresh product. Handle pouch is re-sealable, keeps product fresh and easy to store.', 'Broccoli Crown Bag, 16 oz: Field-packed for freshness Premium cut of broccoli, trimmed just under the broccoli head Chop, add to stir-fry or pasta sauce, or steam Broccoli crowns are the premium cut of broccoli, trimmed just under the broccoli head. They are hand-harvested and trimmed on U.S. family farms for superior quality. Stand-up pouch provides protection against excessive in-store handling and allows you to clearly see the fresh product. Handle pouch is re-sealable, keeps product fresh and easy to store.', 'Tanimura & Antle', 'https://i5.walmartimages.com/asr/44ae7a77-4d0a-44d5-aea0-10ce0a6a5b8e_1.42eba6ee1888c86369e5b672432c8ab5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44ae7a77-4d0a-44d5-aea0-10ce0a6a5b8e_1.42eba6ee1888c86369e5b672432c8ab5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44ae7a77-4d0a-44d5-aea0-10ce0a6a5b8e_1.42eba6ee1888c86369e5b672432c8ab5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (33338837, 'Jicama Chunks 10 Oz', 2.48, 'deleted_074641023155', 'short description is not available', 'Jicama Chunks 10 Oz', '', 'https://i5.walmartimages.com/asr/bc607b05-dc0b-4e10-922d-d13409b56a2e_1.0493cbeca36765d38cb1451917fb0827.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc607b05-dc0b-4e10-922d-d13409b56a2e_1.0493cbeca36765d38cb1451917fb0827.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc607b05-dc0b-4e10-922d-d13409b56a2e_1.0493cbeca36765d38cb1451917fb0827.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (33469968, 'Fresh Exp Single Serve Italian 2-3.5oz', 1.98, '071279211039', 'short description is not available', 'Fresh Exp Single Serve Italian 2-3.5oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/5bc29479-b0e3-48b7-8c60-3b2c907e1916_1.22320fa98f979e77300fb5a6ff6ae24b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5bc29479-b0e3-48b7-8c60-3b2c907e1916_1.22320fa98f979e77300fb5a6ff6ae24b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5bc29479-b0e3-48b7-8c60-3b2c907e1916_1.22320fa98f979e77300fb5a6ff6ae24b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (33469969, 'Fresh Exp Single Serve Hrts Of Romaine', 1.98, '071279261140', 'short description is not available', 'Fresh Exp Single Serve Hrts Of Romaine', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2a447257-37fa-4f0a-953a-b470420c6db2_1.8cac9280b3dea330274e7ee814ed6820.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2a447257-37fa-4f0a-953a-b470420c6db2_1.8cac9280b3dea330274e7ee814ed6820.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2a447257-37fa-4f0a-953a-b470420c6db2_1.8cac9280b3dea330274e7ee814ed6820.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (33469980, 'Fresh Exp Single Spring Mix 2-1.5oz', 1.98, '071279271217', 'short description is not available', 'Fresh Exp Single Spring Mix 2-1.5oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/ed25d09d-e0b5-4cc7-af07-b3148b3403d3_1.0ed500f1e2e7539b3906a2f9f90ce686.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed25d09d-e0b5-4cc7-af07-b3148b3403d3_1.0ed500f1e2e7539b3906a2f9f90ce686.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed25d09d-e0b5-4cc7-af07-b3148b3403d3_1.0ed500f1e2e7539b3906a2f9f90ce686.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (33628817, 'Cut N Clean Turnip Greens, 1 lb', 3.68, '028764702282', 'Nature\'s Greens Turnip Greens', 'A mustard flavor with a peppery bite A part of the mustard family, these have a zippy mustard flavor and peppery bite. Turnip greens mix well with other greens varieties (collards, mustard greens and turnip greens is a common traditional mix) or they can be cooked singly.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/86f00e60-96d0-431e-b504-cdf5a004e2d0_1.6352c9742cb4812fb4a95bd5b188db17.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/86f00e60-96d0-431e-b504-cdf5a004e2d0_1.6352c9742cb4812fb4a95bd5b188db17.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/86f00e60-96d0-431e-b504-cdf5a004e2d0_1.6352c9742cb4812fb4a95bd5b188db17.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (33784652, 'Cored Pineapple, 10 oz', 2.98, '030223081296', 'Cored Pineapple is a quick-and-easy way to enjoy your fresh fruit.', 'Cored Pineapple: Healthy, fresh, simple Convenient, easy to eat on the go', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cf6cb84e-c022-428a-aae8-7b195d5e7dc9_1.effb6f4d7eb048f524c4232611f2d0f1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cf6cb84e-c022-428a-aae8-7b195d5e7dc9_1.effb6f4d7eb048f524c4232611f2d0f1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cf6cb84e-c022-428a-aae8-7b195d5e7dc9_1.effb6f4d7eb048f524c4232611f2d0f1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (33786617, 'Lemon Slices W/ Rine 5.5 Oz', 1.98, '074641004284', 'short description is not available', 'Lemon Slices W/ Rine 5.5 Oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/df928707-44cb-490b-b0ef-d5cc9c9e889d_1.ab65a08f586e7d08538bb50d215f0f7f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/df928707-44cb-490b-b0ef-d5cc9c9e889d_1.ab65a08f586e7d08538bb50d215f0f7f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/df928707-44cb-490b-b0ef-d5cc9c9e889d_1.ab65a08f586e7d08538bb50d215f0f7f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (33786618, 'Fresh Diced Nopalitos, 12 oz', 2.48, 'deleted_074641060013', '', 'NOPALITO DICED 12ZHM', 'Country Fresh', 'https://i5.walmartimages.com/asr/7137ed79-bb39-4f00-9d9c-fdcb532e0488_1.77c2765ae49e06613a27cf11ce90589b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7137ed79-bb39-4f00-9d9c-fdcb532e0488_1.77c2765ae49e06613a27cf11ce90589b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7137ed79-bb39-4f00-9d9c-fdcb532e0488_1.77c2765ae49e06613a27cf11ce90589b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (33789515, 'Lemon Slices 5 Oz', 1.98, '826766255948', 'short description is not available', 'Lemon Slices 5 Oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/26408ab4-9a8d-4e6a-a704-bbe943330312_1.6f14282b812fcc9cccfeff27e7087fa8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/26408ab4-9a8d-4e6a-a704-bbe943330312_1.6f14282b812fcc9cccfeff27e7087fa8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/26408ab4-9a8d-4e6a-a704-bbe943330312_1.6f14282b812fcc9cccfeff27e7087fa8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (33866209, 'Fresh Chile De Arbol, 4 oz, Tray', 2.98, '045255145908', 'Our fresh Chile de Arbol will add some heat to your next meal. These peppers are vibrant with skin that is smooth, translucent, and rather brittle. With a heat level of seven out of 10, this pepper tends to have a vicious bite, so handle with caution. The smaller the pepper, the hotter it is. Chile de Arbol is generally used for hot sauces and spicy salsas. No matter how you choose to use them, these peppers will add heat to any recipe. Explore new recipes and discover all the delicious ways to prepare this tasty pepper. Add something hot and spicy to your next meal with our fresh Chile de Arbol.', 'Hot Chile pepper Heat level is 7 out of 10 The smaller the pepper, the hotter it is Tends to have a vicious bite, so handle with caution Generally used to make hot sauces and spicy salsas Explore delicious new recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2a1d71b9-4855-4fca-92ba-aa24dbb80c31.baddf46746041419822c734853eb08ed.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2a1d71b9-4855-4fca-92ba-aa24dbb80c31.baddf46746041419822c734853eb08ed.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2a1d71b9-4855-4fca-92ba-aa24dbb80c31.baddf46746041419822c734853eb08ed.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (34017487, 'Marketside Hearts of Romaine Salad, 10 oz Bag', 3.34, '681131027830', 'Level up your salads with Marketside Hearts of Romaine. Romaine is a popular lettuce for use in salads, wraps, and other dishes because of its sweet, mild flavor and crisp, crunchy texture. Hearts of romaine are the smaller, more tender, and sweeter center leaves, prized for use in Caesar salads. Romaine hearts can also be grilled to bring out a delicate smoky flavor that pairs beautifully with a vinaigrette and Parmesan cheese for an unusual but crowd-pleasing vegetable side. Find new reasons to love lettuce with Marketside Hearts of Romaine. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Excellent Source of Vitamin A, Vitamin K, and Folate Thoroughly Washed Ready to Eat', 'Marketside', 'https://i5.walmartimages.com/asr/2eb80fe8-5b91-4c02-b908-b44209a96321.a644ddce8434af633bdf30b48a07b907.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2eb80fe8-5b91-4c02-b908-b44209a96321.a644ddce8434af633bdf30b48a07b907.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2eb80fe8-5b91-4c02-b908-b44209a96321.a644ddce8434af633bdf30b48a07b907.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (34017489, 'Marketside Butter Lettuce Salad Blend, 6 oz Bag', 2.73, '681131027861', 'Marketside Butter Lettuce Salad is made with a wholesome medley of butter lettuce and red leaf lettuce. This mix is picked fresh, washed and ready to eat for your convenience. Use it to create your very own personalized salad tossed with your favorite vegetables, protein, nuts and dressing. Use it as a topping on sandwiches and pizzas, or simply enjoy it as a healthy side. It offers nutritional benefits such as being an excellent source of vitamin A and K. Enjoy fresh from the farm taste with Marketside Butter Lettuce Salad. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Heathy mix of butter lettuce and red leaf lettuce Washed and ready to eat Picked fresh for you Net weight 6 oz', 'Marketside', 'https://i5.walmartimages.com/asr/b64ec4f6-fe77-49ba-b8bd-ecd40e87c077.50c7043d47cc007da71e2beeff618650.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b64ec4f6-fe77-49ba-b8bd-ecd40e87c077.50c7043d47cc007da71e2beeff618650.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b64ec4f6-fe77-49ba-b8bd-ecd40e87c077.50c7043d47cc007da71e2beeff618650.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (34017490, 'Marketside Fresh Baby Spinach, 6 oz Bag (Fresh)', 2.18, '681131027908', 'Marketside Baby Spinach has a smooth, tender texture and great fresh taste and is loaded with nutrients. This spinach is packed fresh, washed and ready to eat for your convenience. Use it to create your very own personalized salad that is tossed with your favorite vegetables, protein, nuts and dressing. Use it as a topping on sandwiches and pizzas or simply enjoy it as a healthy side. It offers nutritional benefits as it is a rich source of dietary fiber, calcium, iron and vitamins A and C. Enjoy fresh from the farm taste and bring home Marketside Baby Spinach today. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Fresh Baby Spinach, 6 oz Bag Excellent source of vitamins A and C Can be used in a wide variety of dishes Picked fresh for you Washed and ready to eat Perishable, keep refrigerated Net weight 6 oz', 'Marketside', 'https://i5.walmartimages.com/asr/5e85307c-f0f4-4b68-9a4b-82446a9ddb49.93b24bfd0b2b96fc2a626bf03a24923e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5e85307c-f0f4-4b68-9a4b-82446a9ddb49.93b24bfd0b2b96fc2a626bf03a24923e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5e85307c-f0f4-4b68-9a4b-82446a9ddb49.93b24bfd0b2b96fc2a626bf03a24923e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (34143814, 'Fresh Plantain, 1 Count', 0.58, '717524210005', 'Get creative in the kitchen with these delicious Plantains. While you can eat plantains uncooked, they\'re typically cooked to bring out their amazing flavor. Larger and starchier than bananas, plantains may be used in a wide variety of recipes. For a quick and easy treat, you can fry them in oil and serve with your favorite dipping sauce. You can also incorporate them into a hearty stew or try them as a topping for your tacos or nachos. For dessert, you can thinly slice them, bake them, and serve with chocolate drizzle. Create your next culinary masterpiece with these fresh Plantains.', 'Plantains: Used in a wide variety of recipes Fry and serve with your favorite dipping sauce Use to top tacos or nachos Larger and starchier than a banana Good source of vitamins and minerals Also known as Plátano Macho, Cooking Banana, Green Plantain, and Maduro around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8f09649d-0bb9-49f0-8aef-89da183e9b96.319b2632d4a2c10aab70a569a0d3036b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8f09649d-0bb9-49f0-8aef-89da183e9b96.319b2632d4a2c10aab70a569a0d3036b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8f09649d-0bb9-49f0-8aef-89da183e9b96.319b2632d4a2c10aab70a569a0d3036b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (36240078, 'Marketside Organic Fresh Baby Spinach, 16 oz', 5.74, '032601901509', 'Give your body the healthy food it deserves with Marketside Organic Baby Spinach. This baby green is a nutritional powerhouse, packing in 15 percent of your daily iron, 10 percent of your daily potassium, and six percent of your daily calcium per serving. Swap out iceberg lettuce and replace it with spinach in your salads, sandwiches, and more. Create a killer spinach and artichoke dip and serve with carrot and celery sticks for an appetizer the whole family will love. Making nutritious and delicious meals is simple with Marketside Organic Baby Spinach. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Baby Spinach, 16 oz Washed and ready to eat USDA certified organic 15% daily iron, 10% daily potassium, and 6% daily calcium per serving 20 calories per serving 2g protein per serving Resealable container to help maintain freshness', 'Marketside', 'https://i5.walmartimages.com/asr/807f156e-bd85-4203-bda8-80ee9ad4881e.9c96d82fee4adc0fdeef62bdd903dba6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/807f156e-bd85-4203-bda8-80ee9ad4881e.9c96d82fee4adc0fdeef62bdd903dba6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/807f156e-bd85-4203-bda8-80ee9ad4881e.9c96d82fee4adc0fdeef62bdd903dba6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (36266896, 'Giorgio Stuffed Cheese & Imitation Bacon Bits Portabella Mushrooms, 8 Oz., 4 Count', 4.98, '070475500176', 'Giorgio Stuffed Cheese & Imitation Bacon Bits Portabella Mushrooms have a tan or brown cap and measure up to six inches in diameters. They are easy to prepare and can be served as appetizers, entrees or side dishes. Portabella mushrooms have a rich, robust mushroom taste and a texture that has been compared to fine beef. Adding the smokey flavor of the bacon and rich flavor of cheddar cheese only adds to the already robust flavor of the portabella mushroom.', 'Giorgio Stuffed Cheese & Imitation Bacon Bits Portabella Mushrooms:America\'s favorite mushroom0 grams trans fat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/52013df2-5531-4602-83f4-0fe24174b306_1.bf5bb7b15c94b1fb18b3aabb1455cbc0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/52013df2-5531-4602-83f4-0fe24174b306_1.bf5bb7b15c94b1fb18b3aabb1455cbc0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/52013df2-5531-4602-83f4-0fe24174b306_1.bf5bb7b15c94b1fb18b3aabb1455cbc0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (36479606, 'Giorgio Stuffed Portabella Mushrooms, 8 oz', 4.98, '037102270055', 'Make life easier and more delicious with Giorgio Stuffed Portabella Mushrooms. These savory, hearty mushrooms taste like they were made from scratch, bursting with flavor and goodness. The vegetarian stuffed portabella mushrooms are crafted with fresh artichokes and ripe spinach, blended with savory, zesty real Parmesan cheese, ladled atop giant portobello mushroom caps. They come ready to bake or broil, for hot appetizers, entrees or side dishes in just a few minutes. The spinach and cheese stuffed portabella mushrooms pair delightfully with most proteins for effortless inclusion into weekly meal plans. Each 8 oz pack contains four heat-and-serve stuffed mushrooms.Giorgio Stuffed Portabella Mushrooms:', 'Stuffed with Parmesan cheese, artichoke and spinachAdds a unique and flavorful taste to the already robust flavorSpinach and cheese stuffed portabella mushrooms are easy to prepare Can be served as appetizers, entrees or side dishesHearty and flavorfulJust heat and serveBake or broil for best flavor8 oz package contains 4 prepared mushrooms', 'Giorgio', 'https://i5.walmartimages.com/asr/acd306ad-e0cf-42af-baa8-44d66ab6e291.7c56149b2fda9a7ce055527ff2e09351.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/acd306ad-e0cf-42af-baa8-44d66ab6e291.7c56149b2fda9a7ce055527ff2e09351.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/acd306ad-e0cf-42af-baa8-44d66ab6e291.7c56149b2fda9a7ce055527ff2e09351.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (36996407, 'SaladWOW Thai Style White Chicken Salad Kit, 7 Oz.', 3.48, '851146002591', 'The ingredients for the SaladWOW Thai Style White Chicken Salad Kit are chef-inspired and always fresh. SaladWOW\'s on-trend flavor combinations and delicious ingredients will be sure to WOW you. Trust SaladWOW for the very best quality.', 'SaladWOW Thai Style White Chicken Salad Kit:Grilled white chicken, edamame, roasted peanuts, coconutWith tangy orange and soy dressingInspired flavorsAlways freshIndividual pouches from maximum freshness18g protein per serving280 calories per serving; just add lettuce', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2382e12f-332e-486e-8ace-28edaf9e6b2b_1.c5409af5db445207dac1d17ee451773c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2382e12f-332e-486e-8ace-28edaf9e6b2b_1.c5409af5db445207dac1d17ee451773c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2382e12f-332e-486e-8ace-28edaf9e6b2b_1.c5409af5db445207dac1d17ee451773c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (37010915, 'Portabella Mushroom Caps, 14 Oz.', 5.48, '050091400142', 'Portabella Mushroom Caps, 14 Oz.', 'Portabella Mushroom Caps', 'Unbranded', 'https://i5.walmartimages.com/asr/2774f48d-47d3-43a8-b225-0bc5b1cad1af_1.f3b4a76e6c563a4157753b3bc615e068.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2774f48d-47d3-43a8-b225-0bc5b1cad1af_1.f3b4a76e6c563a4157753b3bc615e068.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2774f48d-47d3-43a8-b225-0bc5b1cad1af_1.f3b4a76e6c563a4157753b3bc615e068.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (37011492, 'Power Up Greens Baby Kale, 4.5 oz', 2.48, '071430900147', 'All natural', 'Power Up Greens Baby Kale, 4.5 oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cc1a1659-1e5e-4cc3-8197-5ef1f2e5707e_1.dabf016f04639e15e46e4ccc90bd2d7f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc1a1659-1e5e-4cc3-8197-5ef1f2e5707e_1.dabf016f04639e15e46e4ccc90bd2d7f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc1a1659-1e5e-4cc3-8197-5ef1f2e5707e_1.dabf016f04639e15e46e4ccc90bd2d7f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (37011493, 'Power Up Greens Baby Kale & Greens, 4.5 oz', 2.48, '071430900154', 'All natural', 'Power Up Greens Baby Kale & Greens, 4.5 oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f93161d4-163a-43aa-a091-95e4d40367d3_1.85190c9a2f984995c6192ef0d987dd96.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f93161d4-163a-43aa-a091-95e4d40367d3_1.85190c9a2f984995c6192ef0d987dd96.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f93161d4-163a-43aa-a091-95e4d40367d3_1.85190c9a2f984995c6192ef0d987dd96.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (37157463, 'Marketside Fresh Veggie Grillers, 23 oz', 6.48, '681131074476', 'Complete your cookout menu with our Marketside Fresh Veggie Grillers. Everyone loves having a flame-kissed veggie skewer to pair with their barbeque, and everyone can agree that the food tastes best when the prep is already done, that\'s exactly why we\'ve combined freshly sliced vegetables with a ready-to-grill skewer. Since we\'ve done all the side work for you, you can focus all your attention on perfecting your barbecue\'s smoky flavor and mouth-watering, fall-apart texture. With our pre-prepared lineup of cremini mushrooms, tender squash, red onion, and bell peppers, all you\'ll have left to do is just butter them up, throw a dash of seasoning on, and they\'re ready to go. We\'ve got your next cookout covered with our Marketside Fresh Veggie Grillers. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Includes 3 fully-assembled vegetable skewers Skewers are ready to grill for your convenience Vegetables include fresh cremini mushrooms, red onions, zucchini, green bell peppers, red bell peppers, and yellow squash Simply dress them up with butter or oil and your favorite seasonings Easy way to add some delicious vegetables to your cookout menu', 'Marketside', 'https://i5.walmartimages.com/asr/5811c339-dcb5-4745-a14b-3cfc96489b2e.7473112b378f3fc8e27c30d0e5e4dbfd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5811c339-dcb5-4745-a14b-3cfc96489b2e.7473112b378f3fc8e27c30d0e5e4dbfd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5811c339-dcb5-4745-a14b-3cfc96489b2e.7473112b378f3fc8e27c30d0e5e4dbfd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (37181924, 'Generic Roland Cepes Dried Mushrooms, 16 Oz, (pa', 59.58, '030684385322', 'short description is not available', 'Generic Roland Cepes Dried Mushrooms, 16 Oz, (pa', 'Roland', 'https://i5.walmartimages.com/asr/0b87e5da-7a71-405d-9195-140b064c19d7.69f12da332c1dad1ffe48a99c8981506.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0b87e5da-7a71-405d-9195-140b064c19d7.69f12da332c1dad1ffe48a99c8981506.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0b87e5da-7a71-405d-9195-140b064c19d7.69f12da332c1dad1ffe48a99c8981506.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (37295421, 'Fresh Produce Tropical Avocado, Each', 2.68, '000000042215', 'Fresh Whole Tropical Avocado are not only great-tasting fruit, but they are a nutrient-dense food enjoyed around the world. They are a versatile ingredient that can be used in many different types of recipes and dishes. Enjoy it on its own or as part of a salad, sandwiches, wraps, in a smoothie or on your avocado toast. Tropical avocado a great ingredient to use in numerous ways, but it is also a healthy food that adds many health benefits that contributes unsaturated \"good\" fats and a variety of vitamins including vitamin E, vitamin K, vitamin C, and vitamins B5 and B9. Tropical avocados, also known as green skin avocados, are larger than a traditional avocado. They have smooth skin, and with most varieties remain green when ripe. Tropical avocados are harvested in Florida or the Dominican Republic. Fresh Produce Avocado.', 'Versatile ingredient Enjoy it on its own or as part of a salad, fresh guacamole, taco, burrito, or avocado toast Good source of unsaturated \"good\" fats and a variety of vitamins Tropical avocados are larger than a conventional avocado with have smooth skin, and with most varieties remain green when ripe Grown in Florida and Dominican Republic Fresh produce', 'Fresh Produce', 'https://i5.walmartimages.com/asr/447c8d99-28ba-428b-af97-ec514ae263e3_1.0928ed0270b508fa08c84c3d9efe4f8e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/447c8d99-28ba-428b-af97-ec514ae263e3_1.0928ed0270b508fa08c84c3d9efe4f8e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/447c8d99-28ba-428b-af97-ec514ae263e3_1.0928ed0270b508fa08c84c3d9efe4f8e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (37319701, 'Russet Potatoes Whole Fresh, 15 lb, Bag', 5.24, '033383536729', 'Russet Baking Potatoes are the perfect addition to your pantry. With so many ways to prepare potatoes, you\'ll want to add them to every meal. For breakfast, you could make crispy hash browns smothered in cheese and diced ham or add them to a savory omelet. For lunch or dinner, you could use these fresh potatoes to make au gratin potatoes, garlic mashed potatoes, or a baked potato loaded with cheese, sour cream, green onions, and bacon bits. If you\'re hosting a neighborhood get-together, you can use them to make creamy potato salad or homestyle French fries. Serve up something fresh and delicious when you cook with Russet Baking Potatoes.', 'Russet Potatoes, 15 lb bag Russet Baking Potatoes are the perfect addition to your pantry. With so many ways to prepare potatoes, you\'ll want to add them to every meal. &For breakfast, you could make crispy hash browns smothered in cheese and diced ham or add them to a savory omelet. &For lunch or dinner, you could use these fresh potatoes to make au gratin potatoes, garlic mashed potatoes, or a baked potato loaded with cheese, sour cream, green onions, and bacon bits. I f you\'re hosting a neighborhood get-together, you can use them to make creamy potato salad or homestyle French fries.&; Serve up something fresh and delicious when you cook with Russet Baking Potatoes.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9824af0b-18de-4ce8-84be-a43451afd02f.944c1d32628b2b47e02630c7991e96ee.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9824af0b-18de-4ce8-84be-a43451afd02f.944c1d32628b2b47e02630c7991e96ee.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9824af0b-18de-4ce8-84be-a43451afd02f.944c1d32628b2b47e02630c7991e96ee.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (38127803, 'Fresh Red Onions, 2 lb, Bag', 3.48, '091434001312', 'Add some Fresh Red Onions to your favorite recipes. There are a variety of ways to add this fresh produce to your recipes. Add them to your pasta sauces; use them to top pizza; enhance the flavors of your soups, stews, and gumbo; incorporate them into meatloaf; or make delicious omelets or hearty casseroles. You can also dice them and put them in a zesty stir fry or dip the onions in batter to fry up some crowd-pleasing onion rings. Try them in a spicy salsa recipe or on your hamburgers and hot dogs. However you choose to use them, these Fresh Red Onions are a must-have for every kitchen pantry.', 'Red Onions, 2 lb Bag Add savory flavor to a variety of dishes Perfect for at-home cooking Have a mild flavor that is not overpowering or pungent, making them highly versatile for a variety of meals including pizza, a fresh salad topper, on the BBQ and in a burger; Adds color and exceptional flavor to any meal, whether slivered, chopped or diced, making them perfect for at-home cooking Delicious fresh produce item', 'Fresh Produce', 'https://i5.walmartimages.com/asr/73f2f373-5441-47fb-b38c-ad396be33738.3c7b9d6e7e75b12b6f326b0fa1f9c9b6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/73f2f373-5441-47fb-b38c-ad396be33738.3c7b9d6e7e75b12b6f326b0fa1f9c9b6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/73f2f373-5441-47fb-b38c-ad396be33738.3c7b9d6e7e75b12b6f326b0fa1f9c9b6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (38548640, 'Whole Fresh White Sweet Potatoes, 1 Count', 1.28, '801608030440', 'White Sweet Potatoes \"Batata\" are sweet, starchy and most importantly they are fresh and delicious. You can roast or boil them. You can make them mash with a little butter and garlic. You can also slice them fry them in hot oil and make sweet potato chips. Sweet potatoes are a good source of vitamin A, B-complex vitamins, vitamin C and manganese.', 'White Sweet Potatoes &Fresh and Whole Proteins &Carbohydrates &Calcio &Vitamin A; &Vitamin C', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3f680d8f-de39-4fc8-bec3-46acb6c7e87b.4d3a0d3841e4ba6c2275634f4083509d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3f680d8f-de39-4fc8-bec3-46acb6c7e87b.4d3a0d3841e4ba6c2275634f4083509d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3f680d8f-de39-4fc8-bec3-46acb6c7e87b.4d3a0d3841e4ba6c2275634f4083509d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (39103253, 'Fresh Slicing Tomato, 2 Pack', 2.98, '069905845215', 'Bring the fresh, delicious taste of Slicing Tomatoes into your home. These tomatoes deliver sweet and juicy flavor with each bite and are an ideal ingredient in a variety of recipes. They would make a tasty, garden-inspired addition to salads, burgers, gourmet sandwiches, and so much more. They are picked at peak freshness and specially bred for deep red color, intense flavor, and higher lycopene content than standard tomatoes. Whether you slice or dice them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with these fresh Slicing Tomatoes.', 'Slicing Tomato, 1 lb Tray Wholesome, fresh, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, burgers, gourmet sandwiches, and more Add to party trays or school lunches Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b3b822ae-8aaa-446f-9bd9-6b3deb6a564e.c003bce181926dab4e08eb4794f96f39.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3b822ae-8aaa-446f-9bd9-6b3deb6a564e.c003bce181926dab4e08eb4794f96f39.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3b822ae-8aaa-446f-9bd9-6b3deb6a564e.c003bce181926dab4e08eb4794f96f39.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (39104764, 'Marketside Fresh Shredded Iceberg Lettuce, 16 oz Bag', 3.13, '681131532099', 'Marketside Iceberg Lettuce is shredded to perfection and has a great fresh taste that is loaded with nutrients. This lettuce is packed fresh, washed and ready to eat for your convenience. Use it to create your very own personalized salad tossed with your favorite vegetables, protein, nuts and dressing. Use it as a topping on sandwiches and pizzas or simply enjoy it as a healthy side. It offers nutritional benefits as it is a good source of vitamins A and C. Enjoy fresh from the farm taste with Marketside Shredded Iceberg Lettuce. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Fresh Shredded Iceberg Lettuce, 16 oz Bag Freshly shredded iceberg lettuce is top for crisp crunch and refreshing flavor Great for salads or sandwiches All natural Washed and ready to eat Only 10 calories per serving', 'Marketside', 'https://i5.walmartimages.com/asr/0a43127c-410c-48c3-bfb1-13b5ca422384.ef2513e82f95761722252a48096896a8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a43127c-410c-48c3-bfb1-13b5ca422384.ef2513e82f95761722252a48096896a8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a43127c-410c-48c3-bfb1-13b5ca422384.ef2513e82f95761722252a48096896a8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (39104773, 'Cored Pineapple, 16 oz', 3.98, '074641005113', '', 'Cored Pineapple, 16 oz', 'WALMART PRODUCE', 'https://i5.walmartimages.com/asr/499f7420-b835-4bf1-b7b2-2344a315f132.3aec28dd7f71059e24f8dd7a74e348c3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/499f7420-b835-4bf1-b7b2-2344a315f132.3aec28dd7f71059e24f8dd7a74e348c3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/499f7420-b835-4bf1-b7b2-2344a315f132.3aec28dd7f71059e24f8dd7a74e348c3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (39168667, 'Monterey Supreme Stuffers Mushrooms, 14 Oz.', 2.98, '037102142543', 'Monterey Supreme Stuffers Mushrooms, 14 Oz.', 'Fresh Stuffing Mushrooms 14 Oz.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b074dddb-c561-4628-8a2e-9db6fd786085_1.d19ecc0c224f0fe2e4d563961b826b52.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b074dddb-c561-4628-8a2e-9db6fd786085_1.d19ecc0c224f0fe2e4d563961b826b52.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b074dddb-c561-4628-8a2e-9db6fd786085_1.d19ecc0c224f0fe2e4d563961b826b52.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (40347953, 'Fresh Green Kale Bunch, Each', 1.48, '033383652207', 'Fresh Kale Greens, Bunch, 1 Each', 'Kale Greens, Bunch: Ideal addition to every kitchen Flavorful addition to many recipes Add to pasta & pizza Try steamed or sauteed Make satisfying kale chips for healthy snacking Explore all the delicious ways to add fresh kale to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/27276b36-591d-4d09-8435-90b168297b91.72f415f09f357b3f9cd5d090ec022b90.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/27276b36-591d-4d09-8435-90b168297b91.72f415f09f357b3f9cd5d090ec022b90.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/27276b36-591d-4d09-8435-90b168297b91.72f415f09f357b3f9cd5d090ec022b90.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (40619555, 'Marketside Fresh Sugar Snap Peas, 1 lb Bag', 5.98, '874896008385', 'Add fresh and ready to eat sugar snap peas to your meal with Marketside Sugar Snap Peas. These peas are an excellent source of vitamin A and vitamin C. Serve as is, or add your favorite spices, parmesan cheese or garlic for additional flavor. Marketside Sugar Snap Peas are a quick and healthy side dish and a great addition to any meal. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Fresh Sugar Snap Peas, 1 lb Bag Washed and ready to eat Picked fresh for you Serves up to 5 people Microwave: Place desired amount of vegetables in a microwave safe dish. Add 1 inch of water, cover with damp paper towel or plastic wrap. Microwave on high for 2 to 3 minutes. Using caution as the steam from the bag will be very hot.', 'Marketside', 'https://i5.walmartimages.com/asr/be0540a3-7381-408d-b55d-f24d564f4889.9c62ba76d74166e1cd3757b8e3cdf91f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/be0540a3-7381-408d-b55d-f24d564f4889.9c62ba76d74166e1cd3757b8e3cdf91f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/be0540a3-7381-408d-b55d-f24d564f4889.9c62ba76d74166e1cd3757b8e3cdf91f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (40619563, 'Marketside Cauliflower Florets, 10 oz', 2.48, '605806122316', 'Marketside Cauliflower Florets are packed fresh, washed and ready to eat. They have a delicious tender texture and an elegant white color that is sure to add a pop to all your dishes. Enjoy them as a healthy side or use them in all your favorite recipes. They are a great addition to Italian pastas. Season them with salt, pepper and garlic and serve with grilled steak, grilled Brussel sprouts and dinner rolls for a filling dinner. Use in the place as chicken for a healthy substitute. They are great for health conscious individuals as they are USDA organic. They come packaged inside a microwaveable bag that cooks in less than five minutes. Dinner is made easy with Marketside Cauliflower Florets. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Cauliflower Florets Steams in pack. Per Serving: 20 calories; 0 g sat fat (0% DV); 25 mg sodium (1% DV); 2 g sugars; vitamin C (70% DV); vitamin K (15% DV).', 'Marketside', 'https://i5.walmartimages.com/asr/c0252247-2177-4820-af77-05533c8667b8_2.adf07ab03d43a3ff360b0c5b13b7f247.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c0252247-2177-4820-af77-05533c8667b8_2.adf07ab03d43a3ff360b0c5b13b7f247.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c0252247-2177-4820-af77-05533c8667b8_2.adf07ab03d43a3ff360b0c5b13b7f247.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (40619565, 'Marketside Asparagus Tips, 6 oz', 3.98, '681131091404', 'Fresh ideas and honest ingredients, that\'s how Marketside brings the best quality fresh foods to your table every day. If you\'re not completely delighted with our product please contact us at 1-888-658-6325 or walmart.com/market side.', 'Trimmed, tender asparagus strips Microwave in bag, steams in minutes All Natural Washed and ready to cook', 'Marketside', 'https://i5.walmartimages.com/asr/628759a9-c322-4fe8-b594-8a252ea4bc5a.eff49767de8da83bce9df395c7a281e1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/628759a9-c322-4fe8-b594-8a252ea4bc5a.eff49767de8da83bce9df395c7a281e1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/628759a9-c322-4fe8-b594-8a252ea4bc5a.eff49767de8da83bce9df395c7a281e1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (40662908, 'Grow Your Own Oyster Mushrooms!', 24.99, '810017014989', 'DuneCraft\'s new edible oyster mushroom growing kit is a huge hit! Growing mushrooms is the perfect activity for the winter gardener, kitchen connoisseur and a great project for kids. These kits are as easy to grow as a potted plant and will yield one to two pounds of fresh, edible mushrooms. The kit comes with complete instructions and everything needed to successfully grow your own oyster mushrooms, is environmentally friendly and guaranteed to grow!', 'Grow Your Own Oyster Mushrooms!: DuneCraft\'s new edible oyster mushroom growing kit is a huge hit Growing mushrooms is the perfect activity for the winter gardener, kitchen connoisseur and a great project for kids These kits are as easy to grow as a potted plant and will yield 1 to 2 pounds of fresh, edible mushrooms Our kit comes with complete instructions and everything needed to successfully grow your own oyster mushrooms, is environmentally friendly and guaranteed to grow Contents include: Dome Terrarium Base & Lid, Oyster Mushroom Decals, Growing Medium with Mycelium, Growing and Care Instructions', 'DuneCraft', 'https://i5.walmartimages.com/asr/5dd980a1-5fa6-42bd-9029-2778df64a50b_1.4144ce197f95fb476bfcefcd781a260d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5dd980a1-5fa6-42bd-9029-2778df64a50b_1.4144ce197f95fb476bfcefcd781a260d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5dd980a1-5fa6-42bd-9029-2778df64a50b_1.4144ce197f95fb476bfcefcd781a260d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (40711122, 'NewStar Cooking with Chard Plus Kale, 12 oz', 2.88, '012842410053', '', 'NewStar Cooking with Chard Plus Kale: Rainbow chard and savory kale Versatile cooking greens with a mild, sweet taste Triple washed and ready to cook Rich in antioxidants beta carotene, vitamins A and C*NEW_LINE* Excellent source of vitamin K with 8.4 mg of lutein per 85g serving', 'Generic', 'https://i5.walmartimages.com/asr/8095f295-c8c5-4675-8d17-6bfe8bae6415_1.b0c78b7de6fdfba74e8ca9b008b7a43a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8095f295-c8c5-4675-8d17-6bfe8bae6415_1.b0c78b7de6fdfba74e8ca9b008b7a43a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8095f295-c8c5-4675-8d17-6bfe8bae6415_1.b0c78b7de6fdfba74e8ca9b008b7a43a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (40715952, 'Fieldpack Unbranded Iceless Broccoli Rabe', 2.07, '072668805556', 'short description is not available', 'Fieldpack Unbranded Iceless Broccoli Rabe', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (41523154, 'Mg Groables Cherry Tomato', 4.92, '073561400459', 'Mg Groables Cherry Tomato', 'Miracle Gro Mg Groables Cherry Tomato', 'Miracle-Gro', 'https://i5.walmartimages.com/asr/1f4ada4b-7666-4b1d-b4df-bd9bb033466e.ca697be2f76018802c286359f200eaac.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1f4ada4b-7666-4b1d-b4df-bd9bb033466e.ca697be2f76018802c286359f200eaac.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1f4ada4b-7666-4b1d-b4df-bd9bb033466e.ca697be2f76018802c286359f200eaac.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (41752773, 'Fresh Lemon, Each', 0.58, '000000040334', 'Lemons are a kitchen essential, known for their bright yellow color and tangy, refreshing flavor. Perfect for cooking, baking, and beverages, they add a zesty touch to both sweet and savory dishes. Packed with vitamin C and natural antioxidants, lemons are not only delicious but also a nutritious choice for enhancing your meals and drinks with vibrant freshness. Available by the each.', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Add to your iced or hot tea Make a satisfying and refreshing strawberry lemonade Use lemon zest to make lemon cookies or lemon loaf Adds flavor to a variety or recipes Available by the each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f025c57c-13e1-4a1a-ac81-0695aaf2473d.7f3c9f067735c2730223c9147a646f7c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f025c57c-13e1-4a1a-ac81-0695aaf2473d.7f3c9f067735c2730223c9147a646f7c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f025c57c-13e1-4a1a-ac81-0695aaf2473d.7f3c9f067735c2730223c9147a646f7c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (41775475, 'Carnival Squash, each', 1.48, '000000031424', '12 1/2\" overall. 7 3/4\" blade. Double edged dagger blade. Multi-color wood handle with brass guard and pommel. Brown leather belt sheath.', 'Commando', 'Fresh Produce', 'https://i5.walmartimages.com/asr/56ac18a5-b060-47bb-88c4-de9c22ea7ede_1.99a6bb2d72508299235810d3e907f7c8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/56ac18a5-b060-47bb-88c4-de9c22ea7ede_1.99a6bb2d72508299235810d3e907f7c8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/56ac18a5-b060-47bb-88c4-de9c22ea7ede_1.99a6bb2d72508299235810d3e907f7c8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (41781273, 'Fresh Black Seedless Grapes, Bag (2.25 lbs/Bag Est.)', 2.27, '204957000001', 'Treat yourself to the delicious, juicy flavor of Fresh Black Seedless Grapes. These grapes are bursting with flavor and are completely seedless, so you can easily enjoy a handful as a fresh snack any time of day. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Fresh Black Seedless Grapes.', 'Fresh Black Seedless Grapes Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ade17cfd-b528-426e-a4e8-1744cd837766.971df50b9d7a3b0325702e7ad6e46907.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ade17cfd-b528-426e-a4e8-1744cd837766.971df50b9d7a3b0325702e7ad6e46907.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ade17cfd-b528-426e-a4e8-1744cd837766.971df50b9d7a3b0325702e7ad6e46907.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (42132297, 'Marketside Organic Baby Kale, 5 oz', 3.46, '681131072793', 'Marketside Organic Baby Kale is picked young for its tenderness and mild flavor. Kale is a very healthy addition to your daily diet as it is a rich source of vitamin A, vitamin C, vitamin K, calcium and iron. You can serve kale after braising it, either alone or mixed with greens like collard, mustard or turnip. It can also be used in salads, or as a side dish. They are certified organic as per USDA standards. They are washed and ready to eat from the pack, so you don\'t have to work towards getting a healthy meal. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Baby Kale Organic 5 oz', 'Marketside', 'https://i5.walmartimages.com/asr/b694cf44-0b27-4caf-9525-9d886b4d4ea6_2.771a9975f3fe9eaa7949e380d4c7b081.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b694cf44-0b27-4caf-9525-9d886b4d4ea6_2.771a9975f3fe9eaa7949e380d4c7b081.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b694cf44-0b27-4caf-9525-9d886b4d4ea6_2.771a9975f3fe9eaa7949e380d4c7b081.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (42353640, 'Fresh Produce, Bagged Whole Red Radish, 1 Bag Each', 1.74, '033383670027', 'Serve up something amazing when you cook with Fresh Red Radish. This versatile root vegetable is a great addition to a healthy diet and can be prepared in a variety of ways. Their slightly peppery flavor adds a natural, subtle spice to salads and slaws. Their crisp texture makes them a natural, healthy choice for dips. Try them as a low-carb substitute for potatoes when roasted or as a healthy side dish when grilled. However, you choose to use them, these fresh radishes will add big flavor and unforgettable taste to any meal. The culinary possibilities are endless with Fresh Red Radish..', 'Fresh Produce, Bagged Red Whole Radish, 1 Each Wholesome, versatile, and delicious Cool and crunchy with a peppery taste to salads Great in soups, salads, slaws, dips or raw Also known as Bolsa de rábanos, luóbo dài and mūlī kī thailī around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5121964c-a2e6-40b2-bdf0-9271cdc00835.9d768f180827f9842fafc0c053b1da7d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5121964c-a2e6-40b2-bdf0-9271cdc00835.9d768f180827f9842fafc0c053b1da7d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5121964c-a2e6-40b2-bdf0-9271cdc00835.9d768f180827f9842fafc0c053b1da7d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (42405386, '4.5\" X 3\" French Pears, Set Of 4 In Box,', 93.48, '026259824754', 'short description is not available', '4.5\" X 3\" French Pears, Set Of 4 In Box,', 'ONLINE', 'https://i5.walmartimages.com/asr/a3b82b57-9280-499a-bf89-91bebfdf61b0_1.2171bdf742a8cd3108927aefee8075be.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a3b82b57-9280-499a-bf89-91bebfdf61b0_1.2171bdf742a8cd3108927aefee8075be.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a3b82b57-9280-499a-bf89-91bebfdf61b0_1.2171bdf742a8cd3108927aefee8075be.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (42408862, 'Fresh Thai Chile Peppers, 4 Ounce Bag', 2.98, '045255115406', 'Add some color and heat to your next meal with our fresh Thai Chile Peppers. Also known as the bird\'s eye chili, Thai chile peppers are a popular ingredient in Southeast Asian cuisine. You can pickle these peppers and serve with a savory noodle dish or make them into a curry paste. Use them to make a spicy coconut milk chicken curry soup or a zesty chicken stir-fry. However you choose to use them, these chile peppers will add spice to any recipe. Explore new recipes and discover all the delicious ways to prepare this tasty and nutritious pepper. Add a kick of heat to your next meal with our fresh Thai Chile Peppers.', 'Thai Chile Peppers, 4 oz: Extremely versatile vegetable Also known as the bird\'s eye chili Perfect ingredient for Southeast Asian cuisine Try them pickled & serve with noodles Make a spicy soup or a savory stir-fry Explore delicious new recipes', 'Unbranded', 'https://i5.walmartimages.com/asr/75d3a4e5-72c5-42c3-84a3-0a34e39800e2.5f384a14349a03e4e678ef65eac8b434.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75d3a4e5-72c5-42c3-84a3-0a34e39800e2.5f384a14349a03e4e678ef65eac8b434.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75d3a4e5-72c5-42c3-84a3-0a34e39800e2.5f384a14349a03e4e678ef65eac8b434.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (42408863, 'Melissa\'s Ruby Gold Potatoes, 1.5 Lb.', 3.97, '045255126808', 'Potatoes, Ruby Gold, Bag 1.5 LB US No. 1 - min. dia. 3/4 inch. Rich potato flavor. Great grilled, roasted, or in salads! Grown in Idaho. Idaho potatoes. www.melissas.com. Good life food. Melissa\'s Ruby Gold potatoes are great in potato salads or as a savory side dish. They have a wonderful, buttery texture and flavor when baked, roasted, boiled, steamed, sauteed or mashed. Try them in your favorite potato recipe. Please contact us or visit our website for delicious recipes: 1.800.588.0151; www.melissas.com. Packed in Idaho. Product of USA. Store in a cool, dry place. 24 oz (1.5 lbs) 680 g Los Angeles, CA 90051 800-588-0151', 'Ruby Gold Potatoes 24 Oz Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4f509e0d-ae29-4f39-bc38-ae94f88ee6da_1.9853aa0b3e44c91c86c4f022e533bc14.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4f509e0d-ae29-4f39-bc38-ae94f88ee6da_1.9853aa0b3e44c91c86c4f022e533bc14.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4f509e0d-ae29-4f39-bc38-ae94f88ee6da_1.9853aa0b3e44c91c86c4f022e533bc14.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (42439588, 'Libby\'s Sliced Carrots Microwave Cup, 7 oz', 2.15, '037100090044', 'Now you can enjoy the same Libby\'s goodness right from a microwave thanks to this Libby\'s Sliced Carrots Microwave Cup, 7 oz. This package contains farm-fresh goodness in a kosher product. Use this as an individual side dish that you can eat at any time of the day. Or you can combine this package with a chicken dish, a meat item, or even seafood. Put these on top of a salad. This fat-free vegetable has endless possibilities whether served solo or as part of a meal. Make it a healthy snack if you\'re on a diet and on the go. This vegetable is a good source of calcium and is high in vitamin A and vitamin C.Libby\'s Sliced Carrots Microwave Cup:', 'Microwavable Farm-fresh goodness Libby\'s carrots are kosher Good source of calcium High in vitamin A and C Ideal for those on the go', 'Libby\'s', 'https://i5.walmartimages.com/asr/f6d62be0-8b5a-49db-9702-f0cbeebacb5b.25096d5f732bcf0d47f5384df82c6117.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f6d62be0-8b5a-49db-9702-f0cbeebacb5b.25096d5f732bcf0d47f5384df82c6117.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f6d62be0-8b5a-49db-9702-f0cbeebacb5b.25096d5f732bcf0d47f5384df82c6117.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (42700530, 'Yellow Potatoes Whole Fresh, 3lb Bag', 2.64, '033383533032', 'Introducing our premium Yukon Gold Potatoes, a 3 Lb. pack of earthy goodness! These versatile, golden-fleshed potatoes boast a buttery flavor and velvety texture, perfect for all your culinary needs. Ideal for boiling, mashing, roasting, or frying, their thin, smooth skin retains essential nutrients and ensures easy preparation. Sustainably grown and carefully handpicked, our Yukon Gold Potatoes are non-GMO and free from harmful chemicals. With their rich, satisfying taste and exceptional quality, elevate your dishes to new heights with this 3 Lb. pack of wholesome Yukon Gold Potatoes.', 'Guarantee Brand Yukon Gold Potatoes, 3 lb Introducing our premium Yukon Gold Potatoes, a 3 Lb. pack of earthy goodness! These versatile, golden-fleshed potatoes boast a buttery flavor and velvety texture, perfect for all your culinary needs. Ideal for boiling, mashing, roasting, or frying, their thin, smooth skin retains essential nutrients and ensures easy preparation. Sustainably grown and carefully handpicked, our Yukon Gold Potatoes are non-GMO and free from harmful chemicals. With their rich, satisfying taste and exceptional quality, elevate your dishes to new heights with this 3 Lb. pack of wholesome Yukon Gold Potatoes.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a9f2e4a2-dbe2-44b5-b4a2-7a58c51ac7d5.7d44e9d9995635646c94d3556f42ef2d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a9f2e4a2-dbe2-44b5-b4a2-7a58c51ac7d5.7d44e9d9995635646c94d3556f42ef2d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a9f2e4a2-dbe2-44b5-b4a2-7a58c51ac7d5.7d44e9d9995635646c94d3556f42ef2d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (42794616, 'Fresh Shiitake Mushrooms, 3.2 oz', 3.98, '037102678103', 'Enjoy the rich, full flavor of fresh Shiitake Mushrooms. This versatile ingredient is perfect for a variety of dishes, whether its for breakfast, lunch, or dinner. Mince some up and put them in your omelet with peppers and ham for a filling breakfast. Slice them and add them to a healthy salad for lunch or slice them thin and sauté with barbeque sauce for a delicious, mouthwatering vegan burger. Shitake mushrooms are an excellent source of selenium and are naturally fat-free, cholesterol-free, and are low in calories and sodium. Enjoy the delicious taste of Shiitake Mushrooms any way you prepare them.', 'Rich, full flavor Great for breakfast, lunch, or dinner Mince them for an omelet, slice them for a salad, or sauté in barbeque sauce for a vegan sandwich Naturally fat-free and cholesterol-free Low in sodium and calories Excellent source of selenium', 'Monterey Mushrooms', 'https://i5.walmartimages.com/asr/6eadb39a-7463-4d65-a0f9-df8aab5eb7ce_1.4348b31319fdcad5927f8362a8f56a48.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6eadb39a-7463-4d65-a0f9-df8aab5eb7ce_1.4348b31319fdcad5927f8362a8f56a48.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6eadb39a-7463-4d65-a0f9-df8aab5eb7ce_1.4348b31319fdcad5927f8362a8f56a48.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (43236028, 'Fresh Petite Carrots, 12 oz, Bag', 1.86, '033383088037', 'Fresh Petite Carrots are cut, peeled and ready to eat for your convenience. Enjoy them as an ingredient in your favorite recipes or simply enjoy them as a healthy snack on the go. Make a tasty snack and serve these petite carrots with celery and ranch dressing or hummus for dipping. These carrots come in a microwavable bag, making them easy to prepare for a dinnertime side dish. Carrots are one of nature\'s best sources of nutrients, rich in Vitamin A with antioxidant beta-carotene. Carrots provide dietary fiber and potassium. Health agencies recommend that you eat five or more servings of fruits and vegetables, which include carrots, every day for good health. Enjoy the delicious flavor and healthy crunch of Fresh Petite Carrots.', 'Fresh Petite Carrots 12-ounce bag Excellent source of beta carotene, fiber, vitamin K1, potassium, and antioxidants No preservatives Washed and ready to eat Perfect for packing in lunches or serving as a snack with dip Microwaveable packaging', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3e12070f-d731-4c6a-bda8-4e47ef043025.3f7f33acdb814ceeb7f749980acf7ebf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3e12070f-d731-4c6a-bda8-4e47ef043025.3f7f33acdb814ceeb7f749980acf7ebf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3e12070f-d731-4c6a-bda8-4e47ef043025.3f7f33acdb814ceeb7f749980acf7ebf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (43278119, 'Bright Light Swiss Chard, 1.0 Count', 1.87, '735718702044', 'Chard contains 3 times the recommended daily intake of vitamin K and 44 percent of the recommended amount of vitamin A. This vegetable can help reduce blood pressure, and enhance performance in sports.', 'Earthy-sweet taste with some bitterness Loaded with vitamins A, C, and Phytonutrients, and fiber Eat it like spinach or beet greens', 'Wonderful', 'https://i5.walmartimages.com/asr/70a25a2f-d3a7-4dd2-897f-1166a1b89281.0c4157687802c70a3b8086f649998403.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/70a25a2f-d3a7-4dd2-897f-1166a1b89281.0c4157687802c70a3b8086f649998403.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/70a25a2f-d3a7-4dd2-897f-1166a1b89281.0c4157687802c70a3b8086f649998403.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (43278218, 'Yam Root Whole Fresh, Each (Name Florido)', 9.12, '000000032766', 'Create something delicious with this fresh Yam (Name) Root. Also known as a \"true yam,\" the name yam is a versatile root that may be prepared like a potato. Commonly used in tropical regions, this yam should be peeled and cooked before eaten. Name yams can be cooked in a variety of ways, such as mashed, baked, boiled, fried, and more. Use it to make crispy fries, a comforting stew, or even a sweet cake. It\'s also a good source of fiber, B vitamins, and vitamin C. Make your next culinary masterpiece with Yam (Name) Root.', 'Great source of fiber Rich in B vitamins and vitamin C Can be boiled, mashed, roasted, fried, and more Fresh and whole Must be peeled and cooked before eaten Versatile and delicious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2ad2dcdb-9aca-4cc4-b024-a7303762f6c6.0a3c22ca0f682d57e4e58497385bf0d8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2ad2dcdb-9aca-4cc4-b024-a7303762f6c6.0a3c22ca0f682d57e4e58497385bf0d8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2ad2dcdb-9aca-4cc4-b024-a7303762f6c6.0a3c22ca0f682d57e4e58497385bf0d8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (43279694, 'Savoy Cabbage Repollo', 1.48, '000000045551', 'Get creative in the kitchen with super versatile and yummy Green Cabbage. Green cabbage is low in calories and high in fiber and antioxidants making it a great part of any healthy diet. Best of all, this cabbage can be used a myriad of different recipes and cuisines. This amazing vegetable can be incorporated into everything from delicious and creamy cole slaw, stuffed cabbage, and wraps, to egg rolls, grilled cabbage, curry, kimchi and more. You can even use it during breakfast in a delicious frittata. Green cabbage can be roasted, boiled, braised, grilled, sauted, and even blanched. The possibilities are endless when you bring home Green Cabbage', '1 head of green cabbage Versatile and healthy ingredient Can be roasted, boiled, braised, grilled, sauted, and even blanched Incorporate into everything from delicious and creamy cole slaw, stuffed cabbage, and wraps, to egg rolls, grilled cabbage, curry, kimchi and more Low in calories and high in fiber and antioxidants', 'Fresh Produce', 'https://i5.walmartimages.com/asr/223b5fb6-e842-49fb-9679-7745b5ad1eee.068229ec90a55030fdc11bc646b9cbd4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/223b5fb6-e842-49fb-9679-7745b5ad1eee.068229ec90a55030fdc11bc646b9cbd4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/223b5fb6-e842-49fb-9679-7745b5ad1eee.068229ec90a55030fdc11bc646b9cbd4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (43923182, 'Fresh Fuji Apple, Each', 0.83, '030767041299', 'Treat your family to the healthy taste of Fuji Apples. Low in calories, these crisp and crunchy apples can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these apples to make a rich and creamy yogurt parfait or serve them alongside your pancakes, sausage, and eggs. Slice these apples and use them to add flavor to a lunchtime salad or spread peanut butter on them for a protein-filled snack. Fuji Apples are used in many tasty desserts like apple cobbler, apple crisp, and apple pie. Get creative in the kitchen and make homemade apple butter or applesauce. However you choose to use them, Fuji Apples add sweetness to any meal.', 'Fresh Fuji Apple, Each: Crunchy, crisp & sweet flavor Low in calories Enjoy on their own or in a variety of recipes Make a creamy yogurt parfait Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp & apple pie', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ecbe0124-9333-4b2f-9f99-b37fc032fb52.d9f86f3c2d89f8fb4570cb1c42e91006.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecbe0124-9333-4b2f-9f99-b37fc032fb52.d9f86f3c2d89f8fb4570cb1c42e91006.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecbe0124-9333-4b2f-9f99-b37fc032fb52.d9f86f3c2d89f8fb4570cb1c42e91006.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (43923235, 'Fresh Tomatillos by Weight', 1.85, '853447003154', 'Enjoy the delicious flavor of Fresh Tomatillos raw or cooked. Tomatillos have a slightly acidic, tangy flavor when raw and have a sweeter, less acidic taste when cooked. This versatile ingredient is perfect for a variety of mouthwatering dishes. Use them raw and chop it and mix into a salsa for a tangy addition. Puree them and pour over a pork butt in a slow cooker and let it cook for several hours for a tender, juicy pork butt that?s great for taco or burritos. Simply, shuck the husk off the tomatillos and wash then prepare them for your dish. With so many so many ways to prepare Fresh Tomatillos will become a staple in your dishes. Also known as Green Tomato and Tomatillo around the word.', 'Tomatillos, Per Pound: Acidic, tangy flavor raw and a sweeter, less acidic taste cooked Versatile ingredient perfect for a variety of dishes Chop and mix with onions, cilantro, and lime juice for salsa Puree and pour over pork butt in a slow cooker for a tender and juicy protein for tacos and burritos Shuck off the husk, wash, and then prepare', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c6d94102-7d80-4fbb-ad3c-334aea20566a.dd190789e6e95eb0cbc06fd6545fd761.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c6d94102-7d80-4fbb-ad3c-334aea20566a.dd190789e6e95eb0cbc06fd6545fd761.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c6d94102-7d80-4fbb-ad3c-334aea20566a.dd190789e6e95eb0cbc06fd6545fd761.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (43923746, 'Fresh SugarBee Apple, Each', 1.69, '000000034869', 'With exceptional crispness and delicious sweet flavor, SugarBee Apples deliver an un-bee-lievable eating experience. This unique, natural marvel was created by honeybees who mixed the pollen of a mystery apple variety with Honey crisp. With great versatility and nutritional value, SugarBee Apples make for the perfect snack or ingredient in apple pies, tarts, turnovers, juices and more. Sweeter. Crispier. Honey-r. From bee to you.', 'Sugarbee Apples Notes of honey, caramel and molasses Crisp, firm texture and a crunchy bite Juicy, aromatic and just the right amount of sweetness Perfect for a variety of seasonal treats like caramel apples, ciders and more Pairs well with cheeses like gouda and sharp cheddar Adds flavor to a variety of recipes', 'SugarBee', 'https://i5.walmartimages.com/asr/0fabf6bb-bbfc-4cf6-bda1-5faffb98e98b.ca073c0767dd716961a4aebed5259d93.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0fabf6bb-bbfc-4cf6-bda1-5faffb98e98b.ca073c0767dd716961a4aebed5259d93.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0fabf6bb-bbfc-4cf6-bda1-5faffb98e98b.ca073c0767dd716961a4aebed5259d93.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390943, 'Fresh Green Seedless Grapes, Bag (2.25 lbs/Bag Est.)', 3.65, '000000044981', 'Treat yourself to the delicious, juicy flavor of Fresh Green Seedless Grapes. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Fresh Green Seedless Grapes.', 'Fresh Green Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7a31dc3a-cf2c-4e7e-829c-88e40e488e7a.e79a0599056e495b799eb1a237b5452f.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7a31dc3a-cf2c-4e7e-829c-88e40e488e7a.e79a0599056e495b799eb1a237b5452f.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7a31dc3a-cf2c-4e7e-829c-88e40e488e7a.e79a0599056e495b799eb1a237b5452f.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390944, 'Fresh Roma Tomato, Each', 0.23, '000000032827', 'With Fresh Roma Tomatoes from Walmart, it\'s easy to make a wholesome, delicious meal. Roma tomatoes are a fresh produce ingredient for whipping up a variety of wonderful dishes. You can use them to create a zesty tomato sauce for stirring into a homemade pasta dish, crush them up to make a delightful Roma tomato bruschetta, or simply enjoy them on their own as a nutritious snack or as a party platter option for dipping in your favorite vegetable dipping sauce. If you\'re feeling a classic tomato dish, Roma tomatoes can even lend themselves in making a comforting and appetizing tomato soup or a flavorful salsa. However you choose to use them, each Roma tomato will add stunning flavor to your meal. Just find the recipe and experience the tasty results for yourself! Elevate your recipes with Roma Tomatoes.', 'Fresh Roma Tomato, Each: Wholesome and delicious fresh produce Ideal ingredient for a variety of dishes Perfect for making zesty tomato sauces Enjoyable as a nutritious snack Excellent for homemade salsa', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ecef8a3e-ab96-445e-a16a-d639b40eb5fb.93fcc627f542f02488e5ee9d8e26f152.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecef8a3e-ab96-445e-a16a-d639b40eb5fb.93fcc627f542f02488e5ee9d8e26f152.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecef8a3e-ab96-445e-a16a-d639b40eb5fb.93fcc627f542f02488e5ee9d8e26f152.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390945, 'Green Bell Pepper, 1 each', 0.98, '000000040655', 'Enhance your meals with the delicious flavor of Green Bell Peppers. This vegetable contains essential vitamins such as A and C, and minerals including calcium and magnesium. Green bell pepper, also known as green capsicum, has a crisp flavor that enhances a variety of recipes. Dice bell peppers and put them in a hearty chili, slice them and add to a deli sandwich, saute them with onions and serve on a hoagie roll with a bratwurst, or stir-fry with thinly-sliced steak and serve with rice. A hollowed-out green bell pepper can be filled with sausage, mushrooms, and rice to create a delicious stuffed pepper that will have the family asking for seconds. Lunches and dinners are more scrumptious when fresh green peppers are part of the meal. They also taste delicious raw alongside other vegetables. Add your favorite dip for a healthy, crunchy crudite. Cooked or uncooked, Green Bell Peppers are an excellent item to have on hand. Also known as Pimiento verde, Green chili, Filfil akhdar and Hari mirch around the world.', 'Green Bell Pepper, 1 each: Naturally low in calories Exceptionally rich in vitamin C and other antioxidants Delicious cooked or uncooked Create delicious recipes with fresh green peppers', 'Fresh Produce', 'https://i5.walmartimages.com/asr/15c8fcf1-7b73-429e-8a7c-802091d818f1.4730164455d5cc0a04d2b1f675971dd1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/15c8fcf1-7b73-429e-8a7c-802091d818f1.4730164455d5cc0a04d2b1f675971dd1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/15c8fcf1-7b73-429e-8a7c-802091d818f1.4730164455d5cc0a04d2b1f675971dd1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390947, 'Fresh Produce, Whole Zucchini, 1 Each', 0.88, '000000040679', 'This Zucchini, Each provides a healthy dose of vitamins to add to your diet. Ideal for many types of cuisines, it can be enjoyed year-round in many recipes. It can be used as a simple side dish, sauteed in oil, herbs and spices. You can also serve it with a protein and a starch for a wholesome meal. This zucchini vegetable is sold in the store at a per-unit price, so you can stock up on as many as you need. You can even buy just one single zucchini at a time. Also known as Calabacin, Kousa and Tori around the world.', 'Fresh zucchini Sold individually Ideal for use in a savory side dish Highly nutritious vegetable that offers an excellent source of fiber Also known as Calabacin, Kousa and Tori around the world.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7d7a2618-ed85-45bd-bf30-11b14b289c34.d484064e9e02e1132b6a3da45c871632.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7d7a2618-ed85-45bd-bf30-11b14b289c34.d484064e9e02e1132b6a3da45c871632.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7d7a2618-ed85-45bd-bf30-11b14b289c34.d484064e9e02e1132b6a3da45c871632.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390948, 'Fresh Banana, Each', 0.2, '717524111128', 'Enhance breakfast and baking dishes by incorporating fresh Banana (Guineo) Fruit into family-favorite recipes. Each banana is a versatile fruit that\'s packed with potassium and dietary fiber to help maintain a balanced and nutritional diet. They\'re essential to a wealth of traditional recipes, as well as a healthy, easy snack the entire family will enjoy. Their soft, ripened fruit is a favorite of all ages and offers a sweet and delicious bite that makes a tasty smoothie and snack addition. Raw bananas have a universal use that complements many flavors and can easily add a different and delicious dimension to ice cream and dessert treats.', 'Fresh produce Easy-to-peel bananas Can be enjoyed raw or cooked Can elevate dessert and breakfast recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5939a6fa-a0d6-431c-88c6-b4f21608e4be.f7cd0cc487761d74c69b7731493c1581.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5939a6fa-a0d6-431c-88c6-b4f21608e4be.f7cd0cc487761d74c69b7731493c1581.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5939a6fa-a0d6-431c-88c6-b4f21608e4be.f7cd0cc487761d74c69b7731493c1581.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390949, 'Fresh Hass Avocados, Each', 0.97, '405563623039', 'Whole conventional avocados are a versatile and nutrient-dense fruit that can be enjoyed in many different recipes. They are perfect for barbecues and outdoor gatherings with friends and family. Avocados can be used in Mexican food items like tacos or burritos, as appetizers like avocado crostini, or in a fresh guacamole or avocado dip. They provide unsaturated \"good\" fats and almost 20 vitamins, minerals, and phytonutrients. When selecting avocados, look for a dark green to nearly black skin color, a bumpy texture, and they should yield to gentle pressure without feeling mushy. They are creamy, mild, and light. Enjoy all kinds of healthy foods and recipes at your next gathering with friends and family.', 'Fresh fruit with a creamy texture and mild flavor A cholesterol free fruit that contains almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9 Avocados are the lowest sugar fruit and provide unsaturated “good fats” that help absorb Vitamin A, Vitamin D, Vitamin K and Vitamin E Ripe avocados will have dark green to nearly black skin color, a bumpy texture and should yield to gentle pressure without leaving indentations', 'Fresh Produce', 'https://i5.walmartimages.com/asr/af510d27-f416-4691-99fa-0943d730f8d2.8607ec56ce71993860620dc4c8ca9cd6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af510d27-f416-4691-99fa-0943d730f8d2.8607ec56ce71993860620dc4c8ca9cd6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af510d27-f416-4691-99fa-0943d730f8d2.8607ec56ce71993860620dc4c8ca9cd6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390950, 'Fresh Honeycrisp Apple, Each', 1.06, '748790328378', 'Honeycrisp Apples are the ultimate healthy choice for busy families, offering a sweet-tart crunch that kids adore and parents trust. Say goodbye to snack-time negotiations! These premium, U.S. Extra Fancy Honeycrisp Apples deliver guaranteed quality and flavor, making them the perfect lunchbox hero and an ideal ingredient for versatile home cooking. Their unique, crisp texture and honey-sweet flavor profile means they are fantastic enjoyed fresh as a healthy snack or cooked into delicious family favorites, from classic applesauce to a quick morning smoothie. Stock up on these premium fresh apples and confidently provide your family with a convenient, nutritious, and absolutely irresistible option.', 'The Flavor Kids Beg For: Perfectly balanced sweet-tart flavor with a hint of honey. It\'s the guilt-free treat your family will choose first. Lunchbox Hero & Easy Snack: Ready-to-eat convenience makes packing lunches a breeze. Just wash and toss one in the bag! Unmatched Versatility: Crisp enough for on-the-go snacking, yet bakes beautifully into pies, sauces, and crumbles. Maximize your grocery value! Premium, U.S. Extra Fancy Quality: confident in our quality - expect a beautiful, vibrant red-orange apple that looks as good as it tastes.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/fdffb720-8b75-43df-bffe-4ffc4e9369d8_3.d4460fa9146eb9716b5804d61d4b26b9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fdffb720-8b75-43df-bffe-4ffc4e9369d8_3.d4460fa9146eb9716b5804d61d4b26b9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fdffb720-8b75-43df-bffe-4ffc4e9369d8_3.d4460fa9146eb9716b5804d61d4b26b9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390951, 'Fresh Mandarin Oranges, 5 lb Bag', 6.67, '605049428640', 'Enjoy the juicy goodness of citrus when you eat a Fresh Mandarin Orange. Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Among the smallest fruits in the orange family, clementines have a pleasing sweet-tart flavor and are typically seedless. Generally a winter fruit, mandarins are now available year-round in most markets. Mandarins are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the mandarins hang out in a bowl on your counter or table to breathe. Compact and portable, mandarins are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious fresh mandarin on hand for an easy, healthy treat.', 'Fresh Mandarins, 5 lb Bag Delicious, sweet, juicy citrus Pleasing sweet-tart flavor Easy to peel and segment Excellent source of vitamin C, potassium, and folic acid For maximum flavor, do not refrigerate Typically seedless You\'ll have plenty for the whole family with this 5-pound bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/74f9c12b-7d59-4b92-bfc7-8ca35ceb0bbc.6825cad59a8e52c10d2bdb436b093770.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/74f9c12b-7d59-4b92-bfc7-8ca35ceb0bbc.6825cad59a8e52c10d2bdb436b093770.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/74f9c12b-7d59-4b92-bfc7-8ca35ceb0bbc.6825cad59a8e52c10d2bdb436b093770.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390952, 'Fresh Produce, Green Whole Asparagus, 1 Bunch Bundle', 3.08, '012842001534', 'Asparagus is a fresh and flavorful vegetable that has a crisp texture and mild earthy taste. This nutrient-rich vegetable that is packed with vitamins, minerals & fiber. Asparagus is the perfect ingredient item that is elicious in pasta, salads, casseroles or soups. They are also simple to prepare as a side, saute in olive oil or wrap in bacon for the grill. Asparagus is a healthy side that complements any meal. Asparagus is also know as Espárragos, Asuparagasu, Hilyawn, Asfaraj & Shatavari around the world.', 'Asparagus is fresh & flavorful with a crsip texture & a mild earthy taste Nutrient-rich vegetable that is packed with vitamins, minerals & fiber Simple to prepare, saute in olive oil or wrap in bacon for the grill Perfect ingredient item that is elicious in pasta, salads, casseroles or soups A healthy side that complements a wide variety of main dishes Also known as Espárragos, Asuparagasu, Hilyawn, Asfaraj & Shatavari around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5556f793-0600-4e42-812e-ae2cb11c0047.2635cfb5344dbbbee8ff1cb6d52877c8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5556f793-0600-4e42-812e-ae2cb11c0047.2635cfb5344dbbbee8ff1cb6d52877c8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5556f793-0600-4e42-812e-ae2cb11c0047.2635cfb5344dbbbee8ff1cb6d52877c8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390953, 'Fresh Gala Apple, Each', 0.68, '024425041325', 'Indulge in the succulent taste of Fresh Gala Apples, now available in a convenient 1lb bag! These crisp and flavorful apples are a crowd favorite, known for their perfect balance of sweetness and tartness. With their bright red and yellow skin, they are as visually appealing as they are delicious. Perfect for snacking on the go, adding to salads, or baking into mouthwatering pies and desserts, Fresh Gala Apples are a versatile choice for any occasion. Treat yourself to the freshness and goodness of these 1lb bags and elevate your apple experience to a whole new level!', 'Fresh Gala Apples, by weight: Sweet and mild with a subtle floral aroma Perfect for breakfast, lunch, dinner, and dessert Chop them up and add to a salad, add them to a smoothie or juice blend, or serve with peanut butter Perfect for snacking They have a creamy white flesh with low acidity Sweet and mild with a subtle floral aroma Sweet and mild with a subtle floral aroma Perfect for breakfast, lunch, dinner, and dessert Chop them up and add to a salad, add them to a smoothie or juice blend, or serve with peanut butter Perfect for snacking They have a creamy white flesh with low acidity', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f46d4fa7-6108-4450-a610-cc95a1ca28c5_3.38c2c5b2f003a0aafa618f3b4dc3cbbd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f46d4fa7-6108-4450-a610-cc95a1ca28c5_3.38c2c5b2f003a0aafa618f3b4dc3cbbd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f46d4fa7-6108-4450-a610-cc95a1ca28c5_3.38c2c5b2f003a0aafa618f3b4dc3cbbd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390954, 'Fresh Cucumber, Each', 0.72, '405505626623', 'Introducing our Whole Fresh Cucumbers, the epitome of crispness and flavor! Handpicked at the peak of freshness, these cucumbers are bursting with natural goodness. With their vibrant green color and firm texture, they are perfect for slicing into refreshing salads or adding a delightful crunch to your favorite recipes. Treat your taste buds to the ultimate freshness with our Whole Fresh Cucumbers!', 'Single cucumber Crisp, delicious, and refreshing Create delicious recipes with this fresh cucumber Also known as Pepino, Kyuri, Khyar and Kheera around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5985ccc8-109e-411d-aca7-556ab217e1da.e3770028b0d00b3fa4e6a40c4e630ef9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5985ccc8-109e-411d-aca7-556ab217e1da.e3770028b0d00b3fa4e6a40c4e630ef9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5985ccc8-109e-411d-aca7-556ab217e1da.e3770028b0d00b3fa4e6a40c4e630ef9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390955, 'Fresh Tomato on the Vine, Bag (1.9 lbs/Bag Est.)', 3.88, '699058046643', 'Keep your recipes simple and classic with Fresh Tomatoes on the Vine. With their vibrant red color, firm and juicy flesh, and unmistakably delicious flavor, this fresh produce item is sure to impress more than just your taste buds. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. The list is endless! Plus, they come right to your kitchen still on the vine that they grew on, meaning that their mouthwatering taste and freshness will be long-lasting for your culinary convenience. Stock up on Walmart\'s Tomatoes On The Vine and keep your dishes looking great and tasting equally as excellent.', 'Fresh Tomato on the Vine, Bag Wholesome, versatile, and delicious fresh produce Ideal ingredient for a variety of dishes Make a zesty tomato sauce to go along with your favorite pasta Enjoy on their own as a nutritious snack Make ounces of a flavorful salsa or add some pop to your guacamole', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390957, 'Fresh Raspberries, 12 oz. Container', 6.64, '715756100033', 'The sweet, juicy flavor of Fresh Raspberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes or yogurt, bake them into mouthwatering raspberry crumble bars, mix them with other fruit for a light and flavorful salad, or add them to a creamy smoothie. They contain essential vitamins and nutrients like vitamin C, fiber, potassium, vitamin K and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them with cool water and enjoy the fresh taste. Refrigerate the berries to keep them fresh and ready for use. Pick up a Fresh Raspberry container today and savor the delectable flavor.', 'Are you ready to experience the vibrant taste and health benefits of Fresh Raspberries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Raspberries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. The versatility of raspberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these tasty gems into your baking endeavors, whether it\'s muffins, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Not only are raspberries delicious, but they also offer an array of health benefits. Loaded with vitamins and dietary fiber, raspberries are are a nutritious choice that will keep you feeling good from the inside out. Our Fresh Raspberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness. Treat yourself to the delightful taste and nutritional benefits of Fresh Raspberries. Elevate your dishes, satisfy your cravings, and experience the joy of these plump and juicy berries. Order your batch today and unlock a world of flavor and wellness.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/eda41ad1-ca39-45df-ac28-9f2df375156d_1.9d270b612b7896e3a54f48fe48a72b59.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eda41ad1-ca39-45df-ac28-9f2df375156d_1.9d270b612b7896e3a54f48fe48a72b59.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eda41ad1-ca39-45df-ac28-9f2df375156d_1.9d270b612b7896e3a54f48fe48a72b59.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390958, 'Fieldpack Unbranded Gala Apples 3 Lb Bag', 2.58, '847473001727', 'Savor the sweet taste of Freshness Guaranteed Gala Apples. Gala apples are sweet and mild with a subtle floral aroma making them perfect for breakfast, lunch, dinner, and dessert. Perfect for snacking, they have a creamy white flesh with low acidity. Chop the apples up and add them to a salad with walnut, mixed greens, and a poppy seed vinaigrette for a crunchy delicious salad that you can enjoy for lunch or dinner. Add it to your favorite smoothie or juice blend for a morning pick me up to get your day started right. Serve with a dollop of peanut butter and enjoy as a healthy snack that both kids and adults will love. Enjoy the delicious taste of Freshness Guaranteed Gala Apples. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Gala Apples, 3 lb Bag: Sweet and mild with a subtle floral aroma Perfect for breakfast, lunch, dinner, and dessert Chop them up and add to a salad, add them to a smoothie or juice blend, or serve with peanut butter Perfect for snacking They have a creamy white flesh with low acidity Sweet and mild with a subtle floral aroma Perfect for breakfast, lunch, dinner, and dessert Chop them up and add to a salad, add them to a smoothie or juice blend, or serve with peanut butter Perfect for snacking They have a creamy white flesh with low acidity Sweet and mild with a subtle floral aroma Perfect for breakfast, lunch, dinner, and dessert Chop them up and add to a salad, add them to a smoothie or juice blend, or serve with peanut butter Perfect for snacking They have a creamy white flesh with low acidity Make a creamy smoothie or a nutritious juice blend Perfect as a healthy treat or seasonal baking ingredient Great for packing in lunches Make a creamy smoothie or a nutritious juice blend Adds flavor to a variety of recipes', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/bcfd9451-a73b-411f-84e3-1d866f833ae8.3e996f05a24facfa2ac526d6c631401d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bcfd9451-a73b-411f-84e3-1d866f833ae8.3e996f05a24facfa2ac526d6c631401d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bcfd9451-a73b-411f-84e3-1d866f833ae8.3e996f05a24facfa2ac526d6c631401d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390964, 'Sweet Potatoes Whole Fresh, Each (Batata Mameya)', 1.11, '000000048163', 'Create something wholesome, fresh and delicious with these Sweet Potatoes (Yams) .These versatile vegetables can be used to make savory sides or sweet treats. Try them roasted or baked for a tasty addition to any dish. You could also use them to make seasoned sweet potato fries or a flavorful hummus dip for your next party. If you want to satisfy your sweet tooth, try them in a traditional sweet potato casserole or use them to make sweet potato and brown sugar ice cream. The mouthwatering possibilities are endless with this hearty vegetable. Add something amazing to your meals with Sweet Potatoes.', 'Wholesome, versatile, and delicious Ideal ingredient for a variety of dishes Make seasoned sweet potato fries or a flavorful hummus dip Use them for a sweet potato casserole or sweet potato and brown sugar ice cream Sometimes referred to as yams', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1696f72c-2214-4f16-9a53-f737b4039260.5059dac4fe3ac4097e944e7e59ac55b9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1696f72c-2214-4f16-9a53-f737b4039260.5059dac4fe3ac4097e944e7e59ac55b9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1696f72c-2214-4f16-9a53-f737b4039260.5059dac4fe3ac4097e944e7e59ac55b9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390965, 'Northwest Bartlett Pears, juicy and ready to eat - sold by the pound', 0.39, 'deleted_000000044097', 'Savor the sweet taste of Bartlett Pears. Bartlett Pears are aromatic and have a definitive pear flavor that makes them great for breakfast, lunch, dinner, and dessert. Chop the pears up and add them to muffins with walnuts and vanilla for a sweet treat that’s great for breakfast to get your morning started on a high note.', 'Bartlett Pears, Each: Aromatic with a definitive pear flavor Great for breakfast, lunch, dinner, and dessert Chop them up and add to muffins with walnuts and vanilla, slice and add to pizza with prosciutto, goat cheese, and arugula, or cut in half and cook in a skillet with butter, brown sugar, and vanilla Versatile ingredient perfect for both savory and sweet dishes', 'Chelan Fresh', 'https://i5.walmartimages.com/asr/e5c177f1-c83d-466d-be2e-a9ecbb7f4e0a_1.f8702655003f8478a2cfb7937b03d449.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5c177f1-c83d-466d-be2e-a9ecbb7f4e0a_1.f8702655003f8478a2cfb7937b03d449.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5c177f1-c83d-466d-be2e-a9ecbb7f4e0a_1.f8702655003f8478a2cfb7937b03d449.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390968, 'Fresh Small Hass Avocados, 5-6 Count Bag', 2.97, '761010098769', 'Fresh Small Hass Avocados, 5-6 Count Bag', 'Bag of 5-6 Small Hass Avocados Fresh fruit with a creamy texture and mild flavor Fresh avocados are great for using in tacos, burritos, appetizers, avocado dip and fresh guacamole so that you have delicious food to share and enjoy during barbecues and the summer months A cholesterol free fruit that contains almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9 Small hass avocados are the lowest sugar fruit and provide unsaturated “good fats” that help absorb Vitamin A, Vitamin D, Vitamin K and Vitamin E Small ripe avocados will have dark green to nearly black skin color, a bumpy texture and should yield to gentle pressure without leaving indentations', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8ab7eab4-588f-4f36-8841-87eaf0702464.c4aeb60930acd1b9d5eb4aeeea1769e3.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ab7eab4-588f-4f36-8841-87eaf0702464.c4aeb60930acd1b9d5eb4aeeea1769e3.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ab7eab4-588f-4f36-8841-87eaf0702464.c4aeb60930acd1b9d5eb4aeeea1769e3.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390971, 'Fresh Slicing Tomato, Each', 1.35, '204799000009', 'Slicing Tomatoes are the leader when it comes to big, yummy, fresh tomatoes. The large size, juicy tomato taste and meaty texture make these tomatoes the perfect choice for slicing up and topping your favorite burger and sandwiches. Use them to make a hearty grilled cheese and tomato sandwich that\'s bursting with flavor. Slice some up and pair with fresh mozzarella, basil, and balsamic vinegar for a delicious appetizer. You can even enjoy a slice topped with a sprinkle of salt and pepper for a fresh, healthy snack. Add Slicing Tomatoes to your fresh produce basket today for a delicious juicy addition.', 'Slicing Tomatoes, Each: Wholesome, fresh, versatile, and delicious Large size with a juicy, delicious flavor Meaty texture makes them perfect for slicing Enjoy on burgers, sandwiches and more Enjoy on its own seasoned with salt and pepper as a heathy snack Create a mouthwatering salad or appetizer', 'Fresh Produce', 'https://i5.walmartimages.com/asr/87d9362e-14de-4d0d-ac8a-76e0f45036ee.cc24439f3db08493212df9f0d12f48dd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/87d9362e-14de-4d0d-ac8a-76e0f45036ee.cc24439f3db08493212df9f0d12f48dd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/87d9362e-14de-4d0d-ac8a-76e0f45036ee.cc24439f3db08493212df9f0d12f48dd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390974, 'Fresh Cantaloupe, Each', 2.97, '000000040495', 'Treat yourself to the refreshing flavor of a fresh Cantaloupe. Enjoy this tasty melon on its own as a healthy snack or incorporate it into a variety of delicious recipes. For breakfast, you can make a sweet fruit bowl with sliced cantaloupe, strawberries, pineapple, and kiwi. For an extra special treat, top with a dollop of whipped cream. Cut it into small pieces and put it in a fresh salad along with chicken, cucumbers, tomatoes, and a light dressing. You can even use cantaloupe to make a refreshing summer cocktail, a spreadable jam or a light sorbet. Enjoy the sweet and juicy taste of fresh Cantaloupe.', 'Cantaloupe, each: Ideal addition to every kitchen Flavorful addition to many recipes Enjoy on its own or add to a mixed fruit salad Add to your fresh garden salad Get creative & make a cantaloupe cocktail or a refreshing sorbet Explore all the delicious ways to add fresh cantaloupe to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/fb4c18a5-9367-4770-b99f-7518c72db482.5609c32e87a3110b734aad048bf9fe35.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb4c18a5-9367-4770-b99f-7518c72db482.5609c32e87a3110b734aad048bf9fe35.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb4c18a5-9367-4770-b99f-7518c72db482.5609c32e87a3110b734aad048bf9fe35.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390976, 'Red Globe Seeded Grapes, Bag', 1.98, '333832505956', 'Produce Unbranded Fresh Chilean Grown Red Globe Grapes', 'Red Globe Seeded Grapes, Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0d5f1d83-8b5b-4c85-9170-4ae2c288720e_1.5530e794986c0ec5ede8e866f1186fc3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d5f1d83-8b5b-4c85-9170-4ae2c288720e_1.5530e794986c0ec5ede8e866f1186fc3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d5f1d83-8b5b-4c85-9170-4ae2c288720e_1.5530e794986c0ec5ede8e866f1186fc3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390977, 'Fresh Muscadine Bronze Grapes, Whole, 1 lb Tray', 3.88, '033383250731', 'Enjoy the sweet taste of these Fresh Muscadine Bronze Grapes. Native to the southern United States, these muscadine grapes have a thick, tough skin and a sweet, juicy interior. These large, round grapes come in various shades of purple to bronze and are known for their unique musky whole flavor. Rich in antioxidants and vitamins, muscadine grapes are enjoyed fresh, as well as in jams, jellies, and wines. With a sweet flavor, they\'re great for snacking and can be used in salads, smoothies, and desserts, making them a perfect addition to any meal. Bring home some Fresh Muscadine Bronze Grapes today.', 'Fresh Muscadine Bronze Grapes, Whole, 1 lb Tray Tasty, nutritious fruit ideal for snacking or adding to recipes Muscadine grapes have a high concentration of antioxidants These grapes provide dietary fiber, supporting digestive health, cholesterol regulation, and weight maintenance With a sweet flavor, they\'re great for snacking and can be used in salads, smoothies, and desserts, making them a perfect addition to any meal Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7c72acc7-6cdc-465f-8699-f5062fae2d7e.6c465b360f3f7b24a97185c6001423ad.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c72acc7-6cdc-465f-8699-f5062fae2d7e.6c465b360f3f7b24a97185c6001423ad.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c72acc7-6cdc-465f-8699-f5062fae2d7e.6c465b360f3f7b24a97185c6001423ad.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390980, 'Fresh Pink Lady Apple, Each', 0.82, '000000041300', 'Treat yourself to the delicious, crisp taste of Pink Lady Apples. These apples are known for their vivid green skin covered in a pinkish blush, crunchy texture, and tart taste with a sweet finish. Enjoy one with breakfast or lunch or as a fresh snack any time of day. with Pink Lady Apples. These are some of the fresh produce we offer that is made with organic ingredients.', 'Fresh Pink Lady Apples, Each: Crisp and aromatic with a pleasant sweet but tart flavor Great morning, noon, or night Chop them up and add to a salad, dice and top with oats, spices, and butter for an apple crisp, or serve with a dollop of peanut butter Versatile ingredient great for a variety of dishes Make a creamy smoothie or a nutritious juice blend Perfect as a healthy treat or seasonal baking ingredient Great for packing in lunches Make a creamy smoothie or a nutritious juice blend Adds flavor to a variety of recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/fb057123-7b14-45f0-8b95-0b7ba1aca744.5a3e368f1b6db1be85515a4e5015a780.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb057123-7b14-45f0-8b95-0b7ba1aca744.5a3e368f1b6db1be85515a4e5015a780.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb057123-7b14-45f0-8b95-0b7ba1aca744.5a3e368f1b6db1be85515a4e5015a780.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390986, 'Fresh Personal Seedless Watermelon, Each', 4.18, '823298000138', 'Discover the refreshing taste and convenience of a Fresh Personal Seedless Watermelon. Ideally sized for modern kitchens, these personal watermelons are often sought after as a mini watermelon because of their compact shape that fits neatly into refrigerator drawers. Slice through the vibrant green rind to reveal crisp, juicy red flesh bursting with natural sweetness. Known as sandia in many households, this whole fruit serves as a wonderful choice for backyard picnics, fresh fruit salads, or blending into cooling smoothies. The manageable size allows you to enjoy fresh melon with ease, making it simple to wash, carry, and prepare whenever you crave a healthy treat.', 'Compact personal size fits easily in refrigerator drawers and travel coolers Crisp red flesh offers a sweet and juicy texture for a refreshing treat Naturally hydrating snack that is fat-free and low in calories Lightweight whole fruit is effortless to carry, wash and slice for quick preparation Delicious addition to fruit salads, sandia fresh waters, lunch boxes and sorbets Convenient mini watermelon size reduces food waste and storage needs', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d3ac703a-9c91-451a-8218-f522602003d7.fc560b0a40424cda1152890f8f927344.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d3ac703a-9c91-451a-8218-f522602003d7.fc560b0a40424cda1152890f8f927344.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d3ac703a-9c91-451a-8218-f522602003d7.fc560b0a40424cda1152890f8f927344.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390991, 'Fresh Granny Smith Apples, 3 lb Bag', 3.62, '888289401073', 'Treat yourself to Freshness Guaranteed Granny Smith Apples. Granny Smith apples are firm and juicy with a crisp texture and a tart, acidic, yet subtly sweet flavor, perfect for use in a variety of dishes morning, noon, and night. Slice them up and cook in a skillet with brown sugar, butter, cloves, and nutmeg for a simple, sweet treat. Mix them with cabbage, grapes, honey, mayonnaise and, celery to make a fresh, apple slaw for a summer cookout. Use them to make a sweet, classic apple pie that your friends and family with love. Create delicious meals and treats with Freshness Guaranteed Granny Smith Apples. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Firm and juicy with a crisp texture and a tart, acidic, yet subtly sweet flavor Great for breakfast, lunch, dinner, or dessert Cook in a skillet with butter, brown sugar, and spices; mix with cabbage, grapes, honey, mayonnaise and, celery for apple slaw; or make a classic apple pie Versatile ingredient perfect for both savory and sweet dishes Meets or exceeds U.S. Extra Fancy They have a creamy white flesh with low acidity', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/50a4f85e-f8c7-4ff3-857b-92066c31ab5e.b05cce25b6be38f5892bad0ebb8ff078.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/50a4f85e-f8c7-4ff3-857b-92066c31ab5e.b05cce25b6be38f5892bad0ebb8ff078.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/50a4f85e-f8c7-4ff3-857b-92066c31ab5e.b05cce25b6be38f5892bad0ebb8ff078.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390992, 'Fresh Whole Sweet Onion, Each', 0.96, '204166000007', 'Add flavor to your next meal with fresh Sweet Onions. This versatile vegetable adds flavor and texture to a variety of recipes. For breakfast, you could dice them and add to an omelet loaded with cheese, ham, and mushrooms. You can dice these onions and add them to a fresh garden salad for a satisfying crunch or sprinkle them on top of your fish tacos. Sweet onions also make delicious golden onion rings to serve alongside juicy hamburgers and hot dogs at your next backyard barbecue. You can keep these onions at room temperature until ready to use. Stock your pantry with several of these fresh, whole Sweet Onions.', 'Whole fresh sweet onions, each: Less pungent than other varieties of onions Mild, sweet flavor Great in dishes that feature onion as a primary flavor, like onion soup Yummy addition to salads and sandwiches Store in the refrigerator for best results Packed with minerals and vitamins Delicious and nutritious Less pungent than other varieties of onions Mild, sweet flavor Great in dishes that feature onion as a primary flavor, like onion soup Yummy addition to salads and sandwiches Store in the Bag refrigerator for best results Packed with minerals and vitamins Delicious and nutritious, No Preservatives', 'Fresh Produce', 'https://i5.walmartimages.com/asr/751d9737-f277-476b-853c-e0051119e55f.6682664c7777fd9f7ceec9e4078bf383.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/751d9737-f277-476b-853c-e0051119e55f.6682664c7777fd9f7ceec9e4078bf383.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/751d9737-f277-476b-853c-e0051119e55f.6682664c7777fd9f7ceec9e4078bf383.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44390996, 'Fresh Long English Cucumber, Each', 0.97, '003338301009', 'Enjoy the fresh, crisp, delicious flavor of English Cucumber. Packed with nutritional benefits such as being naturally low in calories, carbohydrates, sodium, fat, and cholesterol, cucumbers also provide potassium, fiber, and vitamin C and clock in at a cool 16 calories per cup. Use this cucumber to make healthy treats such as a cucumber salad with tomatoes and onions in a vinaigrette dressing, toss with fresh mozzarella, tomatoes, and a drizzle of balsamic vinegar, mix diced cucumbers with Greek yogurt, lemon, dill, and garlic for a refreshing tzatziki sauce for gyros or veggies, add to a crisp, fresh veggie salad, or thinly slice and add to a vinegar brine for quick pickles. Any way you slice, dice, or spiralize them, English Cucumber is a refreshing, healthy addition to any meal.', 'English Cucumber, 1 Each: Single cucumber Crisp, delicious, and refreshing Naturally low in calories, carbohydrates, sodium, fat, and cholesterol Provides potassium, fiber, and vitamin C, among other nutrients Create delicious recipes with this fresh cucumber', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ab5b3a59-55ca-4e21-b071-d6410abcd75b.d4490acd083eb12bee46c4335a6dceb4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ab5b3a59-55ca-4e21-b071-d6410abcd75b.d4490acd083eb12bee46c4335a6dceb4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ab5b3a59-55ca-4e21-b071-d6410abcd75b.d4490acd083eb12bee46c4335a6dceb4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391001, 'Fresh Carrot Chips, 1 lb, Bag', 2.07, '033383088006', 'Serve up a delicious snack with Fresh Carrot Chips. Carrots are a great source of beta carotene, fiber, vitamin K, potassium, and antioxidants. Ready to eat as-is, serve them with your favorite healthy dip for a snack that is better for you than traditional potato chips, add them to a crudité platter with other fresh vegetables, roast them in the oven with some olive oil and a little honey for a delectable side dish, or make a quick refrigerator pickle with radish slices and onions for a fun condiment with Mexican flair for your next Taco Tuesday. Perfectly portable, it’s easy to pack some carrot chips in your lunch or take a bag with you for a mid-afternoon pick-me-up. Keep healthy snacks within reach when you stock of up Fresh Carrot Chips.', 'Fresh Carrot Chips 1-pound bag Great source of beta carotene, fiber, vitamin K, potassium, and antioxidants Ready to eat Serve with your favorite dip as an alternative to traditional potato chips', 'Unbranded', 'https://i5.walmartimages.com/asr/39b48ca6-6c78-4f45-8a68-3106bd77c507.295daa91ace35ef1e629b902a19ff2c0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39b48ca6-6c78-4f45-8a68-3106bd77c507.295daa91ace35ef1e629b902a19ff2c0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39b48ca6-6c78-4f45-8a68-3106bd77c507.295daa91ace35ef1e629b902a19ff2c0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391003, 'Fresh Orange Bell Pepper, Each', 1.48, '203121000007', 'Enhance your meals with the delicious flavor of Greenhouse grown Orange Bell Peppers. Orange bell pepper has a crisp flavor that enhances a variety of recipes. Dice bell peppers and put them in a hearty chili, slice them and add to a deli sandwich, sauté them with onions and serve on a hoagie roll with a bratwurst, or stir-fry with thinly-sliced steak and serve with rice. A hollowed-out bell pepper can be filled with sausage, mushrooms and rice to create a delicious stuffed pepper. They also taste delicious raw alongside other vegetables. Orange Bell Peppers are an excellent item to have on hand', 'Naturally low in calories, Exceptionally rich in vitamin C and other antioxidants Delicious cooked or uncooked Create delicious recipes with fresh bell peppers', 'Fresh Produce', 'https://i5.walmartimages.com/asr/eb1893c6-ff33-4a36-ba05-d7fe42b67fbf.830244cad6037e9c0b18c4c237259b5d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eb1893c6-ff33-4a36-ba05-d7fe42b67fbf.830244cad6037e9c0b18c4c237259b5d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eb1893c6-ff33-4a36-ba05-d7fe42b67fbf.830244cad6037e9c0b18c4c237259b5d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391004, 'Russet Baking Potatoes Whole Fresh, Each', 0.75, '000000040723', 'Russet Baking Potatoes are the perfect addition to your pantry. With so many ways to prepare potatoes, you\'ll want to add them to every meal. For breakfast, you could make crispy hash browns smothered in cheese and diced ham or add them to a savory omelet. For lunch or dinner, you could use these fresh potatoes to make au gratin potatoes, garlic mashed potatoes, or a baked potato loaded with cheese, sour cream, green onions, and bacon bits. If you\'re hosting a neighborhood get-together, you can use them to make creamy potato salad or homestyle French fries. Serve up something delicious when you cook with Russet Baking Potatoes.', 'Fresh Russet Baking Potatoes, each: Ideal addition to every pantry Make crispy hash browns or add to an omelet Serve garlic mashed potatoes or a loaded baked potato Great for potato salad or homestyle French fries Explore all the delicious ways to serve these satisfying potatoes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c638c006-a982-48f7-aa33-6d3a8dc2983c.8fd015937ebfdd46c8fcb6177d0d1b1d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c638c006-a982-48f7-aa33-6d3a8dc2983c.8fd015937ebfdd46c8fcb6177d0d1b1d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c638c006-a982-48f7-aa33-6d3a8dc2983c.8fd015937ebfdd46c8fcb6177d0d1b1d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391005, 'Fresh Ginger Root, Each', 0.97, '000000046121', 'Fresh Ginger Root has a light brown, textured skin and white to yellow flesh. Its peppery, pungent, zesty flavor is a great way to bring acidity and just a touch of sweetness to juices, teas, stir-fries, and more. With a fibrous, somewhat juicy texture, ginger can be used fresh, dried, powdered, or as an oil or juice. Plus, it is known to have amazing health benefits, and has been used to help digestion, reduce nausea, and fight the flu, thanks to its impressive array of vitamins and minerals like iron, potassium, and vitamin C. Whether you\'re garlic-ginger chicken and broccoli, candied ginger, or an immune-boosting ginger tea, you\'ll want to have Fresh Ginger Root on hand. Also known as Jengibre, Sheng Jiang, Zanjabeel and Adrak around the world.', 'Fresh Ginger Root, per lb: Light brown, textured skin and white to yellow flesh Peppery, pungent, zesty flavor Can be used fresh, dried, powdered, or as an oil or juice Great addition to juices, teas, and stir-fries', 'Fresh Produce', 'https://i5.walmartimages.com/asr/19b5b581-826c-4d16-9a51-4260b57d15a4.262bf459282bb9c9d6e73db2d0db0cfa.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19b5b581-826c-4d16-9a51-4260b57d15a4.262bf459282bb9c9d6e73db2d0db0cfa.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19b5b581-826c-4d16-9a51-4260b57d15a4.262bf459282bb9c9d6e73db2d0db0cfa.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391008, 'Fresh Lime, Each', 0.25, '883616002763', 'Add zest and flavor to your meals and beverages with these Limes (Lima). Freshly squeezed limes provide a healthy dose of vitamin C to your diet and are a key ingredient in many recipes, from homemade salsa to chicken dishes. The citrusy tropical flavor of these limes are sure to add a zing to all your cooked meals. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use them when baking cakes, cookies, and tarts. Enjoy the refreshing, tart flavor of Limes.', 'Juicy and fresh, packed with vitamin C Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies and tarts Refreshing, tart flavor Available by the each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/12314833-2e54-4739-94a2-7db45b63109d.16ff07e3c111df9be4158853c2e505ef.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/12314833-2e54-4739-94a2-7db45b63109d.16ff07e3c111df9be4158853c2e505ef.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/12314833-2e54-4739-94a2-7db45b63109d.16ff07e3c111df9be4158853c2e505ef.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391012, 'Fresh Navel Oranges, 4 lb Bag', 5.83, '033383120805', 'Fresh Navel Oranges are a good addition to a healthy diet along with other fruit. They\'re oval with a thick, easy-to-remove peel and segments that separate cleanly. Oranges are a fruit that contains vitamin C and other nutrients that can be eaten as is or juiced for a smooth beverage at breakfast. It is suitable for use in all kinds of sweet and savory dishes, from cakes to weeknight chicken dinners. Citric acid fruits like oranges can be stored at room temperature for several days or in the refrigerator for up to two weeks. Available in a 4 lb package, these Fresh Navel Oranges are great for the entire family.', 'Fresh Navel Oranges, 4 lb Bag A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'Fresh Produce', 'https://i5.walmartimages.com/asr/fde3a905-a587-489d-baf8-399c6a685b03.30b341eb36f6f629e51f36434db8015f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fde3a905-a587-489d-baf8-399c6a685b03.30b341eb36f6f629e51f36434db8015f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fde3a905-a587-489d-baf8-399c6a685b03.30b341eb36f6f629e51f36434db8015f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391016, 'Kiwi Bulk, 1ea', 0.56, '066022040301', 'Kiwi, it is a fruit native to China, very popular for its sweet-tart flavor and its green flesh with small black seeds. It has a high water content and few calories. Rich in vitamins, fiber, antioxidants, vitamin K, and potassium, it is also low in calories. It is a refreshing fruit and can be eaten on its own, in fruit salads, smoothies, and more.', 'Rich in vitamin C, strengthens the immune system. Fiber, aids digestion and intestinal transit. Antioxidants, protect cells from damage. Vitamin K and potassium, support bones and heart health. Low in calories, ideal for healthy diets.', 'Unbranded', 'https://i5.walmartimages.com/asr/ea2f1505-0449-4d67-b4b4-d64294748ab5_2.ccee6b1b5876b8a7d2ef2395829076ad.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea2f1505-0449-4d67-b4b4-d64294748ab5_2.ccee6b1b5876b8a7d2ef2395829076ad.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea2f1505-0449-4d67-b4b4-d64294748ab5_2.ccee6b1b5876b8a7d2ef2395829076ad.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391018, 'Fresh Jalapeno Pepper, Approx. 3-5 per 0.25 Pound', 0.41, '853447003208', 'Enhance your meals with the delicious flavor of Jalapeno Peppers. Naturally low in calories, fat, and cholesterol, this vegetable is a great source of vitamins C, B6, A, and K, as well as folate and manganese. Jalapeno peppers have a range of pungency, and a crisp flavor that enhances a variety of recipes. Stuff jalapeno peppers with cheese and wrap in bacon for everyone?s favorite poppers, add them to enchiladas, put some diced jalapeno in your famous chili recipe, or make a zesty salsa using fresh jalapeno peppers. You can even add some diced jalapeno peppers and cheese to cornbread batter for a delectable chile cheese cornbread that will have everyone asking for seconds. Lunches and dinners are more scrumptious when fresh Jalapeno Peppers are part of the meal. Also known as Jalapeño, Spicy chili, Filfil har and Mirch around the world.', 'Jalapeno Pepper, 1 each: Naturally low in calories Rich in vitamins C, B6, A, and K Stuff jalapeno peppers and wrap in bacon for poppers, add to enchiladas or chili, or make a zesty salsa Approximately 3-5 peppers per .25 lb Versatile and delicious Jalapeno Peppers, 1 lb. Approximately 17 jalapenos per lb.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/540e857c-d063-4ad1-96a4-553c237171b3.080e0d33d92e26a5822927761234c7f1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/540e857c-d063-4ad1-96a4-553c237171b3.080e0d33d92e26a5822927761234c7f1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/540e857c-d063-4ad1-96a4-553c237171b3.080e0d33d92e26a5822927761234c7f1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391023, 'Fresh Green Beans, Bag (26.5 oz / Bag Est.)', 2.95, '000000040662', 'Add fresh flavor to your meal with fresh Green Beans. These green beans are an excellent source of vitamin A and vitamin C. Serve just as they are or add your favorite seasonings for additional flavor. Roast them with oil and spices for a rich and flavorful dish or add butter, shallots, salt, and pepper to green beans to create a yummy side dish. Serve with pork chops, chicken breasts, and other meats for a well-rounded meal. With so many uses, these greens beans will become a kitchen staple for your home. Fresh Green Beans are a quick and healthy side dish and a great addition to any meal.', 'Excellent source of vitamins A and C Roast with oil and spices or add butter, shallots, salt, and pepper for the perfect side dish Versatile ingredient Serve with pork chops, chicken breasts, and other meats for a well-rounded meal A kitchen staple', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0f89b2d3-88e2-4bf2-a948-a78bde5e886f.66904022b5a6e51cf5c329a2ac19c822.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0f89b2d3-88e2-4bf2-a948-a78bde5e886f.66904022b5a6e51cf5c329a2ac19c822.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0f89b2d3-88e2-4bf2-a948-a78bde5e886f.66904022b5a6e51cf5c329a2ac19c822.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391024, 'Spice World Fresh & Peeled Garlic 6 oz', 3.07, '023562010379', 'When you insist on fresh but don’t want to bother with peeling your garlic, Spice World Peeled Garlic is a sure bet. Pre-peeled and ready for you to mince, chop, crush, slice, or toss into any recipe for a convenient and savory boost to your dish!', 'No preservatives added No sodium Non-GMO Kosher', 'Spice World', 'https://i5.walmartimages.com/asr/96909e50-5c3d-4dfb-a50b-e4d6a5ea10a5.3cf9df14709618f4b8902742e0de84a3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96909e50-5c3d-4dfb-a50b-e4d6a5ea10a5.3cf9df14709618f4b8902742e0de84a3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96909e50-5c3d-4dfb-a50b-e4d6a5ea10a5.3cf9df14709618f4b8902742e0de84a3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391032, 'Marketside Organic Yellow Onions Whole Fresh, 3 lb Bag', 4.78, '033383900018', 'Give all of your dishes a wonderful flavor with these Organic Yellow Onions 3-lb Bags. They can be added to all of your favorite foods including hamburgers, stir-fries, soups, and pizza and used to make onion rings or blooming onions. These onions can be sauteed or served raw and stored in a cool, dry area until you are ready to use them. They have a fresh taste that will put something extra in your dish. These onions are easy to peel and quick to prepare so you can serve them on your dinner plate in no time. Add these veggies to your next dish and impress others with your culinary skills.', 'Staple ingredient for a variety of recipes Organic onions have a sharp taste that sweetens as it cooks 3 lb bag', 'Marketside', 'https://i5.walmartimages.com/asr/7494d3f2-fc20-4038-8be8-ba9a5088b94d.6b1d272e8ec503d8881db5bacb729afc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7494d3f2-fc20-4038-8be8-ba9a5088b94d.6b1d272e8ec503d8881db5bacb729afc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7494d3f2-fc20-4038-8be8-ba9a5088b94d.6b1d272e8ec503d8881db5bacb729afc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391037, 'Fresh Romaine Fillets, 7 oz', 2.98, '716519090080', 'Introducing our refreshing Fresh Romaine Fillets, a delightful addition to any meal. These crisp, 7 oz bags are packed with delicious, hand-picked romaine lettuce, specifically chosen for their tender and succulent fillets. Our romaine is sustainably grown and harvested at peak freshness, ensuring a vibrant and nutritious experience in every bite. Perfect for salads, wraps, or as a crunchy snack, our Fresh Romaine Fillets are a versatile and healthy option. Enjoy the unbeatable taste and quality of these convenient and appetizing greens today!', 'Romaine Fillets, 7 oz Introducing our refreshing Fresh Romaine Fillets, a delightful addition to any meal. These crisp, 7 oz bags are packed with delicious, hand-picked romaine lettuce, specifically chosen for their tender and succulent fillets. Our romaine is sustainably grown and harvested at peak freshness, ensuring a vibrant and nutritious experience in every bite. Perfect for salads, wraps, or as a crunchy snack, our Fresh Romaine Fillets are a versatile and healthy option. Enjoy the unbeatable taste and quality of these convenient and appetizing greens today!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9aa35949-161b-4c31-8f76-eb76190ca730.449bb4a9c1fe483e0b882c97f41c5029.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9aa35949-161b-4c31-8f76-eb76190ca730.449bb4a9c1fe483e0b882c97f41c5029.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9aa35949-161b-4c31-8f76-eb76190ca730.449bb4a9c1fe483e0b882c97f41c5029.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391040, 'Fresh Yellow Squash', 0.95, '000000047845', 'Create something wholesome and delicious with Yellow Squash. These versatile vegetables can be used to make savory sides or sweet treats. Try them dipped in batter and fried for a comforting side or, for a healthier option, you can make a filling squash and chicken chowder, or roast them in the oven stuffed with ground turkey. If you\'re looking for something sweet, you can use squash to make a zesty lemon squash bread, a creamy squash custard pie, or even a squash chocolate loaf. Use your imagination to create something amazing and tasty with this squash. The mouthwatering possibilities are endless with this hearty vegetable. Add something amazing to your meals with fresh Yellow Squash.', 'Yellow Squash Wholesome and delicious Ideal ingredient for a variety of dishes Make fried squash, a fresh squash salad, or a hearty autumn squash soup Use to make lemon squash bread and squash custard pie Versatile and hearty', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cac77957-3d9b-4bd3-bb94-53dbacf7241a.6e34f4c036af69455baa7a228c0eff91.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cac77957-3d9b-4bd3-bb94-53dbacf7241a.6e34f4c036af69455baa7a228c0eff91.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cac77957-3d9b-4bd3-bb94-53dbacf7241a.6e34f4c036af69455baa7a228c0eff91.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391042, 'Fresh Green Cabbage, Each', 2.66, '763478723924', 'Get creative in the kitchen with green cabbage. Fresh green cabbage is low in calories and high in fiber and antioxidants making it a great part of any healthy diet. Best of all, cabbage can be used for many different recipes and cuisines. Cabbage can be incorporated into everything from delicious and creamy cole slaw, wraps, egg rolls, curry, kimchi and more. Green cabbage can be roasted, boiled, braised, grilled, sauted, and even blanched. The possibilities are endless when you bring home green cabbage. Also known as Repollo verde, Malfoof and Patta Gobhi around the world.', 'Green Cabbage, Head: 1 head of green cabbage Versatile and healthy ingredient Can be roasted, boiled, braised, grilled, sauted, and even blanched Incorporate into everything from delicious and creamy cole slaw, stuffed cabbage, and wraps, to egg rolls, grilled cabbage, curry, kimchi and more Low in calories and high in fiber and antioxidants', 'Fresh Produce', 'https://i5.walmartimages.com/asr/164666b6-9c50-4505-bc1d-29f4d316f7dc.754a17269329372872578ecaef0c9d99.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/164666b6-9c50-4505-bc1d-29f4d316f7dc.754a17269329372872578ecaef0c9d99.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/164666b6-9c50-4505-bc1d-29f4d316f7dc.754a17269329372872578ecaef0c9d99.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391050, 'Fresh Yellow Grape Tomato, 10 oz Package', 2.98, '751666470064', 'These Yellow Grape Tomatoes deliver fresh, versatile flavor to take you from sauces to salads and beyond. A unique spin on the time-tested grape tomato, these colorful cousins of the grape tomato boast unique citrusy, floral notes. Refreshingly vibrant and versatile, you can enjoy them for snacking, salads, grilling, roasting or sauteing. You can combine these tasty little tomatoes with fresh mozzarella and basil drizzled with olive oil or slice them up and add them to a freshly tossed salad. If you\'re feeling something classic, you can always cut one up to add that fresh tomato taste to a sandwich or dice up a few to make a delightful pizza topping. Be sure to add Yellow Grape Tomatoes to your inventory of fresh ingredients today.', 'Yellow Grape Tomato, 10 oz Package: Wholesome, versatile, and delicious Colorful tomatoes with citrusy, floral notes Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/fb428654-2801-4914-a853-7b57912d3df3.564b08cd4bb64c7880b1736f897970bb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb428654-2801-4914-a853-7b57912d3df3.564b08cd4bb64c7880b1736f897970bb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb428654-2801-4914-a853-7b57912d3df3.564b08cd4bb64c7880b1736f897970bb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391051, 'Marketside Organic Fresh Green Onions, 1 Bunch', 1.97, '073574850012', 'Add flavor to your next meal with Marketside Organic Fresh Green Onions. For breakfast, you could dice them and add to an omelet loaded with cheese, ham, and mushrooms. Chop up the stalks into little rings and mix them into sour cream to create a delicious chip dip. You can also add them to a fresh garden salad or sprinkle them on top of your fish tacos. Add color and flavor to any dish with these Marketside Organic Fresh Green Onions. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Use in a variety of recipes Adds a hint of boldness to your dishes Dice them and add to a savory breakfast omelet Chop into little rings and add to sour cream to make a delicious chip dip Easy way to add color and flavor to a dish', 'Marketside', 'https://i5.walmartimages.com/asr/b579fc12-871b-43bb-9c37-5a818ee5a730.7e0ee1a74497207bf600bc66f9e4b7c3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b579fc12-871b-43bb-9c37-5a818ee5a730.7e0ee1a74497207bf600bc66f9e4b7c3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b579fc12-871b-43bb-9c37-5a818ee5a730.7e0ee1a74497207bf600bc66f9e4b7c3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391060, 'Fresh Large Braeburn Apple, Each', 0.88, '813200010157', 'Indulge in the pure bliss of Fresh Braeburn Apples - the epitome of fresh produce made with organic ingredients. Harvested at their prime, our apples are juicy, crisp and flavorful. Filled with vitamins, antioxidants and fiber, these apples are a healthy snacking option that can be enjoyed on-the-go or incorporated into your favorite recipes. Treat your taste buds to the delightful crunch that only our Fresh Braeburn Apples can offer!', 'Fresh Braeburn Apple, Each: Sweet, crisp & juicy Mild lemon-citrus undertones Excellent snacking apple Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp & apple pie', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6afbeabb-2816-4a5c-a0aa-f4255269f28e.98948ebdba2b724102eec9a1f7260ef8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6afbeabb-2816-4a5c-a0aa-f4255269f28e.98948ebdba2b724102eec9a1f7260ef8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6afbeabb-2816-4a5c-a0aa-f4255269f28e.98948ebdba2b724102eec9a1f7260ef8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391064, 'Fresh Limes, 2 lb Bag', 4.98, '033383115498', 'Limes are a versatile citrus fruit, loved for their tangy, refreshing flavor and vibrant green color. Perfect for enhancing drinks, marinades, and desserts, they add a zesty twist to both sweet and savory dishes. Rich in vitamin C and bursting with aroma, limes are a kitchen staple that brings freshness and flavor to every meal. Available in a 2 lb bag.', 'Juicy and fresh, packed with vitamin C Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies and tarts Refreshing, tart flavor Available in a 2-pound bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a49d8849-2b49-466c-a479-91b6cc4c8266.d46302dad12444be222c84dac705d51f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a49d8849-2b49-466c-a479-91b6cc4c8266.d46302dad12444be222c84dac705d51f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a49d8849-2b49-466c-a479-91b6cc4c8266.d46302dad12444be222c84dac705d51f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391069, 'Fresh Navel Oranges, 8 lb Bag', 7.97, '033383130033', 'Enjoy the juicy goodness of Fresh Navel Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these navel oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Fresh Navel Oranges add flavor to any meal or beverage.', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast Adds flavor to a variety or recipes Use as a garnish for your favorite cocktail Make sweet desserts like ambrosia, orange bars, and orange pie', 'Unbranded', 'https://i5.walmartimages.com/asr/9a25f6b3-e35b-43b6-b39a-c29cae0cfed1.be63ddb1f1f88e79fcaf0ee8c6123561.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9a25f6b3-e35b-43b6-b39a-c29cae0cfed1.be63ddb1f1f88e79fcaf0ee8c6123561.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9a25f6b3-e35b-43b6-b39a-c29cae0cfed1.be63ddb1f1f88e79fcaf0ee8c6123561.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391071, 'Fresh Produce, Whole Beets, 1 Bunch', 2.57, '735718700705', 'Serve up something amazing when you cook with Fresh Beets. This versatile root vegetable is known for its bright red color and is a great addition to a healthy diet and can be prepared in a variety of ways. Roast them with your favorite seasonings and serve with a juicy steak and homemade rolls or add them to a goat cheese and arugula salad. Use them in a comforting soup recipe, a delicious casserole, or even a cake. However, you choose to use them, these beets will add big flavor and unforgettable taste to any meal. The culinary possibilities are endless with Fresh Beets. Also known as Remolacha, Beetroot, Shamandar, and Chukandar around the world.', 'Fresh Beets, Bunch Healthy vegetable root, known for their ruby red hue Enjoy the deep, earthy flavor in your favorite dish or juice Great for a variety of dishes and a great addition to a healthy diet that can be prepared in many ways Also known as Remolacha, Beetroot, Shamandar, and Chukandar around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bcb52aec-0033-4349-8053-9dbf60a5475b.f8318e88e815cff3ae4d1332c48ac5ef.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bcb52aec-0033-4349-8053-9dbf60a5475b.f8318e88e815cff3ae4d1332c48ac5ef.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bcb52aec-0033-4349-8053-9dbf60a5475b.f8318e88e815cff3ae4d1332c48ac5ef.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391079, 'Fresh Organic Granny Smith Apples, 2lb Bag', 1.68, '847473003912', 'Treat yourself to Organic Granny Smith Apples. Granny Smith apples are firm and juicy with a crisp texture and a tart, acidic, yet subtly sweet flavor, perfect for use in a variety of dishes morning, noon, and night. Slice them up and cook in a skillet with brown sugar, butter, cloves, and nutmeg for a simple, sweet treat. Mix them with cabbage, grapes, honey, mayonnaise and, celery to make a fresh, apple slaw for a summer cookout. Use them to make a sweet, classic apple pie that your friends and family with love. Create delicious meals and treats with Organic Granny Smith Apples.', 'Organic Granny Smith Apples, 2lb Bag: Firm and juicy with a crisp texture and a tart, acidic, yet subtly sweet flavor Great for breakfast, lunch, dinner, or dessert Cook in a skillet with butter, brown sugar, and spices, mix with cabbage, grapes, honey, mayonnaise and, celery for apple slaw, or make a classic apple pie Versatile ingredient perfect for both savory and sweet dishes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/757a2485-0b01-43a0-aac6-4b6e91b1d13e.839a05ccafbc235a8f6b38559ccff0c7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/757a2485-0b01-43a0-aac6-4b6e91b1d13e.839a05ccafbc235a8f6b38559ccff0c7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/757a2485-0b01-43a0-aac6-4b6e91b1d13e.839a05ccafbc235a8f6b38559ccff0c7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391083, 'Freshness Guaranteed Fruit Tray with Vanilla Dip, 48 oz - Fresh and Delicious', 13.47, '717524782540', 'The Freshness Guaranteed Fruit Tray with Vanilla Dip, 48 oz is perfect for any occasion, offering a delightful assortment of fresh fruits. This fruit tray is an excellent choice for gatherings, parties, or simply enjoying a healthy snack at home. Packed with an enticing variety of seasonal fruits, it includes crisp grapes, juicy pineapples, succulent strawberries, and more. Accompanied by a creamy vanilla dip, this fruit tray ensures both flavor and freshness. Ideal for those who appreciate quality and convenience, our fruit tray is a testament to our commitment to providing fresh, high-quality produce for the modern consumer. With the brand Freshness Guaranteed, you can trust in consistent freshness and quality. Make it a staple for your next event or everyday enjoyment.', 'Includes an assortment of fresh, seasonal fruits Accompanied by a creamy vanilla cream cheese dip 48 oz size perfect for gatherings and parties Convenient and ready-to-serve packaging Ideal for healthy snacking and entertaining Freshness Guaranteed brand ensures quality and taste', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1357e144-4200-477c-be4e-69dcd7001201.210cdc1c9aa0543bb011e44b182a4e6f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1357e144-4200-477c-be4e-69dcd7001201.210cdc1c9aa0543bb011e44b182a4e6f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1357e144-4200-477c-be4e-69dcd7001201.210cdc1c9aa0543bb011e44b182a4e6f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391085, 'Fresh Spaghetti Squash, Each', 5.7, '204776000008', 'Treat yourself to a delicious and healthy meal with fresh, Produce Unbranded Spaghetti Squash. When, cooked this unique squash falls apart into ribbons that are the perfect substitute for spaghetti. Roast the squash and serve with marinara sauce and meatballs for a healthy spin on a classic or bake some with pancetta and make a creamy, decadent carbonara. You can even make scrumptious vegan or vegetarian meals using this versatile squash. If you’re feeling creative you can make Spaghetti Squash tacos, Spaghetti Squash casserole, or even pad Thai. Try serving it for breakfast by making Spaghetti Squash nests with a sunny side up egg. The possibilities are endless when you bring home Spaghetti Squash.', 'Fresh Spaghetti Squash, Each: Produce Unbranded Perishable, fresh produce When cooked, this squash falls apart into ribbons that are the perfect substitute for spaghetti Perfect for a healthy dinner Incorporate into all sorts of recipes from traditional Italian cuisine to Asian inspired dishes Can even be enjoyed for breakfast with eggs Great for vegan and vegetarian options', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a372db03-ecec-4fe4-ada6-1937224a090d.08af8ffcd30cb5fd83d57f6db282c355.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a372db03-ecec-4fe4-ada6-1937224a090d.08af8ffcd30cb5fd83d57f6db282c355.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a372db03-ecec-4fe4-ada6-1937224a090d.08af8ffcd30cb5fd83d57f6db282c355.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391086, 'Fresh Purple Eggplant - Versatile & Delicious', 2.45, '204081000007', 'Create something wholesome and delicious with Purple Eggplant. Eggplants are incredibly versatile and can be used to make a myriad of different recipes. Try them coated in breadcrumbs and fried for a comforting side, or for a healthier option you can stuff them and roast them in the oven. They can also be used to make cheesy eggplant rollatini, decadent eggplant parmesan, and scrumptious eggplant ravioli. You can even incorporate them into hearty stews or use them to top pizzas and more. Use your imagination to create something amazing and tasty with this squash. The mouthwatering possibilities are endless with this hearty vegetable. Add something amazing to your meals with fresh Purple Eggplant.', 'Healthy and delicious Versatile vegetable for various recipes Ideal for frying, stuffing, or roasting Perfect for eggplant parmesan, rollatini or Ratatouille Great addition to stews and pizzas Main ingredient for Baba Ganoush', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4307b532-ea7b-4b41-82b0-5ece9e9ab30c.431696526ff3c9ed9dbb45c1f9f233e7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4307b532-ea7b-4b41-82b0-5ece9e9ab30c.431696526ff3c9ed9dbb45c1f9f233e7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4307b532-ea7b-4b41-82b0-5ece9e9ab30c.431696526ff3c9ed9dbb45c1f9f233e7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391089, 'Fresh Cameo Apples, Each', 1.47, '840156101721', 'Cameo apples are known for their crisp texture, juicy flesh, and a unique combination of sweet and tangy flavors. With their beautiful red and yellow striped skin, Cameo apples are not only delicious but also visually appealing.', 'Cameo apples have a satisfyingly crisp texture that makes each bite a delightful experience. The flesh is firm and holds up well in various preparations. These apples offer a perfect balance of sweetness and tanginess. The flavor profile is often described as mildly sweet with subtle hints of acidity, making them enjoyable for a wide range of taste preferences. With their vibrant red and yellow striped skin, Cameo apples are visually appealing. Their unique coloring adds a touch of beauty to fruit bowls, desserts, and other culinary creations.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/fb1a90ea-ce05-41b6-b825-71e15212655d.fb910fb70848500c56a43a14fe0e3a7e.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb1a90ea-ce05-41b6-b825-71e15212655d.fb910fb70848500c56a43a14fe0e3a7e.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb1a90ea-ce05-41b6-b825-71e15212655d.fb910fb70848500c56a43a14fe0e3a7e.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391093, 'Fresh Ambrosia Apple, Each', 1.25, '203438000004', 'Treat yourself to Ambrosia Apples. Ambrosia apples are crisp and juicy with a sweet honey-like flavor perfect for use in a variety of dishes morning, noon, and night. Perfect for snacking, they have a low acidity and are slow to brown. Chop the apples up and add them to a salad with walnut, mixed greens, and a poppy seed vinaigrette for a crunchy delicious salad that you can enjoy for lunch or dinner. Slice and plate them up on the side of your breakfast for a healthy start to your day. Serve them with a dollop of peanut butter for a delicious treat or add them to your cheese board for a mouthwatering sweet and salty combination. Create delicious meals and treats with Ambrosia Apples.', 'Fresh Jazz Apple, Each: Crisp with dense flesh and a fruity-sweet tartness Great morning, noon, or night Chop them up and add to a salad, slice and plate them up on the side of your breakfast, or serve with a dollop of peanut butter Add them to a cheese board for a sweet and salty combination', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6ba3d69b-4c3e-4d74-b875-e565b7bab40f_2.4077a6a330f2ce5a08708847a6e011c0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6ba3d69b-4c3e-4d74-b875-e565b7bab40f_2.4077a6a330f2ce5a08708847a6e011c0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6ba3d69b-4c3e-4d74-b875-e565b7bab40f_2.4077a6a330f2ce5a08708847a6e011c0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391097, 'Fresh Yellow Nectarine, Each', 0.76, '042188043783', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/537db953-d604-4a27-8ca4-0c7c5d3fe452.20282c3c0030c79a43479105f165c86b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/537db953-d604-4a27-8ca4-0c7c5d3fe452.20282c3c0030c79a43479105f165c86b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/537db953-d604-4a27-8ca4-0c7c5d3fe452.20282c3c0030c79a43479105f165c86b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391100, 'Garlic Bulb Fresh Whole, Each', 5.1, '000000046114', 'Take your culinary creations to the next level with fresh, flavorful Garlic. Garlic\'s signature flavors become caramelized and sweeter when cooked, making it a perfect accompaniment to many dishes such as pasta, shrimp, chicken, stews, and more. Garlic also goes great in creamed soups, on all types of roasts, in a variety of egg dishes, or used simply with sauteed or roasted vegetables. To prepare garlic for cooking, you\'ll need to break it up into individual cloves and peel the skin. Once you\'ve done this, you can mince the garlic by chopping it into fine pieces. Spice up your next meal with a tasty clove of fresh Garlic.', 'Single garlic bulb Must-have pantry staple Flavorful addition to a wide variety of recipes Add to pasta, shrimp, chicken, stews, and more Delivers a bold, pungent flavor when eaten raw but transforms into a lightly sweet and buttery flavor when cooked Explore all the delicious ways to add fresh garlic to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a4f114d9-93ab-4d39-a8d6-9170536f57a9.f9f8e58c8e3e74894050c7c2267437e3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a4f114d9-93ab-4d39-a8d6-9170536f57a9.f9f8e58c8e3e74894050c7c2267437e3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a4f114d9-93ab-4d39-a8d6-9170536f57a9.f9f8e58c8e3e74894050c7c2267437e3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391101, 'Fresh Seedless Watermelon, Each', 8.1, '040000040323', 'Enjoy the sweet, refreshing taste of a Seedless Watermelon. Seedless Watermelon is great for breakfast, lunch, dessert, or when you want a snack. Watermelon is a good source of vitamin C, vitamin A, and potassium making them an excellent healthy treat. Cut the watermelon into chunks for a quick snack, infuse it with water for a refreshing drink, or chop it up and make a mouthwatering watermelon salad with feta and mint. This watermelon is great for sharing with friends and family or keep it for yourself. Bring it to your next cookout or get it as a sweet after dinner treat with friends.', 'Explore all the delicious ways to add fresh watermelon to your favorite recipes. No added sugar Enjoy a fresh seedless Watermelon on its own or add to a mixed fruit salad Serve at your next neighborhood barbecue Get creative and make a watermelon cocktail or a refreshing sorbet Sweet and Juicy Watermelon', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e2ec527d-fe7b-4309-9373-186de34557cf.1c562d1a69a2a8f4cb7b5de8f125fc76.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2ec527d-fe7b-4309-9373-186de34557cf.1c562d1a69a2a8f4cb7b5de8f125fc76.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2ec527d-fe7b-4309-9373-186de34557cf.1c562d1a69a2a8f4cb7b5de8f125fc76.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391102, 'Fresh Leeks Bunch, Each', 4.37, '000000046299', 'Bring the delicious taste of Fresh Leeks into your home. These leeks deliver unmistakable flavor with each bite and are an ideal ingredient in a variety of recipes. Use them to top a gourmet pizza, add to a comforting potato soup, or use in a crowd-pleasing casserole. You could also mix them into a garden salad, a creamy dip, or use them as a garnish for roasted vegetables. However you choose to use them, these fresh leeks will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with these Fresh Leeks.', 'Wholesome, versatile, and delicious Ideal ingredient for a variety of dishes Use to make a comforting potato soup or a casserole Adds unmistakable flavor to dips and salads Try using leeks instead of onions in your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/590b5c73-8c51-4266-841d-aa1473abd554.b44a72e4346bd1ba0776c889275e0858.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/590b5c73-8c51-4266-841d-aa1473abd554.b44a72e4346bd1ba0776c889275e0858.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/590b5c73-8c51-4266-841d-aa1473abd554.b44a72e4346bd1ba0776c889275e0858.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391103, 'Organic Whole Carrots, 2 Lb Bag', 1.96, 'deleted_071464016968', 'Organic Whole Carrots, 2 pound bag.', 'Nutritious and delicious High in vitamin A Naturally sweet with rich flavor A cooking essential Perfect for juicing Organic', 'Marketside', 'https://i5.walmartimages.com/asr/5920bc6b-1db0-4af3-9f23-dddc46c0095f_1.e20c8ba41055db1ac42dfbc1e08d2fe0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5920bc6b-1db0-4af3-9f23-dddc46c0095f_1.e20c8ba41055db1ac42dfbc1e08d2fe0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5920bc6b-1db0-4af3-9f23-dddc46c0095f_1.e20c8ba41055db1ac42dfbc1e08d2fe0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391104, 'Marketside Organic Red Delicious Apples, 2 lb Bag', 3.56, '741839007913', 'Marketside Organic Red Delicious Apples are a treat for everyone. Enjoy them on their own or serve with a side of peanut butter for dipping. You can also turn your snack time into a sweet occasion and cover with caramel. Chop them up and add them to yogurt for a parfait, mix them with other fruit for a refreshing fruit salad, or use them to bake a decadent pie. Enjoy a healthier snack everyday with these Marketside Organic Red Delicious Apples. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Red Delicious Apples, 2 lb Bag Good for snacking Use to make a wonderful apple pie Makes tasty apple sauce Whole apples are delicious fresh produce', 'Marketside', 'https://i5.walmartimages.com/asr/d85954a3-dcb5-434e-a8c4-68906fad6a04.bd7209045c915c96d89c85e80e82e8d4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d85954a3-dcb5-434e-a8c4-68906fad6a04.bd7209045c915c96d89c85e80e82e8d4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d85954a3-dcb5-434e-a8c4-68906fad6a04.bd7209045c915c96d89c85e80e82e8d4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391105, 'Fresh Sweet Onions, 3 lb, Bag', 3.67, '851533003743', 'Add flavor to your next meal with fresh Sweet Onions. This versatile vegetable adds flavor and texture to a variety of recipes. For breakfast, you could dice them and add to an omelet loaded with cheese, ham, and mushrooms. You can dice these onions and add them to a fresh garden salad for a satisfying crunch or sprinkle them on top of your fish tacos. Sweet onions also make delicious golden onion rings to serve alongside juicy hamburgers and hot dogs at your next backyard barbecue. You can keep these onions at room temperature until ready to use. Stock your pantry with this three-pound bag of fresh Sweet Onions.', 'Whole fresh sweet onions, 3 lb bag Ideal addition to every pantry Add flavor and texture to any meal Dice them and add to a savory breakfast omelet Sprinkle them onto a fresh garden salad for extra crunch Make delicious golden onion rings to serve with hamburgers and hot dogs', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e806ef18-d648-46cf-a232-3456b038974f.a883644337a1532e30af7e10f9dc3706.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e806ef18-d648-46cf-a232-3456b038974f.a883644337a1532e30af7e10f9dc3706.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e806ef18-d648-46cf-a232-3456b038974f.a883644337a1532e30af7e10f9dc3706.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391108, 'Organic Kale, bunch', 2.46, '688962145306', 'Organic KaleKale has a subtle flavor that blends well with many dishes. It is the perfect addition to soups, sautés, stir-fries, even coleslaws. Use kale in any recipe that calls for hardy greens.', 'Farm Fresh Cooking Greens', 'Fresh Produce', 'https://i5.walmartimages.com/asr/633b59e5-eba5-4da8-986a-37736b6e172f_1.7201e10d6faa872505a2e9c57f1a35d2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/633b59e5-eba5-4da8-986a-37736b6e172f_1.7201e10d6faa872505a2e9c57f1a35d2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/633b59e5-eba5-4da8-986a-37736b6e172f_1.7201e10d6faa872505a2e9c57f1a35d2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391110, 'Fresh Butter Lettuce, Each', 2.88, '027918908235', 'Switch up your lettuce game with Fresh Butter Lettuce. One of the most nutritious of the lettuces, Butter Lettuce is high in folate, iron, and potassium as well as a group of potent antioxidants called carotenoids, including beta carotene, lutein, and zeaxanthin. Butter lettuce has a soft, delicate texture and a mild, sweet flavor that lends itself to all kinds of uses. Also known as Boston or bibb lettuce, use butter lettuce to amp up a salad, add some leafy crunch to a sandwich, or in place of a tortilla or burger bun as a lettuce wrap. Whether you’re a fan of traditional salads or looking for a new way to add some green to your meals, Fresh Butter Lettuce is a delicious and nutritious choice.', 'Fresh Butter Lettuce High in folate, iron, and potassium Soft, delicate texture and a mild, sweet flavor Use in salads, add to a sandwich, or use in place of a tortilla or burger bun', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2217aae8-70cd-4e84-8406-0594dcc21ccb.47082a3150c3225a71c2577157100314.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2217aae8-70cd-4e84-8406-0594dcc21ccb.47082a3150c3225a71c2577157100314.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2217aae8-70cd-4e84-8406-0594dcc21ccb.47082a3150c3225a71c2577157100314.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391112, 'Marketside Premium Romaine Salad Blend, 9 oz Bag (Fresh)', 3.03, '681131387538', 'Sit down to a healthy meal with Marketside Premium Romaine Salad. With zero cholesterol, zero fat, and only 15 calories per serving, this 9-ounce bag of pre-washed salad is an excellent lunch or dinner option. All this salad needs is your favorite dressing, and you\'ve got yourself a tasty, no-hassle meal. Add a protein like chicken, steak, or garbanzo beans for a hearty and satisfying dish. Whether you serve it as a side or the main course, Marketside Premium Romaine Salad is sure to please. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Premium Romaine Salad Blend, 9 oz Bag (Fresh) Includes romaine lettuce, carrots, and red cabbage Washed and ready to be served out of the bag Convenient and nutritious 9oz package', 'Marketside', 'https://i5.walmartimages.com/asr/a3602ca5-370c-4605-a63d-9bc865a053a2.ce687c5389b10f67f194691795a68c1c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a3602ca5-370c-4605-a63d-9bc865a053a2.ce687c5389b10f67f194691795a68c1c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a3602ca5-370c-4605-a63d-9bc865a053a2.ce687c5389b10f67f194691795a68c1c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391113, 'Fresh Honeydew Melon, Each', 4.99, '799939040347', 'Treat yourself to the juicy goodness of a Fresh Honeydew Melon. Enjoy this tasty melon on its own as a healthy snack or incorporate it into a variety of delicious recipes. For breakfast, you can make a sweet fruit bowl with sliced honeydew melon, strawberries, pineapple, banana, and kiwi. For an extra special treat, top with a dollop of whipped cream. Cut it into small pieces and put it in a fresh salad along with chicken, cucumbers, tomatoes, and a light dressing. You can even use this melon to make a refreshing summer cocktail, a spreadable jam, or a light sorbet. Enjoy the sweet and juicy taste of Fresh Honeydew Melon.', 'Juicy and sweet honeydew melon Enjoy on its own or add to a mixed fruit bowl, No Container Add to your fresh garden salad Get creative and make a melon cocktail or a refreshing sorbet Explore all the delicious ways to add fresh honeydew melon to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a7b3bd36-e71d-41aa-9ace-cf70a2bade2b.e880a17b460f81c9ea3b7ec5f49d2d05.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a7b3bd36-e71d-41aa-9ace-cf70a2bade2b.e880a17b460f81c9ea3b7ec5f49d2d05.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a7b3bd36-e71d-41aa-9ace-cf70a2bade2b.e880a17b460f81c9ea3b7ec5f49d2d05.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391114, 'Fresh Romaine Lettuce, Each', 1.28, '854186005027', 'Treat yourself to the healthy, delicious taste of Fresh Romaine Lettuce. This romaine is perfect for a variety of healthy and delicious meals and is packed with vitamins, minerals and antioxidants. You can use it to whip up a classic Caesar salad with all the fixings or let your creativity run wild. You can also use it to make lettuce wraps filled with all your favorite fillings or top your favorite sandwich or burger. The possibilities are endless with Fresh Romaine Lettuce.', 'Sturdy dark green leaves with firm ribs down their centers Extremely low-calorie content and high-water volume Packed full of vitamins, minerals, and antioxidants Perfect for salads, smoothies, lettuce wraps, sandwiches, and more Organic and fresh from the farm Ideal for health-conscious diets and meal prep', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f1702b46-b866-4b41-9d65-bafdd5714b89.42b7c93565cf399acd8154734d64d85a.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f1702b46-b866-4b41-9d65-bafdd5714b89.42b7c93565cf399acd8154734d64d85a.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f1702b46-b866-4b41-9d65-bafdd5714b89.42b7c93565cf399acd8154734d64d85a.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391123, 'Fresh Yellow Baby Potatoes, 1.5 lb Bag', 3.44, '045255118803', 'Baby Yellow Potatoes are hand selected for excellent quality. Firm, well-shaped, and smooth, these fresh potatoes can be cooked in almost any way imaginable. They have a light, subtle flavor and creamy texture that make them the perfect side dish to chicken, fish, steak, and other delicious proteins. Simply grill, roast, or toss into salads along with your favorite seasonings. To preserve the nutrients, leave the skins on and simply scrub gently in water before cooking. Always store potatoes in a cool, well-ventilated area rather than in the refrigerator. Enjoy nutrients, flavor, and all-around deliciousness when you cook up Baby Potatoes.', 'Pre-Washed to save you time in the kitchen No need to peel-Thin skinned but NOT thin on taste! Fast, Easy Prep For additional information and recipes, visit tastefulselections.com', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ed528ea7-87ab-4de2-9fb2-a0c9cc543933.8bf991656a8723b7600c208324b644b0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed528ea7-87ab-4de2-9fb2-a0c9cc543933.8bf991656a8723b7600c208324b644b0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed528ea7-87ab-4de2-9fb2-a0c9cc543933.8bf991656a8723b7600c208324b644b0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391135, 'Fresh Poblano Pepper, Each', 0.68, '000000047050', 'Enhance your meals with the delicious flavor of Poblano Peppers. Naturally low in calories, fat, and cholesterol, this vegetable is an excellent source of vitamin A and vitamin B6, as well as iron and magnesium. Poblano pepper, also known as an ancho Chile, has a crisp flavor that enhances a variety of recipes. Stuff poblano peppers with cheese and meat for delicious rellenos, add them to enchiladas, put some diced poblano in your famous chili recipe, or make a zesty salsa using fresh poblano peppers. You can even add some diced poblano peppers and cheese to cornbread batter for a delectable Chile cheese cornbread that will have everyone asking for seconds. Lunches and dinners are more scrumptious when fresh Poblano Peppers are part of the meal.', 'Naturally low in calories Exceptionally rich in vitamins A and B6 Stuff poblano peppers for rellenos, add to enchiladas or chili, or make a zesty salsa Versatile and delicious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d5805f54-ccba-440a-a73c-1f47a56fca12_1.17cbe45fef678754efdc98e365207640.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d5805f54-ccba-440a-a73c-1f47a56fca12_1.17cbe45fef678754efdc98e365207640.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d5805f54-ccba-440a-a73c-1f47a56fca12_1.17cbe45fef678754efdc98e365207640.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391136, 'Fresh Marketside Organic Carrots, 16 oz', 1.16, '071464016913', 'Add some fresh and tender carrots to your meal with Marketside Organic Whole Carrots. These whole carrots are certified organic, and are an excellent source of vitamin A. They are perfect for adding as an ingredient in stews, casseroles and soups. Add your favorite sauce or seasoning for a quick and healthy side dish. You can serve them with grilled chicken breast and green beans, roast them or use them in your own recipes. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see.', 'They are perfect for adding as an ingredient in stews, casseroles and soups. With their crunchy texture and fresh taste, it is a must-have vegetable in your kitchen. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside', 'https://i5.walmartimages.com/asr/e2dca10f-1419-421b-ac99-ba6ba888f8c6_2.1ae51990e30e30b7b768f1157514f85f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2dca10f-1419-421b-ac99-ba6ba888f8c6_2.1ae51990e30e30b7b768f1157514f85f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2dca10f-1419-421b-ac99-ba6ba888f8c6_2.1ae51990e30e30b7b768f1157514f85f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391140, 'Fresh Jonagold Apple Large, Each', 1.47, '741839041474', 'This Fresh apple tends to be large in size and is tangy sweet with honey-like flavor notes.Jonagold is high quality American apple, developed in the 1940s. As its name suggests, this is a cross between a Jonathan and a Golden Delicious. Although it\'s known to be a great fresh-eating apple, because of its sweet/tart flavor, this apple variety is great for baking. Whip up some delicious apple crisp or pies with this variety and treat yourself to some homemade apple sauce.', 'Fresh Jonagold Apple, Each: Crisp with dense flesh and a fruity-sweet tartness Great morning, noon, or night Chop them up and add to a salad, slice and plate them up on the side of your breakfast, or serve with a dollop of peanut butter Add them to a cheese board for a sweet and salty combination', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/de530635-1316-44a7-9923-ed57e8eb30ac.fe2ef957bce8c012d6e00a0ff1145c1f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/de530635-1316-44a7-9923-ed57e8eb30ac.fe2ef957bce8c012d6e00a0ff1145c1f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/de530635-1316-44a7-9923-ed57e8eb30ac.fe2ef957bce8c012d6e00a0ff1145c1f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391143, 'Serrano Pepper, Each', 0.62, '000000047098', 'Enhance your meals with the delicious flavor of Serrano Peppers. Naturally low in calories, fat, and cholesterol, this vegetable is a great source of vitamins C, B6, and A, as well as iron and magnesium. Serrano peppers have a bright and biting flavor that enhances a variety of recipes. Make a zesty Pico de gallon or salsa using fresh serrano peppers, add to a sweet peach jam to make a glaze for hot wings, or add to eggs for out of this world huevos rancheros. You can even add some diced serrano peppers and cheese to cornbread batter for a delectable Chile cheese cornbread that will have everyone asking for seconds. Lunches and dinners are more scrumptious when fresh Serrano Peppers are part of the meal.', 'Approximately 40 Serrano Peppers per lb Naturally low in calories, and fat Low in cholesterol is a great source of vitamins C, B6', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cf45f59d-f968-4fa4-ad3a-880a310705d1.3649588ea7699bd5520d1e7bc4f6a44b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cf45f59d-f968-4fa4-ad3a-880a310705d1.3649588ea7699bd5520d1e7bc4f6a44b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cf45f59d-f968-4fa4-ad3a-880a310705d1.3649588ea7699bd5520d1e7bc4f6a44b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391144, 'Fresh Produce, Whole Red Radish, 1 Bunch', 1.74, '073150103426', 'Serve up something amazing when you cook with Fresh Red Radish. This versatile root vegetable is a great addition to a healthy diet and can be prepared in a variety of ways. Their slightly peppery flavor adds a natural, subtle spice to salads and slaws. Their crisp texture makes them a natural, healthy choice for dips. Try them as a low-carb substitute for potatoes when roasted or as a healthy side dish when grilled. However, you choose to use them, these fresh radishes will add big flavor and unforgettable taste to any meal. The culinary possibilities are endless with Fresh Red Radish.', 'Fresh Produce, Whole Red Radish, 1 Bunch Wholesome, versatile, and delicious Enjoy raw, pickled, roasted, in tacos, in soups, and so much more Cool and crunchy Lends a peppery taste to salads Also known as rábanos, yī kǔn luóbo and mūlī kā gucchā around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ea0e9022-05d6-4e6a-ad18-633471a03a0b.0c926e45ad97705e24c87ed57f663122.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea0e9022-05d6-4e6a-ad18-633471a03a0b.0c926e45ad97705e24c87ed57f663122.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea0e9022-05d6-4e6a-ad18-633471a03a0b.0c926e45ad97705e24c87ed57f663122.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391147, 'Fresh Plum, Each', 0.76, '812985015012', 'Enrich your day with some juicy plums. Fruit is a healthy snack and an important part of a healthy diet for most people. It provides fiber and essential vitamins and minerals. Black plums are no exception. They contain vitamin A and other vitamins and minerals. Each plum fruit bite is sweet and delicious. Slice one and enjoy it alone, or add it to salads and other recipes. Plums are a versatile fruit with a unique flavor and a meaty yet juicy texture. There are approximately 3-4 plums per lb. Plums, each:', 'Approximately 3-4 plums per lb Sweet and juicy Delicious as a snack Excellent ingredient for salads Black plums contain vitamin A and other essential vitamins and minerals Approximately 3-4 plums per Bag lb Sweet and juicy Delicious as a snack Excellent ingredient for salads Black plums contain vitamin A and other essential vitamins and minerals', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e8de249f-8c2e-4cfc-a225-4ff6486978ed.1d00c2aec5c70bf24944314ac910fb6f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e8de249f-8c2e-4cfc-a225-4ff6486978ed.1d00c2aec5c70bf24944314ac910fb6f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e8de249f-8c2e-4cfc-a225-4ff6486978ed.1d00c2aec5c70bf24944314ac910fb6f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391152, 'Fresh Red Pear, Each', 0.99, '851191002041', 'The Fresh Red pear carries a true pyriform \"pear shape;\" a rounded bell on the bottom half of the fruit, then a definitive shoulder with a smaller neck or stem end. Color goes from a dark red often with light vertical striping to become a beautiful bright red. As they ripen, Red Pears offer different flavors and textures, starting crunchy and tart when underripe, and finishing super sweet and juicy when fully ripened.', 'Fresh Red Pear, Each Sweet, crisp, and juicy Excellent snacking pear Make a creamy smoothie or a nutritious juice blend Add to your salad for extra crunch and flavor Adds flavor to a variety of recipes Make pear butter or poached pears Make sweet desserts like pear cobbler, pear crisp or pear tarts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bd8f2d47-7640-4d6b-81ea-b85905a185d9.0743c431f7e9e19ffca02c585558334a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd8f2d47-7640-4d6b-81ea-b85905a185d9.0743c431f7e9e19ffca02c585558334a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd8f2d47-7640-4d6b-81ea-b85905a185d9.0743c431f7e9e19ffca02c585558334a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391159, 'Butternut Squash, each', 5.64, '000000047593', 'Add some fresh flavor to your meal with Butternut Squash. This versatile vegetable can be used in a variety of dishes to create delicious and decadent meals. Roast the whole squash for a simple and flavorful side dish, chop it into cubes and put it in the slow cooker with chicken breast, kidney beans, and spices, or make butternut noodles for a gluten-free pasta alternative. For a sweet treat turn the squash into a rich and spicy pie, perfect for the holiday season. With so many uses, this vegetable will become a pantry staple. Create tasty and flavorful meals with Butternut Squash.', 'Butternut Squash, 1 Each: Versatile ingredient Roast the whole squash for the perfect side dish or chop into cubes, put into a slow cooker, and mix with chicken breast, beans, and spices for a flavorful dish Use it to create a sweet and decadent pie Make butternut squash noodles for a gluten free pasta alternative Will become a pantry staple', 'Greenpoint', 'https://i5.walmartimages.com/asr/76a18a23-dc4f-45a8-90ae-452e50fd5923.c254801fb641a0df6bbd5e83640d8d9c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/76a18a23-dc4f-45a8-90ae-452e50fd5923.c254801fb641a0df6bbd5e83640d8d9c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/76a18a23-dc4f-45a8-90ae-452e50fd5923.c254801fb641a0df6bbd5e83640d8d9c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391186, 'Gourmet Garden Gluten Free Garlic Stir-in Paste, 4.0 oz Tube', 3.94, '875208000646', 'Gourmet Garden Gluten Free Garlic Stir-in Paste, 4 oz Tube. Give everyday meals the bold flavor they deserve with Gourmet Garden Garlic Stir-in Paste. No prep needed- it\'s so easy to add a squeeze of our convenient garlic paste to any savory recipe. In each squeezable tube is garlic that\'s been peeled and finely chopped to deliver its signature punch. Our garlic paste is at its best flavor, color and aroma when it reaches your family\'s table. Use it at the beginning of cooking to create a sweet, garlicky base. Add it at the end- traditionally garlic bread, marinades and sauces- for a deeper, more pungent flavor. Use 1 teaspoon of paste in place of 1 medium garlic clove. Store refrigerated for weeks after opening. This Gourmet Garden Garlic Stir-in Paste is in a Plastic tube that is 4 ounces. Store this Refrigerated item at an ambient temperature.', 'Gourmet Garden Gluten Free Garlic Stir-in Paste, 4 oz Tube Chopped garlic packed into a convenient squeezable tube No prep necessary Stays fresh in refrigerator for weeks after opening. Gluten Free Adds bold flavor to garlic bread, marinades and sauces Use 1 tsp. of paste in place of 1 medium garlic clove This product is in a Plastic Tube', 'Gourmet Garden', 'https://i5.walmartimages.com/asr/63564f7b-54ac-462e-8788-20f63e460170.431352b482af53e84cd9398959a6ac8d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/63564f7b-54ac-462e-8788-20f63e460170.431352b482af53e84cd9398959a6ac8d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/63564f7b-54ac-462e-8788-20f63e460170.431352b482af53e84cd9398959a6ac8d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391191, 'Fresh Papaya, Each, 1 Count', 3.97, '850940002103', 'Get flavor and nutrition with our Fresh Papaya. Papaya is a tropical fruit that originated in the tropics of the Americas and is known to be a great source of vitamins C, A, fiber, and antioxidants. When ripe, this fruit has a butter-like texture with a fairly sweet flavor similar to cantaloupe and can be eaten raw, without skin or seeds. Papaya can be prepared in a variety of ways; you can mix them with grapefruit and avocado for a bright summer salad, add them to a zesty salsa for some sweetness, freeze them and turn them into refreshing popsicle spears, or bake them in the oven with a melted brown sugar mixture. The sky\'s the limit! Get ready for a taste-bud party with Fresh Papaya.', 'Creamy, butter-like flavor when ripe Rich in vitamins A, C, fiber, and antioxidants Fairly sweet flavor like cantaloupe and mango Great addition to smoothies, salads, salsa, and more Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7bca4cb8-f2fa-481b-8d18-969c8ddb4f1a.dc09b3bdd116b64b15f7abd16ad085b4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7bca4cb8-f2fa-481b-8d18-969c8ddb4f1a.dc09b3bdd116b64b15f7abd16ad085b4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7bca4cb8-f2fa-481b-8d18-969c8ddb4f1a.dc09b3bdd116b64b15f7abd16ad085b4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391200, 'Fresh Pineapple, Each', 2.18, '333834000138', 'FRESH PINEAPPLE', 'Fresh produce Naturally sweet and juicy flavor Can be enjoyed raw or cooked Great for snacks, smoothies, desserts, and recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1d2b3723-b31f-481d-ae30-c82fcbb59e20.d2e4de8d8b987f98a6e9da93a7e8c752.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d2b3723-b31f-481d-ae30-c82fcbb59e20.d2e4de8d8b987f98a6e9da93a7e8c752.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d2b3723-b31f-481d-ae30-c82fcbb59e20.d2e4de8d8b987f98a6e9da93a7e8c752.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391206, 'Fresh Red Cabbage, Each', 3.3, '000000045544', 'This Fresh Red Cabbage is a must-have addition to any cook\'s kitchen. This red cabbage delivers unmistakable flavor with each bite and is an ideal ingredient in a variety of recipes. Use it to make a crowd-pleasing slaw to serve at your next backyard barbecue or add it to a garden salad for a healthy lunch option. You can also saute it and serve as a delicious side for your next family dinner. However you choose to use it, this cabbage will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with Fresh Red Cabbage.', 'Wholesome, versatile, and delicious Use to make a crowd-pleasing slaw for your next barbecue Add to a garden salad Saute or steam and serve as a side for any meal Wonderful addition to stir fry', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e57c64f4-205b-4a36-be5f-709592b00bdf.7ebd2a465c67aa7213fdee368d936008.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e57c64f4-205b-4a36-be5f-709592b00bdf.7ebd2a465c67aa7213fdee368d936008.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e57c64f4-205b-4a36-be5f-709592b00bdf.7ebd2a465c67aa7213fdee368d936008.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391236, 'Fresh Roma Tomato, 2 lb Bag', 1.82, '606105032917', 'Create something wholesome and delicious with Roma Tomatoes. These ripe tomatoes are the ideal fresh produce ingredient for a variety of tasty dishes. Use them to make a zesty Roma tomato sauce for a pasta dish, try using them to make a Roma tomato bruschetta, or simply enjoy them on their own as a nutritious snack. They would make a comforting and appetizing tomato soup and a flavorful salsa. You could also serve them at your next party alongside your favorite vegetable dipping sauce or add them to your famous guacamole recipe. How ever you choose to use them, these tomatoes will add flavor and taste to any meal. Elevate your recipes with this two-pound bag of Roma Tomatoes.', 'Fresh Roma Tomato, 2-pound Bag Wholesome, versatile, and delicious Rich, juicy flavor in each bite Ideal ingredient for a variety of dishes Use to make pasta sauce, tomato soup, or fresh salsa Make a tasty pesto or bruschetta to serve at your next dinner party Delicious and nutritious fresh produce', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0a6850cf-3900-4801-b917-7b54dd621720.9caff3d450f89d792208a67e47ecc822.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a6850cf-3900-4801-b917-7b54dd621720.9caff3d450f89d792208a67e47ecc822.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a6850cf-3900-4801-b917-7b54dd621720.9caff3d450f89d792208a67e47ecc822.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391242, 'Marketside Fresh Asparagus Spears, 10 oz', 3.77, '681131003896', 'Add fresh and tender asparagus to your meal with Marketside Asparagus Spears. These spears are an excellent source of vitamin A and fiber. Conveniently packaged in a 10-ounce steamer bag, they are ready in just a quick 3 minutes or roast them for some lovely flavor. Serve as is, or add your favorite spices, parmesan cheese, or lemon zest for additional flavor. Pair them with a variety of meats like fish or chicken for a fresh addition to make a truly delicious and well-rounded meal. Marketside Asparagus Spears are a quick and healthy side dish and a great addition to any meal. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Excellent source of vitamin A and fiber Conveniently packaged in a 10-ounce steamer bag Great addition to any meal Serve as is or add your favorite spices, parmesan cheese or lemon zest Pair with a variety of meats Washed and ready to cook', 'Marketside', 'https://i5.walmartimages.com/asr/5318501a-8f49-4903-9798-4b9d5fc85ab8.30bf6d816092cae3f0d0f7b284763c14.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5318501a-8f49-4903-9798-4b9d5fc85ab8.30bf6d816092cae3f0d0f7b284763c14.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5318501a-8f49-4903-9798-4b9d5fc85ab8.30bf6d816092cae3f0d0f7b284763c14.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391243, 'Fresh Organic Rainbow Kale, 1 lb Bag', 4.76, '028764900060', 'Marketside Organic Green Kale will add something delicious to your next meal. This superfood is carefully picked and packed to bring you wholesome quality leaves of crisp kale. This kale is great as an addition to a main entree or as a side dish. Sautee it in minced garlic, olive oil and chicken stock to create a hearty meal. Add grilled chicken, Roma tomatoes and crisp cucumbers and toss it in a light dressing of your choice for a delicious healthy salad. It is also a great addition to smoothies. Enjoy the fresh from the farm taste of Marketside Organic Green Kale. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Green Kale, 16 oz Bag, Fresh Wash before eating USDA organic Picked fresh for you Serve with your favorite protein and dressing Keep refrigerated until ready to enjoy', 'Marketside', 'https://i5.walmartimages.com/asr/18f00616-8b6d-47a4-8d92-cebd4e47948e.d74377329f0ac04301e91215c3591b49.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18f00616-8b6d-47a4-8d92-cebd4e47948e.d74377329f0ac04301e91215c3591b49.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18f00616-8b6d-47a4-8d92-cebd4e47948e.d74377329f0ac04301e91215c3591b49.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391253, 'Rooster Potatoes, 2.2 lbs', 3.47, '852883004015', '', 'Potatoes Rooster, 2.2 Lb.', 'Unbranded', 'https://i5.walmartimages.com/asr/3134e75a-5507-43b3-9706-9bb88f7391f6_1.0bacbf06c7e92255b6f4f303b3916222.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3134e75a-5507-43b3-9706-9bb88f7391f6_1.0bacbf06c7e92255b6f4f303b3916222.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3134e75a-5507-43b3-9706-9bb88f7391f6_1.0bacbf06c7e92255b6f4f303b3916222.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391255, 'Fresh and Vibrant Whole Napa Cabbage, Each', 4.37, '000000045520', 'Cook up a healthy and flavorful meal the whole family will enjoy with Napa Cabbage. It features a vibrant green color and a fresh, crisp texture that makes it a tasty addition to a variety of dishes. Enjoy it raw in a creamy coleslaw recipe, or pair it with several other colorful vegetables and meats to make everything from soups to stir-fry and more. It even makes a flavorful choice for vegetarian meals. This Chinese cabbage vegetable may be sliced, chopped or left whole as a garnish. This Napa Cabbage can be found fresh in your produce section for all of your cooking needs.', 'Fresh and crisp Vibrant, green, leafy vegetable Napa vegetable may be eaten raw or cooked A tasty addition to a variety of recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ea08de03-6e2c-4c26-9f75-e0a2a26851bd.c7696a6a5ed348ee387669c4e7891820.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea08de03-6e2c-4c26-9f75-e0a2a26851bd.c7696a6a5ed348ee387669c4e7891820.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea08de03-6e2c-4c26-9f75-e0a2a26851bd.c7696a6a5ed348ee387669c4e7891820.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391289, 'Fresh Produce, Whole Bok Choy, 1 Each', 3.47, '000000045452', 'Discover the versatility of Fresh Bok Choy, a crisp and flavorful vegetable also known as spoon cabbage. Perfect for a wide range of dishes, bok choy can be: Steamed or sautéed and paired with your favorite protein Used in stir-fries, soups, and garden salads Added to gourmet sandwiches for a crunchy twist Low in calories and packed with essential vitamins and minerals, bok choy is a nutritious choice for any meal. Whether you\'re cooking for the family or experimenting with new recipes, this leafy green brings bold flavor and unforgettable taste to your kitchen. Endless culinary possibilities await with Fresh Bok Choy! Fresh Bok Choy can be found at your local Walmart and is sold whole, fresh out of a container.', 'Fresh Whole Bok Choy or Spoon Cabbage Bok Choy is a versatile vegetable that can be prepared in a variety of ways Great in your favorite recipe, soups, salads or even sandwiches Bok Choy is a fresh and healthy vegetable full of essential vitamins and minerals Also known as Col China, xiǎo báicài, shànghǎi qīng, chingensai and cheonggyeongchae around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/39c383e0-15c8-48f0-a376-ef8f0dd5b241.229ed6ebd251ad73bd70d0f3a758326a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39c383e0-15c8-48f0-a376-ef8f0dd5b241.229ed6ebd251ad73bd70d0f3a758326a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39c383e0-15c8-48f0-a376-ef8f0dd5b241.229ed6ebd251ad73bd70d0f3a758326a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391299, 'Marketside Fresh Cut Watermelon Chunks, 10 oz Tray', 2.77, '077745245720', 'Experience a burst of summertime goodness with this delicious Marketside Watermelon. This pre-cut ripe watermelon is juicy, sweet, and refreshing to the taste. In addition, watermelons are a great natural source of vitamins A and C. Carry them with you and eat them straight out of the tray any time you want, at home, or on-the-go. Pair them with a tasty salad or sandwich for a nutritious and delicious lunch. You can also use them as a naturally sweet ingredient in a fruit salad. Add some fresh fruit to your daily menu with this Marketside Watermelon.Marketside provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Marketside item.', 'Marketside Watermelon Chunks 10 oz Pre-Cut Convenience: Fresh, sweet, juicy watermelon chunks are ready to eat, saving you time on preparation. Portable Packaging: Comes in a 10 oz re-closable container, making it easy for grab-and-go convenience. Nutrient-Rich: A good source of vitamins A and C, contributing to your daily nutritional needs. No Artificial Additives: Free from preservatives, artificial colors, and artificial flavors, ensuring a natural taste. Versatile Use: Perfect as a standalone snack, addition to fruit salads, or as a refreshing side dish. Perishable Item: Keep refrigerated to maintain freshness and quality.', 'Marketside', 'https://i5.walmartimages.com/asr/d40b8924-955e-494c-ae47-9505fddbfc49.ac8d150d52b9839951550f7435f099d7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d40b8924-955e-494c-ae47-9505fddbfc49.ac8d150d52b9839951550f7435f099d7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d40b8924-955e-494c-ae47-9505fddbfc49.ac8d150d52b9839951550f7435f099d7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391302, 'Nature\'s Greens Organic Rainbow Chard, 8 oz', 7.67, '028764900077', 'Create fresh and delicious meals with Nature\'s Greens Organic Rainbow Chard. This USDA certified organic chard features a mix of red, green or rainbow varieties and is bursting with fresh flavor. Mix up this chard with almonds, pecans, shredded cheese and your favorite dressing for a healthy and tasty salad or wilt some in a skillet with your favorite seasonings ¬– the possibilities are endless! Not only is this rainbow chard a versatile ingredient, but it\'s also packed with vitamins A, C, and K making it perfect for a healthy lifestyle. Bring hoe Nature\'s Green Organic Rainbow Chard today.', 'Nature\'s Greens Organic Rainbow Chard, 8 oz: Rainbow Swiss chard comes with red and green varieties Has a delicious taste Mix with your own ingredients for making a salad Goes nicely with almonds, pecans, shredded cheese and more Add your favorite dressing on the top Makes a perfect side for a variety of dishes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ce51660f-2b20-4fd2-891f-64e2c64678d3.cec05b2ce1afc19eaec7f0101e2c20f1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ce51660f-2b20-4fd2-891f-64e2c64678d3.cec05b2ce1afc19eaec7f0101e2c20f1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ce51660f-2b20-4fd2-891f-64e2c64678d3.cec05b2ce1afc19eaec7f0101e2c20f1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391306, 'Fresh Chayote Squash, Each', 1.17, '000000047616', 'Create tasty meals and side dishes with Chayote Squash. It\'s ideal to use for creating authentic Cajun cuisine and can be grilled, stir-fried, boiled, steamed or baked. This chayote squash can also be sliced or shredded and used in salads and slaws, or you can boil it and mash like a potato. It has a mild and slightly sweet taste with light notes of cucumber. Naturally low in calories and fat, chayote squash is an excellent source of vitamin C, vitamin B6, folate, fiber, and potassium. Expand your culinary repertoire when you use Chayote Squash to create delicious dishes.', 'Ideal for making authentic Cajun dishes Can be grilled, stir-fried, boiled, steamed or baked Slice or shred raw chayote to use in salads and slaws Mild and slightly sweet taste Provides an excellent source of vitamin C, vitamin B6, folate, dietary fiber and potassium Use in soups, stews, curries and casseroles Boil and mash like a potato Also known as Mirliton, Christophene, Choko, Güisquil & Chuchu across the world.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/daeb7eb2-0625-4419-9fb8-e031974d225f.9f7a99116d625d5dd8bae596507ab35b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/daeb7eb2-0625-4419-9fb8-e031974d225f.9f7a99116d625d5dd8bae596507ab35b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/daeb7eb2-0625-4419-9fb8-e031974d225f.9f7a99116d625d5dd8bae596507ab35b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391315, 'Fresh Pomegranate, Each', 1.98, '854335004925', 'Add a some zing to your meals with with Fresh Pomegranate. It has a sweet and tangy flavor that\'s made it a Mediterranean favorite for centuries. Pomegranate fruit is soft and tender and you can squeeze it for juice. This product is filled with edible seeds. At only 72 calories per serving this product is an easy indulgence to add to your diet plan.', 'Fresh Pomegranate, sold by the each Pleasing sweet-tart taste Great addition to salads or enjoy on its own Contains 3g of fiber and a good source of vitamin C per 1/2 cup Unopened pomegranates can last up to two months in the refrigerator or up to one month at room temperature', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c8bb0100-dfb6-47b6-ad72-1b3c4d27c853.ffd069e6a7379f244c201de3c1a2a3d5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8bb0100-dfb6-47b6-ad72-1b3c4d27c853.ffd069e6a7379f244c201de3c1a2a3d5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8bb0100-dfb6-47b6-ad72-1b3c4d27c853.ffd069e6a7379f244c201de3c1a2a3d5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391317, 'Fresh Collard Greens Bunch, Each', 1.97, '000000046220', 'Fresh Collard Greens are the perfect addition to your dishes. They are packed full of minerals and nutrients making them an excellent healthy option to add to your meals. These collard greens are a versatile ingredient that can be transformed in many ways. Sautee them with a garlic and onions for a delicious side dish or add it to a stew for a nutrient dense addition. Use them as a substitute for spinach in your favorite recipes. They come in a bunch, so you can choose exactly how you want to cut and prepare them. Elevate mealtime with Fresh Collard Greens Bunch.', 'Fresh Collard Greens Bunch, Each Packed full of vitamins and minerals Versatile ingredient that can be used in a variety of dishes Sautee with garlic and onions or add it to a stew Great way to incorporate greens into your diet Nutrient dense vegetable Use it as a substitute for spinach in your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9fd904ba-cd80-4c29-93d0-94116a778937.48e8b2ad7de0848ca2a89b30edb9ff51.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9fd904ba-cd80-4c29-93d0-94116a778937.48e8b2ad7de0848ca2a89b30edb9ff51.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9fd904ba-cd80-4c29-93d0-94116a778937.48e8b2ad7de0848ca2a89b30edb9ff51.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391352, 'Pinata Apple Large, Each', 1.66, '203435000007', 'The Pinata Apple Large is the perfect choice for those who crave a unique and flavorful apple experience. Each fresh apple is grown to perfection, resulting in a large, juicy, and crisp fruit that will delight your taste buds. With its vibrant red and yellow skin, the Pinata Apple is as visually appealing as it is delicious. Whether you enjoy it on its own, sliced up in a salad, or baked into a mouthwatering dessert, the Pinata Apple Large will be a delightful addition to any meal or snack. Order yours today and indulge in the sweet and tangy flavors of this extraordinary apple variety.', 'Pinata Apple Large, 1 lb', 'Unbranded', 'https://i5.walmartimages.com/asr/e7ec1bc6-f6d3-4017-95fe-b535bfb3ec4c.0b7c12e78e0765ee92a2471a7ad89c0e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e7ec1bc6-f6d3-4017-95fe-b535bfb3ec4c.0b7c12e78e0765ee92a2471a7ad89c0e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e7ec1bc6-f6d3-4017-95fe-b535bfb3ec4c.0b7c12e78e0765ee92a2471a7ad89c0e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391430, 'Fresh Sweet Corn on the Cob (1 each)', 0.68, '204077000004', 'While sweet corn typically invokes images of summer barbeques, it has many health benifits. Sweet corn is a great source of Vitamin A and C, with one ear of corn containing over 10% of the Daily Value (DV) of Vitamin C and over 6% DV of Vitamin A. It\'s not truly summer until you\'ve had some Fresh Corn on the Cob- just add butter and salt! Also known as Maíz, Dura and Makka around the world.', 'Fresh Corn on the Cob: Freshly picked Sweet and juicy Perfect for grilling or boiling Great addition to summer dinners, BBQs, picnics, and camping trips Just add butter, salt, and pepper Naturally low in calories Great source of potassium and antioxidants Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a79ee74c-836e-4c81-81d7-3ffd8deca0c4.c333e398e5c4da78062aa64b6db07eba.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a79ee74c-836e-4c81-81d7-3ffd8deca0c4.c333e398e5c4da78062aa64b6db07eba.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a79ee74c-836e-4c81-81d7-3ffd8deca0c4.c333e398e5c4da78062aa64b6db07eba.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391479, 'Fresh Keylimes, 1 Each', 0.1, '000000043052', 'Add zest and flavor to your meals and beverages with these Key Limes. Freshly squeezed limes provide a healthy dose of vitamin C to your diet and are a key ingredient in many recipes, from homemade salsa to chicken dishes. The citrusy tropical flavor of these limes are sure to add a zing to all your cooked meals. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use them when baking cakes, cookies, and tarts. These limes are sold in a one-pound bag, so you\'ll have plenty for all your culinary creations. Enjoy the refreshing, tart flavor of Key Limes.', 'Fresh and juicy key limes Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies, and tarts Refreshing, slightly sweet, tart flavor Available by the each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/726ce64a-28fd-49b1-96d0-e3607b64adb7.7b147c809b5d0354853d8da08bd42afe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/726ce64a-28fd-49b1-96d0-e3607b64adb7.7b147c809b5d0354853d8da08bd42afe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/726ce64a-28fd-49b1-96d0-e3607b64adb7.7b147c809b5d0354853d8da08bd42afe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391515, 'Fresh Whole Carrots, 1 lb Bag', 1.32, '852442002001', 'This 1 lb. Bag of Whole Carrots can make a versatile addition to various meals. They have a crisp crunch and a bold taste. These California carrots are easy to cut into pieces for adding to a stew, pot roast or meat pie. Slice them thin and add them to a salad with some lettuce, tomatoes, olives and other ingredients. These fresh carrots are also ideal for dipping in dressing.', 'Approximately 6 carrots per lb. California carrots have a crunchy texture and a bold taste Fun to eat in many different ways Cut into slices for stews or a meat pie Cut thin to add to a salad along with other vegetables Ideal for use with dips and dressings 16 oz (1 lb./454g) Also known as Zanahoria entera, Whole carrot, Jazar and Gajar around the world', 'ATV Farms', 'https://i5.walmartimages.com/asr/a6c9eb5f-51b2-465e-aaf4-502d4a905604.1bdb1d7098cc222b894d86f999f81579.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6c9eb5f-51b2-465e-aaf4-502d4a905604.1bdb1d7098cc222b894d86f999f81579.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6c9eb5f-51b2-465e-aaf4-502d4a905604.1bdb1d7098cc222b894d86f999f81579.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391517, 'Canary Melon, each', 2.78, 'deleted_736558000093', '', 'This melon has a distinctively sweet flavor that is slightly tangier than a honeydew melon.', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/5c18a967-ef85-4a25-be3a-1f73a829bdb5_1.1ce5fb1786003eb20b98eaa258e32daa.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5c18a967-ef85-4a25-be3a-1f73a829bdb5_1.1ce5fb1786003eb20b98eaa258e32daa.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5c18a967-ef85-4a25-be3a-1f73a829bdb5_1.1ce5fb1786003eb20b98eaa258e32daa.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391520, 'The Little Potato Company Garlic Parsley Potatoes, 1 lb Tray', 4.38, '629307015342', 'Taste the difference with The Little Potato Company Garlic Parsley Potatoes. They pair well as a side with a variety of dishes. Fresh creamer potatoes with a seasoning pack, it only takes five minutes in the microwave to have them hot and ready to eat! At just 60 calories per serving, these potatoes are a good source of potassium and are gluten free with no artificial colors or flavors. Three cups of vegetables per tray ensures that you have plenty for your family dinner. Add a delicious touch to dinner with The Little Potato Company Garlic Parsley Potatoes.', 'Fresh creamer potatoes with seasoning pack Microwave ready Cooks in 5 minutes Garlic parsley seasoned 3 cups of vegetables per tray Gluten free Good source of potassium 60 calories per serving', 'The Little Potato Company', 'https://i5.walmartimages.com/asr/d536213f-39fe-40b4-9d80-eadbb4fb0ffe.97cdb6a5ebdfe99304c3756fa2b06c6c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d536213f-39fe-40b4-9d80-eadbb4fb0ffe.97cdb6a5ebdfe99304c3756fa2b06c6c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d536213f-39fe-40b4-9d80-eadbb4fb0ffe.97cdb6a5ebdfe99304c3756fa2b06c6c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391543, 'The Little Potato Company Microwave-Ready Savory Herb Potatoes, 1 lb Tray', 4.38, '629307015045', 'In 1996, when my father and I introduced these flavorful The Little Potato Company Microwave-Ready Savory Herb Potatoes, we grew a one-acre plot that we harvested, washed and bagged by hand. Since then, we focus solely on selecting and growing fresh Creamer potatoes that are outstanding in taste, nutrition and texture. It\'s all we do: Our proprietary varietals are harvested when they are mature and at their best. My family and I still enjoy the original, diverse taste of these exceptional Creamer potatoes, and I am excited to share them with you. - Angela, Co-Founder and Chief Potato Champion.', 'The Little Potato Company Microwave-Ready Savory Herb Potatoes, 1 lb (16 ounces) A tantalizing blend of savory herbs and spices Good source of potassium Microwave ready Gluten free Contains no artificial flavors, colors or preservatives Vegan 80 calories per serving 8% DV of vitamin C Naturally fat-free Cholesterol free Fresh produce', 'The Little Potato Company', 'https://i5.walmartimages.com/asr/63499740-ad84-4bb3-9850-1b7624ea84ea.a7fe5c4d4624c9a6adc42d728c3fa148.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/63499740-ad84-4bb3-9850-1b7624ea84ea.a7fe5c4d4624c9a6adc42d728c3fa148.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/63499740-ad84-4bb3-9850-1b7624ea84ea.a7fe5c4d4624c9a6adc42d728c3fa148.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391559, 'Black Seedless Grapes, per lb', 1.54, 'deleted_204056000001', 'short description is not available', 'Black Seedless Grapes, per lb', 'Generic', 'https://i5.walmartimages.com/asr/2a7a36a6-abd3-44ff-a479-1b6ab9308eb3_2.fb7eeec87b8007a35df2953f4ea7496c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2a7a36a6-abd3-44ff-a479-1b6ab9308eb3_2.fb7eeec87b8007a35df2953f4ea7496c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2a7a36a6-abd3-44ff-a479-1b6ab9308eb3_2.fb7eeec87b8007a35df2953f4ea7496c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391565, 'Fresh Acorn Squash, Each', 7.32, '204750000000', 'Add some fresh flavor to your meal with Acorn Squash. This versatile vegetable can be used in a variety of dishes to create delicious and decadent meals. Roast the whole squash for a simple and flavorful side dish, chop it into cubes and put it in the slow cooker with chicken breast, kidney beans, and spices, or make butternut noodles for a gluten-free pasta alternative. For a sweet treat turn the squash into a rich and spicy pie, perfect for the holiday season. With so many uses, this vegetable will become a pantry staple. Create tasty and flavorful meals with Acorn Squash.', 'Versatile ingredient Roast the whole squash for the perfect side dish or chop into cubes, put into a slow cooker, and mix with chicken breast, beans, and spices for a flavorful dish Use it to create a sweet and decadent pie Make acorn squash noodles for a gluten free pasta alternative Will become a pantry staple', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7f9f4de4-8301-498f-923c-0aadcbd145ac.19a506d251535265665235f80586b147.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7f9f4de4-8301-498f-923c-0aadcbd145ac.19a506d251535265665235f80586b147.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7f9f4de4-8301-498f-923c-0aadcbd145ac.19a506d251535265665235f80586b147.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391581, 'Fresh Red Bell Pepper, 1 Each', 1.48, '405551853776', 'Enhance your meals with the delicious flavor of Red Bell Peppers. This vegetable contains essential vitamins such as A and C, and minerals including calcium and magnesium. Red bell pepper, also known as red capsicum, has a crisp flavor that enhances a variety of recipes. Dice bell peppers and put them in a hearty chili, slice them, saute them with onions or stir-fry with thinly-sliced steak and serve with rice. A hollowed-out red bell pepper can be filled with sausage, mushrooms and rice to create a delicious stuffed pepper that will have the family asking for seconds. They also taste delicious raw alongside other vegetables. Add your favorite dip for a healthy, crunchy crudite. Cooked or uncooked, Red Bell Peppers are an excellent item to have on hand.', 'Naturally low in calories, Exceptionally rich in vitamin C and other antioxidants Delicious cooked or uncooked Create delicious recipes with fresh red peppers Also known as Pimiento rojo, Red Chili, Filfil ahmar and Lal mirch around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7be94a8e-9a5d-4f87-842f-5fe4084138ba.c95d36e140f5e0d492ca632b42e4543c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7be94a8e-9a5d-4f87-842f-5fe4084138ba.c95d36e140f5e0d492ca632b42e4543c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7be94a8e-9a5d-4f87-842f-5fe4084138ba.c95d36e140f5e0d492ca632b42e4543c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391602, 'Fresh Yellow Bell Pepper, Each', 1.48, '890773002116', 'Enhance your meals with the delicious flavor of Yellow Bell Peppers. This vegetable contains essential vitamins such as A and C, and minerals including calcium and magnesium. Yellow bell pepper, also known as yellow capsicum, has a crisp flavor that enhances a variety of recipes. Dice bell peppers and put them in a hearty chili, slice them and add to a deli sandwich, saute them with onions and serve on a hoagie roll with a bratwurst, or stir-fry with thinly-sliced steak and serve with rice. A hollowed-out yellow bell pepper can be filled with sausage, mushrooms and rice to create a delicious stuffed pepper that will have the family asking for seconds. Lunches and dinners are more scrumptious when fresh yellow peppers are part of the meal. They also taste delicious raw alongside other vegetables. Add your favorite dip for a healthy, crunchy crudite. Cooked or uncooked, Yellow Bell Peppers are an excellent item to have on hand.', 'Yellow Bell Pepper, 1 each: Naturally low in calories Exceptionally rich in vitamin C and other antioxidants Delicious cooked or uncooked Create delicious recipes with fresh red peppers', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4afb6fc7-4b33-4dc9-b938-035666ab2fe6.dca886c2d62ffc4a948e28a2d0039ea2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4afb6fc7-4b33-4dc9-b938-035666ab2fe6.dca886c2d62ffc4a948e28a2d0039ea2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4afb6fc7-4b33-4dc9-b938-035666ab2fe6.dca886c2d62ffc4a948e28a2d0039ea2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391605, 'Fresh Strawberries, 1 lb', 3.12, '071430007525', 'The sweet, juicy flavor of Fresh Strawberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. They contain essential vitamins and nutrients like, vitamin C, dietary fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh Strawberries today and savor the delectable flavor.', 'Prior to serving gently wash the fruit and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b54a64ad-e961-46cf-b60c-bc763716fb0b.a481cdfd237c5ab5438d5c9e90bead07.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b54a64ad-e961-46cf-b60c-bc763716fb0b.a481cdfd237c5ab5438d5c9e90bead07.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b54a64ad-e961-46cf-b60c-bc763716fb0b.a481cdfd237c5ab5438d5c9e90bead07.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391639, 'Fresh Fuji Apples, 3 lb Bag', 3.54, '033383017242', 'There is an inherent spicy-savory flavor to these Freshness Guaranteed Fuji Apples that makes them an all-around favorite for both fresh and cooked uses. It is perhaps natural that this apple, with its Japanese heritage, would pair well with Asian flavors such as cilantro, chili pepper, rice vinegar and sesame. This is a wine-friendly apple, making it a good choice for recipes served as an appetizer or main course accompanied by wine. It pairs particularly well with Riesling, Chianti, Merlot and Pinot Noir wines. Pick up a bag of Freshness Guaranteed Fuji Apples today. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Fuji Apples, 3 lb Bag Super sweet Fresh and sophisticated flavor Hints of spice and savory earth character Juicy and aromatic Healthy snack Convenient bag packaging Meets or exceeds U.S. Extra Fancy Super sweet Fresh and sophisticated flavor Hints of spice and savory earth character Juicy and aromatic Healthy snack Convenient bag packaging Meets or exceeds U.S. Extra Fancy Super sweet Fresh and sophisticated flavor Hints of spice and savory earth character Juicy and aromatic Healthy snack Convenient bag packaging Meets or exceeds U.S. Extra Fancy Make a creamy smoothie or a nutritious juice blend Perfect as a healthy treat or seasonal baking ingredient Great for packing in lunches Make a creamy smoothie or a nutritious juice blend Adds flavor to a variety of recipes', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/e70c5b78-90d7-4248-b791-79cd6999b309.0975f20dc3d3e039b772d0fdd73af3d0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e70c5b78-90d7-4248-b791-79cd6999b309.0975f20dc3d3e039b772d0fdd73af3d0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e70c5b78-90d7-4248-b791-79cd6999b309.0975f20dc3d3e039b772d0fdd73af3d0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391659, 'Fresh Lemons, 2 lb Bag', 3.92, '033383140032', 'Add zest and flavor to your meals and beverages with these fresh Lemons. A great source of vitamin C, lemons are a staple citrus fruit essential for any kitchen. Slice them and use them in your iced or hot tea or use the lemon juice to make satisfying and refreshing strawberry lemonade. Zest the lemon peel to use in recipes such as lemon cookies or a tasty lemon loaf. You can also use lemons in savory recipes like asparagus with lemon zest or shrimp scampi with linguini. Enhance the flavor of your next meal with fresh Lemons.', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Add to your iced or hot tea Make a satisfying and refreshing strawberry lemonade Use lemon zest to make lemon cookies or lemon loaf Adds flavor to a variety or recipes Available in a 2-pound bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ea02745f-85ec-4437-b558-99017aa55ba0_1.54e4ccd90fb051e0422baf290b61d661.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea02745f-85ec-4437-b558-99017aa55ba0_1.54e4ccd90fb051e0422baf290b61d661.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea02745f-85ec-4437-b558-99017aa55ba0_1.54e4ccd90fb051e0422baf290b61d661.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44391666, 'Fresh Raspberries, 6 oz. Container', 3.37, '715756100019', 'The sweet, juicy flavor of Fresh Raspberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes or yogurt, bake them into mouthwatering raspberry crumble bars, mix them with other fruit for a light and flavorful salad, or add them to a creamy smoothie. They contain essential vitamins and nutrients like vitamin C, fiber, potassium, vitamin K and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them with cool water and enjoy the fresh taste. Refrigerate the berries to keep them fresh and ready for use. Pick up a Fresh Raspberry container today and savor the delectable flavor.', 'Are you ready to experience the vibrant taste and health benefits of Fresh Raspberries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Raspberries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. The versatility of raspberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these tasty gems into your baking endeavors, whether it\'s muffins, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Not only are raspberries delicious, but they also offer an array of health benefits. Loaded with vitamins and dietary fiber, raspberries are are a nutritious choice that will keep you feeling good from the inside out. Our Fresh Raspberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness. Treat yourself to the delightful taste and nutritional benefits of Fresh Raspberries. Elevate your dishes, satisfy your cravings, and experience the joy of these plump and juicy berries. Order your batch today and unlock a world of flavor and wellness.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7f2a89a0-04cc-4272-ad39-f3c96525b57b.a243dab95fc3537540fbf5cbb7a8365b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7f2a89a0-04cc-4272-ad39-f3c96525b57b.a243dab95fc3537540fbf5cbb7a8365b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7f2a89a0-04cc-4272-ad39-f3c96525b57b.a243dab95fc3537540fbf5cbb7a8365b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44419692, 'Marketside Organic Fresh Cucumber, Each', 2.98, '033383911045', 'The Marketside Organic Fresh Cucumber is crisp, refreshing, and naturally hydrating, making it a perfect addition to any meal. Grown by trusted organic farmers, this cucumber is USDA certified organic, ensuring it is free from synthetic pesticides and fertilizers. Its cool and clean flavor pairs wonderfully with salads, sandwiches, wraps, or as a simple snack with your favorite dip. Slice it up for a crisp crunch, or add it to a pitcher of water for a fresh, spa-like taste. With its vibrant green color and garden-fresh taste, the Marketside Organic Fresh Cucumber is a versatile choice that delivers both nutrition and flavor. Enjoy the wholesome goodness of the Marketside Organic Fresh Cucumber every time you reach for a healthy option. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to delivering freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Fresh Cucumber USDA certified organic and grown without synthetic pesticides Crisp, refreshing flavor perfect for salads, wraps, and snacks Hydrating and low-calorie option for a healthy lifestyle Versatile use from cooking to infused water', 'Marketside', 'https://i5.walmartimages.com/asr/9b051d0b-d6ed-43fb-8a53-2d26eeeebb31_1.c1ecc4eff47d63fb3ce42a9c4adb9780.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b051d0b-d6ed-43fb-8a53-2d26eeeebb31_1.c1ecc4eff47d63fb3ce42a9c4adb9780.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b051d0b-d6ed-43fb-8a53-2d26eeeebb31_1.c1ecc4eff47d63fb3ce42a9c4adb9780.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44419695, 'Cooking with Spinach, Classic, Fresh Spinach, Net Wt 16 oz (1LB) 454g', 2.98, '012842410015', 'Spinach, Classic 16 oz (454 g) Triple washed & ready to cook! No time for cooking? Great as a salad too! The perfect size and texture for cooking. Specially grown for cooking. Rich in antioxidants - beta carotene, vitamins A & C. Excellent source of folate and vitamin K with 10.4 mg of lutein per 85 g serving! For more nutritional info and more recipes, go to www.newstarfresh.com. Produce of USA. Classic 3-Minute Spinach! 1 bag Cooking with Spinach Classic; 1 tbsp olive oil (or our favorite cooking oil); salt and pepper. Heat oil in large skillet over high heat. When hot, add spinach and cover with lid. Stir spinach after 1 minute and replace lid. Cook 2 minutes more until wilted but still bright green. Season with salt and pepper to taste. Serves 2-3 as a side dish. Spice up your spinach by adding 1/2 tsp hot chili flakes and 1 tsp lemon juice after first minute of cooking! Keep refrigerated. 16 oz (454 g) 900 Work Street Salinas, CA 93901 888-STAR-220 2012 NewStar', 'Spinach, Classic Triple washed & ready to cook! No time for cooking? Great as a salad too! The perfect size and texture for cooking. Specially grown for cooking. Rich in antioxidants - beta carotene, vitamins A & C. Excellent source of folate and vitamin K with 10.4 mg of lutein per 85 g serving! Produce of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/71047ede-75dd-4bad-a2ca-cbd360dc7dea.900f32bab8bfac704613f1a78808c297.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71047ede-75dd-4bad-a2ca-cbd360dc7dea.900f32bab8bfac704613f1a78808c297.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71047ede-75dd-4bad-a2ca-cbd360dc7dea.900f32bab8bfac704613f1a78808c297.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44659372, 'Fresh Summer Kiss Melon, Each', 2.98, '850940002431', 'Enjoy the fruits of summer with a Summer Kiss Melon. Summer Kiss melons are sweet but not overbearing, mellow, and creamy. They have a creamy, green textured flesh that will add interest and color to any fruit bowl. Mix some cubes of Summer Kiss melon with watermelon, honeydew, and cantaloupe for a melon bowl that will satisfy anyone\'s fruit cravings, mix into a morning smoothie, sprinkle with lime juice and salt, or pair with fresh herbs such as mint, cilantro, oregano, tarragon, or basil for a refreshing treat. Sugar Kiss melon is a wonderful accompaniment to salty meats, soft cheeses, dried fruits, and nuts. Bring home the flavor of summer with a Sugar Kiss Melon.', 'Fresh Sugar Kiss melon Sweet but not overbearing flavor Creamy, green textured flesh Adds interest and color to any fruit bowl Mix with watermelon, honeydew, and cantaloupe for a delicious melon bowl', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2c0c9fce-2930-48cd-8974-c897e6b63c4b.cf73021f24ffff716bdca17e76a2bbc8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2c0c9fce-2930-48cd-8974-c897e6b63c4b.cf73021f24ffff716bdca17e76a2bbc8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2c0c9fce-2930-48cd-8974-c897e6b63c4b.cf73021f24ffff716bdca17e76a2bbc8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44901266, 'Mann Packing Manns Snap Pea Sensations, 1 ea', 2.38, '716519011085', 'Snap Pea Sensations, Mediterranean Style, Bag 10.14 OZ Nt wt. Snap Peas & Topping: 10.14 oz (287.5 g). Dressing: 1.0 fl oz (29.6 ml). Complete Kit: Serve hot or cold. Sugar snap peas, basil garlic olive oil & parmesan cheese. Three generations. Est. 1939. Serve as a cold salad or hot saute. Healthy cooking made easy! Simply toss these delicious ingredients together for a quick & easy side dish or meal. Serve hot or cold! For more information contact us: Mann\'s Customer Service PO Box 690, Salinas, CA 93902 or call 800-285-1002. Veggiesmadeeasy.com. At Mann\'s we are moms creating solutions for moms. Certified WBENC. Women\'s business enterprise. Facebook. Twitter. Pinterest. Instagram. YouTube. Dating back to the 1930s, farming has been a family business for three generations. We are dedicated to providing the highest quality, fresh produce. We grow on family-owned farms using sustainable practices & follow strict quality standards. Keep refrigerated. Washed & ready to eat. Perishable. Enjoy as a Cold Salad: 1. Pour the pre-washed sugar snap peas into a bowl. 2. Add the parmesan cheese and basil garlic olive oil. 3. Toss to coat evenly; serve immediately for best results. Enjoy as a Hot Saute: 1. Pour the pre-washed sugar snap peas into a bowl. 2. Drizzle the basil garlic olive oil over the sugar snap peas. Toss to coat evenly. 3. Preheat a non-stick skillet until hot. 4. Pour the coated sugar snap peas into the skillet and saute quickly - 1 to 2 minutes. 5. Remove from heat. Add parmesan cheese. Toss gently. 6. For best results serve immediately. Suggestions for Hot & Cold Dishes: Add to pasta or pair with your favorite grilled fish, chicken or beef. Contains milk. 1 kit PO Box 690 Salinas, CA 93902', 'Snap Pea Sensations, Mediterranean Style Nt wt. Snap Peas & Topping: 10.14 oz (287.5 g). Dressing: 1.0 fl oz (29.6 ml). Complete Kit: Serve hot or cold. Sugar snap peas, basil garlic olive oil & parmesan cheese. Three generations. Est. 1939. Serve as a cold salad or hot saute. Healthy cooking made easy! Simply toss these delicious ingredients together for a quick & easy side dish or meal. Serve hot or cold! For more information contact us: Mann\'s Customer Service PO Box 690, Salinas, CA 93902 or call 800-285-1002. Veggiesmadeeasy.com. At Mann\'s we are moms creating solutions for moms. Certified WBENC. Women\'s business enterprise. Facebook. Twitter. Pinterest. Instagram. YouTube. Dating back to the 1930s, farming has been a family business for three generations. We are dedicated to providing the highest quality, fresh produce. We grow on family-owned farms using sustainable practices & follow strict quality standards.', 'Mann\'s', 'https://i5.walmartimages.com/asr/c8178d5b-c2b9-413b-9449-d02128049ceb_1.6a10ea294aa600cb61e86d109c2e9563.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8178d5b-c2b9-413b-9449-d02128049ceb_1.6a10ea294aa600cb61e86d109c2e9563.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8178d5b-c2b9-413b-9449-d02128049ceb_1.6a10ea294aa600cb61e86d109c2e9563.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (44998120, 'Fresh Seeded Watermelon, Each', 6.96, '850525002023', 'Treat yourself to a sweet Fresh Seeded Watermelon. Enjoy this tasty watermelon on its own as a healthy snack or incorporate it into a variety of delicious recipes. For breakfast, you can make a sweet fruit bowl with sliced watermelon, strawberries, pineapple, banana, and kiwi. For an extra special treat, top with a dollop of whipped cream. Fresh seeded watermelons are rich in micronutrients! You can also serve up this watermelon at your next neighborhood barbecue, use it to make a refreshing sorbet, or make a delicious summertime cocktail.', 'Juicy and fresh seeded watermelon Explore all the delicious ways to add fresh watermelon to your favorite recipes Rich in micronutrients Get creative and make a watermelon cocktail or a refreshing sorbet Enjoy on its own or add to a mixed fruit salad No container', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3d9086b4-d3b8-4da0-9b4b-09fe51509bee.d73dc9b869c69c180d1bcafa4a8847a0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3d9086b4-d3b8-4da0-9b4b-09fe51509bee.d73dc9b869c69c180d1bcafa4a8847a0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3d9086b4-d3b8-4da0-9b4b-09fe51509bee.d73dc9b869c69c180d1bcafa4a8847a0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (45067833, 'Little Gems Sweet Lettuce, 3 heads', 2.98, '027918921234', 'Lettuce, Sweet 3 heads Grown with family pride for 3 generations. Field packed for freshness. Preferred by San Francisco Chefs. Chef\'s Choice. Resealable for freshness. Tanimura & Antle the premier grower of this sweet and crunchy lettuce variety that has been enjoyed by culinary professionals in the San Francisco Bay Area for years. Sweet and crunchy, perfect in a salad or as a lettuce cup. Pick up a bag and put little gems on the dinner table tonight. www.taproduce.com. Produce of USA. Wash before use. 3 heads Salinas, CA 93908', 'LETTUCE GEM CA TA', 'Tanimura & Antle', 'https://i5.walmartimages.com/asr/c91f7310-0344-4fdf-a9aa-0ced165be333.806330fb16582977c101e596e47067d9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c91f7310-0344-4fdf-a9aa-0ced165be333.806330fb16582977c101e596e47067d9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c91f7310-0344-4fdf-a9aa-0ced165be333.806330fb16582977c101e596e47067d9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (45106270, 'Organic Kiwi Fruit, 1 lb Clam Shell', 6.34, '032601500016', 'Treat yourself to the refreshing flavor of Organic Kiwi Fruit. Enjoy this tasty kiwi on its own as a healthy snack or incorporate it into a variety of delicious recipes. For breakfast, you can make a sweet fruit bowl with sliced kiwi, strawberries, pineapple, and cantaloupe. For an extra special treat, top with a dollop of whipped cream. Cut it into small pieces and put it in a fresh salad along with chicken, cucumbers, tomatoes, and a light dressing. You can even use kiwi to make a sweet sorbet or scrumptious muffins. Enjoy the sweet and juicy taste of fresh Organic Kiwi Fruit.', 'Flavorful addition to many recipes Enjoy on its own or add to a mixed fruit salad Add to your fresh garden salad USDA organic Get creative and make a refreshing sorbet Explore all the delicious ways to add fresh kiwi to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/681f409f-5556-4c5c-87b6-427273e29fda.b3f9c96e8afacbd545ec61df09ed17a7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/681f409f-5556-4c5c-87b6-427273e29fda.b3f9c96e8afacbd545ec61df09ed17a7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/681f409f-5556-4c5c-87b6-427273e29fda.b3f9c96e8afacbd545ec61df09ed17a7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (45127027, 'Fresh Red Baby Potatoes, 1.5 lb Bag', 3.44, '045255118643', 'Baby Red Potatoes are hand selected for excellent quality. Firm, well-shaped, and smooth, these fresh creamer potatoes can be cooked in almost any way imaginable. They have a light, subtle flavor and creamy texture that make them the perfect side dish to chicken, fish, steak, and other delicious proteins. Simply grill, roast, or toss into salads along with your favorite seasonings. To preserve the nutrients, leave the skins on and simply scrub gently in water before cooking. Always store potatoes in a cool, well-ventilated area rather than in the refrigerator. Enjoy nutrients, flavor, and all-around deliciousness when you cook up Baby Potatoes.', 'Firm, well-shaped, and smooth Can be cooked in almost any way imaginable, including grilled, roasted, or in salads Light, subtle flavor and creamy texture Perfect side dish to chicken, fish, steak, and other delicious proteins Great addition to holiday meals and celebrations Good source of potassium', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b893e478-176e-40ea-ae5e-0b0def2711c7.e38013c56d6d975720185ad48d3f5af2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b893e478-176e-40ea-ae5e-0b0def2711c7.e38013c56d6d975720185ad48d3f5af2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b893e478-176e-40ea-ae5e-0b0def2711c7.e38013c56d6d975720185ad48d3f5af2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (45618183, 'Fresh USDA Organic Strawberries, 1 lb Container', 6.99, '033383200385', 'The sweet, juicy flavor of Fresh USDA Organic Strawberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. These organic berries contain essential vitamins and nutrients like, vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh USDA Organic Strawberries today and savor the delectable flavor.', 'Certified organic Prior to serving gently wash the strawberries and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail Prior to serving gently wash the strawberries and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'Fresh Produce', 'https://i5.walmartimages.com/asr/fb148fa5-193e-479c-8e89-dca9d61e2ff7_1.0d26c201e069d9940a4d0cb0c85d776d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb148fa5-193e-479c-8e89-dca9d61e2ff7_1.0d26c201e069d9940a4d0cb0c85d776d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb148fa5-193e-479c-8e89-dca9d61e2ff7_1.0d26c201e069d9940a4d0cb0c85d776d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (45619132, 'Fresh Premium Grape Tomato, 10 oz Package', 3.48, '751666370050', 'Bring the fresh, delicious taste of Premium Grape Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Premium Grape Tomatoes.', 'Premium Grape Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8c3423a6-d5f1-4e00-926a-41f316288808.89ce7b3f27c9a70b987d7c19edc72f1a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8c3423a6-d5f1-4e00-926a-41f316288808.89ce7b3f27c9a70b987d7c19edc72f1a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8c3423a6-d5f1-4e00-926a-41f316288808.89ce7b3f27c9a70b987d7c19edc72f1a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (45619133, 'Fresh Cherubs Grape Tomatoes, 16.5 oz Package', 4.16, '751666774056', 'Bring the fresh, delicious taste of NatureSweet Cherubs into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of NatureSweet Cherubs Grape Tomatoes.', 'NatureSweet Cherubs Grape Tomatoes, 16.5 oz Package Wholesome, fresh, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'NatureSweet', 'https://i5.walmartimages.com/asr/cb0449f8-005c-459a-8df4-e18c5b7bb6bb.fa163a1bfa3793606243f324c3199f20.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb0449f8-005c-459a-8df4-e18c5b7bb6bb.fa163a1bfa3793606243f324c3199f20.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb0449f8-005c-459a-8df4-e18c5b7bb6bb.fa163a1bfa3793606243f324c3199f20.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (45619141, 'Walmart Produce Pineapple Blueberry 10 Oz', 2.58, '826766252114', 'short description is not available', 'Walmart Produce Pineapple Blueberry 10 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4b1fd3b3-b599-4015-be35-c32646acda88_1.5f34cc4c89c989e6fe81846c1b74fb26.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4b1fd3b3-b599-4015-be35-c32646acda88_1.5f34cc4c89c989e6fe81846c1b74fb26.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4b1fd3b3-b599-4015-be35-c32646acda88_1.5f34cc4c89c989e6fe81846c1b74fb26.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (45980427, 'Melissa\'s Potato Medley, 1.5 Lb.', 3.66, 'deleted_045255136425', 'Potato Medley, Red/White/Blue, Bag 1.5 LB US No. 1-min. dia 3/4 inch. Idaho potatoes. Good life food. Rich, buttery flavor. The best potato for salads or grilling! Recipes - melissa.com. Melissa\'s Red, White and Blue Potatoes are great in potato salads or as a savory side dish. They have a wonderful, buttery texture and flavor when baked, roasted, boiled, steamed, sauteed or mashed. Try them in your favorite potato recipe. www.melissas.com. Grown in Idaho. Product of USA. Packed in Idaho. Store in a cool, dry place. 24 oz (1.5 lbs) 680 g PO Box 514599 Los Angeles, CA 90051 800-588-0151', 'Red White & Blue Potato Medley 24 Oz Bag', 'Melissa\'s', 'https://i5.walmartimages.com/asr/0dbaf4bf-ed3b-40a0-94bd-e21394fa87f6_1.1f02444448f0715e3b2d5a00ea5e0a43.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0dbaf4bf-ed3b-40a0-94bd-e21394fa87f6_1.1f02444448f0715e3b2d5a00ea5e0a43.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0dbaf4bf-ed3b-40a0-94bd-e21394fa87f6_1.1f02444448f0715e3b2d5a00ea5e0a43.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (46341599, 'Fresh Quick Cook Brussel Sprouts, 16 oz', 2.98, '000651319018', 'Green Giant™ Fresh Halved Brussels Sprouts.Recipe ready.Steams in pack.Per serving:35 Calories.0g Sat fat, 0% DV.20mg Sodium, 1% DV.2g Sugars.Net Wt 16 oz (454 g). Refrigerate for best quality.Microwave directions:1. Tear bag at notch.2. Open pouch and run under cold water to rinse Brussels Sprouts. Drain water from pouch. Reseal pouch leaving about 1 inch open.3. Place bag standing up in microwave; microwave on high for 2-3 minutes or until desired tenderness*. Let stand 1 minute in microwave.Because microwaves cook differently, times are approximate.Caution: Hot! Pouch may be hot to the touch. Let stand 1 minute in microwave before removing.Serving suggestions:Drizzle Halved Brussels Sprouts with olive oil, sea salt, and pepper. Roast at 400°F for 20 minutes. Great dipped into a garlic aioli.Halved Brussel Sprouts are a great addition to your cooked pasta dishes. Just roast and toss with cooked pasta, olive oil and parmesan cheese.Perfect for sauteing with Pancetta and freshly, chopped garlic.', 'Brussels Sprouts, Sprout Halves, Quick Cook Halved for faster and even cooking! 5 min. Season, seal & steam in the bag. Ready to serve fresh veggies. Visit OceanMist.com for recipes and ideas to personalize your Season & Steam meals! Visit OceanMist.com for brussels sprouts facts, videos and recipes. Gluten free. GMO free. Vegan. Washed and ready to use. Excellent source of vitamin C. Rich in antioxidants and good source of fiber. No artificial ingredients or preservatives.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/be686bcd-6ab5-46cb-b0b4-0034d467e1fd.f78a4e6a858aa8ff551f12118381b22c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/be686bcd-6ab5-46cb-b0b4-0034d467e1fd.f78a4e6a858aa8ff551f12118381b22c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/be686bcd-6ab5-46cb-b0b4-0034d467e1fd.f78a4e6a858aa8ff551f12118381b22c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (46341600, 'Brussels Sprouts, 12 oz', 2.98, '605806027970', 'Ocean Mist® Farms Super Shreds Superfood? Brussels Sprouts. Use for salads, saute or tacos. Contains good source of fiber & vitamin C. Rich in antioxidants. There are no artificial ingredients and preservatives. This product is Gluten free and GMO free.', 'Ocean Mist Farms Super Shreds Superfood Brussels Sprouts.Ocean Mist® Farms Super Shreds Superfood? Brussels Sprouts.Use for salads, saute or tacos!Cleaned and ready to use.Microwave in the bag 3 min.Season, seal & steam in the bag!For a wealth of Brussels sprouts facts, videos and recipes, visit oceanmist.com.Benefits: Good source of fiber.Excellent source of vitamin C. Rich in antioxidants.No artificial ingredients.No preservatives.Gluten free.GMO free.Vegan.', 'Unbranded', 'https://i5.walmartimages.com/asr/c81c2c13-62ed-4341-8bf7-674819deaa95.20aa7b9d343d2d1688f5c1701b1600a7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c81c2c13-62ed-4341-8bf7-674819deaa95.20aa7b9d343d2d1688f5c1701b1600a7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c81c2c13-62ed-4341-8bf7-674819deaa95.20aa7b9d343d2d1688f5c1701b1600a7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (46342082, 'Crunch Pak NBA Fit Snackers Apples, Pretzels, Cheese, 4.75 oz', 2.28, '732313852815', '', 'Crunch Pak NBA Fit Snackers Apples, Pretzels, Cheese: America\'s No. 1 sliced apple Healthy snack on the go', 'Fresh Produce', 'https://i5.walmartimages.com/asr/61af1d4e-1723-45fe-a484-a9b5e3993cdf_1.a82be18ac0957206306e635f88981233.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/61af1d4e-1723-45fe-a484-a9b5e3993cdf_1.a82be18ac0957206306e635f88981233.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/61af1d4e-1723-45fe-a484-a9b5e3993cdf_1.a82be18ac0957206306e635f88981233.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (46491668, 'Fresh White Potatoes, Each', 0.3, '000000040839', 'These White Potatoes are a must-have for any pantry. With so many ways to prepare potatoes, you\'ll want to add them to every meal. For breakfast, you could make crispy hash browns smothered in cheese and diced ham or add them to a savory omelet. For lunch or dinner, you could use these fresh potatoes to make au gratin potatoes, garlic mashed potatoes, or a baked potato loaded with cheese, sour cream, green onions, and bacon bits. If you\'re hosting a neighborhood get-together, you can use them to make creamy potato salad or homestyle French fries. Serve up something delicious when you cook with White Potatoes.', 'White Potatoes, 1 lb. Approximately 2 potatoes per lb. These White Potatoes are a must-have for any pantry. With so many ways to prepare potatoes, you\'ll want to add them to every meal. For breakfast, you could make crispy hash browns smothered in cheese and diced ham or add them to a savory omelet. For lunch or dinner, you could use these fresh potatoes to make au gratin potatoes, garlic mashed potatoes, or a baked potato loaded with cheese, sour cream, green onions, and bacon bits. If you\'re hosting a neighborhood get-together, you can use them to make creamy potato salad or homestyle French fries. Serve up something delicious when you cook with White Potatoes.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4ad2392e-7783-4d52-a5da-642ed12519da.0c7a0e38aa1d4f9ef6314fd72ff657f8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ad2392e-7783-4d52-a5da-642ed12519da.0c7a0e38aa1d4f9ef6314fd72ff657f8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ad2392e-7783-4d52-a5da-642ed12519da.0c7a0e38aa1d4f9ef6314fd72ff657f8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (46491672, 'Fresh Shredded Carrots, 10 oz Bag', 1.87, '078783514106', 'Add color and nutrition to your diet with Fresh Shredded Carrots. Carrots are a great source of beta carotene, fiber, vitamin K1, potassium, and antioxidants. Washed and ready to eat with no preservatives, keep a bag of these shredded carrots on hand to add to any meal at a moment’s notice. Add this nutritional powerhouse to all kinds of recipes to add a delicious dose of vitamins and minerals. Slightly cook shredded carrots and add to a grilled cheese sandwich, add to macaroni and cheese as you’re boiling the noodles, sprinkle into an omelet, add to your award-winning lasagna recipe, use as an ingredient for a delicious salad, or mix into muffins batter. You’ll be serving up an extra-nutritious meal that nobody will object to! Give your dishes an extra boost of color and nutrition with Fresh Shredded Carrots.', 'Fresh Shredded Carrots 10-ounce bag No preservatives Washed and ready to eat Fresh and crunchy Excellent source of beta carotene, fiber, vitamin K1, potassium, and antioxidants', 'Grimmway Farms', 'https://i5.walmartimages.com/asr/35817df3-4652-4035-9e07-0d073658c7d3.f739e89b28b14d00be573312547a31db.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35817df3-4652-4035-9e07-0d073658c7d3.f739e89b28b14d00be573312547a31db.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35817df3-4652-4035-9e07-0d073658c7d3.f739e89b28b14d00be573312547a31db.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (46491694, 'Fresh Red Cherries, 2.25 lb Bag', 8.93, '000000040457', 'Enjoy our deliciously sweet red cherries grown in US. Full of nutrition, these fresh red cherries are not only delicious, but also packed with vitamins and minerals like vitamin C, potassium, and vitamin B complex. Enjoy these cherries on their own, as part of desserts and entrees, or add them to drinks. Cherries can stay fresh when frozen for up to three months, so you\'ll be able to enjoy them throughout the fall and winter seasons. Make sure you use a freezer bag that removes as much air as possible. Then, when you\'re ready to eat them, thaw cherries in the refrigerator and enjoy. Get powerful nutrition and flavor with these Fresh Red Cherries.', 'Fresh Red Cherries Bag Bursting with antioxidants, phytochemicals, vitamins, nutrients, and fiber Rich source of vitamin C, potassium, and vitamin B complex Versatile and delicious Wonderful addition to entrees, desserts, and beverages To enjoy fresh cherries: store in the refrigerator and wash just before eating Grown in US', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ae909d05-c36d-42f7-bcfe-bcf43201fc73.477cac022ebe2e0acad63c17124ca733.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ae909d05-c36d-42f7-bcfe-bcf43201fc73.477cac022ebe2e0acad63c17124ca733.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ae909d05-c36d-42f7-bcfe-bcf43201fc73.477cac022ebe2e0acad63c17124ca733.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (46491703, 'Freshly Harvested BBQ Green Onions, 1 Bunch', 1.8, '814905011296', 'Add flavor to your next meal with Fresh BBQ Green Onions. Also known as Mexican BBQ onions, they\'re similar in taste to the typical green onion variety. This versatile vegetable adds flavor and texture to a variety of recipes. For breakfast, you could dice them and add to an omelet loaded with cheese, ham, and mushrooms. Chop up the stalks into little rings and mix them into sour cream to create a delicious chip dip. You can also add them to a fresh garden salad or sprinkle them on top of your fish tacos. Stock your pantry with these Fresh BBQ Green Onions.', 'Great addition to every pantry Adds flavor and texture to any meal Dice them and add to a savory breakfast omelet Chop into little rings and add to sour cream to make a delicious chip dip Similar in taste to the typical green onion variety Fresh condition for optimal flavor and texture Also known as Cebollitas Asadas, Basal Akhdar Mashwi, Hara Pyaaz & Kǎo Xiāng Cōng around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/88304921-0043-4e1b-a4a6-b53a2459aa3b_1.cf00c8cf6d80aeb06274fa8f1a44bbd0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/88304921-0043-4e1b-a4a6-b53a2459aa3b_1.cf00c8cf6d80aeb06274fa8f1a44bbd0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/88304921-0043-4e1b-a4a6-b53a2459aa3b_1.cf00c8cf6d80aeb06274fa8f1a44bbd0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (46491714, 'Fresh Yellow Mangoes, Each', 0.76, '000000043120', 'Get ready for big flavor with our Yellow Mangoes. This sweet, juicy tropical fruit, also known as an \"Ataulfo\" mango, originated in Mexico and has a soft, buttery texture and naturally sweet taste that the whole world has grown to love. They\'re delicious and nutritious, containing loads of vitamin C, which may act as an antioxidant and contribute to healthy immunity. They also have vitamin A, calcium, iron and fiber, so you can feel good about eating them. Slice up a mango and enjoy as a healthy, sweet snack, use it to make fresh mango salsa, or add it to sweet treats like creamy mango-lime bars or mango sorbet! The sky is the limit with this versatile fruit. Life is better when you have Yellow Mangoes.', 'Soft, buttery texture and naturally sweet taste Rich in vitamins A, C, calcium, iron, and fiber Makes a healthy snack Great addition to smoothies, salads, salsa, and more Can also be used to cook and bake with Delicious and nutritious Also known as Ataulfo Mango, Honey Mango, and Champagne Mango around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/701b5e2d-45a5-46fc-bac5-5b77e634792d.b4da8c2e4ad44ef5825b5f0c57cac35b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/701b5e2d-45a5-46fc-bac5-5b77e634792d.b4da8c2e4ad44ef5825b5f0c57cac35b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/701b5e2d-45a5-46fc-bac5-5b77e634792d.b4da8c2e4ad44ef5825b5f0c57cac35b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (46491725, 'Honeycrisp Apples, 2lb Bag', 6.12, 'deleted_033383047904', 'Treat yourself to the delicious, crisp taste of Honeycrisp Apples. These medium-to-large apples are known for their light green and yellow background covered with a red-orange flush and a strong hint of pink, and a honey-sweet, tart flavor. Enjoy one with breakfast or lunch or as a fresh snack any time of day. Best of all, these delicious apples hold up well when cooked and can be used in both savory and sweet dishes. They can be used for baking, snacking, salads, pairing, or made into a delicious sauce that pairs perfectly with pork. Try incorporating them into soups and compotes or using to make yummy jam or juice. Use them to create apple crisp, pie and strudel for a sweet treat. You can even pair them with sharp cheeses and crackers to create a stunning appetizer cheese board to share with guests. The possibilities are endless with Honeycrisp Apples.', 'Honeycrisp Apples, 2lb Bag: Light green and yellow background covered with a red-orange flush and a strong hint of pink Honey-sweet, tart flavor Good for baking and applesauce Can be enjoyed fresh or cooked into both savory and sweet dishes', 'Generic', 'https://i5.walmartimages.com/asr/710231ac-34ab-41a3-9b6c-04d7261ada17_1.a866a242aeccff90ad46e37b7fdf3940.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/710231ac-34ab-41a3-9b6c-04d7261ada17_1.a866a242aeccff90ad46e37b7fdf3940.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/710231ac-34ab-41a3-9b6c-04d7261ada17_1.a866a242aeccff90ad46e37b7fdf3940.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (46491765, 'Fresh Jicama, Each, 1 Count', 2.44, '000000046268', 'The wonderful jicama is thick, slightly sweet, hearty and offers a very satisfying crunch. It is a staple of many different cuisines, including Mexican, and makes a wonderful addition to a variety of tasty dishes. Chop it or shred it to sprinkle on a salad or put it in a soup. The jicama vegetable is loaded with fiber, which is useful for maintaining digestive regularity and promotes a feeling of fullness after eating. It\'s also a very rich source of the antioxidant vitamin C, a potent immune booster.', 'Sweet and crunchy 1 serving is 23.25 oz 250 calories per jicama-food serving No fat No cholesterol Low sodium High in potassium 128% daily recommended fiber 221% daily recommended vitamin C High in iron Source of vitamin B6 and magnesium Also known as Mexican Turnip and Yam Bean around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/01cd7508-0f53-47e6-9d78-4792cc1c085e.13951d9e889a9fe8ddcf20ca5dc2e0c9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/01cd7508-0f53-47e6-9d78-4792cc1c085e.13951d9e889a9fe8ddcf20ca5dc2e0c9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/01cd7508-0f53-47e6-9d78-4792cc1c085e.13951d9e889a9fe8ddcf20ca5dc2e0c9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (46521533, 'Fresh Organic Zucchini Squash, 2 Count', 2.96, '711069660011', 'Organic zucchini is always fresh, and has a light, delicate flavor with a creamy texture. It can be enjoyed raw with your favorite veggie dip or cooked. Like other summer squash, it has tender edible skin that does not require long cooking making it a very versatile ingredient for soups, chilis, sauté\'s and skewers. Dice and sauté with other fresh veggies, roast in the oven topped with parmesan cheese or grate it into delicious zucchini frittatas. Zucchini also makes a great low-carb pasta alternative. Simply spiralize the fresh zucchini and prepare it with your choice of toppings. Best yet, zucchini is packed with many essential vitamins such as vitamin B6 and rich in antioxidants, making it a great addition to a healthy diet. The possibilities are endless and always flavorful with fresh organic zucchini.', 'Organic Zucchini Squash Certified Organic 2 Count Zucchini Great for grilling Great pasta alternative Responsibly grown', 'Marketside', 'https://i5.walmartimages.com/asr/b21707a9-3f97-4ebd-ad43-373bac8a190b.da052b2bc8586765fefad0261123eee9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b21707a9-3f97-4ebd-ad43-373bac8a190b.da052b2bc8586765fefad0261123eee9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b21707a9-3f97-4ebd-ad43-373bac8a190b.da052b2bc8586765fefad0261123eee9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (46583418, 'Naturipe Fresh Blueberries Snack Packs, 1.25 oz, 3 count', 2.98, '812049002095', '', 'BERRY SNACKS 3PK NRF', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d1189730-4a1b-4d75-b2c3-b976ecb4ef04_1.55a6af21922e175bf57ec49c1d531111.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d1189730-4a1b-4d75-b2c3-b976ecb4ef04_1.55a6af21922e175bf57ec49c1d531111.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d1189730-4a1b-4d75-b2c3-b976ecb4ef04_1.55a6af21922e175bf57ec49c1d531111.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (46829825, 'Fresh Blueberries, 6 oz. Container', 2.97, '015756300120', 'Fresh Blueberries are a delightful and nutritious treat that brings a burst of flavor to any dish. These plump and juicy berries are picked at the peak of freshness, ensuring a sweet and tangy taste that is hard to resist. Perfect for snacking, baking, or adding to your favorite recipes, these blueberries are a versatile fruit that can be enjoyed in countless ways. Whether you sprinkle them on top of your morning cereal, blend them into a smoothie, or bake them into a delicious pie, Fresh Blueberries are sure to satisfy your cravings for a healthy and delicious snack.', 'Are you ready to experience the vibrant taste and health benefits of Fresh Blueberries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Blueberries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. The versatility of blueberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these blue gems into your baking endeavors, whether it\'s muffins, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Not only are blueberries delicious, but they also offer an array of health benefits. Loaded with antioxidants, vitamins, and dietary fiber, blueberries are known to promote heart health, support brain function, and boost the immune system. They are a nutritious choice that will keep you feeling good from the inside out. Our Fresh Blueberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness. Treat yourself to the delightful taste and nutritional benefits of Fresh Blueberries. Elevate your dishes, satisfy your cravings, and experience the joy of these plump and juicy berries. Order your batch today and unlock a world of flavor and wellness.', 'Multiple Suppliers', 'https://i5.walmartimages.com/asr/c251a0dc-54a1-49b2-b763-47e7a7d795ff.4d6e0d49bfb29e6e01c1ab7e50c10ac8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c251a0dc-54a1-49b2-b763-47e7a7d795ff.4d6e0d49bfb29e6e01c1ab7e50c10ac8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c251a0dc-54a1-49b2-b763-47e7a7d795ff.4d6e0d49bfb29e6e01c1ab7e50c10ac8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47094195, 'Old Wisconsin® Beef Sausage Beef Bites 3.5 oz. Pouch', 3.98, '073170124067', 'Old Wisconsin 3.5 oz Beef Bites have a perfect smokey flavor you\'ll crave. Sausage fans across the United States are wondering: How do we fit so much beefy flavor into such a little snack bite Our secret Using high-quality cuts of beef and spices, and slowly smoking them over a hardwood fire, just like our bigger sausages. It\'s no wonder Old Wisconsin 3.5 oz Beef Snack Bites are so good wherever you are and whenever you want them. And because they\'re available in a wide variety of resealable packages, you can eat as many of them as you want.', 'Real. Genuine. Taste. Beefed-Up Flavor', 'Old Wisconsin', 'https://i5.walmartimages.com/asr/247f8ec5-fcf6-4dcb-aceb-60c30ecda9a1.a80b874608ba1847258ded6e26af52a6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/247f8ec5-fcf6-4dcb-aceb-60c30ecda9a1.a80b874608ba1847258ded6e26af52a6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/247f8ec5-fcf6-4dcb-aceb-60c30ecda9a1.a80b874608ba1847258ded6e26af52a6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47094278, 'Cantaloupe Spears 16 oz', 4.84, '717524414366', 'Discover the sweet and juicy flavor of Cantaloupe, a delicious and refreshing fruit that\'s perfect for any occasion. Our Cantaloupes are carefully selected to ensure the highest quality and freshness. Whether you\'re adding it to a fruit salad or enjoying it as a healthy snack, Cantaloupe is the perfect choice for anyone who loves the taste of fresh, natural fruit. Order now and experience the irresistible flavor of Cantaloupe for yourself!', 'Cantaloupe Chunks, 16 oz Contains Cantaloupe Packed in a secure plastic bowl with lid Portable and convenient Provides many essential nutrients', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8cbaa217-f530-4344-bb51-72dc5701f005.a009e6ef456e79af40075313d473197e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8cbaa217-f530-4344-bb51-72dc5701f005.a009e6ef456e79af40075313d473197e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8cbaa217-f530-4344-bb51-72dc5701f005.a009e6ef456e79af40075313d473197e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47094281, 'Marketside Fresh Cut Watermelon Chunks, 42 oz Tray', 9.24, '077745247571', 'Enjoy the sweet, refreshing taste of Marketside Watermelon Chunks. This pre-cut watermelon is great for breakfast, lunch, dessert, or when you want a snack. You can eat them right out of the container, use them to infuse water for a refreshing drink, or chop them up and make a mouthwatering watermelon salad with feta and mint. With 42-ounces in each container, this watermelon is great for sharing with friends and family or keeping it for yourself. It comes in a reclosable container to help maintain freshness. Bring home Marketside Watermelon Chunks today for a refreshing, healthy treat. Marketside provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Marketside item.', 'Sweet and Juicy Sweet, refreshing treat Great for breakfast, lunch, dessert, or when you want a snack Enjoy right out of the Tray or add to a delicious fruit salad Re-closable package helps maintain freshness Keep refrigerated until ready to enjoy', 'Marketside', 'https://i5.walmartimages.com/asr/26f3dda4-7907-43b4-9766-cbd1d022203a.13a39530a74aff741517199fa9dfb8c6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/26f3dda4-7907-43b4-9766-cbd1d022203a.13a39530a74aff741517199fa9dfb8c6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/26f3dda4-7907-43b4-9766-cbd1d022203a.13a39530a74aff741517199fa9dfb8c6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47184184, 'Pineapple Chunks, 42 oz', 9.76, '077745248646', 'Experience a burst of tropical flavors with these Pineapple Chunks. The pre-cut slices of ripe pineapple are juicy and sweet to taste and are packed in its own juice. Carry them with you and eat them straight out of the tray any time you want, at home or on-the-go. You can also use them to top desserts and ice creams, in a fruit salad or blend them with milk to make milkshakes. Pineapples are known to have a number of nutrients, and they are especially rich in vitamin C. Add some fresh fruits to your daily menu today with these Freshness Guaranteed Pineapple Chunks.Freshness Guaranteed provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', '', 'Fresh Produce', 'https://i5.walmartimages.com/asr/727dc4fc-50ed-41ea-850b-5d6eab2d2afe_1.4a5fe0a5b8f0e00312d7944fcd0d70b9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/727dc4fc-50ed-41ea-850b-5d6eab2d2afe_1.4a5fe0a5b8f0e00312d7944fcd0d70b9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/727dc4fc-50ed-41ea-850b-5d6eab2d2afe_1.4a5fe0a5b8f0e00312d7944fcd0d70b9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47197248, 'Fresh Organic Bartlett Pears, 2 lb Bag', 3.98, '804305000938', 'Enjoy the fresh and delightful taste of USDA organic Bartlett pears. These high-quality, fresh pears are renowned for their sweet, juicy, and tantalizingly crisp texture, making them a perfect snack. They\'re versatile and can enhance many recipes. Use them to create a rich, creamy smoothie or a nutritious juice blend. Perfect for adding an extra crunch and flavor to salads, these pears are also fantastic for making sweet desserts like pear crisp, pear cobbler, or pear tarts. Bartlett pears are an excellent food choice for those who appreciate fresh, organic fruits. However you choose to use them, these fresh pears are bound to make any meal special.', 'Sweet, crisp & juicy Bartlett pears USDA certified organic for high-quality freshness Ideal for healthy snacking and culinary uses Create creamy smoothies or nutritious juice blends Add crunch and flavor to any salad or dish Enhance your recipes with the natural sweetness of pears', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7c007d25-96ce-400b-9e46-174710228653.e6247a95311f10e7dd02060065b7e9f3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c007d25-96ce-400b-9e46-174710228653.e6247a95311f10e7dd02060065b7e9f3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c007d25-96ce-400b-9e46-174710228653.e6247a95311f10e7dd02060065b7e9f3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47230052, 'French\'s Tomato Ketchup, 38 oz (3 Pack)', 8.91, '041500962832', 'Enjoy French\'s Tomato Ketchup on a wide variety of foods including burgers, fries and hot dogs. It is cholesterol free and made without high fructose corn syrup. With only real ingredients, it is free from preservatives as well as artificial flavors and colors. Made using U.S. farm-grown tomatoes, it offers delicious flavor in every bite. It is kosher certified and has no fat. This gluten-free tomato ketchup comes in a family size bottle.', 'French\'s Tomato Ketchup: Free from high fructose corn syrup Tomato ketchup bottle contains the wonderful flavor of U.S. farm-grown tomatoes Free from preservatives, artificial flavors, colors and gluten Enjoy on a wide variety of foods Kosher certified Family size bottle Wonderful taste Real ingredients 0 grams of fat Cholesterol free 38 oz', 'French\'s', 'https://i5.walmartimages.com/asr/32557797-1e0a-4766-9b20-70a3d0efb15f_1.c75f682f387ac351217e95a613dca67b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/32557797-1e0a-4766-9b20-70a3d0efb15f_1.c75f682f387ac351217e95a613dca67b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/32557797-1e0a-4766-9b20-70a3d0efb15f_1.c75f682f387ac351217e95a613dca67b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47234816, '(6 pack) (6 Pack) Del Monte Tomato Wedges, 14.5 Oz', 8.09, '113102829858', 'Del MonteÃÂâÂÂÃÂî Tomato Wedges. It is natural source of vitamin C, a powerful antioxidant. It contains no artificial avors or preservatives.', 'Del Monte Tomato Wedges. Del MonteÃÂâÂÂÃÂî Tomato Wedges. Quality. Net wt 14.5 oz. (411g). Our garden\'s best, to brighten your plate. Natural source of vitamin C, a powerful antioxidant. No artificial avors or preservatives. Please recycle. Questions or comments? Call 1-800-543-3090 (Mon-Fri). For recipes and more, visit www.delmonte.com. ÃÂâÂÂÃÂéDel Monte Foods.', 'Del Monte', 'https://i5.walmartimages.com/asr/b88d7728-4869-4797-970c-f7d0b892a5ab_1.1c4ec93186e7f337c43d9d897cd3b285.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b88d7728-4869-4797-970c-f7d0b892a5ab_1.1c4ec93186e7f337c43d9d897cd3b285.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b88d7728-4869-4797-970c-f7d0b892a5ab_1.1c4ec93186e7f337c43d9d897cd3b285.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47308009, 'Whole Fresh Fingerling Potatoes, 1.5 lb Bag', 3.47, '826429906156', 'Fingerling Potatoes, 1.5 Lb. Add a gourmet touch to your meals with these 1.5 lb. bags of versatile fingerling potatoes. Perfect for roasting, boiling, or sautéing, their thin skin and nutty, buttery taste pair well with various herbs and seasonings. Elevate your dishes and impress your guests with these delicious, easy-to-prepare fingerlings, a delightful addition to any dinner table.', 'Fresh Fingerling Potatoes 1.5 Lb Bag Add a gourmet touch to your meals with these 1.5 lb. bags of versatile fingerling potatoes. Perfect for roasting, boiling, or sautéing, their thin skin and nutty, buttery taste pair well with various herbs and seasonings. Elevate your dishes and impress your guests with these delicious, easy-to-prepare fingerlings, a delightful addition to any dinner table. Find these at your local Walmart!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/309c4754-90fa-4231-b455-1e93c4483e00.2c93acef6cea47187e840b9c675e8459.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/309c4754-90fa-4231-b455-1e93c4483e00.2c93acef6cea47187e840b9c675e8459.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/309c4754-90fa-4231-b455-1e93c4483e00.2c93acef6cea47187e840b9c675e8459.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47308010, 'King Rustic Potatoes, 10 lbs', 5.94, '024617700108', '', 'King Rustic Potatoes, 10 lbs', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7c7c06ce-1ae7-4088-bb47-f4458a86bdfe_1.b1c0f8ea77a6a9611f75c90a35f70d29.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c7c06ce-1ae7-4088-bb47-f4458a86bdfe_1.b1c0f8ea77a6a9611f75c90a35f70d29.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c7c06ce-1ae7-4088-bb47-f4458a86bdfe_1.b1c0f8ea77a6a9611f75c90a35f70d29.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47308012, 'Fresh Whole Small Potatoes, 5 lbs', 2, '033383530147', 'Introducing our Small Potatoes 5 lbs pack, a versatile and nutritious addition to your pantry. These petite yet flavorful potatoes are perfect for a variety of dishes, from delicious appetizers to satisfying mains. Boil, roast, or fry them to create mouthwatering meals for your family and friends. Grown with care and hand-selected for quality, our Small Potatoes 5 lbs pack offers you the best in taste and freshness, making them a must-have staple for every kitchen.', 'Small Potatoes, 5 lbs Introducing our Small Potatoes 5 lbs pack, a versatile and nutritious addition to your pantry. These petite yet flavorful potatoes are perfect for a variety of dishes, from delicious appetizers to satisfying mains. Boil, roast, or fry them to create mouthwatering meals for your family and friends. Grown with care and hand-selected for quality, our Small Potatoes 5 lbs pack offers you the best in taste and freshness, making them a must-have staple for every kitchen.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/50e2a8e4-d19d-4645-9caf-0c3a8f68f0b2.546f1b6919f92a19b17005ce9f0d057b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/50e2a8e4-d19d-4645-9caf-0c3a8f68f0b2.546f1b6919f92a19b17005ce9f0d057b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/50e2a8e4-d19d-4645-9caf-0c3a8f68f0b2.546f1b6919f92a19b17005ce9f0d057b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47308014, 'King Pak Whole Fresh Golden Potatoes 160 oz. Bag', 10.98, '605806002236', 'King Pak Golden Potatoes are a versatile and delicious ingredient that can be used in a variety of dishes. This 160 oz. (10 lbs) bag contains a generous amount of golden potatoes, making it perfect for large families, meal planning, or for those who simply enjoy incorporating potatoes into their meals. Golden potatoes, also known as yellow potatoes, are known for their smooth, slightly waxy texture and buttery flavor. They are a great all-purpose potato, suitable for various cooking methods such as boiling, baking, roasting, and frying.', 'Fresh King Pak Golden Potatoes are a versatile and delicious ingredient that can be used in a variety of dishes. This 160 oz. (10 lbs) bag contains a generous amount of golden potatoes, making it perfect for large families, meal planning, or for those who simply enjoy incorporating potatoes into their meals. Golden potatoes, also known as yellow potatoes, are known for their smooth, slightly waxy texture and buttery flavor. They are a great all-purpose potato, suitable for various cooking methods such as boiling, baking, roasting, and frying.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6728348a-f754-44ae-93cd-0743b4cadd26.b43807451fec54cc07921c982ca25d15.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6728348a-f754-44ae-93cd-0743b4cadd26.b43807451fec54cc07921c982ca25d15.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6728348a-f754-44ae-93cd-0743b4cadd26.b43807451fec54cc07921c982ca25d15.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47314766, 'Fresh White Nectarine, Each', 0.76, '850892002541', 'Discover the delightful sweetness of these Fresh White Nectarines. Enjoy them on their own as a sweet snack or use them in a variety of recipes. For breakfast, you could slice them to put into your oatmeal or use them to make a delicious yogurt parfait. You can also use these fresh nectarines in several baking recipes including a comforting crisp topped with ice cream, a tasty upside-down cake, or a scrumptious tart. You can even use them to make a jam or a smooth sorbet. However you choose to use them, their sweet flavor will bring a smile to everyone\'s face. Treat the family to the irresistible taste of Fresh White Nectarines.', 'Fresh White Nectarine, Each Enjoy on their own as a satisfying snack Bag Use in a variety of baking recipes Make a tasty jam or a smooth sorbet Slice as a sweet topping for waffles or pancakes Add to iced tea to create a refreshing summertime flavor', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5885f7a0-9ea1-47f8-94cc-8434f0cc5344.25ca231d45cd1f96b34be3024d8fa151.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5885f7a0-9ea1-47f8-94cc-8434f0cc5344.25ca231d45cd1f96b34be3024d8fa151.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5885f7a0-9ea1-47f8-94cc-8434f0cc5344.25ca231d45cd1f96b34be3024d8fa151.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47314798, 'Fresh Blackberries, 6 oz. Container', 2.37, '033383211053', 'The sweet, juicy flavor of Fresh Blackberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes or yogurt, bake them into mouthwatering blackberry cobbler, mix them with other fruit for a light and flavorful salad, or add them to a creamy smoothie. They contain essential vitamins and nutrients like vitamin C, fiber, potassium, vitamin K and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them with cool water and enjoy the fresh taste. Refrigerate the berries to keep them fresh and ready for use. Pick up a Fresh Blackberry container today and savor the delectable flavor.', 'Are you ready to experience the vibrant taste and health benefits of Fresh Blackberries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Blackberries are plump, juicy, and bursting with natural sweetness. The versatility of blackberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these tasty gems into your baking endeavors, whether it\'s cobblers, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Not only are blackberries delicious, but they also offer an array of health benefits. Loaded with vitamins and dietary fiber, blackberries are are a nutritious choice that will keep you feeling good from the inside out. Our Fresh Blackberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness. Treat yourself to the delightful taste and nutritional benefits of Fresh Blackberries. Elevate your dishes, satisfy your cravings, and experience the joy of these plump and juicy berries. Order your batch today and unlock a world of flavor and wellness.', 'Multiple', 'https://i5.walmartimages.com/asr/793944b7-a276-4e20-af31-f1c8b32ad824.d9f7092e633054695c13dd73233d3769.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/793944b7-a276-4e20-af31-f1c8b32ad824.d9f7092e633054695c13dd73233d3769.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/793944b7-a276-4e20-af31-f1c8b32ad824.d9f7092e633054695c13dd73233d3769.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47376050, 'Fresh Pie Pumpkin, Each (Approx. 1.7 - 2.8 lb)', 2.62, '400094768631', 'Celebrate the arrival of fall by making something delicious with these Fresh Pie Pumpkin, Each (Approx. 1.7 - 2.8 lb). These colorful pumpkins may be used as decor, carved into jack-‘o-lanterns, painting crafts or incorporated into a variety of recipes. Use them to make tasty pumpkin bread, muffins, or a crowd-pleasing pie. Create a vibrant display by placing these pumpkins near a hay bale and adding colorful fall foliage and an assortment of sunflowers. You could also use them to make a heartwarming centerpiece on your buffet table as you welcome friends and family into your home for Thanksgiving. The fall decorating and culinary opportunities are endless with these Fresh Pie Pumpkins, Each.', 'Fresh Pie Pumpkin, Each (Approx. 1.7 - 2.8 lb) Fresh pumpkins for decor, carving, or using in recipes Pumpkin sizes, shapes, and weights vary Weighs approximately 1.7-2.8 lbs Approximately 4.5\"-7\" in width Approximately 4.5\"-8\" tall Gather everyone around and carve something amazing Use to create a vibrant display on your front porch Make a centerpiece for your Thanksgiving buffet table', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ed14fbbe-ee4d-46a4-8f9b-d92bd353e77c.73f62b896bdd2e99c43b3eeba1d417c1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed14fbbe-ee4d-46a4-8f9b-d92bd353e77c.73f62b896bdd2e99c43b3eeba1d417c1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed14fbbe-ee4d-46a4-8f9b-d92bd353e77c.73f62b896bdd2e99c43b3eeba1d417c1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47376051, 'Mini Tiger Striped Pumpkins, Fresh Decorative Gourds, 3 Count Bag', 3.28, '892961001550', 'Celebrate the season with these Fresh Mini Tiger Striped Pumpkins. Each 3-count bag includes naturally striped orange and white pumpkins, perfect for bringing a festive autumn touch to your home décor. Use them to style a Thanksgiving centerpiece, add charm to your Halloween decorations, or brighten your porch display alongside mums and hay bales. Their compact size and bold striping also make them ideal for craft projects and DIY seasonal activities.', 'Fresh mini pumpkins with natural orange and white stripes Perfect for fall décor, Halloween displays, and Thanksgiving tables Great for porch styling, table centerpieces, or seasonal party décor Ideal size for crafting, kids’ projects, and DIY decorations Convenient 3-count bag for easy seasonal decorating', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2583c182-b03c-47e4-8889-7a5b695f537a.f253d2ab6143a87c336d9630ecff60eb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2583c182-b03c-47e4-8889-7a5b695f537a.f253d2ab6143a87c336d9630ecff60eb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2583c182-b03c-47e4-8889-7a5b695f537a.f253d2ab6143a87c336d9630ecff60eb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47376052, 'Fresh Mini Pumpkins, 5 Count Bag, Whole Seasonal Fall Décor', 3.28, '835375006971', 'Fresh Mini Pumpkins add festive style to your seasonal decorating. This 5 count bag includes whole pumpkins in petite sizes that bring natural color and texture to your fall décor. Use them to create a warm table centerpiece, brighten your front porch, or accent a Halloween display. Fresh Mini Pumpkins are a versatile way to celebrate autumn, offering a classic and natural look that enhances your home for Halloween, Thanksgiving, and everyday fall decorating.', 'Fresh mini pumpkins perfect for fall and holiday decorating Includes 5 whole pumpkins in each bag Ideal for Halloween displays, Thanksgiving tables, and seasonal centerpieces Naturally varies in size and shape for a unique look Great for porch decorating, entryways, or indoor accents Adds natural autumn color and texture to home décor', 'Fresh Produce', 'https://i5.walmartimages.com/asr/86481a1e-1b20-49d5-bc10-f000710664d0.1b2da0371ca20395464321b3250cf76d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/86481a1e-1b20-49d5-bc10-f000710664d0.1b2da0371ca20395464321b3250cf76d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/86481a1e-1b20-49d5-bc10-f000710664d0.1b2da0371ca20395464321b3250cf76d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47428850, 'Fresh Carving Pumpkin, Each', 3.97, '687615323238', 'Celebrate the arrival of fall by decorating with Fresh Carving Pumpkins, Each. These pumpkins may be used as decor, carved into jack-\'o-lanterns, or incorporated into a variety of recipe as dish settings! Create a vibrant display throughout your home and outside to showcase the fall season! You could also use them to make a heartwarming centerpiece on your buffet table as you welcome friends and family into your home for Thanksgiving. For a Halloween display, arrange them around a creepy scarecrow surrounded by spiders and cobwebs. The fall decorating opportunities are endless with these Carving Pumpkins.', 'Fresh pumpkins for decor, carving, or using in recipes Pumpkin sizes, shapes, and weights vary Weighs approximately 14-18 lbs Approximately 9.5\"-18\" in width Approximately 9.5\"-20\" tall Gather everyone around and carve something amazing Use to create a vibrant display on your front porch Make a centerpiece for your Thanksgiving buffet table', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f3d4664c-d7a9-4b61-903e-8ab908f00e08.09d2190a2dfd71c6cc73dafd968ab501.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f3d4664c-d7a9-4b61-903e-8ab908f00e08.09d2190a2dfd71c6cc73dafd968ab501.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f3d4664c-d7a9-4b61-903e-8ab908f00e08.09d2190a2dfd71c6cc73dafd968ab501.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47770124, 'Fresh Produce Whole Color Bell Peppers, 3 Count Bag', 2.47, '057836000049', 'Enhance your meals with the delicious flavor of Fresh Produce Whole Color Bell Peppers, 3 Count Bag. Dice these colorful bell peppers and put them in a hearty chili, slice them and add to a deli sandwich, saute them with onions and serve on a hoagie roll with a bratwurst, or stir-fry with thinly sliced steak and serve with rice. A hollowed-out bell pepper can be filled with sausage, mushrooms, and rice to create a delicious stuffed pepper that will have the family asking for seconds. With so many ways to prepare them, Fresh Color Bell Peppers are an excellent fresh produce vegetable to have on hand. Also known as Pimiento morrón, Capsicum, Filfil and Shimla mirch around the world.', 'Fresh Produce Whole Color Bell Peppers, 3 Count Bag Add to your favorite recipe, sandwith or raw Can also be great sliced and serve with your favorite dip Loaded with vitamin C and High in vitamin A Also known as Pimiento morrón, Capsicum, Filfil and Shimla mirch around the world Wash before eating', 'Fresh Produce', 'https://i5.walmartimages.com/asr/35eb8263-09ad-4149-8d97-51a0f44ff4da.e978648f96e2f9deff03d9a1742f8bb8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35eb8263-09ad-4149-8d97-51a0f44ff4da.e978648f96e2f9deff03d9a1742f8bb8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35eb8263-09ad-4149-8d97-51a0f44ff4da.e978648f96e2f9deff03d9a1742f8bb8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47770140, 'Fresh Red Seedless Grapes, Bag (2.25 lbs/Bag Est.)', 3.65, '000000040235', 'Treat yourself to the delicious, juicy flavor of Fresh Red Seedless Grapes Bag. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Fresh Red Seedless Grapes.', 'Fresh Red Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8e59c7de-1534-42f6-8ac7-9460aa0b45c4.f17a453b10f3c60533eef3abb0d7519a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8e59c7de-1534-42f6-8ac7-9460aa0b45c4.f17a453b10f3c60533eef3abb0d7519a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8e59c7de-1534-42f6-8ac7-9460aa0b45c4.f17a453b10f3c60533eef3abb0d7519a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (47885458, 'Golden State Fruit Fresh Imperial Comice Pears Gift Box with Holiday Ribbon', 28.35, '819354011699', 'The Golden State Fruit Imperial Comice Pears With Holiday Ribbon, 9 pc. can offer you a tasty way to spoil a loved one. It is filled with exotic produce for your family to enjoy. The Golden State Fruit box includes favorites like 9 fresh Comice pears. It comes with a green ribbon wrapped around it to add an elegant touch. The Golden State gift box can be personalized with a gift message too. The Golden State Fruit Imperial Comice Pears With Holiday Ribbon is packed fresh to order.', 'Golden State Fruit Imperial Comice Pears With Holiday Ribbon, 9 pc.: Includes: 9 fresh Comice pears Exotic fresh fruit basket full of warm climate cheer, a sweet way to send a basket of sunshine Comes with a green ribbon wrapped around it to add an elegant touch The Golden State gift box can be personalized with a gift message too All Golden State Fruit gift baskets are packed fresh to order', 'Golden State Fruit', 'https://i5.walmartimages.com/asr/137d4369-b680-4a8c-8281-a82d94f3e153.f394cafefb7eed242afb4c1cc0f43004.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/137d4369-b680-4a8c-8281-a82d94f3e153.f394cafefb7eed242afb4c1cc0f43004.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/137d4369-b680-4a8c-8281-a82d94f3e153.f394cafefb7eed242afb4c1cc0f43004.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (48387918, 'Fresh Medley Baby Potatoes, 1.5 lb Bag', 3.44, '045255141214', 'These Fresh Medley Baby Potatoes are a must-have for any pantry. With so many ways to prepare potatoes, you\'ll want to add them to every meal. For breakfast, you could make crispy hash browns smothered in cheese and diced ham or add them to a savory omelet. For lunch or dinner, you could use these fresh potatoes to make au gratin potatoes, garlic mashed potatoes, or a baked potato loaded with cheese, sour cream, green onions, and bacon bits. If you\'re hosting a neighborhood get-together, you can use them to make creamy potato salad or homestyle French fries. Serve up something delicious when you cook with Fresh Medley Baby Potatoes.', 'Must-have addition to every pantry Make crispy hash browns or add to an omelet Serve garlic mashed potatoes or a loaded baked potato Great for potato salad or homestyle French fries Explore all the delicious ways to serve these satisfying potatoes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3cedd9db-c8e1-4554-b16c-482da1c88284.be74438395a31e32cb6bafa534ea8885.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3cedd9db-c8e1-4554-b16c-482da1c88284.be74438395a31e32cb6bafa534ea8885.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3cedd9db-c8e1-4554-b16c-482da1c88284.be74438395a31e32cb6bafa534ea8885.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (48676864, 'Baby Roma Tomatoes, 1 pint', 2.78, '069905880025', 'Italian for wholesome and full of goodness, Mucci Farms Sano Baby Roma Tomatoes have a genuine authentic tomato flavor. They are bigger than grape tomatoes, but smaller than plum tomatoes (in the shape of miniature pears).*NEW_LINE*They are great for using whole in salads or sauce recipes that call for a great-tasting, naturally sweet small tomato.', 'talian for wholesome and full of goodness, Mucci Farms Sano Baby Roma Tomatoes have a genuine authentic tomato flavor. They are bigger than grape tomatoes, but smaller than plum tomatoes (in the shape of miniature pears).They are great for using whole in salads or sauce recipes that call for a great-tasting, naturally sweet small tomato.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/711d3e2b-560f-4043-9bab-83cfc6fc3736.fbeef82316a7e530f9e9b6ae05e2a53e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/711d3e2b-560f-4043-9bab-83cfc6fc3736.fbeef82316a7e530f9e9b6ae05e2a53e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/711d3e2b-560f-4043-9bab-83cfc6fc3736.fbeef82316a7e530f9e9b6ae05e2a53e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (48676919, 'The Little Potato Company Onion Medley Griller Potatoes, 1.0 lb', 5.62, '629307015649', 'The Little Potato Company is focused solely on carefully selecting and growing little potatoes that have outstanding flavors, great texture, and better nutrition. The unique, proprietary potato varieties are harvested when they\'re mature and at their best. You can taste the difference!', 'The Little Potato Company Onion Medley Griller Potatoes, 1.0 lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f0c6c80a-a378-40d2-a481-6a091a3b0d5b_1.ca67f57ba889bbfced2e635e38eca7a3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f0c6c80a-a378-40d2-a481-6a091a3b0d5b_1.ca67f57ba889bbfced2e635e38eca7a3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f0c6c80a-a378-40d2-a481-6a091a3b0d5b_1.ca67f57ba889bbfced2e635e38eca7a3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (48676922, 'The Little Potato Company Baby Boomer Yellow Potatoes, 1.5 lb', 3.84, 'deleted_629307121746', 'The Little Potato Company is focused solely on carefully selecting and growing little potatoes that have outstanding flavors, great texture, and better nutrition. The unique, proprietary potato varieties are harvested when they\'re mature and at their best. You can taste the difference!', 'The Little Potato Company Baby Boomer Yellow Potatoes, 1.5 lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5caa1209-ae11-4683-8322-eb00c603bdbf.13200e3997cecef283897f4181721e14.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5caa1209-ae11-4683-8322-eb00c603bdbf.13200e3997cecef283897f4181721e14.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5caa1209-ae11-4683-8322-eb00c603bdbf.13200e3997cecef283897f4181721e14.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (48676923, 'Little Potato Company Blushing Belle Fresh Whole Red Baby Potatoes, 1.5 lb Bag', 3.44, 'deleted_629307121944', 'Originally bred in Germany by one of the oldest breeding companies in Europe, Blushing Belle is extremely versatile, and adapts well to a variety of cooking methods. Named after its blushing red skin and buttery yellow flesh, Blushing Belle delivers a soft, light texture with mild, delicate flavor. Excellent roasted or mashed. The Little Potato Company is focused solely on carefully selecting and growing little potatoes that have outstanding flavors, great texture, and better nutrition. The unique, proprietary potato varieties are harvested when they\'re mature and at their best. You can taste the difference!', 'The Little Potato Company Blushing Belle Red Potatoes,Fresh 1.5 lb Originally bred in Germany by one of the oldest breeding companies in Europe, Blushing Belle is extremely versatile, and adapts well to a variety of cooking methods. Named after its blushing red skin and buttery yellow flesh, Blushing Belle delivers a soft, light texture with mild, delicate flavor. Excellent roasted or mashed. The Little Potato Company is focused solely on carefully selecting and growing little potatoes that have outstanding flavors, great texture, and better nutrition. The unique, proprietary potato varieties are harvested when they\'re mature and at their best. You can taste the difference!', 'The Little Potato Company', 'https://i5.walmartimages.com/asr/23ad38e3-027f-4998-ac08-165346d96dfa.91c9ca445bdb888daa75f2370e7a1fbb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/23ad38e3-027f-4998-ac08-165346d96dfa.91c9ca445bdb888daa75f2370e7a1fbb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/23ad38e3-027f-4998-ac08-165346d96dfa.91c9ca445bdb888daa75f2370e7a1fbb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49238696, 'The Little Potato Company Three Cheese Potatoes, 1 Lb.', 3.97, '629307016042', 'Potatoes, Three Cheese, Tray 1 LB New. Microwave ready. Fresh creamer potatoes with seasoning pack. 5 min. Good source of potassium. Gluten free. 8% DV of fiber for serving. A savory blend of rich parmesan, romano and cheddar cheese. In 1996, when my father and I introduced these flavorful little potatoes, we grew a one-acre plot that we harvested, washed and bagged by hand. Since then, we focus solely on selecting and growing creamer potatoes that are outstanding in taste, nutrition and texture. It\'s all we do. Our proprietary varietals are harvested when they are mature and at their best. My family and I still enjoy the original, diverse taste of these exceptional Creamer potatoes, and I am excited to share them with you. - Angela, co-founder and chief potato champion. 90 calories per serving. 4% DV of vitamin C. Naturally fat-free. Cholesterol free. Contains no artificial flavors or colors. LittlePotatoes.com. Facebook. Twitter. Pinterest. Instagram. These potatoes are washed and ready to cook. Do not puncture or remove the plastic film before cooking. 1. Remove cardboard sleeve and seasoning pack. 2. Place tray in microwave. Cook on high for 5 minutes (cooking times may vary). 3. Let rest 2 minutes then carefully remove plastic film and stir in seasoning pack. If desired, add 2 tbsp of butter or oil. Caution - contents will be hot. Serve and enjoy! To help retain freshness, please store in a cool, dry and dark place. Contains: milk. 16 oz (1 lb) 454 g Edmonton AB Canada T5S 2H6 855-516-6075', 'The Little Potato Company Three Cheese Potatoes, 1.0 lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/563e1dc9-13c0-4b9e-ae61-e299dfe7e6d2.663bc23f9c783ff05e8827f1f8a7aa19.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/563e1dc9-13c0-4b9e-ae61-e299dfe7e6d2.663bc23f9c783ff05e8827f1f8a7aa19.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/563e1dc9-13c0-4b9e-ae61-e299dfe7e6d2.663bc23f9c783ff05e8827f1f8a7aa19.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49342262, 'Melissa\'s Organic Baby Garnet Yams, 16 oz', 2.96, '045255139518', 'Yams, Baby Garnet, Organic, Pouch 16 OZ www.melissas.com. USDA organic. Certified organic by CCOF. Product of USA. 16 oz (1 lb) 454 g Los Angeles, CA 90051 800-588-0151', 'Baby Garnet Yams USDA Organic. www.melissas.com. Certified Organic by: CCOF. Product of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ac2d74a5-4ef7-4265-9600-6bd2471750ae_1.ab9028cd34f3cdca3232a7236f4f711e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac2d74a5-4ef7-4265-9600-6bd2471750ae_1.ab9028cd34f3cdca3232a7236f4f711e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac2d74a5-4ef7-4265-9600-6bd2471750ae_1.ab9028cd34f3cdca3232a7236f4f711e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49342263, 'Melissa\'s Organic Baby Jewel Yams, 16 oz', 2.96, '045255139525', '', 'Melissa\'s Organic Baby Jewel Yams: Beautiful color and rich flavor USDA Organic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7ee8f2f1-9d77-42a6-b953-919cae2bd62d.1ffcb09d2fe6780bc602ee0142cb26e1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7ee8f2f1-9d77-42a6-b953-919cae2bd62d.1ffcb09d2fe6780bc602ee0142cb26e1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7ee8f2f1-9d77-42a6-b953-919cae2bd62d.1ffcb09d2fe6780bc602ee0142cb26e1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49342264, 'Melissa\'s Organic Baby Sweet Potatoes, 16 oz', 2.96, '045255139532', '', 'Melissa\'s Organic Baby Sweet Potatoes: Beautiful color and rich flavor Beautiful color and rich flavorUSDA Organic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/da91c3ba-c8be-4b07-900c-66509ca8c8ab_1.bc2065a2081c6f441cdb59075f46d259.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/da91c3ba-c8be-4b07-900c-66509ca8c8ab_1.bc2065a2081c6f441cdb59075f46d259.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/da91c3ba-c8be-4b07-900c-66509ca8c8ab_1.bc2065a2081c6f441cdb59075f46d259.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49342265, 'Melissa\'s Organic Baby Japanese Yams, 16 oz', 2.96, '045255142129', '', 'Yams, Baby Japanese USDA Organic. Certified Organic By: California Certified Organic Farmers. www.melissas.com. Product of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8018106e-837b-4317-8b46-de65f2d62175.1fee2de592bc97d02527f8b9058c8eca.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8018106e-837b-4317-8b46-de65f2d62175.1fee2de592bc97d02527f8b9058c8eca.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8018106e-837b-4317-8b46-de65f2d62175.1fee2de592bc97d02527f8b9058c8eca.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49358464, 'Melissa\'s Fingerling Potato Medley, 24 oz', 3.67, '045255135732', 'Potato Medley, Fingerling, Bag 24 OZ Beautiful color and rich flavor. Great grilled, roasted, or in salads! US mixed. Recipes: melissas.com. Good Life Food. Melissa\'s Fingerling Potatoes are great in potato salads or as a savory side dish. They have exceptional texture and flavor when baked, roasted, boiled, steamed, sauteed or mashed. Try them in your favorite potato recipe. Please contact us or visit our website for delicious recipes. www.melissas.com. Product of USA. Store in a cool, dry place. 24 oz (1.5 lbs) 680 g Los Angeles, CA 90051 800-588-0151', 'Melissa\'s Fingerling Potato Medley:Buttery, thin-skinned fingerling potatoesBeautiful color and rich flavorHigh in vitamin CGood source of potassiumGreat grilled, roasted, or in salads', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2dbf54bf-e8e2-4d64-98dc-751fbf0b574d_1.088d9a0b8f9aae6e0b298878c2b60b36.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2dbf54bf-e8e2-4d64-98dc-751fbf0b574d_1.088d9a0b8f9aae6e0b298878c2b60b36.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2dbf54bf-e8e2-4d64-98dc-751fbf0b574d_1.088d9a0b8f9aae6e0b298878c2b60b36.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49400460, 'Pineapple Spears, 2 lbs', 8.48, '077745247113', 'Experience a burst of tropical flavors with these Pineapple Chunks. The pre-cut chunks of ripe pineapple are juicy and sweet to taste and are packed in its own juice. Carry them with you and eat them straight out of the tray any time you want, at home or on-the-go. You can also use them to top desserts and ice creams, in a fruit salad or blend them with milk to make milkshakes. Pineapples are known to have a number of nutrients, and they are especially rich in vitamin C. Add some fresh fruits to your daily menu today.', 'Pineapple, Chunks www.freshdelmonte.com. Product of Costa Rica.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f3703e51-3273-4377-a950-a23e870cc846.9ceb1d49199943f7bc67c177980abea2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f3703e51-3273-4377-a950-a23e870cc846.9ceb1d49199943f7bc67c177980abea2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f3703e51-3273-4377-a950-a23e870cc846.9ceb1d49199943f7bc67c177980abea2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49400465, 'Marketside Fresh Cut Fruit Duo, 10 oz Tray', 6.18, '717524778727', 'Enjoy a healthy snack with these Fresh Strawberries and Blueberries. The sweet juicy strawberries pair perfectly with the tender and slightly tart blueberries to provide you with the essential nutrients and a convenient snacking option. It is a great way to add a serving of delicious fruits in your daily diet. You could also use these fresh berries as a topping for your favorite ice cream or add them to a decadent cheesecake. The fruit is packed in a secure plastic bowl with a lid, making it convenient and portable. Have an easy, healthy treat on hand with these Fresh Strawberries and Blueberries.', 'Marketside Strawberry and Blueberry Fruit Duo 10 oz Comes in a re-closable plastic container to help maintain freshness Great for breakfast, lunch, dessert, or when you want a snack No preservatives, artificial colors or artificial flavors Convenient and portable Share with friends and family or keep for yourself Make a fruit bowl topped with whipped cream or a yogurt parfait Enjoy on their own or in a variety of recipes', 'Marketside', 'https://i5.walmartimages.com/asr/297846f5-314e-44eb-ae0c-2e19cb1b951e.a58a490d0ce36b3e5bb7ff76efc812db.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/297846f5-314e-44eb-ae0c-2e19cb1b951e.a58a490d0ce36b3e5bb7ff76efc812db.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/297846f5-314e-44eb-ae0c-2e19cb1b951e.a58a490d0ce36b3e5bb7ff76efc812db.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49400484, 'Fresh Grape Tomato, 4 oz Cup', 1.42, '714581000884', 'Add color and flavor to your next salad with these personal-sized fresh Grape Tomatoes. Similar to larger tomatoes, grape tomatoes have a lower water content than other snacking tomatoes, making them meatier and more flavorful, as well as less likely to make a mess when you bite into them. They are perfectly bite-sized which makes them not only ideal in salads and salsas but also perfect as a delicious and convenient snack all on their own. Plus, these small tomatoes also have a longer shelf-life, making it easy to store them for several days at a time and they are hardier and less fragile than a traditional tomato, meaning you no longer have to worry about bruising. Be sure to pick up Grape Tomatoes and experience just how convenient enjoying tomatoes can be.', 'Grape Tomatoes, 4 oz: Lower water content and longer shelf-life than cherry tomatoes Fresh produce Hardier and more resistant to bruising than traditional tomatoes Conveniently bite-sized Quick and excellent addition to salads and snack trays Best stored at room temperature out of sunlight', 'Fresh Produce', 'https://i5.walmartimages.com/asr/03c6a972-a393-4d91-b327-ceb4f03c465c.3ea08772d2d38cb4a989be66a8a1e104.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/03c6a972-a393-4d91-b327-ceb4f03c465c.3ea08772d2d38cb4a989be66a8a1e104.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/03c6a972-a393-4d91-b327-ceb4f03c465c.3ea08772d2d38cb4a989be66a8a1e104.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49509903, 'Cal-Organic Farms Organic Carrots, 80.0 oz', 3.96, '032601044008', 'Cal-Organic Farms® Organic Carrots. The best selected carrots. The USDA certified organic product.', 'USDA OrganicCal-Organic Farms® Organic Carrots.Healthy by choice.Since 1984.USDA Organic.Net wt 80 oz 5 lb 2.27 kg.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/44923803-21f1-41d6-9397-a1fc31f20ab3.0267ee6e021b22f8ea95949149059721.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44923803-21f1-41d6-9397-a1fc31f20ab3.0267ee6e021b22f8ea95949149059721.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44923803-21f1-41d6-9397-a1fc31f20ab3.0267ee6e021b22f8ea95949149059721.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49509904, 'New York Apple Sales Cortland Apples, 3 lbs', 3.57, '048739085233', 'New York Apple Sales Cortland Apples are full of surprises from their hint of pear flavor to their bright exterior.', 'New York Apple Sales Cortland Apples: Sweet, juicy and great for snacking Great for eating and salads, plus kabobs, fruit plates and even freezing', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f59d0814-b073-4091-881d-bcec030df721_1.ff0eb9fd63bbb57905a95634f27f5747.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f59d0814-b073-4091-881d-bcec030df721_1.ff0eb9fd63bbb57905a95634f27f5747.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f59d0814-b073-4091-881d-bcec030df721_1.ff0eb9fd63bbb57905a95634f27f5747.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49509905, 'New York Apple Sales Cortland Apples, 5 lbs', 4.92, '033383085074', 'New York Apple Sales Cortland Apples are full of surprises from their hint of pear flavor to their bright exterior.', 'Cortland Apples, 5 lb bag', 'Unbranded', 'https://i5.walmartimages.com/asr/02394829-d2ff-426e-aee1-a876ef9f5d52.cede18c89558b7fcbe50023ce6a89dbf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/02394829-d2ff-426e-aee1-a876ef9f5d52.cede18c89558b7fcbe50023ce6a89dbf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/02394829-d2ff-426e-aee1-a876ef9f5d52.cede18c89558b7fcbe50023ce6a89dbf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49509906, 'Hudson River Fruit New York Empire Apples, 5.0 LB', 4.92, '736264000233', 'Hudson River Fruit New York Empire Apples. EST 1963. Distributors.', 'APPLE EMPIRE 5# 5 OH', 'Hudson River Fruit Distributors', 'https://i5.walmartimages.com/asr/129e5756-976c-4667-8f77-61c3406fa04d_1.b3cbe9690bec8806e15a2d88000db0b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/129e5756-976c-4667-8f77-61c3406fa04d_1.b3cbe9690bec8806e15a2d88000db0b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/129e5756-976c-4667-8f77-61c3406fa04d_1.b3cbe9690bec8806e15a2d88000db0b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49510903, 'Plantains, 2 count', 0.5, 'deleted_000000031707', 'Delicious plantains have long been a traditional staple food in many tropical cultures. Chiquita Plantains are perfect to use at any stage of ripeness as a main or side dish, snack, or dessert. If green, fry them. If yellow, grill them.', 'Chiquita Plantains: Contains major vitamin groups Full of potassium Variety of uses for each stage of ripeness', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f51e4476-d789-4d83-8851-268f3e168715_1.cbe81b7613132b15a6cbc08f02533d60.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f51e4476-d789-4d83-8851-268f3e168715_1.cbe81b7613132b15a6cbc08f02533d60.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f51e4476-d789-4d83-8851-268f3e168715_1.cbe81b7613132b15a6cbc08f02533d60.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49511107, 'Marketside Fresh Organic Gold Potatoes, 3 lb Bag', 4.97, '078783908059', 'Marketside Organic Gold Potatoes are the perfect addition to your pantry. These organic gold potatoes are yellow with light brown skin and are suitable for baking, boiling and frying. They also fry up crisp and golden brown, and the buttery and smooth texture of baked gold potatoes go well with sour cream, chives and Latin or Mediterranean flavors. The semi-firm and moist flesh goes well in soups and chowders. Gold potatoes are also an excellent source of vitamin C and are fat, sodium and cholesterol free. This fresh produce item can last up to 3 to 5 weeks in a cool, dry pantry. Add a healthy starch to your diet today with this three-pound bag of Organic Gold Potatoes by Marketside. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Fresh Organic Gold Potatoes, 3-pound Bag USDA Organic Excellent roasted, stewed or baked Excellent source of vitamin C Delicious fresh produce', 'Marketside', 'https://i5.walmartimages.com/asr/59e5ed9c-009c-453d-b483-e3acd0858f3e.ddc79b736a99cc1bbfc3502efd4a00e8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59e5ed9c-009c-453d-b483-e3acd0858f3e.ddc79b736a99cc1bbfc3502efd4a00e8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59e5ed9c-009c-453d-b483-e3acd0858f3e.ddc79b736a99cc1bbfc3502efd4a00e8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49658301, 'Marketside Fresh Seedless Whole Grapes, 10 oz Tray, Ready-to-Eat', 3.63, '826766254002', 'Experience a burst of goodness with these Marketside Seedless Grapes. Carry it with you and eat the fruit straight out of the package any time you want, at home, or on-the-go. Pair with a tasty salad or sandwich for a nutritious and delicious lunch. You can also use them as a naturally sweet ingredient in a fruit salad. Add some fresh fruit to your day with this 10-ounce package of Marketside Seedless Grapes. Marketside provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Marketside item.', '10-ounce Tray package of fresh seedless grapes Keep refrigerated until ready to eat Add to a delicious fruit salad Re-closable package helps maintain freshness Great for a quick snack or for packing in lunches Convenient and ready to eat', 'Marketside', 'https://i5.walmartimages.com/asr/74df5c98-a967-4055-b0da-64e9faf5f1ff.56d3d6f9cb4c9671335e987ee0b09f7b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/74df5c98-a967-4055-b0da-64e9faf5f1ff.56d3d6f9cb4c9671335e987ee0b09f7b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/74df5c98-a967-4055-b0da-64e9faf5f1ff.56d3d6f9cb4c9671335e987ee0b09f7b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49658345, 'Apple Country New York State Macoun Apples, 5 lbs', 4.92, '879329003579', '', 'Apple Country New York State Macoun Apples: Extra sweet and aromatic Great for eating, baking, sauces, and salads These apples--when eaten or sliced--give off a wonderful fresh fruit flavor of autumn smell', 'Fresh Produce', 'https://i5.walmartimages.com/asr/176f4445-daac-4687-afc7-715739fe2f0d.16fabbf17e508a49d08f2ddff8f94cdc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/176f4445-daac-4687-afc7-715739fe2f0d.16fabbf17e508a49d08f2ddff8f94cdc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/176f4445-daac-4687-afc7-715739fe2f0d.16fabbf17e508a49d08f2ddff8f94cdc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (49699139, 'Marketside Fresh Cut Watermelon, 32 oz Tray', 7.36, '826766225309', 'Experience a burst of tropical flavors with some Marketside Cut Watermelon. This 32-ounce package of pre-cut ripe watermelon is juicy, sweet, and refreshing to the taste. In addition, watermelons are a great natural source of vitamins A and C. Carry them with you and eat them straight out of the tray any time you want, at home, or on-the-go. Pair them with a tasty salad or sandwich for a nutritious and delicious lunch. You can also use them part of a fruit salad. Add some fresh fruits to your daily menu and enjoy the refreshing taste of Marketside Cut Watermelon. Marketside provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Marketside item.', 'Marketside Fresh Cut Watermelon, 32 oz Pre-Cut Convenience: Fresh, sweet, juicy watermelon chunks are ready to eat, saving you time on preparation. Portable Packaging: Comes in a 32 oz tray, making it easy to take on the go for snacks or meals. Nutrient-Rich: A good source of vitamins A and C, contributing to your daily nutritional needs. No Artificial Additives: Free from preservatives, artificial colors, and artificial flavors, ensuring a natural taste. Versatile Use: Perfect as a standalone snack, addition to fruit salads, or as a refreshing side dish. Perishable Item: Keep refrigerated to maintain freshness and quality.', 'Marketside', 'https://i5.walmartimages.com/asr/d97b530a-d558-4503-825d-be0f281cd3f3.95a5a60085a6e868f8035a1f96052942.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d97b530a-d558-4503-825d-be0f281cd3f3.95a5a60085a6e868f8035a1f96052942.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d97b530a-d558-4503-825d-be0f281cd3f3.95a5a60085a6e868f8035a1f96052942.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259163, 'Dried Guajillo Chile Peppers, Bulk per lb', 7.64, '000000047128', 'Dried Guajillo Chile is a type of dried chili pepper that is widely used in Mexican cuisine. It is a moderately hot chili that is dark red in color and has a smooth, shiny skin. The Guajillo chile has a tangy, slightly sweet flavor with notes of berry and green tea. It is often used in sauces, salsas, and marinades for meats and fresh vegetables. The Guajillo chile is also an essential ingredient in adobo sauce, a popular Mexican seasoning paste that is used to flavor meats and stews.', '-Enjoy the great flavor of Dried Guajillo Chile in Mexican style cuisine for sauces, salsas, and marinades. - Key ingredient in adobo sauce for flavoring meats and stews. - Versatile ingredient in authentic Mexican recipes, enhancing both the visual and taste appeal of dishes!.', 'Melissa\'s', 'https://i5.walmartimages.com/asr/d04a7272-a78e-4ab2-b7bd-d418338e71f4.e44afed7299a0bf1ee822b869de99bbc.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d04a7272-a78e-4ab2-b7bd-d418338e71f4.e44afed7299a0bf1ee822b869de99bbc.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d04a7272-a78e-4ab2-b7bd-d418338e71f4.e44afed7299a0bf1ee822b869de99bbc.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259190, 'Fresh Meyer Lemons, 1 lb Bag', 2.18, '405547706802', 'Meyer lemons are perfect for flavoring both savory and sweet dishes. Squeeze lemon juice into water and add to teas or use in salad dressings or sauces. Great staple for marinating fish and chicken without making them too sour. Meyer Lemons are perfect for lemon-based desserts and lemonade and require less added sugar since they are a cross between a lemon and a mandarin orange. Available in a 1-pound bag.', 'Meyer Lemons, 1 lb bag Sweeter and less acidic than conventional lemons Refreshing herbal scent Bright yellow/yellow orange with a thin tender rind', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a9d2d5df-6df6-41de-9c48-693487089f47_1.37f24f4e5945e54cd674169517939a8b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a9d2d5df-6df6-41de-9c48-693487089f47_1.37f24f4e5945e54cd674169517939a8b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a9d2d5df-6df6-41de-9c48-693487089f47_1.37f24f4e5945e54cd674169517939a8b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259191, 'Organic Fresh Whole Carrots, 2 lb Bag', 2.62, '681131091206', 'Add some crunch to your next snack or meal with Marketside Organic Whole Carrots. These carrots are full of flavor and certified USDA organic. Enjoy them as an ingredient in your favorite recipes or simply enjoy them as a healthy snack on the go. Make it a tasty snack and serve with celery and ranch dressing or hummus for dipping. They are only 30 calories per serving, and there are about 12 servings per package. Enjoy farm fresh flavors with Marketside Organic Whole Carrots.Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes. Also known as Zanahoria orgánica, Organic carrot, Jazar and Gajar around the world.', 'Marketside Organic Whole Carrots, 32 oz: USDA organic Wash before use Use as an ingredient in your favorite recipes Enjoy as a healthy snack 30 calories per serving About 12 servings per package Keep refrigerated', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4ccb4d13-7f9d-43c4-9044-ee855cb00418.a19543f9c2a7152d279db832d6c7f2f9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ccb4d13-7f9d-43c4-9044-ee855cb00418.a19543f9c2a7152d279db832d6c7f2f9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ccb4d13-7f9d-43c4-9044-ee855cb00418.a19543f9c2a7152d279db832d6c7f2f9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259193, 'Fresh Organic Lemons, 2 lb Bag', 4.92, '729062120272', 'Add zest and flavor to your meals and beverages with Marketside Organic Lemons. A great source of vitamin C, lemons are a staple citrus fruit essential for any kitchen. Slice them and use them in your iced or hot tea or use the lemon juice to make satisfying and refreshing strawberry lemonade. Zest the lemon peel to use in recipes such as lemon cookies or a tasty lemon loaf. You can also use lemons in savory recipes like asparagus with lemon zest or shrimp scampi with linguini. You can even use lemon peels to clean around the house. For example, use lemon peels to clean microwaves and stovetops or as an all-purpose cleaner. Enhance the flavor of your next meal with Marketside Organic Lemons. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Lemons, 2 lb Bag: Great source of vitamin C Certified USDA organic Use to add zest & flavor to your meals & beverages Add to your iced or hot tea Make a satisfying & refreshing strawberry lemonade Use lemon zest to make lemon cookies or lemon loaf Adds flavor to a variety of recipes Lemons contain more potassium than apples or grapes Lemons also contain citric acid, flavonoids, B-complex vitamins, calcium, copper, iron, magnesium, phosphorus, potassium & fiber', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f61894c0-418d-4480-aee1-75053bc0416b.2196dcd833d1991780ecf36bd299451e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f61894c0-418d-4480-aee1-75053bc0416b.2196dcd833d1991780ecf36bd299451e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f61894c0-418d-4480-aee1-75053bc0416b.2196dcd833d1991780ecf36bd299451e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259195, 'Fresh Red Grapefruit, 5 lb Bag', 5.76, '877629002766', 'The ideal balance between tart and sweet, this Fresh Red Grapefruit is great for both savory and sweet dishes any time of day. Enjoy half of a grapefruit sprinkled with sugar with some eggs in the morning for a light, sweet breakfast. Slice it up and put in a salad with spinach, avocado, and red onion topped with a mustard and balsamic vinegar dressing for lunch or dinner. Make delicious grapefruit bars that showcase the sweet and tartness of this versatile fruit. In addition, it\'s a great source of vitamin C and vitamin A. With such versatility, Fresh Red Grapefruit will become a pantry staple in your home.', 'Fresh red grapefruit is great for both savory and sweet dishes Enjoy it for breakfast, lunch, dinner, or dessert Enjoy half a grapefruit sprinkled with sugar in the morning Slice it up and put it in salad for lunch or dinner Make delicious grapefruit bars Great source of vitamin C and vitamin A', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9b84af97-6b8d-4eae-b425-f5c61f424ac5.24cc26efbf95c43c758eac871c485527.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b84af97-6b8d-4eae-b425-f5c61f424ac5.24cc26efbf95c43c758eac871c485527.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b84af97-6b8d-4eae-b425-f5c61f424ac5.24cc26efbf95c43c758eac871c485527.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259197, 'Manzana Granny Smith, 1 Lb.', 0.73, '852908002163', 'Treat yourself to the delicious, crisp taste of Granny Smith Apples. These apples are known for their bright. Enjoy one with breakfast or lunch or as a fresh snack any time of day. Best of all, these delicious apples hold up well. They are a favorite of pie bakers and can be used for snacking, salads, pairing, or made into a delicious sauce that pairs perfectly with pork. Try incorporating them into soups and compotes or using to make yummy jam or juice. Use them to create apple crisp, pie and strudel for a sweet treat. You can even pair them with sharp cheeses and crackers to create a stunning appetizer cheese board to share with guests. The possibilities are endless with Granny Smith Apples.', 'Fresh Granny Smith Apples, Each: Bright green skin speckled with faint white spots Bright white, crisp flesh Tart, acidic yet subtly sweet flavor Can be enjoyed fresh or cooked into both savory and sweet dishes', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/bf2ec88a-2f36-41f2-93d3-c3161772733d_1.cdc913433c6acc6bf9201dc1fa86bac9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bf2ec88a-2f36-41f2-93d3-c3161772733d_1.cdc913433c6acc6bf9201dc1fa86bac9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bf2ec88a-2f36-41f2-93d3-c3161772733d_1.cdc913433c6acc6bf9201dc1fa86bac9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259199, 'Organic Marketside Fresh Baby Peeled Carrots, 1 lb Bag', 1.74, '032601041007', 'Add some fresh carrots to your next meal with Marketside Organic Baby Carrots. They are cut, peeled, washed and ready to eat for your convenience. With their crunchy texture and fresh taste, they are equally good for snacking on their own. They are perfect for adding as an ingredient in stews, casseroles and soups. Serve them with grilled chicken breast and green beans, or use them in your own recipes. Enjoy with a side of ranch dressing or hummus for dipping. These baby carrots are certified organic, and are an excellent source of vitamin A. Snacking is made easy with Marketside Organic Baby Carrots. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Baby Carrots, 16 oz Cut, peeled and ready to eat USDA Organic Serve with ranch dressing or hummus for a perfect snack Excellent source of vitamin A', 'Marketside', 'https://i5.walmartimages.com/asr/0f9fb9a3-5148-4ba9-a109-e69878a6fc5c.89437a32c2a0a5f821f321a42c0bdc9f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0f9fb9a3-5148-4ba9-a109-e69878a6fc5c.89437a32c2a0a5f821f321a42c0bdc9f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0f9fb9a3-5148-4ba9-a109-e69878a6fc5c.89437a32c2a0a5f821f321a42c0bdc9f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259204, 'Fresh Anjou Pears, Each', 1.38, '204025000001', 'Treat yourself to the delicious, sweet taste of Anjou Pears. Enjoy one with breakfast or lunch or as a fresh snack any time of day. Best of all, these delicious pears have a dense flesh that holds up well when cooked. They can be used for baking, snacking, salads, pairing, or made into a delicious sauce that pairs perfectly with pork. Try incorporating them into soups and compotes or using to make yummy jam or juice. They are delicious when sliced fresh in salads or eaten out-of-hand for a refreshing snack. You can even pair them with sharp cheeses and crackers to create a stunning appetizer cheese board to share with guests. The possibilities are endless with Anjou Pears.', 'Fresh Anjou Pears, Each: All-purpose pears known for their juiciness Subtle sweetness with a Refreshing lemon-lime flavor Good for baking, poaching, roasting, or grilling Can be enjoyed fresh or cooked into both savory and sweet dishes All-purpose pears known for their juiciness Subtle sweetness with a Refreshing lemon-lime flavor Good for baking, poaching, roasting, or grilling Can be enjoyed fresh or cooked into both savory and sweet dishes Make a creamy smoothie or a nutritious juice blend Perfect as a healthy treat or seasonal baking ingredient Great for packing in lunches Make a creamy smoothie or a nutritious juice blend Adds flavor to a variety of recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3634a46d-cbfd-41df-bb55-61dc030c5e09.9ad98c7758dd41a65f67ac3b6832e317.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3634a46d-cbfd-41df-bb55-61dc030c5e09.9ad98c7758dd41a65f67ac3b6832e317.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3634a46d-cbfd-41df-bb55-61dc030c5e09.9ad98c7758dd41a65f67ac3b6832e317.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259208, 'Fresh Whole White Onions, Each', 1.03, '853120003129', 'Add flavor to your next meal with these Fresh, Whole White Onions. For breakfast, you could dice them and add to an omelet loaded with cheese, ham, and mushrooms. You can dice these onions and add them to a fresh garden salad for a satisfying crunch or sprinkle them on top of your fish tacos. White onions also make delicious golden onion rings to serve alongside juicy hamburgers and hot dogs at your next backyard barbecue. You can keep these onions at room temperature until ready to use. Stock your pantry with several Fresh, Whole, White Onions.', 'Fresh whole white onions Ideal ingredient in a variety of recipes Can be sauteed and put in your favorite foods for added flavor Use to top sandwiches, hamburgers, and hot dogs Fresh onions can be stored in a cabinet or pantry and are easy to prepare', 'Fresh Produce', 'https://i5.walmartimages.com/asr/efe28fe8-5537-45ff-9de2-bb534a963c97.00e9aa917c1121c4874b00e3fc312ec7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/efe28fe8-5537-45ff-9de2-bb534a963c97.00e9aa917c1121c4874b00e3fc312ec7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/efe28fe8-5537-45ff-9de2-bb534a963c97.00e9aa917c1121c4874b00e3fc312ec7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259209, 'Fresh Pink Lady Apples, 3lb Bag', 3.54, '033383087825', 'Treat yourself to the delicious, crisp taste of Pink Lady Apples. These apples are known for their vivid green skin covered in a pinkish blush, crunchy texture, and tart taste with a sweet finish. Enjoy one with breakfast or lunch or as a fresh snack any time of day. with Pink Lady Apples. Super tasty Fresh Produce made with organic ingredients.', 'Includes 3 pounds of tart, crisp apples Tart taste with a sweet finish Pair them with sharp cheeses and crackers for a stunning appetizer board Can be enjoyed fresh or cooked into both savory and sweet dishes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2f834848-c7de-4697-b719-a10e4a31d796.fdd15236d674bcf3c4916de7b1c25eb9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f834848-c7de-4697-b719-a10e4a31d796.fdd15236d674bcf3c4916de7b1c25eb9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f834848-c7de-4697-b719-a10e4a31d796.fdd15236d674bcf3c4916de7b1c25eb9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259212, 'Fresh Whole Yellow Onion, Each', 0.7, '851339002179', 'Give all of your dishes a wonderful flavor with these Fresh Yellow Onions. They can be added to all of your favorite foods including hamburgers, stir-fries, soups, and pizza and used to make onion rings and blooming onions as well. These onion vegetables can be sauteed or served raw and stored in a cool, dry area until you are ready to use them. They have a fresh taste that will put something extra in your dish. These onions are easy to peel and quick to prepare so you can serve them on your dinner plate in no time. Add these Fresh Yellow Onions to your next dish and impress others with your culinary skills.', 'Whole fresh yellow onions, each Less pungent than other varieties of onions Mild, all-purpose flavor Great for roasting, caramelizing, grilling, and more Good for long cooking times (roasts, braises, stews, etc.) Yummy addition to salads and relishes Can be made into onion confit or onion rings Packed with minerals and vitamins', 'Fresh Produce', 'https://i5.walmartimages.com/asr/980c6780-7179-491e-978f-8101cdda6760.60f5a7e656c6aea9d94f732ca795dddf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/980c6780-7179-491e-978f-8101cdda6760.60f5a7e656c6aea9d94f732ca795dddf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/980c6780-7179-491e-978f-8101cdda6760.60f5a7e656c6aea9d94f732ca795dddf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259213, 'White Onions, 2 lb bag', 3.57, 'deleted_034924000471', 'Add flavor to your next meal with this 2 lb bag of Fresh, Whole White Onions. For breakfast, you could dice them and add to an omelet loaded with cheese, ham, and mushrooms. You can dice these onions and add them to a fresh garden salad for a satisfying crunch or sprinkle them on top of your fish tacos. White onions also make delicious golden onion rings to serve alongside juicy hamburgers and hot dogs at your next backyard barbecue. You can keep these onions at room temperature until ready to use. Stock your pantry with this two-pound bag of Fresh White Onions.', 'Fresh whole white onions, 2-lb bag Ideal ingredient in a variety of recipes Can be sauteed and put in your favorite foods for added flavor Use to top sandwiches, hamburgers, and hot dogs Fresh onions can be stored in a cabinet or pantry and are easy to prepare', 'Fresh Produce', 'https://i5.walmartimages.com/asr/df1d6d7c-e0f4-457c-bc12-acb5d6dcf073.c82b88c194d3bfcff3c5fddb36d61760.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/df1d6d7c-e0f4-457c-bc12-acb5d6dcf073.c82b88c194d3bfcff3c5fddb36d61760.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/df1d6d7c-e0f4-457c-bc12-acb5d6dcf073.c82b88c194d3bfcff3c5fddb36d61760.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259215, 'Fresh Whole Red Onion, Each', 0.99, '851339002186', 'Fresh Red Onions offer a delicious and simple way to add more vegetables to your diet. These onions are perfect for adding to multiple of your favorite recipes. Add them to your favorite pasta sauces; use them to top pizza; enhance the flavors of your soups, stews, and gumbo, incorporate them into meatloaf; or make delicious omelets or hearty casseroles. You can also dice them and put them in a zesty stir fry or dip the onions in batter to fry up some crowd-pleasing onion rings. Try them in a spicy salsa recipe or on your hamburgers and hot dogs. However you choose to use them, this fresh produce is a must-have for every kitchen pantry. Fresh Red Onions are tasty, versatile and the ideal choice for health-conscious individuals.', 'Fresh Red Onions offer a delicious and simple way to add more vegetables to your diet. These onions are perfect for adding to multiple of your favorite recipes. Add them to your favorite pasta sauces; use them to top pizza; enhance the flavors of your soups, stews, and gumbo, incorporate them into meatloaf; or make delicious omelets or hearty casseroles. You can also dice them and put them in a zesty stir fry or dip the onions in batter to fry up some crowd-pleasing onion rings. Try them in a spicy salsa recipe or on your hamburgers and hot dogs. However you choose to use them, this fresh produce is a must-have for every kitchen pantry. Fresh Red Onions are tasty, versatile and the ideal choice for health-conscious individuals.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6bf5e2ca-9924-4ba6-b74c-775f3f4a1f0f.e20492ce3de3076bfa0bc40c862c9c6c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6bf5e2ca-9924-4ba6-b74c-775f3f4a1f0f.e20492ce3de3076bfa0bc40c862c9c6c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6bf5e2ca-9924-4ba6-b74c-775f3f4a1f0f.e20492ce3de3076bfa0bc40c862c9c6c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259219, 'Fresh Anjou Pears, 3 lb Bag', 5.32, '804305000846', 'Treat yourself to the delicious, sweet taste of Fresh Anjou Pears. Enjoy one with breakfast or lunch or as a fresh snack any time of day. Best of all, these delicious pears have a dense flesh that holds up well when cooked. They can be used for baking, snacking, salads, pairing, or made into a delicious sauce that pairs perfectly with pork. Try incorporating them into soups and compotes or using to make yummy jam or juice. They are delicious when sliced fresh in salads or eaten out-of-hand for a refreshing snack. You can even pair them with sharp cheeses and crackers to create a stunning appetizer cheese board to share with guests. The possibilities are endless with Anjou Pears.', 'All-purpose pears known for their juiciness Subtle sweetness with a Refreshing lemon-lime flavor Good for baking, poaching, roasting, or grilling Can be enjoyed fresh or cooked into both savory and sweet dishes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/565ff93b-6c44-4a63-801c-7196dd46184d.74de9d1c4240934765b5ccc0bb694a96.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/565ff93b-6c44-4a63-801c-7196dd46184d.74de9d1c4240934765b5ccc0bb694a96.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/565ff93b-6c44-4a63-801c-7196dd46184d.74de9d1c4240934765b5ccc0bb694a96.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259223, 'Fresh Calabacita Squash, Each', 1.1, '000000047883', 'Add some fresh flavor to your meal with Calabacita Squash. This versatile vegetable can be used in a variety of dishes to create delicious and decadent meals. Roast the whole squash for a simple and flavorful side dish, chop it into cubes and put it in the slow cooker with chicken breast, kidney beans, and spices, or make noodles for a gluten-free pasta alternative. For a sweet treat turn the squash into a rich and spicy pie, perfect for the holiday season. With so many uses, this vegetable will become a pantry staple. Create tasty and flavorful meals with Calabacita Squash.', 'Versatile ingredient Roast the whole squash for the perfect side dish or chop into cubes, put into a slow cooker, and mix with chicken breast, beans, and spices for a flavorful dish Use it to create a sweet and spicy pie Will become a pantry staple', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3215e13c-345e-4a78-857c-67d6208b86b5.35c20643d7fb623f6697919e1cea88b4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3215e13c-345e-4a78-857c-67d6208b86b5.35c20643d7fb623f6697919e1cea88b4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3215e13c-345e-4a78-857c-67d6208b86b5.35c20643d7fb623f6697919e1cea88b4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259225, 'Yves Veggie Cuisine Kale & Quinoa Bites, 8.2 oz', 4.96, '060822008684', 'Kale & Quinoa Bites, Vegan, Tray 8.2 OZ Packed with veggies. Excellent source of vitamin A & C. Vegan. Gluten free. Questions? 1-800-667-Yves. www. yvesveggie.com. For recipes: yvesveggie.com/recipes. Replacing saturated fat with similar amounts of unsaturated fats may reduce the risk of heart disease. To achieve this benefit, total daily calories should not increase. Product of Canada. Conventional Oven: Place bites in a single layer on a baking sheet and bake for 13-14 mins at 400 degrees F (205 degrees C) or until heated through (Ensure internal temperature reaches at least 167 degrees F [75 degrees C]). Keep refrigerated. Manufactured in a facility that uses egg, milk and soy. 8.2 oz (235 g) Lake Success, NY 11042 800-667-YVES 2015 The Hain Celestial Group, Inc.', 'Kale & Quinoa Bites, Plant Based Good source of vitamin A & C. Non-GMO Project verified. nongmoproject.org. Packed with veggies. www.yvesveggie.com. Question? 1-800-667-YVES www.yvesveggie.com. For recipes visit: yvesveggie.com. Product of Canada.', 'Yves Veggie Cuisine', 'https://i5.walmartimages.com/asr/528c70b8-7e55-4f0e-a052-91c8304a5a23.a2a83503e803dd3261a09697881d440a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/528c70b8-7e55-4f0e-a052-91c8304a5a23.a2a83503e803dd3261a09697881d440a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/528c70b8-7e55-4f0e-a052-91c8304a5a23.a2a83503e803dd3261a09697881d440a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259227, 'Blush Potato, 3 Lb.', 2.47, '097419070311', '', '', 'NATURAL BLUSH', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259229, 'Fresh Mangoes, Each', 0.66, '094922506344', 'Get ready for big flavor with our Fresh Mangoes. This sweet, juicy tropical fruit originated in South Asia and has a soft, buttery texture and naturally sweet taste that the whole world has grown to love. They\'re delicious and nutritious, containing loads of vitamin C, which may act as an antioxidant and contribute to healthy immunity. They also have vitamin A, calcium, iron and fiber, so you can feel good about eating them. Slice up a mango and enjoy as a healthy, sweet snack, use it to make fresh mango salsa, or add it to sweet treats like creamy mango-lime bars or mango sorbet! The sky is the limit with this versatile fruit. Life is better when you have Fresh Mangoes.', 'Fresh Mangoes, each: Soft, buttery texture and naturally sweet taste Rich in vitamins A, C, calcium, iron, and fiber Makes a healthy snack Great addition to smoothies, salads, salsa, and more Can also be used to cook and bake with Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cc54242f-cb87-4a25-9baa-fccaa20f5443.64fa79325ad44a7352dcd3c2a8b477be.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc54242f-cb87-4a25-9baa-fccaa20f5443.64fa79325ad44a7352dcd3c2a8b477be.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc54242f-cb87-4a25-9baa-fccaa20f5443.64fa79325ad44a7352dcd3c2a8b477be.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259230, 'Fresh Persimmons, 1 Each', 0.49, '000000044288', 'Persimmons are rich in antioxidants and important nutrients, such as fiber and vitamin A. They have also been linked to several potential health benefits and can be enjoyed in a variety of dishes. You can eat persimmons fresh, dried, or cooked. They are also commonly used around the world in jellies, drinks, pies, curries, and puddings. They make a great addition to any sweet or savory dessert!', 'Creamy texture and a tangy-sweet vanilla like flavor Make a great addition in both sweet dishes for breakfast or dessert, or paired with cheese and greens for a salad or appetizer Contains a good amount of vitamin A and some vitamin C Sold by the each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c7ac26ed-4227-44d7-aff5-d088d95435a2_1.aac06e588578c578cf553db9ca16a2c6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ac26ed-4227-44d7-aff5-d088d95435a2_1.aac06e588578c578cf553db9ca16a2c6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ac26ed-4227-44d7-aff5-d088d95435a2_1.aac06e588578c578cf553db9ca16a2c6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259243, 'Pineapple Spears 10 oz', 3.48, 'deleted_826766255771', 'Pineapple Spears 10 oz', 'Pineapple Chunks, 10 oz', 'Ready Pac Foods', 'https://i5.walmartimages.com/asr/c8513a66-eda9-4c83-942b-3b82046a07ba.b0b76c8e51732c21aa2a4585cc866f33.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8513a66-eda9-4c83-942b-3b82046a07ba.b0b76c8e51732c21aa2a4585cc866f33.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8513a66-eda9-4c83-942b-3b82046a07ba.b0b76c8e51732c21aa2a4585cc866f33.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259250, 'Monterey Dried Shitake Mushrooms, 1 oz', 3.74, '037102289101', 'Fresh Shiitake, Bag 1 OZ Fine gourmet dried mushrooms. Recipe inside! 100% natural. Wildcrafted in Nature\'s Lab - the forest floor. Wild Light mushrooms - one of nature\'s miracles! Are full of rich flavor, nutritional goodness, and (some say) healing properties. Their fragrant magic, when preserved by drying, can be enjoyed year round. Simply soak dried mushrooms in warm water (or wine, or stock) for 20-30 minutes, then add to your favorite recipe. Save that soaking liquid and use as a stock or gravy base - it\'s full of concentrated mushroom flavor! Dried mushrooms keep for months, without refrigeration, and for a year or more if frozen. The traditional black mushroom of Oriental cuisine. The meaty flesh of the shiitake has a full-bodied, distinctively woodsy flavor. Originally wild-harvested in Japan and Korea, shiitakes are now cultivated around the world. Many health benefits have been attributed to eating shiitake mushrooms, including strengthening the immune system. Use shittake for a hearty mushroom soup or in savory sauces for meat and poultry. Excellent in risottos, omelettes, and quiche. Product of China. Always cook mushrooms before eating. 1 oz (24.8 g) Okemos, MI 800-367-4709', 'Dried Shiitake Mushrooms, 1 oz: Rich, full flavor Great for breakfast, lunch, or dinner Mince them for an omelet, slice them for a salad, or saute in barbeque sauce for a vegan sandwich Naturally fat-free and cholesterol-free Low in sodium and calories Excellent source of selenium Soak in warm water, wine, or stock fro 20-30 minutes Can keep for months, without refrigeration, and for a year or more if frozen ***Discontinued***GHS***MSH DRIED WHLE SHTKE', 'Monterey', 'https://i5.walmartimages.com/asr/3b405e18-dc4e-45bd-be5c-d26aef8a32a6_1.18841c33c2108681ee9d3371d0376e7a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3b405e18-dc4e-45bd-be5c-d26aef8a32a6_1.18841c33c2108681ee9d3371d0376e7a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3b405e18-dc4e-45bd-be5c-d26aef8a32a6_1.18841c33c2108681ee9d3371d0376e7a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259258, 'Marketside Fresh Butternut Squash, 16 oz', 3.47, '681131122351', 'Marketside Butternut Squash makes preparing this fantastic hard-shelled gourd easier than ever! Whole butternut squash can be difficult to cut and peel, so we\'ve done the work for you. Each bag includes a full pound of washed, chopped, and ready-to-cook butternut squash. This versatile and delicious vegetable can be prepared with an array of spices. Use it for sweet sides, such as cinnamon and brown sugar roasted squash, or for savory creations like garlic, Parmesan, and herb roasted squash. You can also add it to a casserole or make roasted butternut squash with pecans by following the recipe featured on the package. Explore the many possibilities of our Marketside Butternut Squash today. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Steams in minutes in the microwave Washed and ready to cook Keep refrigerated Great for both sweet and savory dishes', 'Marketside', 'https://i5.walmartimages.com/asr/f6a75a41-7654-49ae-a514-c3d2e85e3e88.512b168166d83aad565c934aaf178b1e.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f6a75a41-7654-49ae-a514-c3d2e85e3e88.512b168166d83aad565c934aaf178b1e.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f6a75a41-7654-49ae-a514-c3d2e85e3e88.512b168166d83aad565c934aaf178b1e.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259264, 'Ready Pac Bistro Puro Picante Blazin\' Hot Salad, 7.5 oz', 2.98, '077745297514', 'Salad, Bistro Bowl, Puro Picante Blazin\' Hot, Carton 7.5 OZ Crisp iceberg and romaine lettuces, white meat chicken, pepper jack cheese, black beans, corn and poblano peppers topped with blazin\' not cheese curls and a spicy ranch dressing. 260 calories. 11 g protein. Fork inside. Hot! Inspected for wholesomeness by US Department of Agriculture. www.readypac.com. Perishable. Keep refrigerated. Contains: milk, egg, wheat, soy. 7.5 oz (213 g) Irwindale, CA 91706 800-800-7822', 'Salad, Puro Picante Blazin\' Hot Crisp iceberg and romaine lettuces, white meat chicken, pepper jack cheese, black beans, corn and poblano peppers topped with blazin\' not cheese curls and a spicy ranch dressing. 260 calories. 11 g protein. Fork inside. Hot! Inspected for wholesomeness by US Department of Agriculture. www.readypac.com.', 'Ready Pac Foods', 'https://i5.walmartimages.com/asr/7e4bceb6-c772-4603-b43e-fdb55ec7a2a5.5f2f13a6ef4d9429d0401db9ac96c588.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7e4bceb6-c772-4603-b43e-fdb55ec7a2a5.5f2f13a6ef4d9429d0401db9ac96c588.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7e4bceb6-c772-4603-b43e-fdb55ec7a2a5.5f2f13a6ef4d9429d0401db9ac96c588.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259271, 'Ready Pac Bistro Santa Fe Salad Bowl, 12.5 Oz., 2 Count', 4.95, '077745295985', '', '', 'Ready Pac Foods', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259274, 'Green Giant Fresh Washed & Trimmed Green Leaf Lettuce, 7 oz', 3.07, '716519090028', 'Bring the refreshing taste of Green Giant Fresh Washed & Trimmed Green Leaf Lettuce to your home. These individual lettuce leaves are washed and ready to use right out of the package. These perfectly crisp fresh lettuce leaves are great for salads, burgers, sandwiches, wraps and more. This package features a peel and resealable film to keep your lettuce leaves fresh and crisp. The culinary possibilities are endless with of Green Giant Fresh Washed & Trimmed Green Leaf Lettuce.', 'Green Giant Fresh Washed & Trimmed Green Leaf Lettuce, 7 oz Wholesome, versatile, and delicious These individual lettuce leaves are washed and ready to use right out of the package Perfectly crisp fresh lettuce leaves are great for salads, burgers, sandwiches, wraps and more Package features a peel and resealable film to keep your lettuce leaves fresh and crisp', 'Fresh Produce', 'https://i5.walmartimages.com/asr/dabd2aa2-69be-4995-ae13-892816132f22.bdb51f35d2398481d7cf607d807b5731.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dabd2aa2-69be-4995-ae13-892816132f22.bdb51f35d2398481d7cf607d807b5731.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dabd2aa2-69be-4995-ae13-892816132f22.bdb51f35d2398481d7cf607d807b5731.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259299, 'Fresh Whole Carrots, 5 lb Bag', 4.77, '033383660035', 'Fresh Whole Carrots are delicious crunchy veggies perfect for snacking or using in recipes. Enjoy them as an ingredient in your favorite recipes or simply enjoy them as a healthy snack on the go. Peel, slice, and go! Make a tasty snack and serve these carrots with celery and ranch dressing or hummus for dipping. You can roast them in the oven with a little bit of olive oil and honey for a delectable side dish, or boil and mash them for a fun twist on traditional mashed potatoes. Carrots are one of nature\'s best sources of nutrients, rich in Vitamin A with antioxidant beta-carotene. Carrots provide dietary fiber and potassium. Health agencies recommend that you eat five or more servings of fruits and vegetables, which include carrots, every day for good health. Enjoy the delicious flavor and healthy crunch of Fresh Whole Carrots.', 'Fresh Whole Carrots 5-pound bag Excellent source of beta carotene, fiber, vitamin K1, potassium, and antioxidants No preservatives Perfect for snacking or using in recipes Perfect for packing in lunches or serving as a snack with dip', 'Fresh Produce', 'https://i5.walmartimages.com/asr/40af4930-3308-4d3d-a8f1-8f50ca6116a3.42dda044924c7d41d2f97c8d67217a08.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/40af4930-3308-4d3d-a8f1-8f50ca6116a3.42dda044924c7d41d2f97c8d67217a08.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/40af4930-3308-4d3d-a8f1-8f50ca6116a3.42dda044924c7d41d2f97c8d67217a08.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259300, 'Fresh Organic Marketside Petite Carrots, 12 oz Bag', 2.26, '032601046637', 'Marketside Organic Petite Carrots are cut, peeled and ready to eat for your convenience. These carrots are full of flavor and certified USDA organic. Enjoy them as an ingredient in your favorite recipes or simply enjoy them as a healthy snack on the go. Make it a tasty snack and serve with celery and ranch dressing or hummus for dipping. They also offer nutritional benefits as they are a good source of dietary fiber and vitamins A and C. These carrots come in a bag that is steamable in the microwave or you can heat them up on the stovetop. Enjoy farm fresh flavors with Marketside Organic Petite Carrots. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Cut and peeled USDA organic Ready to eat Microwaveable, steam in bag Great snack Serve with hummus and ranch dip', 'Marketside', 'https://i5.walmartimages.com/asr/0b8acef8-75c2-45c8-9400-2555ad7ad29d.6e57f30701d8db84abf702005614bd7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0b8acef8-75c2-45c8-9400-2555ad7ad29d.6e57f30701d8db84abf702005614bd7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0b8acef8-75c2-45c8-9400-2555ad7ad29d.6e57f30701d8db84abf702005614bd7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259301, 'Fresh Organic Grape Tomato, 10 oz Package', 2.83, '826375018224', 'Organic Grape Tomatoes are an exciting summer treat, and they\'re the perfect size for skewers, salads and roasting. These bite-sized grape tomatoes look and taste great. Grape tomatoes are a low-calorie treat that are also low in sodium and are a good source of fiber. Whether you are snacking or adding them to your favorite dish. their uses are almost limitless. Try these grape tomatoes with feta cheese, fresh dill and a drizzle of olive oil for a light and delicious Mediterranean treat. Or make a caprese salad with grape tomatoes, fresh basil, fresh mozzarella and balsamic vinegar. With 10-ounces of tomatoes in each package, you\'ll have plenty to make mouthwatering meals. Use your imagination to create delicious dishes with Organic Grape Tomatoes.', 'Organic Cherry Tomatoes, 10 oz Package: Perfect size for skewers, salads and roasting Low-calorie, low in sodium, and a good source of fiber Pair with feta cheese, fresh dill, and a drizzle of olive oil for a Mediterranean dish Certified organic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6b6dd728-49bd-438f-abbe-dc65033b7fc8.8f14e50c2cd84c4bfeb071d7d98cbadd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6b6dd728-49bd-438f-abbe-dc65033b7fc8.8f14e50c2cd84c4bfeb071d7d98cbadd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6b6dd728-49bd-438f-abbe-dc65033b7fc8.8f14e50c2cd84c4bfeb071d7d98cbadd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259302, 'Fresh Produce Whole Artichoke Vegetable, 1 Each', 2.78, '204516000008', 'Fresh globe artichokes are crisp and delicious, picked at the peak of freshness. They are easy to cook, boil, braise, stuff or bake for a tasty result. You can also enjoy as an appetizer, side dish or as a healthy snack. Artichokes have a tender and buttery flavor, softening beautifully when properly cooked. Add a nutrient-rich vegetable, that is naturally high in folate, vitamin C and K to your diet', 'Fresh Globe Artichoke – Crisp and delicious, picked at peak freshness Easy to Cook – Boil, grill, braise, or stuff and bake for tasty results. Tender & Buttery Flavor – Softens beautifully when properly cooked Healthy & Versatile – Enjoy as an appetizer, side dish, or wholesome snack Nutrient-Rich Vegetable – Naturally high in folate plus vitamins C and K', 'Fresh Produce', 'https://i5.walmartimages.com/asr/963a2841-33e9-4f14-9447-97a386e98b57.8e1796f357fdc621a34080ea9587a3eb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/963a2841-33e9-4f14-9447-97a386e98b57.8e1796f357fdc621a34080ea9587a3eb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/963a2841-33e9-4f14-9447-97a386e98b57.8e1796f357fdc621a34080ea9587a3eb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259305, 'Fresh Whole Heirloom Tomato, 2 Pack', 3.98, '686478999994', 'Enjoy the robust flavor of Fresh Whole Organic Heirloom Tomatoes. These tomatoes feature vibrant colors with sweet, juicy flavor in each bite, making them a versatile ingredient that\'s perfect for a wide range of dishes. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. They make an excellent addition to meals or simply enjoy them alone for a healthy and refreshing snack. Bring the fresh and delicious taste of Fresh Whole Organic Heirloom Tomatoes to your kitchen today!', 'Fresh Whole Heirloom Tomato, 2 Pack Sweet and juicy flavor in every bite Versatile ingredient that\'s perfect for a wide range of dishes Slice them up to garnish a sandwich or burger for added flavor and texture Dice them up to create a pizza or pasta topping Crush them up to make a decadent bruschetta or sauce Finely blend them to create your own personalized salsa', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0d3dd139-c5cb-4d25-9d2e-ca28307c381f.5917af0f7369587011a3183ba17f1708.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d3dd139-c5cb-4d25-9d2e-ca28307c381f.5917af0f7369587011a3183ba17f1708.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d3dd139-c5cb-4d25-9d2e-ca28307c381f.5917af0f7369587011a3183ba17f1708.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259307, 'Freshly Cut, Vibrant Green Broccoli Bunch, 1 Bunch Wrapped', 2.94, '012842001602', 'Getting your daily servings of vegetables is tastier than ever with fresh green Broccoli bunches. This bunch broccoli has everything a broccoli-lover could want, from its healthy green color to its even ratio of florets to stem. The consumption of broccoli has tripled over the past 25 years. Its popularity is due to an aesthetic appeal, delightful taste, versatile-culinary applications, and the fact that it is packed full of nutrition. Whether you are in the mood to steam, roast, or sauté, broccoli is a great way to get your daily dose of greens in for the day.', 'Bright-green color Healthy side to any meal Excellent steamed, roasted, sautéed, in soups or served raw with a favorite dip Even ratio of florets to stem; approximately 2 per bunch Freshly cut and ready to use Food Condition: Fresh', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c5dec8ec-eebd-4fbb-9ffb-420e621b75a6.aea71634538634282f78440020f4ca54.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c5dec8ec-eebd-4fbb-9ffb-420e621b75a6.aea71634538634282f78440020f4ca54.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c5dec8ec-eebd-4fbb-9ffb-420e621b75a6.aea71634538634282f78440020f4ca54.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259319, 'Italian Vegetable Blend', 3.06, '605806000454', 'This blend of Italian favorites–cabbage, Brussels sprouts, carrots, kale, broccoli, celery and onion–make a tasty and crunchy salad base. Or add a protein and top with dressing to make a complete meal in minutes.This Italian Vegetable Blend can also be added to soups or pasta sauce for extra heartiness. Comes in convenient resealable pouch–use what you need and keep the rest fresh for later.', 'This blend of Italian favorites–cabbage, Brussels sprouts, carrots, kale, broccoli, celery and onion–make a tasty and crunchy salad base. Or add a protein and top with dressing to make a complete meal in minutes.This Italian Vegetable Blend can also be added to soups or pasta sauce for extra heartiness. Comes in convenient resealable pouch–use what you need and keep the rest fresh for later.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7df645a9-8dac-4668-8d2b-b0199502e91d_1.514b2a5a33f8a09b9d9c6e05d7893d2d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7df645a9-8dac-4668-8d2b-b0199502e91d_1.514b2a5a33f8a09b9d9c6e05d7893d2d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7df645a9-8dac-4668-8d2b-b0199502e91d_1.514b2a5a33f8a09b9d9c6e05d7893d2d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259320, 'Green Giant Southwest Vegetable Blend, 12 oz', 3.06, '605806000478', 'This unique blend is made up of cabbage, carrots, celery, green onion and cilantro. Make a complete, tasty meal with this Southwest Vegetable Blend by adding corn, avocado, black beans, a favorite protein and topping it off with a cilantro lime dressing.These time-saving blends are a quick and easy start to making delicious, healthy soups, stews, or chili?also makes an excellent taco topper.', 'This unique blend is made up of cabbage, carrots, celery, green onion and cilantro. Make a complete, tasty meal with this Southwest Vegetable Blend by adding corn, avocado, black beans, a favorite protein and topping it off with a cilantro lime dressing.These time-saving blends are a quick and easy start to making delicious, healthy soups, stews, or chili?also makes an excellent taco topper.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2218ac6d-fd42-4ce6-a955-00a971df01d1_1.9247ac5466e221acdc83ae2de7e5838f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2218ac6d-fd42-4ce6-a955-00a971df01d1_1.9247ac5466e221acdc83ae2de7e5838f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2218ac6d-fd42-4ce6-a955-00a971df01d1_1.9247ac5466e221acdc83ae2de7e5838f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259322, 'Cut N Clean Greens Kale, 1 lb Bag', 2.44, 'deleted_028764652228', 'The living flavor and versatility of nutrient dense greens! A Fresh Mellow Cabbage FlavorKale: fresh mellow cabbage taste that pairs well with many other vegetables, fruits, herbs, spices and proteins. Kale\'s versatility makes it the perfect addition to any recipe that shows off its ruffly leaves. Try adding kale to your favorites pasta or soup recipe. Triple washed, cut & ready to use.Cut \'N Clean Greens come in special breathable bags to maximize freshness. Good food starts with good farming.From our farms to your family... San Miguel Produce is an innovative, sustainable family farm passionately focused on growing and processing quality, nutrient-dense greens.', 'Farm Fresh...Grower Direct', 'Cut \'N Clean Greens', 'https://i5.walmartimages.com/asr/45e1e489-a41c-4994-9830-17960cd4724e_1.3b335a6cff52dc7da7c9e304d9fcd926.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/45e1e489-a41c-4994-9830-17960cd4724e_1.3b335a6cff52dc7da7c9e304d9fcd926.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/45e1e489-a41c-4994-9830-17960cd4724e_1.3b335a6cff52dc7da7c9e304d9fcd926.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259324, 'Bacon Sriracha Brussels Bok Choy 10oz', 3.08, '688962016101', 'short description is not available', 'Bacon Sriracha Brussels Bok Choy 10oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259327, 'Organic Marketside Fresh Bagged Green Kale, 1 lb Bag', 4.76, '028764952816', 'Fresh Organic Green Kale 16 oz', 'Kale Greens, Organic USDA Organic. Certified Organic by Georgia Crop Improvement Association Organic Certification Program. Family owned. Real southern style. Goodness. Gracious, Glory. Glory Foods greens are fresh picked at the peak of their flavor and nutrients, triple washed, bagged and ready to cook. Fresh food. Fast. Because Glory Foods knows you\'d rather spend your time eating a home-cooked meal that nurtures the soul than preparing one. Real Southern style made easy. Find this in your local Walmart!', 'Marketside', 'https://i5.walmartimages.com/asr/18f00616-8b6d-47a4-8d92-cebd4e47948e.d74377329f0ac04301e91215c3591b49.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18f00616-8b6d-47a4-8d92-cebd4e47948e.d74377329f0ac04301e91215c3591b49.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18f00616-8b6d-47a4-8d92-cebd4e47948e.d74377329f0ac04301e91215c3591b49.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259330, 'Fresh Envy Apples, Each', 1.06, '000000033152', 'Treat your family to the wildly juicy, sweet and crisp taste of Envy Apples. With a classic apple cider flavor, these apples have a firm texture with flesh that is slow to brown. This variety was developed in New Zealand by master farmers and now grown in Zillah, Washington. A crossing of Braeburn and Gala varieties, this apple fruit is always cross-pollinated to ensure genetic diversity. Envy Apples retain their white color long after you\'ve cut them open, which ensures that your refreshing fruit salads and other desserts look beautiful and appetizing. Free of gluten, fat and cholesterol, these apples are a wholesome way to indulge your sweet tooth. Enjoy the sweet and healthy taste of Envy Apples.', 'Excellent snacking apple Make a creamy smoothie or a nutritious juice blend Free from genetic modification Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp & apple pie', 'ENVY APPLES', 'https://i5.walmartimages.com/asr/32451a10-0563-426a-9a16-a8865b2c3774_3.b3be01fcc4c956f51fe3890589897d31.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/32451a10-0563-426a-9a16-a8865b2c3774_3.b3be01fcc4c956f51fe3890589897d31.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/32451a10-0563-426a-9a16-a8865b2c3774_3.b3be01fcc4c956f51fe3890589897d31.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259331, 'Fresh Red Globe Seeded Grapes, Bag (2.25 lbs/Bag Est.)', 4.21, '895321002037', 'Treat yourself to the delicious, juicy flavor of Fresh Red Globe Whole Seeded Grapes. These grapes are bursting with sweet flavor and known for their large size. Enjoy a handful as a fresh snack any time of day or dry them for scrumptious raisins. You can even use them to make refreshing grape juice. They are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with cheese, crackers, or delectable meats like prosciutto. If you want to be creative, you can freeze them and use them as ice cubes in your favorite drinks. Treat yourself to the whole fresh taste of Red Globe Whole Seeded Grapes.', 'Fresh Red Globe Whole Seeded Grapes, Bag (2.25 lbs/Bag Est.) Bursting with flavor and known for their large size Enjoy a handful as a fresh snack Add to a stunning cheese board or charcuterie plate Dry them to make raisins Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/56a93cf7-e9e8-45d7-8891-b0f2dde7b90c.0bc56cfb5776a10494d8114303e1f507.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/56a93cf7-e9e8-45d7-8891-b0f2dde7b90c.0bc56cfb5776a10494d8114303e1f507.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/56a93cf7-e9e8-45d7-8891-b0f2dde7b90c.0bc56cfb5776a10494d8114303e1f507.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259334, 'Fresh Minneola, Each', 0.44, '000000044561', 'Known for their sweet, unique flavor, Minneola\'s add a sophisticated twist to your beverages and cocktails. Add a pinch of zest to your meals or add peeled sections to your salads. Due to its easy to peel skin and lack of seeds, these make a great snack for lunchboxes or on-the-go. These are also an excellent source of fiber and Vitamin C that help strengthen the immune system. Available by the each.', 'Delicious, sweet, juicy citrus Easy to peel and segment Excellent source of vitamin C, folate and potassium Seedless Great choice for lunchboxes or snacks on-the-go', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5144f96d-e0bc-47ea-aebd-801db965a311.2b7f30c61a7dd7caa2d6a012432c72e0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5144f96d-e0bc-47ea-aebd-801db965a311.2b7f30c61a7dd7caa2d6a012432c72e0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5144f96d-e0bc-47ea-aebd-801db965a311.2b7f30c61a7dd7caa2d6a012432c72e0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259335, 'Gourmet Garden Gluten Free Minced Garlic Stir-in Paste, 4.0 oz Tube', 3.94, '875208000707', 'Gourmet Garden Gluten Free Minced Garlic Stir-in Paste, 4 oz Tube. Gourmet Garden Minced Garlic Stir-in Paste is made for garlic lovers who make sure they always have their favorite herb on-hand. It\'s an easy way to add bold, savory flavor and minced garlic texture to your meals. Packed inside each squeezable tube is fresh garlic that\'s been peeled and minced to deliver its signature punch. Our garlic paste is at its best flavor, color and aroma when it reaches your table. Use it at the beginning of cooking to create a sweet, garlicky base. Add it at the end- traditionally garlic bread, marinades and sauces- for a deeper, more pungent flavor. Use 1 teaspoon of paste in place of 1 medium garlic clove. Store refrigerated for weeks after opening. This Gourmet Garden Minced Garlic Stir-in Paste is in a Plastic tube that is 4 ounces. Store this Refrigerated item at an ambient temperature.', 'Gourmet Garden Gluten Free Minced Garlic Stir-in Paste, 4 oz Tube Fresh minced garlic paste packed into a convenient squeezable tube No prep necessary Stays fresh in refrigerator for weeks after opening. Gluten Free Adds bold flavor to garlic bread, marinades and sauces Use 1 tsp. of paste in place of 1 medium garlic clove This product is in a Plastic Tube', 'Gourmet Garden', 'https://i5.walmartimages.com/asr/e5e65329-4010-4377-aa08-2942e4defd74.3d2a67ef309f8f58cc8f0fd0875c5a18.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5e65329-4010-4377-aa08-2942e4defd74.3d2a67ef309f8f58cc8f0fd0875c5a18.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5e65329-4010-4377-aa08-2942e4defd74.3d2a67ef309f8f58cc8f0fd0875c5a18.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259338, 'Marketside Fresh Organic Bananas, Bunch', 1.71, '000000940115', 'Enjoy the sweet, tropical taste of Marketside Organic Bananas. Bananas are a good source of several vitamins and minerals including potassium, vitamin B6 and vitamin C and are low in sodium. Enjoy them at breakfast, lunch, dessert, or anytime you want a healthy snack. Use them to make a whole loaf of moist banana bread and enjoy with a hot cup of coffee in the mornings or layer them with pudding and vanilla wafer cookies for a light, sweet banana pudding that\'s perfect for dessert. Simply peel open the banana and savor the delicious taste of this sweet fruit. Bring home Marketside Organic Bananas and make them a part of your day. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Fresh Organic Whole Bananas, Bunch Sweet, tropical flavor Enjoy at breakfast, lunch, dessert, or when you want a snack Good source of potassium, vitamin B6 and vitamin C and low in sodium Make banana bread or banana pudding and enjoy with a hot cup of coffee Peel open and enjoy One bunch contains approximately 5-7 bananas', 'Marketside', 'https://i5.walmartimages.com/asr/f17ef225-0999-4035-9ed1-7a06607333b4.7c3b33492f937bcc19fe3339d5230929.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f17ef225-0999-4035-9ed1-7a06607333b4.7c3b33492f937bcc19fe3339d5230929.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f17ef225-0999-4035-9ed1-7a06607333b4.7c3b33492f937bcc19fe3339d5230929.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259339, 'Fresh Mini Bananas, Bunch, Sweet', 1.11, '000000042345', 'Our fresh mini bananas are made with organic ingredients and are the perfect healthy snack! These sweet and delicious sweet fruits are filled with essential vitamins and minerals that provide energy and help maintain a balanced diet. Enjoy them as a quick on-the-go snack or add them to smoothies and desserts for a delicious treat. Trust us, you won\'t be disappointed!', 'Whole mini bananas, also known as baby bananas or finger bananas, are a type of fresh produce that comes in a smaller size compared to regular bananas, offering a convenient and portable snack option. As a fresh produce item, mini bananas retain their full nutritional value, providing essential vitamins and minerals such as potassium, vitamin C, and vitamin B6, which contribute to overall health and well-being. When consumed whole and ripe, mini bananas have a sweet, creamy taste and a soft texture, making them a delightful and satisfying snack or addition to various recipes, such as smoothies, fruit salads, or baked goods.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/351f0494-e31f-4021-b85e-06f255e3398c.8ab1a7c8e2f554c22428bf44fe7a680f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/351f0494-e31f-4021-b85e-06f255e3398c.8ab1a7c8e2f554c22428bf44fe7a680f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/351f0494-e31f-4021-b85e-06f255e3398c.8ab1a7c8e2f554c22428bf44fe7a680f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259341, 'Monterey Dried Oyster Mushrooms, 1 oz', 3.74, '643362110620', 'Mushrooms, Oyster, Dried, Pouch 1 OZ.', 'Mushrooms, Oyster, Dried Since 1928. America\'s favorite mushroom. Visit www.giorgiofresh.com. Recipe on back of label. www.giorgiofresh.com.', 'Monterey', 'https://i5.walmartimages.com/asr/c55cebde-e3b1-441b-bb24-5b0fee033886_1.99256881d2f8a75657e4628a44332924.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c55cebde-e3b1-441b-bb24-5b0fee033886_1.99256881d2f8a75657e4628a44332924.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c55cebde-e3b1-441b-bb24-5b0fee033886_1.99256881d2f8a75657e4628a44332924.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259342, 'Dried Mushrooms, 1 oz', 3.74, '037102289606', 'A popular ingredient in Europe and Asia for many, many centuries, Dried Mushrooms have been receiving attention in the culinary world due their versatility and economy. The flavor of dried mushrooms is more concentrated than their fresh counterparts, so less is needed for your favorite recipes. This particular blend of mushrooms features dried porcini, boletes, shiitake, morel, oyster and lobster mushrooms to provide you with a savory and versatile mixture of wild and cultivated flavors. For full flavor potential, use this blend to add a rich, hearty flavor to beef, pork and poultry recipes, vegetable soups, stir fry recipes, hunter stew, casseroles, rice dishes, pasta, stuffings, and sauces. Experience a recipe favorite in a new light with our Dried Mushrooms.', 'Dried Mushrooms, 1 oz: Store in a cool, dark place Shelf life is 6 to 12 months can be extended by freezing To reconstitute, cover with boiling water for 20-30 minutes Drain; reserve fluid for adding flavor to dishes, if desired Trim tough stems 1 ounce of reconstituted mushrooms equals 4 ounces of fresh mushrooms May contain naturally occurring sulfites', 'Unbranded', 'https://i5.walmartimages.com/asr/39023d4c-f04c-4302-8188-38ac557ac255.5ac744e7cba5d645e63aa319fd1f94c4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39023d4c-f04c-4302-8188-38ac557ac255.5ac744e7cba5d645e63aa319fd1f94c4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39023d4c-f04c-4302-8188-38ac557ac255.5ac744e7cba5d645e63aa319fd1f94c4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259343, 'Fresh Red Leaf Lettuce, each', 1.74, '000651041018', 'Fresh Red leaf lettuce is a loose head of crispy leaves with red-tinged tops. It offers a mild lettuce flavor and can be used as you would its green counterpart. Make a perfect salad and top it off with tomato, black olives, cranberries and almonds. Add it to a wrap or pop it in a sandwhich you wont be dissapointed. Find this at your local Walmart.', 'High in a variety of essential vitamins and minerals Very low in calories Rich in the antioxidant beta carotene', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c3017a6e-0de7-404d-9c08-7e1ed7ac4da0.2352f96905556978b7418097d9294ae4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c3017a6e-0de7-404d-9c08-7e1ed7ac4da0.2352f96905556978b7418097d9294ae4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c3017a6e-0de7-404d-9c08-7e1ed7ac4da0.2352f96905556978b7418097d9294ae4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259344, 'Fresh Cherry Tomato, 10 oz Clam Shell', 2.98, '033383655208', 'Bring the fresh, delicious taste of Slicing Tomatoes into your home. These tomatoes deliver sweet and juicy flavor with each bite and are an ideal ingredient in a variety of recipes. They would make a tasty, garden-inspired addition to salads, burgers, gourmet sandwiches, and so much more. They are picked at peak freshness and specially bred for deep red color, intense flavor, and higher lycopene content than standard tomatoes. Whether you slice or dice them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with these fresh Slicing Tomatoes.', 'Cherry Tomato, 1 Bag Wholesome, fresh, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a59807a2-bd89-4a64-9d7e-f263efc3d7a6.21a9d203fad771b7b512830fa740034f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a59807a2-bd89-4a64-9d7e-f263efc3d7a6.21a9d203fad771b7b512830fa740034f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a59807a2-bd89-4a64-9d7e-f263efc3d7a6.21a9d203fad771b7b512830fa740034f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259349, 'Simply Spuds Steamables Golden Potatoes, 1 lb', 2.77, '056210980380', 'Side Delights® Steamables™ Golden Potatoes. Ready to steam in this bag. These potatoes are triple washed and fresh, healthy & easy. A gluten free product. Microwave & serve in just 8 minutes.', 'Simply Spuds Steamables Golden Potatoes, 1.5 lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2185422d-edd9-4970-a38c-73cdaa80525d_1.35546e9fddbeda969dee559e0f267fbb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2185422d-edd9-4970-a38c-73cdaa80525d_1.35546e9fddbeda969dee559e0f267fbb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2185422d-edd9-4970-a38c-73cdaa80525d_1.35546e9fddbeda969dee559e0f267fbb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259350, 'PTO MICRO RED ID WD', 1.98, '842281099744', 'Potatoes, Klondike Rose Express, Red Skin, Golden Flesh, Bag 16 OZ Red skin, golden flesh. Per Serving: 110 calories; 0 g sat fat (0% DV); 0 mg sodium (0% DV); 1 g sugars; 620 mg potassium (18% DV); vitamin C (45% DV). Ready to serve in minutes. US No. 1 (3/4 inch min.). Fresh Steamed Potatoes are Ready to Serve in Just Minutes: Steamed to perfection, our potatoes maintain their rich flavor and buttery texture in this advanced microwave bag. It\'s never been easier to prepare a quick and healthy side dish. Dice, slice, mash or serve whole and apply your own seasoning - the options for these fresh, delicious steamed potatoes are endless. Self-venting steam bag. For great recipe ideas, visit www.klondikebrands.com. Produce of USA. Microwave Cooking: 1) Place unopened bag of fresh potatoes, this side up in a microwave safe bowl. Do not cut or puncture bag. Package will inflate and may make noises while cooking. 2) Microwave on high for 6 minutes. For softer texture, add up to 60 seconds. Microwave ovens may vary. Cooking time is approximate. 3) Let bag cool 1 minute. Carefully open bag - Steam will be hot. Empty into serving dish, season and enjoy. Be careful to avoid steam. Microwave only. Okay to refrigerate. Do not freeze. 16 oz (1 lb) 454 g Pasco, WA 99301', 'Simply Spuds Klondike Rose Express Potatoes, 1 Lb.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3c256ee1-c613-4643-bc29-2b9a36dc0c0f.2452938a709ec1aba7aff719a2a4185a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3c256ee1-c613-4643-bc29-2b9a36dc0c0f.2452938a709ec1aba7aff719a2a4185a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3c256ee1-c613-4643-bc29-2b9a36dc0c0f.2452938a709ec1aba7aff719a2a4185a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259357, 'Marketside Cauliflower Florets, 16 oz', 2.47, '681131122320', 'Add fresh and ready to eat cauliflower florets to your meal with Marketside Cauliflower Florets. Serve as is, or add your favorite spices for additional flavor. Add onion, thyme, garlic, olive oil, parmesan cheese, salt and pepper to cauliflower to create a yummy side dish. Marketside Cauliflower Florets are a quick and healthy side dish and a great addition to any meal. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes. Microwave: Pierce holes in bag with fork. Place on a microwave safe dish and microwave on high for 2 or 3 minutes. Using caution as the steam from the bag will be very hot.', 'Marketside Cauliflower Florets, 16 oz Microwave in bag Washed and ready to eat Ready in 3 minutes Picked fresh for you', 'Marketside', 'https://i5.walmartimages.com/asr/0aad7a2c-1854-465b-8a12-fb461b892220.0b915611b36ea3eb5e807e96c2c3be14.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0aad7a2c-1854-465b-8a12-fb461b892220.0b915611b36ea3eb5e807e96c2c3be14.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0aad7a2c-1854-465b-8a12-fb461b892220.0b915611b36ea3eb5e807e96c2c3be14.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259358, 'Green Giant Cauliflower Crumbles, 16 oz', 2.98, '605806000713', 'Green Giant™ Cauliflower Crumbles®.Chopped cauliflower.Great for mashing, pizza crusts, sauces & more!Recipe ready.Steams in pack.Gluten free.Per Serving:20 Calories.0g Sat fat, 0% DV.25mg Sodium, 1% DV.2g Sugars.Net Wt 16 oz (1 lb) (454 g). Perishable, keep refrigerated.Steam in pack Directions:1. Tear bag at notch.2. Close bag with zipper leaving 1-inch opening.3. Place bag standing up in microwave; microwave on high 4 minutes, or until desired tenderness*. Let stand 1 minute in microwave.4. Carefully remove bag. Caution hot!5. Ready to use as recipe ingredient, or add desired seasonings to taste and enjoy!*Because microwaves cook differently, times are approximate.', 'Cauliflower, Crumbles, Chopped Great for mashing, pizza crusts, sauces & more! Making comfort food healthy! Steams in pack. Box Tops for Education. Gluten free. Per serving: 20 calories; 0 g sat fat (0% DV0; 25 mg sodium (1% DV); 2 g sugars; Vitamin C (70% DV); Vitamin K (15% DV). Find delicious recipes, helpful tips & more: Scan code with app. greengiantfresh.com/cauliflower-crumbles. Find Delicious Recipes: GreenGiantFresh.com. Questions or comments? 1-800-998-9996. Follow Us On: Facebook and Twitter. Facebook. Twitter.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7b6d30da-69b0-4e78-9f25-3b94ec11c921.9b7c470841bebbf0ac5a4261238a84c2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7b6d30da-69b0-4e78-9f25-3b94ec11c921.9b7c470841bebbf0ac5a4261238a84c2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7b6d30da-69b0-4e78-9f25-3b94ec11c921.9b7c470841bebbf0ac5a4261238a84c2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259361, 'Fresh Green Onions Bunch, Each', 0.98, '723525040022', 'Add flavor to your next meal with Fresh Green Onions. For breakfast, you could dice them and add to an omelet loaded with cheese, ham, and mushrooms. Chop up the stalks into little rings and mix them into sour cream to create a delicious chip dip. You can also add them to a fresh garden salad or sprinkle them on top of your fish tacos. However you choose to use it, this fresh produce will add something delicious to any meal. Add color and flavor to any dish with these Fresh Green Onions. Also known as Cebollino, Scallion, Basal akhdar and Hara pyaz around the world.', 'Fresh Green Onion Bunch, Each Versatile ingredient Chop up the stalks into little rings and mix them into sour cream to create a delicious chip dip Use them to garnish a mouthwatering bowl of ramen Adds a hint of boldness to your dishes Easy way to add color and flavor to a dish Tasty fresh produce', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e3e6b87a-735c-4e00-b35b-c566d3f56ff3.e7440b87be49eb20ac956d0a2690822e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e3e6b87a-735c-4e00-b35b-c566d3f56ff3.e7440b87be49eb20ac956d0a2690822e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e3e6b87a-735c-4e00-b35b-c566d3f56ff3.e7440b87be49eb20ac956d0a2690822e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259365, 'Earthy Delights Mushrooms, 1 Oz.', 5.98, '037102289309', 'Porcini, Bag 1 OZ Fine gourmet dried mushrooms. Recipe inside! 100% natural. Wildcrafted in Nature\'s Lab - the forest floor. Wild mushrooms - one of nature\'s miracles! Are full of rich flavor, nutritional goodness, and (some say) healing properties. Their fragrant magic, when preserved by drying, can be enjoyed year round. Simply soak dried mushrooms in warm water (or wine, or stock) for 20-30 minutes, then add to your favorite recipe. Save that soaking liquid and use as a stock or gravy base - it\'s full of concentrated mushroom flavor! Dried mushrooms keep for months, without refrigeration, and for a year or more if frozen. Delectable fresh or dried, porcini mushrooms are among the most sought-after of all wild-harvest mushrooms. Porcini means little pigs in Italian, so called for their plump floor. In France they are known as cepes; to the Germans they are Steinpilz. With a rich, earthy flavor and heady aroma, porcini may be featured in savory sauces to accompany meat or poultry. Excellent in risottos, omelettes, or served with polenta. Wild harvested. www.earthy.com. Product of China. Always cook mushrooms before eating. May contain naturally occurring sulfites. 1 oz (24.8 g) Okemos, MI 800-367-4709', 'Mushrooms, Dried, Porcini Fine gourmet dried mushrooms. Recipe inside! 100% natural. Wildcrafted in Nature\'s Lab - the forest floor. Wild mushrooms - one of nature\'s miracles! Are full of rich flavor, nutritional goodness, and (some say) healing properties. Their fragrant magic, when preserved by drying, can be enjoyed year round. Simply soak dried mushrooms in warm water (or wine, or stock) for 20-30 minutes, then add to your favorite recipe. Save that soaking liquid and use as a stock or gravy base - it\'s full of concentrated mushroom flavor! Dried mushrooms keep for months, without refrigeration, and for a year or more if frozen. Delectable fresh or dried, porcini mushrooms are among the most sought-after of all wild-harvest mushrooms. Porcini means little pigs in Italian, so called for their plump floor. In France they are known as cepes; to the Germans they are Steinpilz. With a rich, earthy flavor and heady aroma, porcini may be featured in savory sauces to accompany meat or poultry. Excellent in risottos, omelettes, or served with polenta. Wild harvested. www.earthy.com. Product of China.', 'Earthy', 'https://i5.walmartimages.com/asr/bb8faf50-9f1c-43f2-90aa-db89382dc5e4_1.0f4800e434b68382af92ecc44ef5588d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bb8faf50-9f1c-43f2-90aa-db89382dc5e4_1.0f4800e434b68382af92ecc44ef5588d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bb8faf50-9f1c-43f2-90aa-db89382dc5e4_1.0f4800e434b68382af92ecc44ef5588d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259368, 'Fresh Green Leaf Lettuce, Each', 2.06, '033383651415', 'Fresh Green Leaf Lettuce is the perfect way to add more greens to your diet. This leafy lettuce is the perfect base for creating a variety of salads. Chop it up, add a protein like grilled chicken, a cheese like feta, candied pecans, and dried cranberries with a sweet vinaigrette for a sweet and tangy salad. Add it to spring rolls for a crunchy, refreshing addition. You could use it as a lettuce boat or wrap when you are wanting to still eat leafy greens but don\'t want a salad. It\'s low in calories making it perfect for adding to a healthy diet. Enjoy the crisp and refreshing taste of Fresh Green Leaf Lettuce.', 'Fresh Green Leaf Lettuce, Each Perfect base for creating salads Chop it and mix with grilled chicken, feta cheese, candied pecans, dried cranberries and a vinaigrette Add it to a spring roll for fresh addition Use it as a lettuce wrap or lettuce boat for something different Low calorie making it perfect for a healthy diet', 'Fresh Produce', 'https://i5.walmartimages.com/asr/43584fcd-d522-41d9-8b26-c8e671d4850e.86fe376258eaa7ba3a75e3e261877292.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/43584fcd-d522-41d9-8b26-c8e671d4850e.86fe376258eaa7ba3a75e3e261877292.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/43584fcd-d522-41d9-8b26-c8e671d4850e.86fe376258eaa7ba3a75e3e261877292.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259369, 'Fresh Keylimes, 1 lb Bag', 2.98, '033383146812', 'Add zest and flavor to your meals and beverages with these Key Limes. Freshly squeezed limes provide a healthy dose of vitamin C to your diet and are a key ingredient in many recipes, from homemade salsa to chicken dishes. The citrusy tropical flavor of these limes are sure to add a zing to all your cooked meals. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use them when baking cakes, cookies, and tarts. These limes are sold in a one-pound bag, so you\'ll have plenty for all your culinary creations. Enjoy the refreshing, tart flavor of Key Limes.', 'Fresh and juicy key limes Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies, and tarts Refreshing, tart flavor Available in a 1-pound bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/55de190c-7ec6-4b89-9dc6-2cdb721d6eb5.48fc6c58092b173dce51eeacf4703a2b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/55de190c-7ec6-4b89-9dc6-2cdb721d6eb5.48fc6c58092b173dce51eeacf4703a2b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/55de190c-7ec6-4b89-9dc6-2cdb721d6eb5.48fc6c58092b173dce51eeacf4703a2b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259372, 'Lil Snapper Blood Oranges, 3 Lb.', 4.5, '605049458302', 'The Moro Blood Orange is called \"the blood orange\" because of my intense maroon color on the inside. It has a rich orange taste with hints of berry flavor with an orange peel with a red blush.', 'Lil Snapper Blood Oranges', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259374, 'Robinson Fresh Orange Habanero Chili Peppers, 4 oz', 2.97, '852966005182', 'Add some spice to your meals with Habanero Peppers. Habanero chilies have a high spice level, so it\'s perfect for adding heat to your meals. These versatile peppers are an excellent addition to a multitude of dishes. For a sweet and spicy dish dice the habanero and mix it with diced mango, onion, cilantro, and tomatoes. You can make pepper jelly with the chopped chilis for a delicious jelly that can be spread on bagels, toast, and more. Make a habanero sauce to brush over your choice of protein, like buffalo wings, pork loin, or ribs. Use as little or as much of this fresh produce item as you like to get that perfect level of heat. Wash the peppers before use. Make this four-ounce tray of Habanero Peppers a staple in your pantry.', 'Fresh Habanero Peppers, 4 Ounce Tray High spice level peppers Perfect for adding heat to your dishes Versatile pepper Dice for pepper jelly, dice and mix with mango, onions, and tomatoes for salsa, or make a sauce and brush over your choice of protein Use as little or as much as you want to get the perfect amount of heat Delicious and fresh produce item Wash chilies before use', 'Robinson Fresh', 'https://i5.walmartimages.com/asr/5335890b-e820-43b4-a77d-99655c77526f.fad2dc5ccee7726bf0499aaec2ae908e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5335890b-e820-43b4-a77d-99655c77526f.fad2dc5ccee7726bf0499aaec2ae908e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5335890b-e820-43b4-a77d-99655c77526f.fad2dc5ccee7726bf0499aaec2ae908e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259378, 'Fresh Broccoli Crowns, Each', 1.83, '203082000009', 'These fresh broccoli crowns are a top-quality, nutritious choice for your meals. They are the premium cut of broccoli, with stalks trimmed just under the head to deliver maximum florets. Ideal for a variety of dishes such as steaming, roasting, or sautéing. These crowns are about 0.75 lbs each and packed in a recyclable, food-grade cardboard container, ensuring they are kept fresh and environmentally friendly. Enjoy them as a healthy side dish or snack with your favorite dip. Perfect for adding flavor and nutrients to soups and salads. Always choose fresh, organic produce for the best results. Also known as Brocoli and Kai-lan around the world.', 'Healthy side to any meal Excellent steamed, roasted, sautéed, in soups or served raw with a favorite dip Stalks cut short to offer greater ratio of florets per lb Approximately .75 lbs per crown Vegetable type: Fresh Broccoli Food condition: Fresh, never frozen Container type: Cardboard Box Container material: Recyclable, food-grade cardboard', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c721459d-3826-4461-9e79-c077d5cf191e_3.ca214f10bb3c042f473588af8b240eca.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c721459d-3826-4461-9e79-c077d5cf191e_3.ca214f10bb3c042f473588af8b240eca.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c721459d-3826-4461-9e79-c077d5cf191e_3.ca214f10bb3c042f473588af8b240eca.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259381, 'Fresh Coconut, Each, 1 Count', 2.74, '064081402009', 'Enjoy a taste of the tropics with a Fresh Coconut. Enjoying a fresh coconut couldn\'t be easier: just puncture the pre-scored eyes on top with a dull knife and pour out the delicious coconut water. After the water is gone, crack the coconut along the scored line, remove the coconut meat with a dull knife, and enjoy! There are so many ways to enjoy a fresh coconut; you can blend it into smoothies, cut it into chunks and add to stir fries and stews, use it as a garnish, blend it into dips and spreads, or even make your own shredded coconut for delicious desserts. Enjoy a tropical treat any time of year when you bring home a Fresh Coconut.', 'Enjoy the taste of the tropics any time of year Puncture the pre-scored eyes on top and pour out the coconut water When water is gone, crack along the scored line and remove the coconut meat Use in smoothies, stir fries, dips and spreads, as a garnish, or make your own shredded coconut Also known as Coco and Brown Coconut around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/81131765-9311-47ed-ae77-15dddde6b01d.7363231977ed5579d57e0b24cd7c1d9f.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/81131765-9311-47ed-ae77-15dddde6b01d.7363231977ed5579d57e0b24cd7c1d9f.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/81131765-9311-47ed-ae77-15dddde6b01d.7363231977ed5579d57e0b24cd7c1d9f.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259387, 'Fresh Grapefruit, Each', 1.24, '072240062063', 'Grapefruit is the perfect balance between tart and sweet. The balance between tart and sweet is great for both savory and sweet dishes any time of day. Enjoy half of a grapefruit sprinkled with sugar with some eggs in the morning for a light, sweet breakfast. Slice it up and put in a salad with spinach, avocado, and red onion topped with a mustard and balsamic vinegar dressing for lunch or dinner. Make delicious grapefruit bars that showcase the sweet and tartness of this versatile fruit. For an adult recipe juice the grapefruit and pair with some simple syrup and alcohol for a refreshing cocktail. This fruit is the perfect addition to a healthy diet as it is a great source of vitamin C and vitamin A. With such versatility, Grapefruit will become a pantry staple in your home.', 'Great for both savory and sweet dishes Enjoy it for breakfast, lunch, dinner, or dessert Enjoy half a grapefruit sprinkled with sugar in the morning, slice it up and put it in salad for lunch or dinner, or make grapefruit bars Great source of vitamin C and vitamin A', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9b886c2a-7fc2-4dbd-98fe-99c8e48e6944.f2698681c6f777003cfd13d7c6086d09.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b886c2a-7fc2-4dbd-98fe-99c8e48e6944.f2698681c6f777003cfd13d7c6086d09.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b886c2a-7fc2-4dbd-98fe-99c8e48e6944.f2698681c6f777003cfd13d7c6086d09.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259388, 'Fresh Hass Organic Bagged Avocados, 3-4 Count', 3.93, '701080310170', 'Avocados aren’t just great-tasting fresh produce items, but they are a nutrient-dense fruit that can be enjoyed throughout the year. Hass avocados are a versatile ingredient with a creamy texture and mild flavor that can be used in many different types of recipes and dishes that are perfect for enjoying at barbecues and outdoor gatherings with friends and family during the summer. Enjoy organic avocados in countless ways that will make those barbecues and gatherings with family and friends even more exciting. Use avocados in flavorful recipes that everybody can share and enjoy while being together outside. Try avocados in individual Mexican food items like tacos or burritos, as part of appetizers like avocado crostini, or in a fresh guacamole or avocado dip so everybody can dip tortilla chips into something delicious. The possibilities are deliciously endless if you need additional food options for barbecues. Not only is an organic avocado a great ingredient to use in numerous ways, but it is also a healthy food that contributes unsaturated “good” fats and almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9. An organic ripe avocado will have a dark green to nearly black skin color, a bumpy skin texture and should yield to gentle pressure without leaving indentations or feeling mushy. Avocados with a slightly bumpy texture should be ripe in 1 to 2 days. They will also be somewhat firm and have a dark green and black speckled color. Once you’ve selected the perfect bag of avocados, you’ll be ready to enjoy all kinds of different healthy foods and recipes for the next time you’re enjoying an outdoor gathering with friends and families.', 'Fresh fruit with a creamy texture and mild flavor Fresh avocados are great for using in tacos, burritos, appetizers, avocado dip and fresh guacamole so that you have delicious food to share and enjoy during barbecues and the summer months A cholesterol free fruit that contains almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9 Hass organic avocados are the lowest sugar fruit and provide unsaturated “good fats” that help absorb Vitamin A, Vitamin D, Vitamin K and Vitamin E Organic ripe avocados will have dark green to nearly black skin color, a bumpy texture and should yield to gentle pressure without leaving indentations', 'Unbranded', 'https://i5.walmartimages.com/asr/fccbe414-7ac5-49ba-8dfd-40f9ee96e683.f4a4225a6944971b127b8b012bf5a987.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fccbe414-7ac5-49ba-8dfd-40f9ee96e683.f4a4225a6944971b127b8b012bf5a987.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fccbe414-7ac5-49ba-8dfd-40f9ee96e683.f4a4225a6944971b127b8b012bf5a987.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259389, 'Marketside Fresh Broccoli Florets, 32 oz', 5.98, '681131122344', 'Add fresh and ready-to-eat broccoli florets to your meal with Marketside Broccoli Florets. These florets are an excellent source of vitamin A and vitamin C. Plus, they\'re easy to prepare! Just place desired amount of vegetables in a microwave safe dish and add one inch of water. Cover with a damp paper towel or plastic wrap and microwave on high for three to four minutes. Serve as is, or add your favorite spices for additional flavor. Add butter and cheese to steamed broccoli to create a tasty side dish. Marketside Broccoli Florets are a quick and delicious side dish and a great addition to any meal. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Fresh Broccoli Florets, 32 oz: Excellent source of vitamins A and C Serve as is, or season with salt, pepper, chili powder or garlic powder for additional flavor Quick and healthy side dish', 'Marketside', 'https://i5.walmartimages.com/asr/28f3e0d9-697b-4327-90f5-497042ebded3_1.dac2593a9c33b9ec08c83dcc0143e5f6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/28f3e0d9-697b-4327-90f5-497042ebded3_1.dac2593a9c33b9ec08c83dcc0143e5f6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/28f3e0d9-697b-4327-90f5-497042ebded3_1.dac2593a9c33b9ec08c83dcc0143e5f6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259397, 'Fresh Blueberries, 24 oz Container', 6.18, '665290050243', 'Create decadent meals with sweet and light Fresh Blueberries. Enjoy them for breakfast, lunch, dinner, or dessert. Use them to make a lemon and blueberry galette, bake them into delicious blueberry muffins, cook up a sweet and savory pizza topped with blueberries and bacon, or reduce them for a sauce to use on grilled chicken or cheesecake. They contain essential vitamins and nutrients like, vitamin C, vitamin K, antioxidants, and manganese making them perfect for a healthy diet. Prior to serving simply gently wash them with cool water and enjoy the fresh taste. Refrigerate the berries to keep them fresh and ready for use. Pick up a Fresh Blueberry container today and savor the delectable flavor.', 'Fresh Blueberries, 24 oz Container: Best when enjoyed at room temperature Light, refreshing taste Healthy treat Prior to serving gently wash them with cool water Refrigerate your berries in the original container to maintain freshness They should approximately last 3-5 days after purchase Keep dry for optimal freshness', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/77811688-c7bf-403f-802f-831985dc7758_1.16cf6cf228f841d5c565c35925f0cbf9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77811688-c7bf-403f-802f-831985dc7758_1.16cf6cf228f841d5c565c35925f0cbf9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77811688-c7bf-403f-802f-831985dc7758_1.16cf6cf228f841d5c565c35925f0cbf9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259398, 'Fresh Red Potatoes, Each', 0.44, '000000040730', 'These Red Potatoes are a must-have for any pantry. With so many ways to prepare potatoes, you\'ll want to add them to every meal. For breakfast, you could make crispy sliced potatoes smothered in cheese and diced ham or add them to a savory omelet. For lunch or dinner, you could use these fresh potatoes to make au gratin potatoes, garlic mashed potatoes, or roast them with your favorite spices to serve with a juicy steak and rolls. If you\'re hosting a neighborhood get-together, you can use them to add flavor and color to a creamy potato salad. Serve up something delicious when you cook with Red Potatoes.', 'Must-have addition to every pantry Roast them with your favorite spices and serve with a juicy steak Add them to a savory omelet for a mouthwatering breakfast Use them to add color and flavor to your potato salad Explore all the delicious ways to serve these satisfying potatoes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6123387a-ad45-4fd4-ad0a-d712cb5e0a38.fb33c9142ca45aa08dc52db010a12334.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6123387a-ad45-4fd4-ad0a-d712cb5e0a38.fb33c9142ca45aa08dc52db010a12334.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6123387a-ad45-4fd4-ad0a-d712cb5e0a38.fb33c9142ca45aa08dc52db010a12334.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259399, 'Steamables Sweet Potatoes Whole Fresh, 1.5 lb Bag', 3.38, '854679004186', 'Add a fresh, delicious and nutritious side to your dinner entree with Steamables Sweet Potatoes. They come pre-washed and ready to cook in the bag. This gluten-free food provides 110 calories per serving and is an ideal source of vitamin A. The potatoes also have no cholesterol and contain 4g of dietary fiber and 2g of protein. These steamable potatoes are available in a convenient 1.5-lb bag.', 'Steamables Sweet Potatoes, 1.5-lb Bag: Potato steamer, sweet Net weight: 1.5 lbs Triple washed Ready to steam in the bag Petite sweet potatoes Fresh, healthy and easy to prepare 110 calories per serving No cholesterol 4g dietary fiber 2g protein Gluten-free steamable potatoes Source of vitamin A', 'Fresh Produce', 'https://i5.walmartimages.com/asr/58964ada-46d2-4e80-8180-a43dcb16b9b8.e4da1e9da6321227068a42ab94c1aa18.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58964ada-46d2-4e80-8180-a43dcb16b9b8.e4da1e9da6321227068a42ab94c1aa18.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58964ada-46d2-4e80-8180-a43dcb16b9b8.e4da1e9da6321227068a42ab94c1aa18.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259402, 'Microwaveable Sweet Potato Whole Fresh, Each', 1.64, '855555002067', 'Make dinner simple and delicious when you serve these Microwave-Ready Sweet Potatoes. Ready to eat in ten to twelve minutes, these whole potatoes are pre-washed and ready to heat up. Simply cook them in the microwave for a satisfying side dish or main course. You can also serve them alongside a tender and juicy steak, a succulent grilled chicken breast or a country-fried pork chop. Convenient and delicious, these sweet potatoes will please the entire family. Serve up something fresh fast and delicious when you bring home Microwave-Ready Sweet Potatoes.', 'Microwave-Ready Sweet Potato, each: Ideal addition to every pantry Cooks in 10-12 minutes Pre-washed & ready to cook Add butter, salt & pepper for a quick side Load it with your favorite toppings for a full meal 8 oz minimum weight Fresh. All natural. No preservatives. Microwavable. Product of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8ccc9cad-cbe4-45ba-9a66-eaac7da18d79.1cb840929bb828ecd979f16ddd831f66.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ccc9cad-cbe4-45ba-9a66-eaac7da18d79.1cb840929bb828ecd979f16ddd831f66.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ccc9cad-cbe4-45ba-9a66-eaac7da18d79.1cb840929bb828ecd979f16ddd831f66.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259404, 'Earthbound Farm Organic Deep Green Power Blends, 5 oz', 3.46, '032601902674', 'Established in 1984 on a 2½-acre plot in California\'s lush Carmel Valley, Earthbound Farm was born. Since then, our dedication to organic farming has flourished year after year. Rooted in our humble beginnings, we express our heartfelt gratitude for choosing organic. By supporting Earthbound Farm, you join us on our mission to cultivate a healthier, more sustainable future. Thank you for your conscious choice.', '***Discontinued***GHS***ORG SLD PWR GRN 5Z E', 'Earthbound Farm', 'https://i5.walmartimages.com/asr/2082f075-89c3-430a-8411-83ed8c50f37d.533611c33670b02216ae761d3c76a6e9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2082f075-89c3-430a-8411-83ed8c50f37d.533611c33670b02216ae761d3c76a6e9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2082f075-89c3-430a-8411-83ed8c50f37d.533611c33670b02216ae761d3c76a6e9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259407, 'Taylor Farms Organic Pure Veggie Snack Tray with Creamy Ranch Dip, 7 oz', 2.5, '824862008024', 'Introducing Taylor Farms Organic Pure Veggie Snack Plastic', 'Taylor Farms Organic Pure Veggie Snack Plastic Tray with Creamy Ranch Dip, 7 oz Introducing Taylor Farms Organic Pure Veggie Snack Tray with Creamy Ranch Dip, a delicious and convenient 7 oz snack option for health-conscious individuals. This delightful tray features a variety of organic, fresh, and crunchy vegetables, such as carrots, celery, and cherry tomatoes. Paired with a delectable, creamy ranch dip, this snack provides a satisfying and guilt-free experience. Perfect for on-the-go snacking, lunchboxes, or parties, the Taylor Farms Organic Pure Veggie Snack Tray is a must-try for those seeking a nutritious and tasty treat.', 'Taylor Farms', 'https://i5.walmartimages.com/asr/07e298c3-ec43-414b-b11e-67aabec98ed8.35fc9377e14202472529684c312db990.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/07e298c3-ec43-414b-b11e-67aabec98ed8.35fc9377e14202472529684c312db990.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/07e298c3-ec43-414b-b11e-67aabec98ed8.35fc9377e14202472529684c312db990.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259408, 'Marketside with Buttermilk Ranch Dip Vegetable Tray, 20 oz', 5.98, '824862004071', 'The Marketside with Buttermilk Randy Dip Vegetable Tray is ideal to serve at any backyard barbeque, outdoor picnic or a party at home when entertaining. It includes delicious veggies with tasty buttermilk ranch dip. This Marketside vegetable tray can be transported to school parties or special occasions for a fresh and tasty appetizer or can be served with any meal as well.Marketside with Buttermilk Ranch Dip Vegetable Dip:', 'Party vegetable tray, 20 oz Buttermilk ranch dip Ideal to serve as appetizer or with meals', 'Marketside', 'https://i5.walmartimages.com/asr/9050ec0f-ad3a-41e5-aafe-998dd6ea8908.3376a3696b00ff2c9f938b0809de74cf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9050ec0f-ad3a-41e5-aafe-998dd6ea8908.3376a3696b00ff2c9f938b0809de74cf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9050ec0f-ad3a-41e5-aafe-998dd6ea8908.3376a3696b00ff2c9f938b0809de74cf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259410, 'Fresh Sweet Corn on the Cob, 4 Count Tray', 3.47, '894624001136', 'It\'s not truly summer until you\'ve had some Fresh Corn on the Cob. Just add butter and salt. While sweet corn typically invokes images of summer barbeques, it has many health benifits. Sweet corn is a great source of Vitamin A and C, with one ear of corn containing over 10% of the Daily Value (DV) of Vitamin C and over 6% DV of Vitamin A. It\'s not truly summer until you\'ve had some Fresh Corn on the Cob- just add butter and salt! Also known as Maíz empacado, Dura and Makka around the world.', 'Fresh Corn on the Cob, 4 Pack, Sweet gourmet corn on the cob, Husked, field fresh, prewashed, and ready to eat. Low in fat and cholesterol free. Ideal for your next backyard barbecue or summer camp out, May be cooked in the microwave, steamed or boiled. Serve with mashed potatoes, steak and your favorite green. U.S. Fancy Grade. Sweet gourmet corn on the cob Husked, field fresh, prewashed, and ready to eat Low in fat and cholesterol free Ideal for your next backyard barbecue or summer camp out May be cooked in the microwave, steamed or boiled Serve with mashed potatoes, steak and your favorite green U.S. Fancy Grade Fresh Sweet gourmet corn on the cob Husked, field fresh, prewashed, and ready to eat Low in fat and cholesterol free Ideal for your next backyard barbecue or summer camp out May be cooked in the microwave, steamed or boiled Serve with mashed potatoes, steak and your favorite green U.S. Fancy Grade', 'Fresh Produce', 'https://i5.walmartimages.com/asr/54b0dbba-34af-4097-9155-27a08dca29e6.e0fb7ee3bb64792004f0103789cbafd6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54b0dbba-34af-4097-9155-27a08dca29e6.e0fb7ee3bb64792004f0103789cbafd6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54b0dbba-34af-4097-9155-27a08dca29e6.e0fb7ee3bb64792004f0103789cbafd6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259411, 'Fresh Celery Stalk, Each', 1.54, '204070000001', 'Promote healthy bones by adding Fresh Celery to your diet. Celery is a low-calorie vegetable that consists mostly of water but is packed full of antioxidants and fiber. Cut off the leafy tops and bulky bottoms and enjoy them as a crisp and healthy snack or chop them up and create a fresh salad with romaine lettuce, carrots, cherry tomatoes, and croutons. They\'re also delicious when stuffed with peanut butter and dried fruit, like raisins and cranberries. Each bite is crunchy, crispy, and full of vitamins and minerals like vitamin K, which is known for helping with bone metabolism and regulating blood calcium levels. Being healthy can be fun, especially with Fresh Celery! Also known as Apio, Qin cai, Karafs and Ajmoda around the world.', 'Fresh Celery, each: Promotes healthy bones Packed full of vitamin K, antioxidants, and fiber Try dipping in a variety of sauces, like peanut butter, hummus, cheese sauce, and salad dressing Add to salads, stir fry, and soup Crispy, crunchy texture Healthy snack option Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/64e099e6-9c88-4516-b6d9-fb081114720d.0c080b0f52c5271fb6f5480eb7ad1759.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/64e099e6-9c88-4516-b6d9-fb081114720d.0c080b0f52c5271fb6f5480eb7ad1759.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/64e099e6-9c88-4516-b6d9-fb081114720d.0c080b0f52c5271fb6f5480eb7ad1759.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259412, 'Mann\'s Snap Pea Sensations Asian Sesame Style Kit, 11.35 oz', 2.38, '716519011092', 'Snap Pea Sensations, Asian Sesame, Bag 10.14 OZ Snap Peas & Topping: 10.1 oz (286 g); Dressing: 1.25 fl oz (37 ml). Sugar snap peas, Asian dressing & sesame seeds. Serve as a cold salad or hot saute. Three generations. Est. 1939. New try me! Complete Kit: Serve hot or cold. Washed & ready to eat. Preservative free. For more information contact us: Mann\'s Customer Service, PO Box 690, Salinas, CA 93902 or call 800-285-1002. veggiesmadeeasy.com. At Mann\'s, We\'re moms creating solutions for moms. Certified WBENC: Women\'s Business Enterprise. Facebook. Twitter. Pinterest. Instagram. YouTube. Dating back to the 1930\'s, farming has been a family business for three generations. We are dedicated to proving the highest quality. Fresh produce. We grow on family-owned farms using sustainable practices & follow strict quality standards. Product of USA. Keep refrigerated. Perishable. Healthy cooking made easy. Simply toss these delicious ingredients together for a quick & easy side dish or meal. Serve hot or cold! Enjoy as a Cold Salad: 1. Pour the pre-washed sugar snap peas into a bowl. 2. Add the Asian dressing and sesame seeds. 3. Toss to coat evenly; serve immediately for best results. Enjoy as a Hot Saute: 1. Pour the pre-washed sugar snap peas into a bowl. 2. Add the Asian dressing. Toss to coat evenly. 3. Preheat a non-stick skillet until hot. 4. Pour the coated sugar snap peas into the skillet and saute quickly - 1 to 2 minutes. 5. Remove from heat. Sprinkle with sesame seeds. 6. For best results serve immediately. Suggestions for Hot & Cold Dishes: Add pre-cooked quinoa or rice. Pair with grilled fish, chicken or beef. Contains soy, wheat. 1 kit Salinas, CA 93901 800-285-1002', 'Snap Pea Sensations Kit, Asian Sesame Snap Peas & Topping: 10.1 oz (286 g); Dressing: 1.25 fl oz (37 ml). Sugar snap peas, Asian dressing & sesame seeds. Serve as a cold salad or hot saute. Three generations. Est. 1939. New try me! Complete Kit: Serve hot or cold. Washed & ready to eat. Preservative free. For more information contact us: Mann\'s Customer Service, PO Box 690, Salinas, CA 93902 or call 800-285-1002. veggiesmadeeasy.com. At Mann\'s, We\'re moms creating solutions for moms. Certified WBENC: Women\'s Business Enterprise. Facebook. Twitter. Pinterest. Instagram. YouTube. Dating back to the 1930\'s, farming has been a family business for three generations. We are dedicated to proving the highest quality. Fresh produce. We grow on family-owned farms using sustainable practices & follow strict quality standards. Product of USA.', 'Mann\'s', 'https://i5.walmartimages.com/asr/ba0fa981-d121-4df5-b46f-6b63f63fc53a_1.70aece7d497d04b8b249f3094e89ab5a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ba0fa981-d121-4df5-b46f-6b63f63fc53a_1.70aece7d497d04b8b249f3094e89ab5a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ba0fa981-d121-4df5-b46f-6b63f63fc53a_1.70aece7d497d04b8b249f3094e89ab5a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51259427, 'Fresh Celery Sticks, 20 oz Bag', 2.96, '073150152233', 'Add flavor and texture to your meals with these Fresh Celery Sticks. This versatile vegetable is ideal for a variety of dishes, whether it\'s for breakfast, lunch, or dinner. Mince some up and put them in your omelet with peppers and ham for a filling and nutritious breakfast. Add them to a healthy salad for lunch or enjoy them with peanut butter and dried fruits for a quick snack. Celery is also a wonderful addition to comforting soups, hearty stews, and crowd-pleasing casseroles. Enjoy the delicious taste of Fresh Celery Sticks any way you prepare them. Also known as Palitos de apio, Karafs and Ajmoda around the world.', 'Adds flavor and texture to your meals Great for breakfast, lunch, or dinner Mince them for an omelet or put them in a salad Enjoy with peanut butter and dried fruits Delicious addition to soups, stews, and casseroles Equivalent to 2 stalks of celery Naturally sweeter and crispier Pre-cut, washed, and ready to eat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7cf2e316-000b-4d96-bdb0-b7e5545ffe28.7fe22eeb04592e2447ffeacf29b12ff1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7cf2e316-000b-4d96-bdb0-b7e5545ffe28.7fe22eeb04592e2447ffeacf29b12ff1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7cf2e316-000b-4d96-bdb0-b7e5545ffe28.7fe22eeb04592e2447ffeacf29b12ff1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (51822900, 'Fresh Minneolas, 3 lb Bag', 3.98, '814683010115', 'Enjoy the fresh sweetness of a Minneola. Sometimes called a tangelo, this citrus fruit is a hybrid of a tangerine and a grapefruit. This unique fruit can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these minneolas to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice them and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. You can also use them to make scrumptious baked goods like muffins, cakes, and tarts. However you choose to use them, fresh Minneolas add flavor to any meal or beverage.', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy smoothie Serve with your pancake breakfast Use as a garnish for your favorite cocktail Use to make muffins, cakes, and tarts Available in a 3-pound bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cb719495-ecde-430f-ac16-f50569418a1d.a680eeba8ecae5cdab9837a2d2939757.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb719495-ecde-430f-ac16-f50569418a1d.a680eeba8ecae5cdab9837a2d2939757.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb719495-ecde-430f-ac16-f50569418a1d.a680eeba8ecae5cdab9837a2d2939757.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (52145777, 'Marketside Portabella Griller, 12.5 oz', 4.48, '681131133630', '', 'PORT GRILLR 12.5Z MS', 'Marketside', 'https://i5.walmartimages.com/asr/aa122005-061c-4a4d-ace5-ac6b3a340b6f_1.8b0cc8f9fc8caa1c1edd620a7624e79f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa122005-061c-4a4d-ace5-ac6b3a340b6f_1.8b0cc8f9fc8caa1c1edd620a7624e79f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa122005-061c-4a4d-ace5-ac6b3a340b6f_1.8b0cc8f9fc8caa1c1edd620a7624e79f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (52196663, 'Marketside Broccolini, 6oz', 2.88, '681131133593', 'Marketside Broccolini is a \"foodie\" favorite. It is a natural hybrid of broccoli and Chinese kale. It is featured on menus and used by chefs in many recipes and easy to cook dishes.', 'Marketside Broccolini: Easy to cook Sweet tasting and less bitter than broccoli Stems are the most delicate part to eat GMO free Low in carbs High in vitamin C Can steam or grill or microwave', 'Marketside', 'https://i5.walmartimages.com/asr/845c6d32-beef-41d2-b0e9-01e58eb9a383_1.145fc335e657d894b9a49a063aa396da.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/845c6d32-beef-41d2-b0e9-01e58eb9a383_1.145fc335e657d894b9a49a063aa396da.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/845c6d32-beef-41d2-b0e9-01e58eb9a383_1.145fc335e657d894b9a49a063aa396da.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (52268778, 'Earthbound Farm Organic Flavor Blends Sweet Kale, 4 oz', 3.46, '032601902933', 'Earthbound Farm® Organic Sweet Kale. It is a combination of crisp butter lettuce and tender baby kale. Grown without GMOs.', 'Organic Flavor Blends Sweet Kale, 4 Oz.', 'Earthbound Farm', 'https://i5.walmartimages.com/asr/2549d1e4-aaf2-4a76-bd47-a5d61c82d86f_1.9fb64bf28c622f8e0449e38b31abe62a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2549d1e4-aaf2-4a76-bd47-a5d61c82d86f_1.9fb64bf28c622f8e0449e38b31abe62a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2549d1e4-aaf2-4a76-bd47-a5d61c82d86f_1.9fb64bf28c622f8e0449e38b31abe62a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (52694731, 'Cal-Organic Farms Organic Bunch Carrots', 1.86, '032601046002', 'Cal-Organic Bunch Carrots', 'Organic Carrots, 1 bunch', 'Produce (Brands May Vary)', 'https://i5.walmartimages.com/asr/1f24acc1-4b0b-4981-978f-10d17153836b_1.2db24345e0fa1e63e69a803ff2e814ed.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1f24acc1-4b0b-4981-978f-10d17153836b_1.2db24345e0fa1e63e69a803ff2e814ed.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1f24acc1-4b0b-4981-978f-10d17153836b_1.2db24345e0fa1e63e69a803ff2e814ed.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (53314544, 'Melissa\'s Sweet Tamarind, 10 oz', 4.97, 'deleted_045255147261', 'Use Melissa\'s Sweet Tamarind for a variety of dishes. It works well in Indian and Middle Eastern cuisine. This fresh tamarind has a sweet and sour pulp. It makes a good seasoning for chutneys and curries. Each fruit is hand-selected to ensure high quality. Try adding it to Worcestershire sauce or make a syrup out of it to flavor your favorite soft drink. This fruit can be stored for a long time when kept in a cool place. It\'s available in a 10 oz bag. Keep it handy in the kitchen to add sweet flavor to your meals or snacks.', 'Melissa\'s Sweet Tamarind, 10 oz: Useful for Indian and Middle Eastern cooking Good for chutneys and curries Melissa\'s tamarind has a sweet and sour flavor Can be used as a seasoning or a syrup for flavoring drinks and food Keeps a long time in a cool place', 'Fresh Produce', 'https://i5.walmartimages.com/asr/aee5f74e-d32e-42b0-9fad-0c9bd3740bd1.94b9a36a6e32fba2f4f3101c9c2f8b30.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aee5f74e-d32e-42b0-9fad-0c9bd3740bd1.94b9a36a6e32fba2f4f3101c9c2f8b30.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aee5f74e-d32e-42b0-9fad-0c9bd3740bd1.94b9a36a6e32fba2f4f3101c9c2f8b30.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (53326860, 'Fresh Sweet Cherries, 1 lb Pouch', 4.48, '810506011789', 'With the arrival of warm weather comes these sweet cherries. Each package contains a whole pound of sweet, dark red fruit that can easily be enjoyed on their own or as part of a meal. These fresh cherries (1 lb) are naturally low in fat and also packed full of dietary fiber, vitamin A and calcium.Sweet Cherries:', 'Fresh Red Cherries, 1 lb Package Bursting with antioxidants, phytochemicals, vitamins, nutrients, and fiber Rich source of vitamin C, potassium, and vitamin B complex Versatile and delicious Wonderful addition to entrees, desserts, and beverages To enjoy fresh cherries: store in the refrigerator and wash just before eating Grown in Washington', 'Fresh Produce', 'https://i5.walmartimages.com/asr/999a11d3-71a7-4020-b8a9-af1a78fe5502.fba58c158bea74cdf466dc95ad1650ed.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/999a11d3-71a7-4020-b8a9-af1a78fe5502.fba58c158bea74cdf466dc95ad1650ed.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/999a11d3-71a7-4020-b8a9-af1a78fe5502.fba58c158bea74cdf466dc95ad1650ed.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (53326861, 'Fresh Apricot, Each', 4.34, '000000042185', 'Treat everyone to the sweet taste of Fresh California Grown Apricots. These apricots are great to pack in lunches or to hand out to the kids as a tasty after-school snack. Add these apricots to a fruit salad to serve at your next party or to a delectable salad as a sweet topping. Serve them with cheese, salami, and almonds for a wonderful picnic cheese plate. You could also slice them to top your yogurt and granola for a healthy breakfast, or even make a tasty apricot crumble dessert for your next dinner party. The culinary opportunities are endless with Fresh California Grown Apricots.', 'Fresh California Grown Apricots, 16 oz: Sweet and juicy Pack in lunches or hand out to the kids as a tasty after-school snack Use to make a delicious fruit salad Slice and use top your yogurt and granola for a healthy breakfast Use to make a delectable dessert for your next party', 'Fresh Produce', 'https://i5.walmartimages.com/asr/58f608b4-1e61-4e2d-b399-29535b43cac3.699ad7120cdb554eaec886680d225c20.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58f608b4-1e61-4e2d-b399-29535b43cac3.699ad7120cdb554eaec886680d225c20.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58f608b4-1e61-4e2d-b399-29535b43cac3.699ad7120cdb554eaec886680d225c20.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (54082903, 'Medley Tomato, 10 oz Package', 2.98, 'deleted_751666461451', 'Bring the fresh, delicious taste of Medley Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Medley Tomatoes.', 'Medley Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'NatureSweet', 'https://i5.walmartimages.com/asr/97fcc0f4-2b44-4726-a99f-a16db0ee4543.f790d6f505f2b5ecfae8b8ac59052146.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/97fcc0f4-2b44-4726-a99f-a16db0ee4543.f790d6f505f2b5ecfae8b8ac59052146.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/97fcc0f4-2b44-4726-a99f-a16db0ee4543.f790d6f505f2b5ecfae8b8ac59052146.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (54513681, 'Juicing Carrots 25 Lb Bag', 5.98, '078783670277', '', 'Grimmway Farms California Carrots, 25 lb: Hydro Cooled California Carrots', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c678f234-4c94-4a3b-b41c-c44c2c4236c7.6a5b3c11a1998229f09b8772b84c2463.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c678f234-4c94-4a3b-b41c-c44c2c4236c7.6a5b3c11a1998229f09b8772b84c2463.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c678f234-4c94-4a3b-b41c-c44c2c4236c7.6a5b3c11a1998229f09b8772b84c2463.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (54905954, 'NatureSweet Constellation Tomatoes, 16.5 oz', 4.48, 'deleted_751666414051', 'NatureSweet Constellation is a colorful blend of your favorite tomatoes in one convenient package!', 'Picked at the peak of freshness for great taste year-round The perfect variety of great taste and flavor A healthy alternative to traditional sweets', 'Constellation Tires', 'https://i5.walmartimages.com/asr/c443ee6c-ecf4-4835-a18c-662d58d81ad6_1.b153990deef5d866aa3f0c2ceb845a59.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c443ee6c-ecf4-4835-a18c-662d58d81ad6_1.b153990deef5d866aa3f0c2ceb845a59.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c443ee6c-ecf4-4835-a18c-662d58d81ad6_1.b153990deef5d866aa3f0c2ceb845a59.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (55014398, 'Fresh Garlic Sleeve, 3 Count', 1.74, '023562080099', 'Take your culinary creations to the next level with fresh, flavorful Garlic. Garlic\'s signature flavors become caramelized and sweeter when cooked, making it a perfect accompaniment to many dishes such as pasta, shrimp, chicken, stews, and more. Garlic also goes great in creamed soups, on all types of roasts, in a variety of egg dishes, or used simply with sauteed or roasted vegetables. To prepare garlic for cooking, you\'ll need to break it up into individual cloves and peel the skin. Once you\'ve done this, you can mince the garlic by chopping it into fine pieces. Spice up your next meal with a tasty clove of fresh Garlic.', 'Fresh garlic Sleeve of 3 bulbs Must-have pantry staple Flavorful addition to a wide variety of recipes Add to pasta, shrimp, chicken, stews, and more Delivers a bold, pungent flavor when eaten raw but transforms into a lightly sweet and buttery flavor when cooked Explore all the delicious ways to add fresh garlic to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1987f303-5f7b-4250-a4be-15735b797999.ee158276b27318447e0e876cc3b1291b.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1987f303-5f7b-4250-a4be-15735b797999.ee158276b27318447e0e876cc3b1291b.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1987f303-5f7b-4250-a4be-15735b797999.ee158276b27318447e0e876cc3b1291b.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (55110582, 'CiboVita Natures Garden Cranberries, 9 oz', 2.23, '846548090093', 'Cranberries, Pouch 9 OZ cibovita.com. Product of USA. Allergy Information: Packed and processed in a facility that packages peanuts, tree nuts, milk, soy, wheat and egg products. May contain pits, shell pieces or other naturally occurring objects. 9 oz (255 g) Fair Lawn, NJ 07410', 'Cranberries cibovita.com. Product of USA.', 'Nature\'s Garden', 'https://i5.walmartimages.com/asr/32101579-5f15-485f-9a1d-45955d7acfe6_1.7560e3a8b07b47be87eef370873ee67d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/32101579-5f15-485f-9a1d-45955d7acfe6_1.7560e3a8b07b47be87eef370873ee67d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/32101579-5f15-485f-9a1d-45955d7acfe6_1.7560e3a8b07b47be87eef370873ee67d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (55170751, 'Bushwick Get Saucy Potato Sides Creamy Herb Small Red Potatoes, 27 oz', 3.97, '080911007015', 'Bushwick Get Saucy Potato Sides Creamy Herb Small Red Potatoes are your go-to dinner dish. Easy and fast to prepare, you\'ll have a delicious side from microwave to table in minutes.', 'Potato Creamy Herb 27 Oz.', 'Unbranded', 'https://i5.walmartimages.com/asr/678cf6d4-549b-4561-8cbc-762b7cfd6add.70bc6728607cb5ebbfb3fbe1d1319159.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/678cf6d4-549b-4561-8cbc-762b7cfd6add.70bc6728607cb5ebbfb3fbe1d1319159.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/678cf6d4-549b-4561-8cbc-762b7cfd6add.70bc6728607cb5ebbfb3fbe1d1319159.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (55317047, 'Dole California Pitted Dates, 8 Oz Snack', 4.38, '075700045002', 'Picked at the peak of ripeness for maximum sweetness and flavor, our 100% natural dates are great for snacking, baking and anything else you can name under the sun. Rich in nutrients, Dole dried fruit gives you the healthy energy you need to feel refreshed and ready to shine! Grown in the Coachella Valley of California, we use Deglet Noor dates for a uniform taste, size, shape, firmness and light coloring. So we can ensure you get the same delicious, high quality date with every bite, every time. Dole California Whole Pitted Dates, 100% All Natural California Dates, 8 Oz Pouch Naturally sweet California-grown pitted dates Resealable pouch keeps dry dates fresh Dried in warm flowing air & packed for maximum freshness and flavor Naturally cholesterol free Fat free, gluten free and certified non-GMO Use for baking, cooking or enjoy as a snack on their own! Also available in Dole Chopped Dates Learn more about Dole products at dolesunshine.com WHY KIDS & PARENTS CHOOSE DOLE: FIBER-RICH SNACK: Picked at the peak of ripeness for maximum sweetness & flavor, our 100% natural dates are great for snacking, baking & anything else you can name under the sun. GLUTEN FREE: Naturally sweet DOLE Whole Pitted California Dates are a good source of dietary fiber, cholesterol free, and fat free. They\'re also gluten free and great for salads, toppings, baking, and snacking. DELICIOUS CALIFORNIA DATES: With Dole\'s shelf-stable date products, you can have the sweet taste of California Dates anywhere & anytime. For another delicious, dried fruit snack try DOLE California Dates. HEALTHY SNACKS AND JUICES: From packaged shelf stable fruit, to dried fruit, fruit juices, and frozen fruit, Dole is a world leader in growing, sourcing, distributing, and marketing packaged fruit and healthy snacks to brighten your day. REFRESHING FLAVOR: Try the refreshing bright flavor of Dole\'s packed fruit, fruit juice, and other pantry staples in all your favorite recipes!', 'Trail Mix with Dates Enjoy \"fruit chips\" as a healthy and easy-to-take alternative to potato chips Ingredients (6) 1 pkg. (8 oz.) DOLE Dates, Chopped 2 cups whole grain, square-shaped cereal 1 cup whole almonds, toasted 1 cup DOLE Seedless or Golden Raisins 1 cup dried banana chips 1 cup dried apricots, cut in half Directions Combine all ingredients in large bowl. Store in tightly sealed container or zip lock bag. Enjoy 100% All Natural Fruit with Dole: Fruit Bowls | Fruit Juice | Frozen Fruit | Frozen Smoothie Blends | Fruit Fridge Packs | Dried Fruit | Snack Bites | Dole Mixations About Dole: Dole Packaged Foods, LLC, is a world leader in growing, sourcing, distributing and marketing fruit and healthy snacks. Dole sells a full line of packaged shelf stable fruit, frozen fruit, dried fruit and juices. The company focuses on four pillars of sustainability in all of its operations: water management, carbon footprint, soil conservation and waste reduction.', 'Dole', 'https://i5.walmartimages.com/asr/59f8e989-8ca5-4623-9e1a-f364c9d2c9cb_1.4f72ec6bda2ff54fd748bc269bd17d36.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59f8e989-8ca5-4623-9e1a-f364c9d2c9cb_1.4f72ec6bda2ff54fd748bc269bd17d36.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59f8e989-8ca5-4623-9e1a-f364c9d2c9cb_1.4f72ec6bda2ff54fd748bc269bd17d36.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (55325824, 'Kirsch Kirsc Mushroom Dried Dark', 6.1, '072291000069', 'short description is not available', '1 oz QTY 12 Genuine. New 1 ounce. Kosher for Passover and year around use. Product of Chile.', 'Kirsch Mushroom', 'https://i5.walmartimages.com/asr/e9e6f40e-3083-4610-9092-8596f1bd86c3_1.29175423f4ef660db439ac5ba324bab1.xhtml+xml?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9e6f40e-3083-4610-9092-8596f1bd86c3_1.29175423f4ef660db439ac5ba324bab1.xhtml+xml?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9e6f40e-3083-4610-9092-8596f1bd86c3_1.29175423f4ef660db439ac5ba324bab1.xhtml+xml?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (55348262, 'Michigan Valley Lemon Juice', 8.18, '783963001740', 'Michigan Valley Brand Reconstituted Lemon Juice is 100% real lemon juice created from fresh lemons. It is ideal for adding a delicious twist of lemon to your favorite seafood and poultry recipes. It is also great in marinades and it brightens up both hot and cold beverages.', 'Michigan Valley Brand Reconstituted Lemon Juice: Fresh lemons Delicious No artificial flavors No artificial colors', 'Michigan Valley', 'https://i5.walmartimages.com/asr/6bd9c60b-f109-49c9-a5c1-f1ea58b4e8ee.3539be2c738673f7e049978b27204c30.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6bd9c60b-f109-49c9-a5c1-f1ea58b4e8ee.3539be2c738673f7e049978b27204c30.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6bd9c60b-f109-49c9-a5c1-f1ea58b4e8ee.3539be2c738673f7e049978b27204c30.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (55420372, 'Green Giant Fresh Cauliflower Crumbles \"Fried Rice\" Blend, 16 oz', 2.78, '605806000744', 'Add a delicious medley of vegetables to mealtime with this Green Giant Fresh Cauliflower Crumbles Fried Rice. It contains a high-nutritional blend of fresh, chopped cauliflower, broccoli, carrots and green onions. This fresh fried rice mix can be used as a quick and easy side dish, a stir-fry, a casserole and more. It lets you create your own tasty meal in just minutes without the calories or carbs of traditional rice. It\'s available in a convenient 16-oz bag.', 'Cauliflower Crumble Fry Rice: Mixture of fresh chopped cauliflower, broccoli, carrots and green onions Uses: quick and easy side dish, casserole or stir fry Create your own tasty meal in just minutes No mess, no prep and no cleanup Gluten-free Steam in pack Good source of vitamins A and C No cholesterol 0g trans fat 1g protein 2g dietary fiber 16-oz bag of Green Giant cauliflower rice blend', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b779d700-3173-492a-bc5c-05919f602a42_1.297392430f6da3c0f48e5bc8de7b1901.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b779d700-3173-492a-bc5c-05919f602a42_1.297392430f6da3c0f48e5bc8de7b1901.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b779d700-3173-492a-bc5c-05919f602a42_1.297392430f6da3c0f48e5bc8de7b1901.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (55420373, 'Growers Express Green Giant Fresh Sweet Potato, 12 oz', 3.98, '605806000751', 'Green Giant™ Fresh Sweet Potato Noodles.Fresh spiralized sweet potato.Perfect substitute for pasta!Quick cooking!Steams in pack.Gluten free.Per serving:70 Calories.0g Sat fat, 0% DV.45mg Sodium, 2% DV.4g Sugars.Vitamin A, 240% DV.Net Wt 12 oz (340 g). Keep refrigerated.Steam in pack directions:1. Tear bag at notch.2. Close bag with zipper leaving 1-inch opening.3. Place bag standing up in microwave; microwave on high 4 minutes, or until desired tenderness*. Let stand 1 minute in microwave.4. Carefully remove bag. Caution hot!5. Ready to use as recipe ingredient, or add desired seasonings to taste and enjoy!*Because microwaves cook differently, times are approximate.', 'Sweet Potato, Noodles, Spiralized, Fresh Perfect substitute for pasta! Quick cooking! Steams in pack. Box Tops for Education. Gluten free. Per Serving: 70 calories; 0 g sat fat (0% DV); 45 mg sodium (2% DV); 4 g sugars. Vitamin A (240% DV). Find delicious recipes, helpful tips & more: Scan code with app. greengiantfresh.com/sweet-potato-noodles. Find Delicious Recipes: GreenGiantFresh.com. Questions or comments? 1-800-998-9996. Follow Us On: Facebook and Twitter. Facebook. Twitter.', 'Green Giant', 'https://i5.walmartimages.com/asr/04b2ff18-e4e3-449a-b0c5-a097a396f1c4_1.3115efe5cee0d0116b6239fd77714ecb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/04b2ff18-e4e3-449a-b0c5-a097a396f1c4_1.3115efe5cee0d0116b6239fd77714ecb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/04b2ff18-e4e3-449a-b0c5-a097a396f1c4_1.3115efe5cee0d0116b6239fd77714ecb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100005418, 'Cameo Apples 3 Lb Bag', 3.42, '847473005763', 'short description is not available', 'Cameo Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100164078, 'Happy Farms Plato Sofrito, 16 oz', 4.97, '824845005125', 'Happy Farms Plato Sofrito, 16 oz', 'Happy Farms Plato Sofrito, 16oz El sofrito es la base o el ingrediente principal de casi todas nuestras comidas Contiene: recao, cebolla, ajo, y ajies dulce y pimiento cubanell Perfecto para arroz guisado, sopa, sancocho', 'Happy Farms', 'https://i5.walmartimages.com/asr/f2e33841-514e-4abf-a226-1200f640a3cf.4fccab21deba4a5ee2707fbaef417934.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f2e33841-514e-4abf-a226-1200f640a3cf.4fccab21deba4a5ee2707fbaef417934.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f2e33841-514e-4abf-a226-1200f640a3cf.4fccab21deba4a5ee2707fbaef417934.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100180082, 'Fresh Jonathan Apples, 3 lb Bag', 3.54, '033383024097', 'Looking for a sweet yet tart apple that has a tender, juicy flesh? Try Jonathan apples. These classic American apples are known for their bold red color, crisp texture, and refreshing taste. They\'re perfect for snacking, baking, or adding to salads and pies. Our Jonathan apples are hand-picked and carefully selected for optimal freshness and flavor. Try them today and taste the difference for yourself!', 'Hand-selected for exceptional quality - Crisp texture and sweet flavor make them perfect for snacking or baking - 3 lb bag ensures you\'ll have plenty to enjoy - Packed with essential nutrients and antioxidants for a healthy snack option - Versatile and delicious - great for pies, sauces, and salads - Jonathan Apples are a classic variety loved by apple enthusiasts for generations Perfect for adding fall flavors to your favorite recipes - Ideal for sharing with family and friends Freshness guaranteed, so you can trust that you\'re getting the best quality apples every time. Grab these and some organic ingredients at your local store today!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9a59a607-72a2-47af-931b-66bfd2545132.719bbba29477d6f0ea3dc2f26b91ebfd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9a59a607-72a2-47af-931b-66bfd2545132.719bbba29477d6f0ea3dc2f26b91ebfd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9a59a607-72a2-47af-931b-66bfd2545132.719bbba29477d6f0ea3dc2f26b91ebfd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100215565, 'Fresh White Asparragus, 1lb', 4.98, '400094305522', 'Esparrago Blanco, 1 Lb.', 'Esparrago Blanco', 'Unbranded', 'https://i5.walmartimages.com/asr/475d9d6e-2ae9-46ff-b23c-957c37981467.487b7f473e4d95ad742c822da8a43758.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/475d9d6e-2ae9-46ff-b23c-957c37981467.487b7f473e4d95ad742c822da8a43758.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/475d9d6e-2ae9-46ff-b23c-957c37981467.487b7f473e4d95ad742c822da8a43758.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100306180, 'Apple Banana, 3 Lb.', 8.48, '763478052468', 'Apple Banana, 3 Lb.', 'Apple Banana 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/797c5cdd-32c9-4ad1-a87a-06eabc0d1e8a.b7616ae5864f3316806e49d3c5004084.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/797c5cdd-32c9-4ad1-a87a-06eabc0d1e8a.b7616ae5864f3316806e49d3c5004084.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/797c5cdd-32c9-4ad1-a87a-06eabc0d1e8a.b7616ae5864f3316806e49d3c5004084.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100390215, 'Soy Wax Melts (Various Scents)', 41.53, '000000004060', 'Wax melts are scented pieces of wax without a wick. A wax melt can give off a slight scent when cold; however, they are designed to be slowly warmed using a tart or wax warmer. Our wax warmers on our website complements these wonderful scents. Our wax warmers are electric and provide a large aroma Wax melts are very easy to use. You simply take your wax melt and place one or more in your warmer and then turn on your heat warmer. When you are finished using them, you just turn off the warmer and the wax will solidify until you are ready to use it again. When you are ready to use it again, just turn the warmer back on to begin the melting process. When you are ready to dispose of the used wax melts, you just allow the wax to harden, then just allow it to heat for a few minutes to loosen it and it should pop right out. Our wax is safe to throw away without any harm to our environment.', 'Broccoli', 'unknown', 'https://i5.walmartimages.com/asr/6975c4f4-4050-48b0-a7ab-12d9aef71b05_1.e508323f2758d9260355211d7109e4c8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6975c4f4-4050-48b0-a7ab-12d9aef71b05_1.e508323f2758d9260355211d7109e4c8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6975c4f4-4050-48b0-a7ab-12d9aef71b05_1.e508323f2758d9260355211d7109e4c8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100440051, '3 Lb Bag Of Apples', 6.97, '741839005933', 'Apples, Pink Lady, Lil Snappers, Bag 3 LB 2-1/2 inch min dia. Sweet with a zippy finish. Resealable. World famous fruit. Kid size fruit. Meets or exceeds US extra fancy. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. Follow us: YouTube; Facebook; Twitter; Pinterest. For fun recipes, activities and more, visit www.lilsnappers.com. World famous fruit. Responsible choice. Fruits & Veggies: more matters. Produce of USA. 3 lb (1.36 kg) Wenatchee, WA 98801', 'PKLADY SNP 3#WA STM', 'Unbranded', 'https://i5.walmartimages.com/asr/09a46f99-cbab-4c12-9801-942bf1f02fdd_1.3ef9616b9d2a9ca8adbf1b94a7f209ba.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/09a46f99-cbab-4c12-9801-942bf1f02fdd_1.3ef9616b9d2a9ca8adbf1b94a7f209ba.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/09a46f99-cbab-4c12-9801-942bf1f02fdd_1.3ef9616b9d2a9ca8adbf1b94a7f209ba.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100449030, 'Garden Salad Mix, 16 Oz.', 1.48, '750641000111', 'Garden Salad Mix, 16 Oz.', 'Garden Salad Mix 16 Oz.', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100527394, 'Love Beets Ready-to-Eat Cooked Beets 8.8 oz', 2.72, '850996004441', 'Love Beets Cooked Beets Rte 8.8 oz', 'Beets, Cooked, Ready-to-Eat', 'Love Beets', 'https://i5.walmartimages.com/asr/bda916b9-67a1-46df-a90d-37bef8f82b1e.fcec520ecfe85987cc1ffe9b332b0f2b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bda916b9-67a1-46df-a90d-37bef8f82b1e.fcec520ecfe85987cc1ffe9b332b0f2b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bda916b9-67a1-46df-a90d-37bef8f82b1e.fcec520ecfe85987cc1ffe9b332b0f2b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100615485, 'Ak Alaska Jumbo Onions, 1 Lb.', 0.94, '405504388201', 'Ak Alaska Jumbo Onions, 1 Lb.', 'Ak Onions Jumbo', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100626718, 'Tasteful Selections Russet Potatoes Org 3#', 5.97, '826088499303', 'Organic Russet potato 3#', 'Tasteful Selections®, the absolute leader and pioneer in the category of best-quality, bite-size baby potatoes, offers an expanded, year-round organics program. More varieties, more pack sizes, same great taste and quality. Our three-pound bags are available in Honey Gold®, Ruby Sensation® and the new offering, Tasteful Selections organic russet potato. copy rights tasteful selections', 'Tasteful Selections', 'https://i5.walmartimages.com/asr/aece20a9-a060-4f06-9ffc-bbc86d58d752.633a6cec25d2ff72185eca3f5a31ef8f.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aece20a9-a060-4f06-9ffc-bbc86d58d752.633a6cec25d2ff72185eca3f5a31ef8f.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aece20a9-a060-4f06-9ffc-bbc86d58d752.633a6cec25d2ff72185eca3f5a31ef8f.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100674698, 'Fresh Baby Yellow Potatoes, 28oz.', 4.47, '858143004085', 'Yellow Potatoes are hand selected for excellent quality. Firm, well-shaped, and smooth, these potatoes can be cooked in almost any way imaginable. They have a wonderful, buttery texture and flavor when baked, roasted, boiled, steamed, sauteed, or mashed. Feature them in a potato salad or cook them up and serve as a savory side dish to your favorite protein. To preserve the nutrients, leave the skins on and simply scrub gently in water before cooking. Always store potatoes in a cool, well-ventilated area rather than in the refrigerator. Enjoy nutrients, flavor, and all-around deliciousness when you cook up Yellow Potatoe', '4 ounce bag of fresh Honey Gold potatoes Fast and easy prep Triple washed No need to peel Offering naturally creamy textures and buttery sweet flavor Great for every day or gourmet meals', 'Agro', 'https://i5.walmartimages.com/asr/2d3c7ddd-775f-4cdf-9afa-1d79d80aad37.47ca71f24a61781ee07f37884ba4ef7b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2d3c7ddd-775f-4cdf-9afa-1d79d80aad37.47ca71f24a61781ee07f37884ba4ef7b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2d3c7ddd-775f-4cdf-9afa-1d79d80aad37.47ca71f24a61781ee07f37884ba4ef7b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100802638, 'Melon Medly', 10.98, '893268001021', 'short description is not available', 'Melon Medly', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (100892590, 'Marketside Organic Fresh Broccoli Slaw, 16 oz', 3.77, '681131179430', 'Marketside Organic Broccoli Slaw is packed with a wholesome blend of broccoli, carrots and red cabbage. This crisp medley of USDA approved organic vegetable shreds is packed fresh, washed and ready to eat for your convenience. Use this blend to make our delicious broccoli slaw with raisins recipe located directly on the back of the packaging, or use it to create a brand-new slaw recipe that you and your family will serve for generations to come. Serve this tasty blend with baked chicken and grilled asparagus for a delicious and healthy meal. Dinner sides are made easy with Marketside Organic Broccoli Slaw. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Blend of crisp broccoli, carrots and red cabbage Washed and ready to eat USDA Organic Includes broccoli slaw with raisins recipe 5 servings per container Requires to be kept refrigerated', 'Marketside', 'https://i5.walmartimages.com/asr/0bcb3eac-a7e2-43a7-8b1a-9d387436fc51.59f68144ad3fec0eedd67f3386eb6e36.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0bcb3eac-a7e2-43a7-8b1a-9d387436fc51.59f68144ad3fec0eedd67f3386eb6e36.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0bcb3eac-a7e2-43a7-8b1a-9d387436fc51.59f68144ad3fec0eedd67f3386eb6e36.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101054749, 'Fresh Cubanelle Peppers, lb', 2.17, '400094251041', 'Cubanelle pepper, a culinary delight! With its narrow, round-tipped shape and vibrant pale to glossy green color, this pepper measures approximately 6-8 inches in length. It is cherished for its sweet and mild flavor. Elevate your dishes with the irresistible taste of the cubanelle pepper - a true culinary gem.', 'Peppers are a great way to add flavor into one\'s diet and lessen the need to add salt. For a more mild, smoky flavor, roast before using. For a fresh, hot flavor, consume raw. refrigerate in its original packaging for up to one week. Wash well before using', 'Unbranded', 'https://i5.walmartimages.com/asr/b14520bb-32ef-4943-a03c-c854e6f7030d.0e9c2b154c902f128e4b7c69bd1ce880.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b14520bb-32ef-4943-a03c-c854e6f7030d.0e9c2b154c902f128e4b7c69bd1ce880.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b14520bb-32ef-4943-a03c-c854e6f7030d.0e9c2b154c902f128e4b7c69bd1ce880.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101143466, 'Sliced Baby Bella Mushrooms, 8 oz', 2.37, 'deleted_081453618752', 'Experience the fresh taste of our Sliced Baby Bella Mushrooms. Baby bella mushrooms look similar in size and shape to white mushrooms, but they\'re hardier and provide a deeper earthy taste. They are just like the large portabella mushrooms you know and love but have been harvested just a few days before becoming large enough to fit a burger. This means they have that same firm, meaty texture you love about portabella caps, just in a tasty bite-size form. Pre-cleaned and pre-sliced, their hearty, full-bodied taste makes them an excellent addition to beef, wild game, and vegetable dishes. Plus, mushrooms are a natural source of the antioxidant selenium, making them an excellent addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try out our Sliced Baby Bella Mushrooms.', 'Sliced Baby Bella Mushrooms, 8 oz: 8-ounce package of sliced baby bella mushrooms Naturally fat free Cholesterol free Low in calories, carbs and sodium Fresh and all natural Pre-cleaned Natural source of the antioxidant selenium Excellent addition to beef, wild game and vegetable dishes', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/e765cc1a-41e9-4289-89ac-067b6b616291.efaf86c523518e6c4b003a3fb33b65c1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e765cc1a-41e9-4289-89ac-067b6b616291.efaf86c523518e6c4b003a3fb33b65c1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e765cc1a-41e9-4289-89ac-067b6b616291.efaf86c523518e6c4b003a3fb33b65c1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101213833, 'Sweet Onions, 5 lb.', 4.48, '883616004095', 'Sweet Onions, 5 Lb. Introducing a 5-pound bag of Sweet Onions, perfect for all your cooking and culinary needs. These versatile and delicious onions are known for their mild, sweet taste and low sulfur content, making them a popular choice for a wide range of dishes and recipes. Sweet Onions are ideal for eating raw in salads and sandwiches, but they also shine when cooked in soups, stir-fries, and other savory dishes. With their tender, juicy flesh and delightful sweetness, these onions add a touch of natural flavor and depth to your meals.', 'Sweet Onion 5lb Bag Introducing a 5-pound bag of Fresh Whole Sweet Onions, perfect for all your cooking and culinary needs. These versatile and delicious onions are known for their mild, sweet taste and low sulfur content, making them a popular choice for a wide range of dishes and recipes. Sweet Onions are ideal for eating raw in salads and sandwiches, but they also shine when cooked in soups, stir-fries, and other savory dishes. With their tender, juicy flesh and delightful sweetness, these onions add a touch of natural flavor and depth to your meals.', 'Unbranded', 'https://i5.walmartimages.com/asr/b93e4a4f-4177-454a-9f4f-1074bf090066.37b03974d3954e9a0e299d1712e88ab5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b93e4a4f-4177-454a-9f4f-1074bf090066.37b03974d3954e9a0e299d1712e88ab5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b93e4a4f-4177-454a-9f4f-1074bf090066.37b03974d3954e9a0e299d1712e88ab5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101215034, 'White Sweet Potatoes 3 Lb Bag', 2.84, '832298000710', 'short description is not available', 'White Sweet Potatoes 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101220641, 'Organic Butternut Squash 8 Oz', 3.98, '853968006894', 'short description is not available', 'Organic Butternut Squash 8 Oz', 'Unbranded', 'https://i5.walmartimages.com/asr/2c5aef39-51be-46d0-9524-875f4c1a4e66_1.e9ddfe94964b796aa247b7ae7de959e4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2c5aef39-51be-46d0-9524-875f4c1a4e66_1.e9ddfe94964b796aa247b7ae7de959e4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2c5aef39-51be-46d0-9524-875f4c1a4e66_1.e9ddfe94964b796aa247b7ae7de959e4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101247887, 'Sunkist Growers Sunkist Lemons, 1 lb', 3.88, '605049395300', 'Lemons, Baby, Bag 1 LB Fruit & Veggies: More matters. Coated with food-grade vegetable-, beeswax-, and/or lac-resin-based wax or resin, to maintain freshness. www.sunkist.com. Produce of USA. 1 lb (454 g) Valencia, CA 91355 2014', 'Lemons, Baby Fruit & Veggies: More matters. Coated with food-grade vegetable-, beeswax-, and/or lac-resin-based wax or resin, to maintain freshness. www.sunkist.com. Produce of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/74e4435c-b2b0-4688-baa7-f70432698860.069ed2f402edc305b7abc7da515fc9f5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/74e4435c-b2b0-4688-baa7-f70432698860.069ed2f402edc305b7abc7da515fc9f5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/74e4435c-b2b0-4688-baa7-f70432698860.069ed2f402edc305b7abc7da515fc9f5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101262303, 'Rooster Potatoes, 4 Count', 2.97, '852883004022', 'Rooster Potatoes, 4 Count', 'Rooster Potatoes 4 Pack', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101292970, 'Fresh Minzano Tomato, 10 oz Package', 2.58, '057836021563', 'Bring the fresh, delicious taste of Grape Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Grape Tomatoes.', 'Sunset® Minzano® Tomatoes Super Tuscan®. Gourmet chef inspired. The perfect saucing tomato. Whole, sweet tomatoes. Net Wt. 10 Oz 284 g. NON-GMO', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b97455d3-e3f9-41c9-a224-176b200088bd_1.ae27d2f15770f063aac88dceae3cef76.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b97455d3-e3f9-41c9-a224-176b200088bd_1.ae27d2f15770f063aac88dceae3cef76.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b97455d3-e3f9-41c9-a224-176b200088bd_1.ae27d2f15770f063aac88dceae3cef76.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101323175, 'Organic Butternut Squash 15 oz', 3.46, '824862702168', 'short description is not available', 'ORG BUTTERNUT 15Z TF', 'Fresh Produce', 'https://i5.walmartimages.com/asr/11a70b37-5b5b-4704-9399-c3939e0165bb_1.d171c7131a698cf7b7309cd3ed1407d7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/11a70b37-5b5b-4704-9399-c3939e0165bb_1.d171c7131a698cf7b7309cd3ed1407d7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/11a70b37-5b5b-4704-9399-c3939e0165bb_1.d171c7131a698cf7b7309cd3ed1407d7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101354337, 'Fresh Honeycrisp Apples, 2.5 lb Bag', 5.46, '888289403794', 'Our Honeycrisp fresh apples are bursting with flavor and are the perfect snack for any time of day! These crisp and juicy apples have a sweet yet slightly tart taste that will leave your taste buds wanting more. They\'re also a great source of fiber and essential vitamins, making them a healthy snack choice. Try them today and taste the difference!', 'Fresh Fruit Natural Can be stored in refrigerators', 'Unbranded', 'https://i5.walmartimages.com/asr/c5f74f8b-8156-4ca8-8aa8-aa63b6e40574.2c3ba5e7acf09c9735dc3f7a7e7cc58b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c5f74f8b-8156-4ca8-8aa8-aa63b6e40574.2c3ba5e7acf09c9735dc3f7a7e7cc58b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c5f74f8b-8156-4ca8-8aa8-aa63b6e40574.2c3ba5e7acf09c9735dc3f7a7e7cc58b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101358491, 'Freshly Chopped Green Onions', 2.58, 'deleted_643550000689', 'short description is not available', 'Freshly Chopped Green Onions', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101373810, 'Pacific Rose Apples 3 Lb Bag', 3.94, '066022003078', 'short description is not available', 'Pacific Rose Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101410103, 'Tanimura & Antle Tanimura & Antle Lettuce, 2 ea', 3.97, '027918922231', 'Lettuce, Artisan Romaine 2 heads Grown with family pride for 3 generations. Field-packed for freshness. Fill it. Dip it. Grill it. Resealable for freshness. The Artisan Advantage: Tanimura & Antle\'s exclusive seed varieties can only be found on our farms. Tanimura & Antle\'s Artisan Romaine is a unique whole head lettuce variety that has the refreshing crunch of iceberg lettuce and the sweet flavor of a romaine heart. www.taproduce.com. Produce of USA. Wash before use. 2 heads Salinas, CA 93908', 'Lettuce, Artisan Romaine Grown with family pride for 3 generations. Field-packed for freshness. Fill it. Dip it. Grill it. Resealable for freshness. The Artisan Advantage: Tanimura & Antle\'s exclusive seed varieties can only be found on our farms. Tanimura & Antle\'s Artisan Romaine is a unique whole head lettuce variety that has the refreshing crunch of iceberg lettuce and the sweet flavor of a romaine heart. www.taproduce.com. Produce of USA.', 'Tanimura & Antle', 'https://i5.walmartimages.com/asr/14151d06-adbc-4523-8cb7-f58e88764074_1.22cfbe36a93c525a0fde03fecf59430e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/14151d06-adbc-4523-8cb7-f58e88764074_1.22cfbe36a93c525a0fde03fecf59430e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/14151d06-adbc-4523-8cb7-f58e88764074_1.22cfbe36a93c525a0fde03fecf59430e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101482530, 'Watermelon Seedless', 4.98, '400094918579', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101501735, 'Taylor Farms Petite Carrots Grape Tomatoes Broccoli R', 2.67, '030223101598', 'short description is not available', 'Taylor Farms Petite Carrots Grape Tomatoes Broccoli R', 'Taylor Farms', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101672552, 'Mexico Heirloom Tomatoes', 3.09, '405547134117', 'short description is not available', 'Mexico Heirloom Tomatoes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101715698, 'Jonagold Apples 3 Lb Bag', 3.94, '022906300121', 'Shock absorbing and weather resistant neoprene material is perfect to protect your device. Looking for case that protects your tablet as well store additional accessories like Smart Case, this is the solution of your problems. Internal Dimensions of this case are 7.75 x 5.25 inches while external 8.5 x 5.875 inches.', 'Product Features: Constructed of shock-absorbing & weather resistant neoprene material Non-abrasive material lines interior securing your device for safe travel and storage Slim and lightweight design provides low-profile protection against every day wear and tear Stylish exterior graphic and Dual zippers make accessing your device quick and easy Fashion Sleeve Pouch for your 7 Inch Samsung Galaxy Tab A 2016, Samsung Galaxy J Max, Samsung Galaxy Tab 3 Lite 7.0, Samsung Galaxy Tab 4 7.0 is Tough enough to protect your tablet yet stylish to take everywhere you go. The high-grade and highly durable neoprene is water resistant and offers advanced protection from bumps, scratches and dust. And the smooth, non-scratch interior lining offers enhanced screen protection while your device is tucked away. Ideal for any tablet or e-book up to 7.75 inches, this no-bulk case easily slides into your bag, briefcase or backpack and perfect for those of you on the go. This Sleeve is compatible for most Tablets or Netbooks upto 7.75 inch. This pouch can accommodate your Samsung Galaxy Tab A 7.0 2016, Samsung Galaxy J Max, Samsung Galaxy Tab 3 Lite 7.0, Samsung Galaxy Tab 4 7.0. Product Features: Constructed of shock-absorbing & weather resistant neoprene material Non-abrasive material lines interior securing your device for safe travel and storage Slim and lightweight design provides low-profile protection against every day wear and tear Stylish exterior graphic and Dual zippers make accessing your device quick and easy', 'Unbranded', 'https://i5.walmartimages.com/asr/584f425c-b199-451c-a82a-781256572bed_1.9e4f8d8e45009fcc99ac41360eb28f6a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/584f425c-b199-451c-a82a-781256572bed_1.9e4f8d8e45009fcc99ac41360eb28f6a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/584f425c-b199-451c-a82a-781256572bed_1.9e4f8d8e45009fcc99ac41360eb28f6a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101721551, 'Jonagold Apples, 5 lbs Bag', 4.92, '033308005514', 'short description is not available', 'New York Apple Sales Jonagold Apples, 5 lbs', 'Fresh Produce', 'https://i5.walmartimages.com/asr/de530635-1316-44a7-9923-ed57e8eb30ac.fe2ef957bce8c012d6e00a0ff1145c1f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/de530635-1316-44a7-9923-ed57e8eb30ac.fe2ef957bce8c012d6e00a0ff1145c1f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/de530635-1316-44a7-9923-ed57e8eb30ac.fe2ef957bce8c012d6e00a0ff1145c1f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101751977, 'Grape Tomato, 10 oz Package', 2.88, '711069545271', 'Fresh grape tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Grape Tomatoes are the perfect choice.', 'Grape Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101754657, 'California Grown Peaches, per Pound', 1.58, '400094644669', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101804393, 'Walmart Produce Watermelon 10 Oz', 3.98, '077745245935', 'short description is not available', 'Walmart Produce Watermelon 10 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101902568, 'X-Seed 204FD0020UC-50 50 lbs Annual Gulf Ryegrass - Light Green', 49.35, '738835151009', 'X-Seed Annual Ryegrass Full Sun/Light Shade Grass Seed 25 lb.', 'Brand Name: X-Seed Grass Type: Annual Ryegrass Sunlight Required: Full Sun/Light Shade Product Type: Grass Seed Container Size: 25 lb. Coverage Area: 35000 sq. ft. Packaging Type: Bagged Drought Tolerant: No', 'X-Seed', 'https://i5.walmartimages.com/asr/0423f779-e940-474f-aaa1-1d5ac8c621eb.21c54e8d64d9407c5efc25971335139d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0423f779-e940-474f-aaa1-1d5ac8c621eb.21c54e8d64d9407c5efc25971335139d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0423f779-e940-474f-aaa1-1d5ac8c621eb.21c54e8d64d9407c5efc25971335139d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (101958082, 'Ready Pac Foods Ready Pac Pineapple, 10.5 oz', 3.88, '077745237497', 'Pineapple, Gold, Chucks 10.5 oz (298 g) Natural fruit. Perishable. No preservatives. Keep refrigerated. 10.5 oz (298 g) Irwindale, CA 91706 800-800-7822', 'Pineapple, Gold, Chucks Natural fruit. Perishable. No preservatives.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (102067344, 'Baking Potatoes Whole Fresh, lb', 1.27, '400094439708', 'Baking Potatoes are the perfect addition to your pantry. With so many ways to prepare potatoes, you\'ll want to add them to every meal. For breakfast, you could make crispy hash browns smothered in cheese and diced ham or add them to a savory omelet. For lunch or dinner, you could use these fresh potatoes to make au gratin potatoes, garlic mashed potatoes, or a baked potato loaded with cheese, sour cream, green onions, and bacon bits. If you\'re hosting a neighborhood get-together, you can use them to make creamy potato salad or homestyle French fries. Serve up something delicious when you cook with Russet Baking Potatoes.', 'Ideal addition to every pantry Make crispy hash browns or add to an omelet Serve garlic mashed potatoes or a loaded baked potato Great for potato salad or homestyle French fries', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/b8e26cef-3be9-470e-9829-70b78314eb57.ff1adc06a3c934de89587c489035ce18.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b8e26cef-3be9-470e-9829-70b78314eb57.ff1adc06a3c934de89587c489035ce18.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b8e26cef-3be9-470e-9829-70b78314eb57.ff1adc06a3c934de89587c489035ce18.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (102285367, 'Fresh Nectarines, 2.5 Lb.', 4.47, '078742064963', 'Fresh Nectarines, 2.5 Lb.', 'Fresh Nectarines 2.5# Box', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (102527901, 'Fresh Whole Organic Heirloom Tomato, 1 lb Package', 3.77, '044419310213', 'Enjoy the robust flavor of Fresh Whole Organic Heirloom Tomatoes. These tomatoes feature vibrant colors with sweet, juicy flavor in each bite, making them a versatile ingredient that\'s perfect for a wide range of dishes. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. These organic tomatoes are certified organic, meaning that you can enjoy a healthy, flavorful addition to elevate the taste and texture of any meal. They make an excellent addition to meals or simply enjoy them alone for a healthy and refreshing snack. Bring the fresh and delicious taste of Fresh Whole Organic Heirloom Tomatoes to your kitchen today!', 'Fresh Whole Organic Heirloom Tomato, 1 lb Package Sweet and juicy flavor in every bite Versatile ingredient that\'s perfect for a wide range of dishes Slice them up to garnish a sandwich or burger for added flavor and texture Dice them up to create a pizza or pasta topping Crush them up to make a decadent bruschetta or sauce Finely blend them to create your own personalized salsa USDA certified organic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e5cd9099-5b09-4cec-bf7b-2d63171f2a34.5f61dc1fc2b1fa276fbdc2e1158994a3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5cd9099-5b09-4cec-bf7b-2d63171f2a34.5f61dc1fc2b1fa276fbdc2e1158994a3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5cd9099-5b09-4cec-bf7b-2d63171f2a34.5f61dc1fc2b1fa276fbdc2e1158994a3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (102553887, 'Tomate Tubo, 3 Count', 1.67, 'deleted_052435000186', 'Tomate Tubo, 3 Count', 'Tomate Tubo 3ea', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/4e60a468-e7e6-4b55-bd09-7a4fb34c3fb6.1b2a353cafa527929a8efc76edae5101.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4e60a468-e7e6-4b55-bd09-7a4fb34c3fb6.1b2a353cafa527929a8efc76edae5101.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4e60a468-e7e6-4b55-bd09-7a4fb34c3fb6.1b2a353cafa527929a8efc76edae5101.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (102670221, 'Grapple Apple, 1 Each', 2.97, '847473003134', 'Apple, Grape Flavored 1 each', 'Apple, Grape Flavored, heart healthy, cholesterol free, gluten free', 'Unbranded', 'https://i5.walmartimages.com/asr/7a714673-cf2a-4446-80d9-0448cf3e3fa7.88ce7ac733a484926507e622948b31af.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7a714673-cf2a-4446-80d9-0448cf3e3fa7.88ce7ac733a484926507e622948b31af.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7a714673-cf2a-4446-80d9-0448cf3e3fa7.88ce7ac733a484926507e622948b31af.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (103122112, 'White Pearl Onions, 6 Oz.', 2.98, '075574859033', 'White Pearl Onions, 6 Oz.', 'White Pearl Onions 6 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (103202561, 'Uva Blanca, 1 Lb.', 4.98, '400094434383', 'Uva Blanca, 1 Lb.', 'Uva Blanca', 'Unbranded', 'https://i5.walmartimages.com/asr/45626e63-5f01-424c-9aa1-974ff5c54570.1891b7a9e57bb594fb892e8dceb32fa6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/45626e63-5f01-424c-9aa1-974ff5c54570.1891b7a9e57bb594fb892e8dceb32fa6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/45626e63-5f01-424c-9aa1-974ff5c54570.1891b7a9e57bb594fb892e8dceb32fa6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (103397459, 'Fresh Slicing Tomato, 6 Pack', 4.27, '858143004139', 'Create something wholesome and delicious with Tomatoes. These fresh tomatoes are the perfect ingredient for a variety of tasty dishes. Use them to make a decadent tomato sauce for a pasta dish; try slicing them up and pairing with mozzarella cheese, basil and balsamic vinegar; or simply enjoy them on their own as a nutritious snack. They would make a comforting and appetizing tomato soup and a flavorful salsa. You could also slice them up and use them to top burgers and pizza or use them to make a delicious grilled cheese and tomato sandwich. However you choose to use them, these tomatoes will add flavor and taste to any meal. Be sure to add these fresh tomatoes to your Walmart purhase today.', 'Slicing Tomatoes, 6 Count Pack of 3 fresh, whole slicing tomatoes Firm and thick-skinned Large size is perfect for slicing up and garnishing sandwiches and burgers Classic tomato flavor lends itself to a wide variety of recipes', 'Unbranded', 'https://i5.walmartimages.com/asr/d54fc0c1-a72c-453f-9a53-7961df8d9fc9.0960fbc3fd414e71298c1c3bd35b69f8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d54fc0c1-a72c-453f-9a53-7961df8d9fc9.0960fbc3fd414e71298c1c3bd35b69f8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d54fc0c1-a72c-453f-9a53-7961df8d9fc9.0960fbc3fd414e71298c1c3bd35b69f8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (103412487, 'Organic Concorde Pear, per Pound', 0.88, '883391930169', 'Organic Concorde Pear, per Pound', 'Organic Concorde Pear', 'Fresh Produce', 'https://i5.walmartimages.com/asr/aae2fd45-cfe2-4215-aa6b-df615108d360.94ba67d1cb58d7877e7b7eb32ea6e6b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aae2fd45-cfe2-4215-aa6b-df615108d360.94ba67d1cb58d7877e7b7eb32ea6e6b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aae2fd45-cfe2-4215-aa6b-df615108d360.94ba67d1cb58d7877e7b7eb32ea6e6b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (103562120, 'Fresh Large Heirloom Pumpkin, Whole, Each (Color and Variety May Vary)', 6.88, '892961001215', 'Celebrate the arrival of fall with our Large Heirloom Pumpkins, the perfect blend of beauty and purpose. Each pumpkin is fresh, whole, and uniquely shaped, offering rich colors and textures that transform any space into an autumn showcase. Whether you’re stacking them by a hay bale with bright fall foliage, creating a cozy Thanksgiving centerpiece, or building a playful Halloween scene with scarecrows and cobwebs, these pumpkins bring warmth and charm to your seasonal décor. Unlike ordinary carving pumpkins, heirloom varieties such as Cinderella, Fairytale, and Jarrahdale provide both decorative appeal and culinary value. Their thick, sweet flesh is ideal for homemade pies, soups, and roasted sides—making them as delicious as they are beautiful. Available only during the fall harvest, these pumpkins embody the spirit of the season and add an authentic touch to every autumn celebration.', 'Fresh Autumn Harvest – Whole heirloom pumpkin in unique colors, shapes, and textures (variety may vary from image). Perfect for Décor – Elevates front porch displays, Thanksgiving buffets, and seasonal table centerpieces. Ideal for Stacking - create layered porch displays or tiered centerpiece arrangements Halloween Ready – Arrange with scarecrows, cobwebs, and lanterns for a festive, spooky touch. Heirloom Varieties – Distinctive pumpkins like Cinderella, Fairytale, and Jarrahdale bring storybook charm and heritage flavor. Dual-Purpose Value – Beautiful for decorating and rich in thick, sweet flesh for pies, soups, and roasting. Generous Size – Large, impactful pumpkins that make a statement indoors and outdoors. Seasonal Treasure – A limited-time harvest product available only in the fall—get them while they last.', 'Fresh Large Heirloom Pumpkin', 'https://i5.walmartimages.com/asr/95a721a0-add1-4fc8-9598-d212f571e6ec.ddec8e112381727de01da55e3dd7707f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/95a721a0-add1-4fc8-9598-d212f571e6ec.ddec8e112381727de01da55e3dd7707f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/95a721a0-add1-4fc8-9598-d212f571e6ec.ddec8e112381727de01da55e3dd7707f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (103607444, 'Whole Baby Carrots 6oz', 3.99, '853968006849', 'short description is not available', 'Whole Baby Carrots 6oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/cc0e9ef7-59f8-45c6-aa7b-af1ee8933e74_1.09fd366041a8e9e931217bf1e0aa6745.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc0e9ef7-59f8-45c6-aa7b-af1ee8933e74_1.09fd366041a8e9e931217bf1e0aa6745.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc0e9ef7-59f8-45c6-aa7b-af1ee8933e74_1.09fd366041a8e9e931217bf1e0aa6745.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (103755489, 'Fresh Red Seedless Grapes', 1.87, 'deleted_014668760152', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (103767871, 'Tri-Color Onions, 3 Lb.', 2.48, '605806003042', 'Tri-Color Onions, 3 Lb.', 'Tri-color Onions 3 Lb Bag', 'SUNSET', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (103796373, 'Fresh Red Seedless Grapes, 3 lbs', 8.47, '033383250786', 'Treat yourself to the delicious, juicy flavor of Fresh Red Seedless Grapes. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Fresh Red Seedless Grapes.', 'Fresh Red Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (103799684, 'Fresh Whole Grape Tomato, 10 oz Bag', 3.97, '816239013328', 'Fresh Whole Grape Tomatoes are an exciting summer treat, and they\'re the perfect size for skewers, salads and roasting. These bite-sized grape tomatoes look and taste great. Grape tomatoes are a low-calorie treat that are also low in sodium and are a good source of fiber. Whether you are snacking or adding them to your favorite dish. their uses are almost limitless. Try these grape tomatoes with feta cheese, fresh dill, and a drizzle of olive oil for a light and delicious Mediterranean treat. Or make a caprese salad with grape tomatoes, fresh basil, fresh mozzarella, and balsamic vinegar. With 10-ounces of tomatoes in each package, you\'ll have plenty to make mouthwatering meals. Use your imagination to create delicious dishes with Fresh Whole Grape Tomatoes.', 'Fresh Whole Grape Tomatoes, 10 oz Package Perfect size for skewers, salads and roasting Low-calorie, low in sodium, and a good source of fiber Pair with feta cheese, fresh dill, and a drizzle of olive oil for a Mediterranean dish Make a caprese salad with grape tomatoes, fresh basil, fresh mozzarella, and balsamic vinegar', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (103864881, 'Cherry Tomato, 10 oz Package', 2.98, 'deleted_606105112657', 'Bring the fresh, delicious taste of Cherry Tomatoes into your home. Because of their notable flavor and thicker skin, they are a versatile tomato that\'s great for grilling, sauteing, roasting, or baking. Their small size also makes them a quick and simple addition to a fresh salad as well as an excellent finger food for whenever you\'re in the mood for a light snack. Packed with nutrients, cherry tomatoes are a deliciously healthy ingredient that adds both vibrant color and mouthwatering flavor to any recipe. For the best flavor and freshness, store these tomatoes at room temperature on your kitchen counter. Make your next meal a marvelous one with these fresh Cherry Tomatoes.', 'Cherry Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/39585953-8ae1-4909-a68a-40c3288c87ba.b7af54eb72069bdaca0bd4d3d88f9d2b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39585953-8ae1-4909-a68a-40c3288c87ba.b7af54eb72069bdaca0bd4d3d88f9d2b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39585953-8ae1-4909-a68a-40c3288c87ba.b7af54eb72069bdaca0bd4d3d88f9d2b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (104002718, 'Saturn Peach, Each', 4.97, 'deleted_813187011116', 'Donut white peaches are delightfully sweet and full of flavor! Donut peaches are fun-shaped and easy to eat.', 'Produce Unbranded Fresh California Grown Saturn Peaches', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c3f42ae8-968c-4ccb-957f-7cd76d3e043d_1.de373134c42d2085b82771f2ea12f695.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c3f42ae8-968c-4ccb-957f-7cd76d3e043d_1.de373134c42d2085b82771f2ea12f695.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c3f42ae8-968c-4ccb-957f-7cd76d3e043d_1.de373134c42d2085b82771f2ea12f695.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (104073068, 'Fresh Organic Green Grapes, Estimate 2.25 lbs, Bag', 6.97, '681131133739', 'Marketside Organic Green Seedless grapes are the perfect sweet snack that your whole family will enjoy. The fresh grapes are crisp and sweet and make an excellent addition to your breakfast, lunch, dinner or snack. A ¾ cup of grapes contains just 90 calories with no fat, no cholesterol, and virtually no sodium. Grapes are also a good source of Vitamin K and a natural source of antioxidants. This container conveniently contains two pounds of grapes making it easy to have your favorite fruit on hand for everyone in the house.', 'Fresh Organic Green Seedless Grapes Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e251457a-f630-4464-90fb-70778c7258b8_1.230b88422efcf5fbf819fd5fa8bedfa1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e251457a-f630-4464-90fb-70778c7258b8_1.230b88422efcf5fbf819fd5fa8bedfa1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e251457a-f630-4464-90fb-70778c7258b8_1.230b88422efcf5fbf819fd5fa8bedfa1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (104367434, 'Mt. Olive Bread & Butter Garden Salad with Vidalia Onions, 16 fl oz Jar', 2.48, '009300003667', 'Mt. Olive’s Vidalia Bread and Butter Garden Salad 16 fl oz combines your favorite ingredients in one jar creating mouth-watering results. Our beloved bread and butter chips mixed with Vidalia onions and carrots mix together for a delicious bread and butter pickle garden salad you can use as an ingredient in a recipe or alone as a snack or side dish. Our Simply Vidalia Bread and Butter Garden Salad makes a tasty topping for sandwiches, an excellent addition to salads, and wonderful inclusion in a variety of other dishes. Enjoy Mt. Olive’s Vidalia Bread and Butter Garden Salad today! Available in a 16 fl oz. jar.', 'One 16 ounce jar of Mt. Olive Vidalia Bread & Butter Chips Crafted from the Corner of Cucumber and Vine with Mt. Olive\'s exclusive pickle brine Certified Kosher and Vegan Resealable jar that locks in the perfect crunch and crispy flavor Pickled with only the freshest onions and cucumbers straight from the farm The perfect addition to any Hotdog, Hamburger or Salad Refrigerate to ensure freshness', 'Mt. Olive Pickle', 'https://i5.walmartimages.com/asr/1cc4bdca-e54a-4b40-a9c5-667e135d464a_1.1aa984270f3c6bde33621e2b61be7bc7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1cc4bdca-e54a-4b40-a9c5-667e135d464a_1.1aa984270f3c6bde33621e2b61be7bc7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1cc4bdca-e54a-4b40-a9c5-667e135d464a_1.1aa984270f3c6bde33621e2b61be7bc7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (104387879, 'Freshness Guaranteed Whole Brown Mushrooms, 16 oz', 4.67, 'deleted_021706162298', 'Experience the fresh taste of our Whole Organic Brown Mushrooms. Brown Mushrooms give you that same earthy taste you love about mushrooms but take it up a notch with their firm, meaty texture. Similar in size and shape to white mushrooms, Brown mushrooms are hardier and provide a deeper earthy taste. They\'re the same portabella mushrooms you\'ve enjoyed before - they\'ve just been harvested a few days earlier before becoming those large caps you\'ve seen in vegetarian and vegan cuisines. With their hearty, full-bodied taste, brown mushrooms are an excellent addition to beef, wild game, and vegetable dishes. Plus, these whole brown mushrooms are certified USDA Organic, making them a wholesome addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try out our Whole Organic Brown Mushrooms.', 'Fresh Whole Brown Mushrooms, 16 oz tray: 16-ounce package of sliced white mushrooms Naturally fat free Cholesterol free Low in calories, carbs and sodium Fresh and all natural Pre-cleaned Natural source of the antioxidant selenium Excellent addition to beef, wild game and vegetable dishes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/75f685b0-5daf-4963-a9a2-e258834dc40f.b07cfd6f55a79891fae7dba36d0e5879.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75f685b0-5daf-4963-a9a2-e258834dc40f.b07cfd6f55a79891fae7dba36d0e5879.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75f685b0-5daf-4963-a9a2-e258834dc40f.b07cfd6f55a79891fae7dba36d0e5879.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (104475164, 'Fresh Cranberries, 12 Oz.', 2.76, 'deleted_812049009421', 'Fresh Cranberries, 12 Oz.', 'Fresh Cranberry 12 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/59354037-8d6d-43e2-99a8-f1f9ed6b1c78.58052199a001d89d0999fc9a4fdaf4c5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59354037-8d6d-43e2-99a8-f1f9ed6b1c78.58052199a001d89d0999fc9a4fdaf4c5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59354037-8d6d-43e2-99a8-f1f9ed6b1c78.58052199a001d89d0999fc9a4fdaf4c5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (104504727, 'Taylor Farms Ginger Garlic Stir Fry Kit Packaged Meal, 14 oz', 3.28, '030223041252', 'The Taylor Farms Ginger Garlic Stir Fry Kit allows you to become a first-class stir fry chef in a matter of minutes. An aromatic blend of kale, broccoli, brussels sprouts, Bok choy, cabbage, and carrots paired with a ginger garlic sauce will leave everyone asking for seconds and giving compliments to the chef of course. It cooks in six minutes, so you\'ll have dinner on the table in no time. It\'s dairy-free, nut-free, vegetarian, and vegan. Keep this 14-ounce bag refrigerated until ready to enjoy. Treat the entire family to the delicious taste of Taylor Farms Ginger Garlic Stir Fry Kit.', 'An aromatic blend of kale, broccoli, brussels sprouts, Bok choy, cabbage, and carrots Keep refrigerated 3.5 servings per 14-ounce package 70 calories per serving Ready in 6 minutes Dairy-free, nut-free, vegetarian, and vegan Includes a garlic ginger sauce', 'Taylor Farms', 'https://i5.walmartimages.com/asr/1b57d12d-b3b5-4bdf-a4e7-d3921e293bfa.fe006147c6a6cb13febcc7e53c9061cc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1b57d12d-b3b5-4bdf-a4e7-d3921e293bfa.fe006147c6a6cb13febcc7e53c9061cc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1b57d12d-b3b5-4bdf-a4e7-d3921e293bfa.fe006147c6a6cb13febcc7e53c9061cc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (104604725, 'Slicing Tomato, Each', 2.18, '714548031517', 'Slicing Tomatoes are the leader when it comes to big, yummy, fresh tomatoes. The large size, juicy tomato taste and meaty texture make these tomatoes the perfect choice for slicing up and topping your favorite burger and sandwiches. Use them to make a hearty grilled cheese and tomato sandwich that\'s bursting with flavor. Slice some up and pair with fresh mozzarella, basil, and balsamic vinegar for a delicious appetizer. You can even enjoy a slice topped with a sprinkle of salt and pepper for a fresh, healthy snack. Add Slicing Tomatoes to your fresh produce basket today for a delicious juicy addition.', 'Slicing Tomatoes, Each: Wholesome, versatile, and delicious Large size with a juicy, delicious flavor Meaty texture makes them perfect for slicing Enjoy on burgers, sandwiches and more Enjoy on its own seasoned with salt and pepper as a heathy snack Create a mouthwatering salad or appetizer', 'Fresh Produce', 'https://i5.walmartimages.com/asr/596ed5a2-6558-42d6-9a5b-c318bc9f4ae2.4927131d05c00312cf51744e17e11473.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/596ed5a2-6558-42d6-9a5b-c318bc9f4ae2.4927131d05c00312cf51744e17e11473.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/596ed5a2-6558-42d6-9a5b-c318bc9f4ae2.4927131d05c00312cf51744e17e11473.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (104689162, 'Fresh Produce, Cubanelle Pepper, Pimiento De Cocinar, lb', 0.67, '000000046879', 'Add rich flavor and color to your meals with these fresh Cubanelle Peppers. These versatile peppers are light green in color before they ripen and then turn red once they\'re ripe. The Cubanelle is a mild pepper that may be used much like you would use a bell pepper. Try these peppers stuffed with your favorite ingredients like cheese, sirloin steak, and zesty spices. You could also use them in your next stir fry to add a mild sweetness or even pan fry them and season them for a quick and tasty snack. They are low in calories, and they\'re a great source of vitamins C and A. Fresh Produce, Cubanelle Pepper, Pimiento De Cocinar, lb', 'Mild and sweet Perfect stuffed with your favorite ingredients Try them in your next stir fry Fry and season by themselves for a quick and nutritious snack Low in calories Good source of vitamins A and C', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a102ed08-5558-4082-a09e-52808ee4d408.803492be2ec14b8165519900f65e102b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a102ed08-5558-4082-a09e-52808ee4d408.803492be2ec14b8165519900f65e102b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a102ed08-5558-4082-a09e-52808ee4d408.803492be2ec14b8165519900f65e102b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (104813441, 'Sunset Organic Cocktail Tomatoes, 12 oz Package, Fresh', 5.47, '057836020771', 'SUNSET Organic Cocktail Tomatoes are 12 ounces of flavorful and fresh tomatoes! From salsa to salads, this Organic Cocktail Tomato is the most versatile tomato in the kitchen. The perfect balance of sweetness and acidity, their small size makes them an ideal choice for salads, sauces, appetizers, and more. Hothouse grown to ensure consistent quality and freshness. Certified organic and non-GMO tomatoes grown without pesticides or herbicides. Store at room temperature for optimal flavor, and wash before enjoying. Clamshell packaging makes washing and storing a breeze. Enjoy SUNSET Organic Cocktail Tomatoes all year long.', 'SUNSET fresh Organic Cocktail Tomato Perfectly balanced sweetness and acidity Small size is ideal for salads and appetizers Wash and enjoy Available all-year-long Non-GMO certified Certified organic Hothouse grown to ensure consistent quality and freshness No pesticides or herbicides 12-oz clamshell container makes washing and storing a breeze Store at room temperature for optimal flavor', 'SUNSET', 'https://i5.walmartimages.com/asr/536c0d46-76f3-44f0-bbab-e68d0c59dd1c_1.d35c06395805ec11922ebb51d73195c7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/536c0d46-76f3-44f0-bbab-e68d0c59dd1c_1.d35c06395805ec11922ebb51d73195c7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/536c0d46-76f3-44f0-bbab-e68d0c59dd1c_1.d35c06395805ec11922ebb51d73195c7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (104965407, 'Heirloom Tomato, 2 Pack', 3.98, 'deleted_044419510316', 'Fresh Heirloom Tomatoes are the time tested, never modified, reminder of the quality eating experience that can only come from a tomato grown in your own backyard and picked at the peak of perfedtion! Whether chopping to add into a salad, or sliced as part of a burger, these fresh heirloom tomatoes will not dissapoint. Be sure to add fresh heirloom tomatoes to our Walmart produce purchase today', 'Heirloom Tomato', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (105116093, 'Organic Minced Garlic 4.5 Oz Jar', 2.66, 'deleted_023562010546', 'short description is not available', 'Organic Minced Garlic 4.5 Oz Jar', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/8e5bae08-e840-49db-a31d-1908f2691306.58f79bad67e86b10bdb40332df118e78.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8e5bae08-e840-49db-a31d-1908f2691306.58f79bad67e86b10bdb40332df118e78.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8e5bae08-e840-49db-a31d-1908f2691306.58f79bad67e86b10bdb40332df118e78.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (105267026, 'Ocean Victoria Brussels Sprouts, 10 Oz.', 4.98, '060556601601', 'Ocean Victoria Brussels Sprouts, 10 Oz.', 'Ocean Victoria Brussels Sprouts', 'OCEAN VICTORIA', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (105292093, 'York Apple Totes', 0.98, '681131124164', 'short description is not available', 'York Apple Totes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (105301792, '200pc Pto Rst 5#', 648, '405507544475', 'short description is not available', '200pc Pto Rst 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (105380798, 'Large Melon Medley', 3.97, '224131000009', 'short description is not available', 'Large Melon Medley', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (105513263, '155pc Bumpy Pumpkins', 616.9, '405968009070', 'short description is not available', '155pc Bumpy Pumpkins', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (105573995, 'Organic Danjou Pears, per Pound', 1.97, '045255124941', 'Organic Danjou Pears, per Pound', 'Organic Danjou Pears', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (105692162, 'Fresh from the Start Potatoes, 3 Lb.', 1.5, '033383452739', 'Potatoes, Gourmet White 3 lb (11.36 kg) US No. 1 (3/4 inch min). Potatoes goodness unearthed. Full of vitamins and minerals. Tips and Trivia: Potatoes were the first vegetable grown in space. Cut potatoes can be stored in cold water for up to two hours to prevent discoloration. French fries were introduced to the United States by President Thomas Jefferson in 1801, at the White House. Health Benefits: Fat free. One medium potato provides 45% of the daily value of vitamin C. Cholesterol free. Excellent source of potassium. Produce of USA. 3 lb (11.36 kg) Riverhead, NY 11901', 'Potatoes, Gourmet WhiteUS No. 1 (3/4 inch min). Potatoes goodness unearthed. Full of vitamins and minerals. Tips and Trivia: Potatoes were the first vegetable grown in space. Cut potatoes can be stored in cold water for up to two hours to prevent discoloration. French fries were introduced to the United States by President Thomas Jefferson in 1801, at the White House. Health Benefits: Fat free. One medium potato provides 45% of the daily value of vitamin C. Cholesterol free. Excellent source of potassium. Produce of USA.', 'Unbranded', 'https://i5.walmartimages.com/asr/bf8a5fba-17d0-4596-8f5c-003001a5c904.a9fc0e1ecfc34da55db342f7516cdedb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bf8a5fba-17d0-4596-8f5c-003001a5c904.a9fc0e1ecfc34da55db342f7516cdedb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bf8a5fba-17d0-4596-8f5c-003001a5c904.a9fc0e1ecfc34da55db342f7516cdedb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (105712396, 'Freshness Guaranteed Fruit Cup To Go Fresh Treat Blend', 2.28, '263027000006', 'short description is not available', 'Freshness Guaranteed Fruit Cup To Go Fresh Treat Blend', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (105773014, 'Kumquats', 3.48, '045255113662', '12x1pint clamshells fresh kumquats', '12x1pint clamshells fresh kumquats 12x1pint clamshells fresh kumquats', 'Generic', 'https://i5.walmartimages.com/asr/a318021a-1ce9-4b45-a5c2-ac3a2bdb5f1c.8eebf9bcf22077454471d22fd92f1e76.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a318021a-1ce9-4b45-a5c2-ac3a2bdb5f1c.8eebf9bcf22077454471d22fd92f1e76.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a318021a-1ce9-4b45-a5c2-ac3a2bdb5f1c.8eebf9bcf22077454471d22fd92f1e76.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (105798635, 'Russet Potatoes, 3 lb bag', 0.97, '012289531571', '', '', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1defbae2-5e0d-4c96-bd62-10f3e23e3372_1.14791b8de8802b1d3a1b4f9824649948.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1defbae2-5e0d-4c96-bd62-10f3e23e3372_1.14791b8de8802b1d3a1b4f9824649948.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1defbae2-5e0d-4c96-bd62-10f3e23e3372_1.14791b8de8802b1d3a1b4f9824649948.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (105942242, 'Organic 3# Bag Grapefruit', 5.88, '851343002509', 'short description is not available', 'Organic 3# Bag Grapefruit', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (105992578, 'Hh Baby Eggplant', 2.98, '000000045995', 'short description is not available', 'Hh Baby Eggplant', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106049059, 'Milpero Tomatillos, 1 lb', 1.5, '037842070441', '', '', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/30293232-4f93-4396-87f4-cfbf6860e8e3_1.0914342035279c84c0139d0538ce7c33.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/30293232-4f93-4396-87f4-cfbf6860e8e3_1.0914342035279c84c0139d0538ce7c33.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/30293232-4f93-4396-87f4-cfbf6860e8e3_1.0914342035279c84c0139d0538ce7c33.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106069253, 'Fresh Red Delicious Apples, 3 lb Bag', 3.44, '033383080611', 'Savor the sweet taste of Red Delicious Fresh Apples. Red Delicious apples have a classic sweet flavor and are crisp and juicy with higher antioxidants due to the rich deep red skin. Perfect for snacking, they have a creamy white flesh with low acidity. Chop the apples up and add them to a slow cooker with lemon juice, water and cinnamon for a sweet and tasty apple sauce that everyone is sure to love. Add it to your favorite smoothie or juice blend for a morning pick me up to get your day started right. Serve with a dollop of peanut butter and enjoy as a healthy snack that both kids and adults will love. Enjoy the delicious taste of Red Delicious Apples.', 'Freshness Guaranteed Red Delicious Apples, 3 lb Bag: Sweet, crisp, and juicy Creamy white flesh with low acidity Excellent snacking apple Higher antioxidants due to the rich, deep red skin Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp, and apple pie', 'Fresh Produce', 'https://i5.walmartimages.com/asr/54a13a30-0239-4da7-8de3-df2636b17e92.e59aab7b30b1a26c75e87e03bcf3c068.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54a13a30-0239-4da7-8de3-df2636b17e92.e59aab7b30b1a26c75e87e03bcf3c068.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54a13a30-0239-4da7-8de3-df2636b17e92.e59aab7b30b1a26c75e87e03bcf3c068.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106112116, '200pc Pto Ykn 5# Mf', 853.99, '405526691525', 'short description is not available', '200pc Pto Ykn 5# Mf', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106184917, 'Tomate Plato, 4 Count', 2.97, '052435655027', 'Tomate Plato, 4 Count', 'Tomate Plato 4 Each', 'Unbranded', 'https://i5.walmartimages.com/asr/f831b600-aa81-41a3-9931-fbf714ca3a92.e63d188f7e3bedc7c8658fac524b95ba.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f831b600-aa81-41a3-9931-fbf714ca3a92.e63d188f7e3bedc7c8658fac524b95ba.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f831b600-aa81-41a3-9931-fbf714ca3a92.e63d188f7e3bedc7c8658fac524b95ba.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106317186, 'Premium Bananas', 0.49, 'deleted_405821601144', 'short description is not available', 'Premium Bananas', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106520773, 'Red Grapes Multipak 5ct/3oz', 4.97, '859002004192', 'short description is not available', 'Red Grapes Multipak 5ct/3oz', 'WOOT FROOT', 'https://i5.walmartimages.com/asr/6eedb1ff-a83d-4247-b53e-3fc7f70d3993.853390968a4f178bfd7c86ad1b2fbd90.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6eedb1ff-a83d-4247-b53e-3fc7f70d3993.853390968a4f178bfd7c86ad1b2fbd90.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6eedb1ff-a83d-4247-b53e-3fc7f70d3993.853390968a4f178bfd7c86ad1b2fbd90.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106591006, 'White Turnips, 1 Lb.', 4.97, '400094303283', 'White Turnips, 1 Lb.', 'Nabo Blanco', 'Unbranded', 'https://i5.walmartimages.com/asr/0d1f1dd6-07aa-42cb-9014-632242f78097.ee1ec4ddfdf93a467716523c6a7adf53.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d1f1dd6-07aa-42cb-9014-632242f78097.ee1ec4ddfdf93a467716523c6a7adf53.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d1f1dd6-07aa-42cb-9014-632242f78097.ee1ec4ddfdf93a467716523c6a7adf53.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106726969, 'Fresh Radicchio, 1 lb.', 2.94, '000000047388', 'Introducing Joe Premium Radicchio, the embodiment of fresh and whole produce. Grown with meticulous attention, this radicchio maintains its vibrant color and crispness. Bursting with flavor and packed with nutrients, it adds a delightful twist to salads and other dishes. Indulge in the freshness and wholesomeness of Joe Premium Radicchio, and elevate your culinary creations with its distinct taste and exceptional quality.', 'Radicchio, 1 lb Introducing Joe Premium Radicchio, the embodiment of fresh and whole produce. Grown with meticulous attention, this radicchio maintains its vibrant color and crispness. Bursting with flavor and packed with nutrients, it adds a delightful twist to salads and other dishes. Indulge in the freshness and wholesomeness of Joe Premium Radicchio, and elevate your culinary creations with its distinct taste and exceptional quality.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c72bfe18-e2ce-4f66-9dcd-04ce9f9791a2.0f126d04aebd6115a6fab48194167c3b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c72bfe18-e2ce-4f66-9dcd-04ce9f9791a2.0f126d04aebd6115a6fab48194167c3b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c72bfe18-e2ce-4f66-9dcd-04ce9f9791a2.0f126d04aebd6115a6fab48194167c3b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106749299, 'Kanzi (nikita) Apples 5 Lb Bag', 5.29, '847473005992', 'short description is not available', 'Kanzi (nikita) Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106805386, 'Santa Fe Salad Bowl, 7 Oz.', 2.98, '795631842944', 'Santa Fe Salad Bowl, 7 Oz.', 'Salad Bowl Santa Fe', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106813160, 'Crisply Spicy Greens Mixed Salad, 5 oz', 3.48, '857951008018', 'Crisply Spicy Greens Mixed Salad, 5 Oz.', 'Crisply Spicy Greens Mixed Salad, 5 oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b47811bf-f8d9-4c39-9e0a-60da25592d64_3.a20519cd0175c4e479f35d757d6e829a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b47811bf-f8d9-4c39-9e0a-60da25592d64_3.a20519cd0175c4e479f35d757d6e829a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b47811bf-f8d9-4c39-9e0a-60da25592d64_3.a20519cd0175c4e479f35d757d6e829a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106832910, 'Organic Wellness Blend, 5 Oz.', 3.46, '030223101765', 'Organic Wellness Blend, 5 Oz.', 'Organic Wellness Blend', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106926993, 'Cherry Tomato, 10 oz Package', 3.26, 'deleted_033383655949', 'Your order will contain 1 pint of organic cherry tomatoes.', 'Organic Cherry Tomato', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106948318, 'Cored Pineapple', 4.97, '042797200072', 'short description is not available', 'Cored Pineapple', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106971512, 'Cinnamon Apples With Blueberries 3-count', 2.98, '074641018052', 'short description is not available', 'Cinnamon Apples With Blueberries 3-count', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (106984115, 'Mx Roma Tomatoes', 1.49, 'deleted_078742046938', 'short description is not available', 'Mx Roma Tomatoes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107016149, 'Fresh Express Fresh Express Salad, 5 oz', 1.98, '071279271224', 'Salad, Baby Kale Mix, Bag 5 OZ Chard, baby kale, spinach. Guaranteed fresh. Excellent source of vitamin A + vitamin K. Good source of folate. Thoroughly washed. Ready to eat. No preservatives. Fruits & Veggies: More matters. Why we\'re so fresh! To guarantee Fresh Express salads are consistently, deliciously fresh, we: cool our salads within hours of harvest to keep them chilled from field to store; thoroughly rinse and gently dry; then seal them in our keep-crisp bag to maintain freshness; and deliver fresh salads daily. Fresh Express Promise: Fresh guaranteed! At Fresh Express, we are passionate about delivering the freshest, highest quality salads possible! Our team of food scientists and agricultural experts are committed to exceeding industry standards so we can guarantee the freshest of our salads, every single day. Questions? Comments? Call 1-800-242-5472 or visit www.FreshExpress.com. Tenderleaf. Get delicious recipes & more. Product of USA. Keep refrigerated. Reseal for freshness. 5 oz (141 g) 550 S. Caldwell St. Charlotte, NC 28202 800-242-5472 2013 Fresh Express Incorporated', 'Salad, Baby Kale Mix Excellent source of vitamin A + vitamin K. Good source of folate. Chard. Baby kale. Spinach. Guaranteed fresh. Ready to eat. Reseal for freshness. No preservatives. Fruits & veggies more matters. Why we\'re so fresh! To guarantee fresh express salads are consistently, deliciously fresh, we: Cool our salads within hours of harvest and keep them chilled from field to store; thoroughly rinse and gently dry; then seal them in our keep-crisp bag to maintain freshness; and deliver fresh salads daily. Promise: Fresh express. Fresh guaranteed! At fresh express, we are passionate about delivering the freshnest, highest quality salads possible! Our team of food scientists and and agriculture experts are committed to exceeding industry standards so we can guarantee the freshness of our salads, every single day. SmartLabel: Scan for more food information. Tender leaf. Get delicious recipes & more! Questions? Comments? 1-8880-242-5472 or www.freshexpress.com. Product of USA.', 'Fresh Express', 'https://i5.walmartimages.com/asr/71c33aae-f9a8-416d-aae7-3cd1c3bcc2ea.e0b4214d776a3814bda8076543a5e8ac.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71c33aae-f9a8-416d-aae7-3cd1c3bcc2ea.e0b4214d776a3814bda8076543a5e8ac.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71c33aae-f9a8-416d-aae7-3cd1c3bcc2ea.e0b4214d776a3814bda8076543a5e8ac.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107217975, 'Fresh Chocolate Dipped Strawberries, 4 Count Container', 7.28, '204252000003', 'The sweet, juicy flavor of Fresh Chocolate Dipped Strawberries make them a refreshing and delicious treat. They can be enjoyed on their own or as a garnish for cakes and other strawberry desserts. Keep the berries refrigerated in original Clam Shell to keep them fresh and ready for use. Pick up Fresh regular Chocolate dipped Strawberries today and savor the delectable flavor.', 'Regular, fresh, juicy strawberries dipped in rich, velvety chocolate The perfect combination of sweet and tangy flavors A luxurious treat for any occasion, from romantic dates to weddings and parties Keep your strawberries refrigerated in the original Clam Shell container to maintain freshness Keep dry for optimal freshness', 'Fresh', 'https://i5.walmartimages.com/asr/700b48f0-e1bc-483c-932b-0035e8730ae0.2f4eb452087bec8bb9077bb377b0acb7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/700b48f0-e1bc-483c-932b-0035e8730ae0.2f4eb452087bec8bb9077bb377b0acb7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/700b48f0-e1bc-483c-932b-0035e8730ae0.2f4eb452087bec8bb9077bb377b0acb7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107284862, 'Mutsu Apples 5 Lb Bag', 4.97, '022906500125', 'short description is not available', 'Mutsu Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107325751, 'Sweet Onions 3 Lb Bag', 2.83, '042808350338', 'short description is not available', 'Sweet Onions 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107341224, 'Fresh Red Apples, 3 lb Bag', 3.44, '741839005957', 'Kiku Fresh apples are a premium variety grown in the sun-drenched orchards of Italy. Known for their exceptional sweetness and satisfying crunch, these apples are the perfect snack for any occasion. Their unique cinnamon-like aroma and beautiful red and yellow coloration make them a standout choice for baking or creating elegant cheese plates. Buy a bag of Kiku apples today and enjoy a taste of Italy in every bite.', 'Sweet, crisp, and juicy Creamy white flesh with low acidity Excellent snacking apple Higher antioxidants due to the rich, deep red skin Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp, and apple pie', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ada31246-1c45-4c41-aec7-e2d607500bdf.38553668d16b287cd56e935e3f043740.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ada31246-1c45-4c41-aec7-e2d607500bdf.38553668d16b287cd56e935e3f043740.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ada31246-1c45-4c41-aec7-e2d607500bdf.38553668d16b287cd56e935e3f043740.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107383676, 'California Grown Peaches, per Pound', 1.58, '400094622681', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107396726, 'Marketside Seafood Salads', 3.98, '681131095600', 'short description is not available', 'Marketside Seafood Salads', 'Marketside', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107487742, 'Sweet Potatoes 5 Lb Bag', 4.27, '855555002197', 'short description is not available', 'Sweet Potatoes 5 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107507562, 'Fresh From The Start Onions, 5 lb', 3.67, '033383600031', 'Discover the versatile and flavorful Fresh From The Start Onions, available in a convenient 5 lb. bag. These high-quality onions are a staple ingredient in countless recipes, adding depth and aroma to your favorite dishes. Perfect for dicing, slicing, or caramelizing, our onions are carefully selected to ensure optimal freshness and taste. Enhance your culinary creations with the robust flavor of Fresh From The Start Onions, and experience the difference that superior produce can make in your home-cooked meals.', 'Onion Yellow 5 Lb. Discover the versatile and flavorful Fresh From The Start Onions, available in a convenient 5 lb. bag. These high-quality onions are a staple ingredient in countless recipes, adding depth and aroma to your favorite dishes.; Perfect for dicing, slicing, or caramelizing, our onions are carefully selected to ensure optimal freshness and taste.; Enhance your culinary creations with the robust flavor of Fresh From The Start Onions, and experience the difference that superior produce can make in your home-cooked meals.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d575010c-7c27-45cc-8c0e-58556d120ada.f121a5e93ed0802a729b3ddaf89ea9b8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d575010c-7c27-45cc-8c0e-58556d120ada.f121a5e93ed0802a729b3ddaf89ea9b8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d575010c-7c27-45cc-8c0e-58556d120ada.f121a5e93ed0802a729b3ddaf89ea9b8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107512749, 'Plum 1 lb Pack', 4.88, 'deleted_815263013069', 'Emerald Plum 1 Lb Clamshell', 'Emerald Plum 1 Lb Clamshell', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ddcd508f-b9f1-46bb-9827-127e9b1e5fb9.44d47b99b3f89701ce045e39ce19fd61.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ddcd508f-b9f1-46bb-9827-127e9b1e5fb9.44d47b99b3f89701ce045e39ce19fd61.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ddcd508f-b9f1-46bb-9827-127e9b1e5fb9.44d47b99b3f89701ce045e39ce19fd61.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107544941, 'Fresh Beets, lb', 1.37, '400094254615', 'Serve up something amazing when you cook with Fresh Beets. This versatile root vegetable is known for its bright red color and is a great addition to a healthy diet and can be prepared in a variety of ways. Roast them with your favorite seasonings and serve with a juicy steak and homemade rolls or add them to a goat cheese and arugula salad. Use them in a comforting soup recipe, a delicious casserole, or even a cake. However, you choose to use them, these beets will add big flavor and unforgettable taste to any meal. The culinary possibilities are endless with Fresh Beets.', 'Fresh Beets, Bunch Known for their ruby red hue Deep, earthy flavor Great for a variety of dishes Ideal Temperature: 33 F', 'Unbranded', 'https://i5.walmartimages.com/asr/a5bbee36-3acf-4f3a-a717-df6a6c35e132.dd1cd8418f533f94f2bc4f7bbc0a34ae.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a5bbee36-3acf-4f3a-a717-df6a6c35e132.dd1cd8418f533f94f2bc4f7bbc0a34ae.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a5bbee36-3acf-4f3a-a717-df6a6c35e132.dd1cd8418f533f94f2bc4f7bbc0a34ae.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107656095, 'Tomate, 1 Lb.', 2.57, '400094060728', 'Tomate, 1 Lb.', 'Tomate Cocinar #1', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107716331, '225pc Pto Rst Jmb 8#', 1332, '405518608470', 'short description is not available', '225pc Pto Rst Jmb 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107746698, 'Baby White Potatoes, 1.5 Lb.', 3, '667859026201', 'Baby White Potatoes, 1.5 Lb.', 'White Baby Potatoes 24 Oz Clamshell', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107834173, 'Aloha Gourmet Mini Pounder Li Hing Fuji Apples, 3.8 Oz.', 2.08, '797516044771', 'Li Hing Fuji Apples 3.8 oz (107.7 g) www.alohagourmet.net. Product of Thailand & Taiwan. Phenylketonurics: contains phenylalanine. 3.8 oz (107.7 g) Honolulu, HI 96819', 'Li Hing Fuji Appleswww.alohagourmet.net. Product of Thailand & Taiwan.', 'Aloha Gourmet', 'https://i5.walmartimages.com/asr/7c7c52e8-2721-4707-9b3b-2f9d3fcdc861.ced83b096d044cd0f64b31a8a0842b47.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c7c52e8-2721-4707-9b3b-2f9d3fcdc861.ced83b096d044cd0f64b31a8a0842b47.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c7c52e8-2721-4707-9b3b-2f9d3fcdc861.ced83b096d044cd0f64b31a8a0842b47.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (107966262, 'Fresh Broccoli Crown, each', 4.77, '400094289075', 'Broccoli crowns are the premium cut of broccoli, trimmed just under the broccoli head. Healthy & Delicious!!!!', 'Healthy side to any meal Excellent steamed, roasted, sautéed, in soups or served raw with a favorite dip Stalks cut short to offer greater ratio of florets per lb', 'Unbranded', 'https://i5.walmartimages.com/asr/1ee5500b-e985-4022-b8bc-726a40fa0043.9f71623966c6834020d03782363fa077.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1ee5500b-e985-4022-b8bc-726a40fa0043.9f71623966c6834020d03782363fa077.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1ee5500b-e985-4022-b8bc-726a40fa0043.9f71623966c6834020d03782363fa077.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108143231, 'Melorange (Charentais) Melon', 2.48, '885674000446', 'A Fresh Melorange (Charentais) Melon has a birght orange center that is firm with a crisp and succulent consistency. This melon has a high suagr content creating a sweet and subtly fruity taste. It is a great item to add to appetizer platters, halved and filled with cottage cheese or even eaten for breakfast! Enjoy one today and every day!', 'Melorange (Charentais) Melon: High sugar content Melon Firm orange inside with a small seed cavity Use to create apptizer platters or enjoy as a breakfast treat Can be used in smoothies or a fresh topping for yogurts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6edeb223-dac7-4e34-a514-7a144970d6a2.0661cd732735ee634aa5656a1002cc8a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6edeb223-dac7-4e34-a514-7a144970d6a2.0661cd732735ee634aa5656a1002cc8a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6edeb223-dac7-4e34-a514-7a144970d6a2.0661cd732735ee634aa5656a1002cc8a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108160610, 'Squash Hubbard Per Lb', 1.48, '853647001356', 'short description is not available', 'Squash Hubbard Per Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5d1d068a-7b60-491c-9099-2ec9a29577d4.ecfea1f9c8a30e96c1c93045ae5944e4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5d1d068a-7b60-491c-9099-2ec9a29577d4.ecfea1f9c8a30e96c1c93045ae5944e4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5d1d068a-7b60-491c-9099-2ec9a29577d4.ecfea1f9c8a30e96c1c93045ae5944e4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108254120, 'Steamables Red Potatoes with Picante Salt, per Pound', 3.48, '813652010101', 'Steamables Red Potatoes with Picante Salt, per Pound', 'Red Steamables Potatoes with picante Salt', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108454904, 'Fresh Bean Sprouts, 12 Oz.', 1.47, '018186002039', 'Fresh Bean Sprouts, 12 Oz.', 'Fresh Bean Sprouts 12 Oz.', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108496604, 'Freshness Guaranteed Kiss Melon 16 Oz', 4.48, '681131428699', 'short description is not available', 'Freshness Guaranteed Kiss Melon 16 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108501760, 'D\'Altura Grape Tomato, 8 Oz.', 3.47, '860551000207', 'D\'Altura Grape Tomato, 8 Oz.', 'D\'altura Tomate Grape 8oz', 'D\'Altura', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108556583, 'Elephant Garlic Whole Fresh, Each', 4.28, 'deleted_718940001376', 'Sweet and mild, Fresh Elephant Garlic is terrific for a mild garlic butter with mixed herbs. Elephant garlic bulbs are an excellent source of vitamins E, C, and A. Similar to conventional garlic, elephant garlic also contains allicin, which has been known for its antibacterial properties. Commonly used as a substitute for common garlic in cooking, use elephant garlic when you’re looking for a more subtle garlic flavor. You can sautee elephant garlic, roast it, grill it, or use it raw in salads or dips. These large bulbs, sometimes as large as a man’s fist, are an excellent addition to any home cook’s arsenal. Add the distinctive zing of garlic to your dishes with Fresh Elephant Garlic.', 'Elephant Garlic Per Each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8b7f762f-60bf-482e-ba11-7fbcc49063b5.d7cd588fc644dbe8ba9e46d36c14b375.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8b7f762f-60bf-482e-ba11-7fbcc49063b5.d7cd588fc644dbe8ba9e46d36c14b375.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8b7f762f-60bf-482e-ba11-7fbcc49063b5.d7cd588fc644dbe8ba9e46d36c14b375.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108636478, 'Fresh Chinese Eggplant, Each', 3.31, '000000030892', 'Our fresh Chinese Eggplant will add delicious flavor and texture to your next meal. The Chinese eggplant has a thinner skin and fewer seeds than a globe eggplant. With fewer seeds, the Chinese eggplant is not as bitter and has a more delicate flavor. Use it in recipes such as Chinese Eggplant with Spicy Garlic Sauce or Szechuan Eggplant. No matter how you choose to use it, this Chinese eggplant will add a mild and sweet flavor to any meal. Explore new recipes and discover all the delicious ways to prepare this tasty vegetable. Add something delicious and nutritious to your next meal with our fresh Chinese Eggplant.', 'Thinner skin and fewer seeds than a globe eggplant Not as bitter as a globe eggplant and has a milder flavor Use in stir fries, soups, or roast it for delicious flavor Will add a mild and sweet flavor to a myriad of recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6b8e7e84-26f2-477b-bd0c-94402dce779a.004c30373a8312fc1e706d1d8db2ef6e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6b8e7e84-26f2-477b-bd0c-94402dce779a.004c30373a8312fc1e706d1d8db2ef6e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6b8e7e84-26f2-477b-bd0c-94402dce779a.004c30373a8312fc1e706d1d8db2ef6e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108646054, 'Cheese Raw Org Tomato & Garlc', 4.98, '759885882064', 'short description is not available', 'Cheese Raw Org Tomato & Garlc', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108804643, 'Taylor Farms Fresh Red Grapes', 2.05, '030223081135', 'short description is not available', 'Taylor Farms Fresh Red Grapes', 'Taylor Farms', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108812734, 'Foxy Foods Foxy Organic Broccoli Slaw, 12 oz', 2.36, '824862077020', 'Broccoli Slaw 12 oz (340 g) Broccoli & Carrots. Ready-to-use. Preservative-free. USDA Organic: Certified organic by California Organic Framers (CCOF). The Foxy Vent Sticker helps keep your product fresh. Perishable. Keep refrigerated. 12 oz (340 g) Salinas, CA 93902 800-695-5012', 'Foxy Foods Foxy Organic Broccoli Slaw, 12 oz', 'FIELDPACK UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108908605, 'Freshness Guaranteed Pink Lady Apples, 3 lb Bag', 5.28, 'deleted_681131430548', 'Treat yourself to the delicious, crisp taste of Freshness Guaranteed Pink Lady Apples. These apples are known for their vivid green skin covered in a pinkish blush, crunchy texture, and tart taste with a sweet finish. Enjoy one with breakfast or lunch or as a fresh snack any time of day. Best of all, these delicious apples hold up well when cooked and can be used in both savory and sweet dishes. They can be used for baking, snacking, salads, pairing, or made into a delicious sauce that pairs perfectly with pork. Try incorporating them into soups and compotes or using to make yummy jam or juice. Use them to create apple crisp, pie, and strudel for a sweet treat. You can even pair them with sharp cheeses and crackers to create a stunning appetizer cheese board to share with guests. The possibilities are endless with Freshness Guaranteed Pink Lady Apples. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Pink Lady Apples, 3 lb Bag: Includes 3 pounds of tart, crisp apples Tart taste with a sweet finish Pair them with sharp cheeses and crackers for a stunning appetizer board Can be enjoyed fresh or cooked into both savory and sweet dishes Meets or exceeds U.S. Extra Fancy Minimum diameter: 2.5\"', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/e7280927-854d-4a8a-982b-9ce3a2c15167.d10b0af22142a3f7958854cc7f150795.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e7280927-854d-4a8a-982b-9ce3a2c15167.d10b0af22142a3f7958854cc7f150795.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e7280927-854d-4a8a-982b-9ce3a2c15167.d10b0af22142a3f7958854cc7f150795.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108929136, 'Fresh Express Juicing Greens, 10 Oz.', 6.47, '071279275123', 'Fresh Express Juicing Greens contain a spring mix that consists of green romaine lettuce, green leaf lettuce, tango lettuce, green oak lettuce, Lolla Rossa lettuce, radicchio, red romaine lettuce, red leaf lettuce, red oak lettuce, spinach, mizuna, arugula, beet tops, butter lettuce, chard, kale, pak choi, tatsoi, endive and Frisee. The container also includes baby kale and shredded carrots for added flavor. These vegetable juice ingredients are thoroughly washed and contain no preservatives. They contain nutrients that can help restore vitality and energy to help you throughout your day.', 'Fresh Express Vitality Juicing Green:Juicing Greens, VitalitySpring mix, baby kale and shredded carrotsHealthy, pre-washed and ready to useThoroughly washed green juice ingredientsNo preservativesProduct of USA', 'Fresh Express', 'https://i5.walmartimages.com/asr/cb949ea2-9faa-4eea-a590-7626fc951ba0.6d7343b9c33e814808b2749e504c1a76.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb949ea2-9faa-4eea-a590-7626fc951ba0.6d7343b9c33e814808b2749e504c1a76.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb949ea2-9faa-4eea-a590-7626fc951ba0.6d7343b9c33e814808b2749e504c1a76.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (108938621, 'Pera D\'anjou Viva Tierra 12/3', 6.98, '033383300726', 'Pera D\'anjou Viva Tierra 12/3', 'Org Pera D\'anjou Viva Tierra 12/3', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/3d896424-8396-449b-a52e-d7cc4ab59073.d62f3e8ee1a90b3756728a940d4e21d7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3d896424-8396-449b-a52e-d7cc4ab59073.d62f3e8ee1a90b3756728a940d4e21d7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3d896424-8396-449b-a52e-d7cc4ab59073.d62f3e8ee1a90b3756728a940d4e21d7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (109050652, 'Fresh Grown Thomcord Grapes', 2.98, '708174102024', 'short description is not available', 'Fresh Grown Thomcord Grapes', 'Spiech Farms', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (109112488, 'Fresh Roma Tomato, Each', 1.28, '688962361133', 'With Fresh Roma Tomatoes from Walmart, it\'s easy to make a wholesome, delicious meal. Roma tomatoes are a fresh produce ingredient for whipping up a variety of wonderful dishes. You can use them to create a zesty tomato sauce for stirring into a homemade pasta dish, crush them up to make a delightful Roma tomato bruschetta, or simply enjoy them on their own as a nutritious snack or as a party platter option for dipping in your favorite vegetable dipping sauce. If you\'re feeling a classic tomato dish, Roma tomatoes can even lend themselves in making a comforting and appetizing tomato soup or a flavorful salsa. However you choose to use them, each Roma tomato will add stunning flavor to your meal. Just find the recipe and experience the tasty results for yourself! Elevate your recipes with Roma Tomatoes.', 'Roma Tomato, Each: Wholesome, versatile, and delicious Rich, juicy flavor in each bite Ideal ingredient for a variety of dishes Use to make pasta sauce, tomato soup, or fresh salsa Make a tasty pesto or bruschetta to serve at your next dinner party Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2f860752-38f8-43a5-96b7-afda3b890630.59821395b55a4259f90cc71edfa15258.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f860752-38f8-43a5-96b7-afda3b890630.59821395b55a4259f90cc71edfa15258.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f860752-38f8-43a5-96b7-afda3b890630.59821395b55a4259f90cc71edfa15258.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (109185045, 'Romaine Hearts 2 Count', 6.97, '033383651026', 'short description is not available', 'Romaine Hearts 2 Count', 'Tanimura & Antle', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (109222715, 'Masquerade Potatoes, 3 Lb.', 2.98, '826088920234', 'Masquerade Potatoes, 3 Lb.', 'Masquerade Potatoes 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (109285772, 'GoVerden Spicy Guacamole 12oz', 4.43, '850002858082', 'GoVerden Spicy Guacamole 12oz is all natural and non-GMO certified. So, no artificial ingredients, no preservatives... nothing added that you wouldn\'t use at home. Our love and care for avocados is evident in every bite, taking special care to the selection, harvesting, ripening, and handling for each avocado. Try it today, it guactually goes with everything. Nachos? Hamburgers? Chips and Guac? Go natural, go for more, GoVerden.', 'GoVerden Spicy Guacamole 12oz is as creamy and chunky as you want it to be. All natural ingredients and non-GMO certified. Ready to eat. Keep it refrigerated.', 'GoVerden', 'https://i5.walmartimages.com/asr/fda5b994-a93b-435a-ba6d-d4d9a5aa6aca.26b0f8c019ee679c2860827876d38097.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fda5b994-a93b-435a-ba6d-d4d9a5aa6aca.26b0f8c019ee679c2860827876d38097.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fda5b994-a93b-435a-ba6d-d4d9a5aa6aca.26b0f8c019ee679c2860827876d38097.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (109290023, 'White Potatoes Whole Fresh, 5 lb, Bag', 5.94, '648196050555', 'These White Potatoes are a must-have for any pantry. With so many ways to prepare potatoes, you\'ll want to add them to every meal. For breakfast, you could make crispy hash browns smothered in cheese and diced ham or add them to a savory omelet. For lunch or dinner, you could use these fresh potatoes to make au gratin potatoes, garlic mashed potatoes, or a baked potato loaded with cheese, sour cream, green onions, and bacon bits. If you\'re hosting a neighborhood get-together, you can use them to make creamy potato salad or homestyle French fries. Serve up something delicious when you cook with White Potatoes.', 'Must-have addition to every pantry Make crispy hash browns or add to an omelet Serve garlic mashed potatoes or a loaded baked potato Great for potato salad or homestyle French fries Explore all the delicious ways to serve these satisfying potatoes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8bf36d9a-230d-4dbb-9599-84e31540709a.4a8e0726dbfbdd8193f8718c1d9c6ea6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8bf36d9a-230d-4dbb-9599-84e31540709a.4a8e0726dbfbdd8193f8718c1d9c6ea6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8bf36d9a-230d-4dbb-9599-84e31540709a.4a8e0726dbfbdd8193f8718c1d9c6ea6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (109338252, 'Whole Fresh Yellow Onion, 2 lb Bag', 1.67, 'deleted_858143004108', 'Give all of your dishes a wonderful flavor with this three-pound bag of Fresh Yellow Onions (Cebolla Amarilla). They can be added to all of your favorite foods including hamburgers, stir-fries, soups, and pizza and used to make onion rings and blooming onions as well. These onion vegetables can be sauteed or served raw and stored in a cool, dry area until you are ready to use them. They have a fresh taste that will put something extra in your dish. These onions are easy to peel and quick to prepare so you can serve them on your dinner plate in no time. Add these Fresh Yellow Onions to your next dish and impress others with your culinary skills.', 'Fresh Yellow Onions, 2 lb Bag Ideal ingredient in a variety of recipes Can be sauteed and put in your favorite foods for added flavor Use to top sandwiches, hamburgers, and hot dogs Fresh onions can be stored in a cabinet or pantry and are easy to prepare', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/5fd92178-783d-4b9b-a0ce-79c518c70617.096bca82d3b2884597e97e03449b4355.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5fd92178-783d-4b9b-a0ce-79c518c70617.096bca82d3b2884597e97e03449b4355.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5fd92178-783d-4b9b-a0ce-79c518c70617.096bca82d3b2884597e97e03449b4355.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (109358846, 'Good Foods Guacamole Spicy, 7 oz', 4.97, '736798903031', 'Good Foods? Guacamole Spicy.', 'Guacamole, Chunky, Spicy Non GMO Project verified. nongmoproject.org. No artificial ingredients. No preservatives. Clean: No artificial anything. Made with 100% hass fresh avocados. High pressure certified. goodfoods.com. Facebook. Instagram. Pinterest. Product of Mexico.', 'Unbranded', 'https://i5.walmartimages.com/asr/31ac07d1-bd16-4226-ab1f-cf683c5ede01_1.6a179e89660d05ed048a22ef0cc61f37.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/31ac07d1-bd16-4226-ab1f-cf683c5ede01_1.6a179e89660d05ed048a22ef0cc61f37.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/31ac07d1-bd16-4226-ab1f-cf683c5ede01_1.6a179e89660d05ed048a22ef0cc61f37.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (109482590, 'Fresh Organic Whole White Beech Mushroom, 3.5 oz', 3.98, '037102678707', 'Add flavor and texture to your meals with the Organic Whole White Beech Mushrooms. This versatile ingredient is perfect for a variety of dishes, whether its for breakfast, lunch, or dinner. Mince some up and put them in your omelet with peppers and ham for a filling breakfast. Slice them and add them to a healthy salad for lunch or stuff them with cream cheese, parmesan, and sharp cheddar cheese for a delicious, mouthwatering meal. White mushrooms are an excellent source of riboflavin and are naturally fat-free, cholesterol-free, and are low in calories and sodium. Enjoy the delicious taste of Organic Whole White Beech Mushrooms any way you prepare them.', 'Adds flavor and textures to your meals Great for breakfast, lunch, or dinner Mince them for an omelet, slice them for a salad, or stuff them with cheese Naturally fat-free and cholesterol-free Low in sodium and calories', 'Unbranded', 'https://i5.walmartimages.com/asr/9092a857-197a-4f03-acc1-b68e5b10ecf1.52281570b6d812ca72dda6fce973c461.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9092a857-197a-4f03-acc1-b68e5b10ecf1.52281570b6d812ca72dda6fce973c461.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9092a857-197a-4f03-acc1-b68e5b10ecf1.52281570b6d812ca72dda6fce973c461.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (109568195, 'Fresh Healit™ Healthy Garden Salad Bundle Pack', 27.95, '078509020904', 'Looking for healthier meal options? try our healthy garden collection with all organic seeds. Contains one Pack each of All Lettuce mix, Red Cherry tomato, Marketmore cucumber, Colorful Beet mix, Nelly Chives & Arugula. 100% certified organic seeds; Healthy, nutritious, all natural vegetables and herbs; Seeds of Change has been a trusted Brand for over 29 years; The OLDEST pure organic seed company in the . As an added bonus you get 4 rolls of Healit™ Garden Tape: Garden Tape is a self-adhering tape ideal for training and supporting plants and saplings. It stretches just enough to keep stems and limbs in place, without disturbing vital nutrient delivery or adding stress. Garden Tape is easy to use, flexible and biodegradable. Its durability allows it to stay in place for the entire growing season and support your plants in even the toughest conditions.', 'Benefits of Using Healit™ Garden Tape:– Easy to use flexible and biodegradable– Tears easily to the desired length– Stays in place for the growing season– Supports against wind - Self-adhesive, no tying needed– Green tape blends to plants– Great for grafting trees– Come rain or shine, on land or at sea, we’ll help keep you safe and secure the Healit™ way.', 'HealiT', 'https://i5.walmartimages.com/asr/22aebfc3-58c6-46ee-9426-8baa23c8d2e7_1.91a7e09f7a036c669e9584c131a644ed.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/22aebfc3-58c6-46ee-9426-8baa23c8d2e7_1.91a7e09f7a036c669e9584c131a644ed.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/22aebfc3-58c6-46ee-9426-8baa23c8d2e7_1.91a7e09f7a036c669e9584c131a644ed.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (109943917, 'Seedless Mini Cucumbers 16 Oz', 2.23, 'deleted_884051060097', 'Let\'s get snacking and stacking! These mini-cukes are our perfect for lunch, full of flavor, grab\'em and go variety. Mini yet mighty, they\'re a treat for the entire family and a truly healthy midday snack. Stay hydrated with a refreshing treat that?s conveniently sized. For over 70 years, Lakeside has been focused on delivering fresh, flavorful produce to families across North America. From our family to yours, thank you for letting us share your table.', '- Crisp texture - Great for hydration - Low calorie treat - Sweet and crunchy - Perfect for snacks and lunches', 'Lakeside Produce', 'https://i5.walmartimages.com/asr/7a062e82-a62d-421a-bd0d-622f998b5c90_1.786fdf64cc21dc7b9dca8fe8f16098af.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7a062e82-a62d-421a-bd0d-622f998b5c90_1.786fdf64cc21dc7b9dca8fe8f16098af.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7a062e82-a62d-421a-bd0d-622f998b5c90_1.786fdf64cc21dc7b9dca8fe8f16098af.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (110190614, 'Stemilt Artisan Organics Lil Snappers Pears D\'Anjou', 3.18, '741839007869', 'short description is not available', 'Organic Pears Lil Snapper 12/2', 'Lil Snappers', 'https://i5.walmartimages.com/asr/139c3e82-d172-4636-b321-67510284b9fe_1.18a8c75f98cddc4e60790c8a65ac952c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/139c3e82-d172-4636-b321-67510284b9fe_1.18a8c75f98cddc4e60790c8a65ac952c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/139c3e82-d172-4636-b321-67510284b9fe_1.18a8c75f98cddc4e60790c8a65ac952c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (110260354, '200pc Pto Idaho 5#', 588, '405508050951', 'short description is not available', '200pc Pto Idaho 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (110333062, 'Snap Peas, 1 Lb.', 6.97, '400094303702', 'Snap Peas, 1 Lb.', 'Snap Peas', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e43669f2-3f33-4aec-baf8-c1e145d4c6d5.e27ba1f637d954021e82a596dbf8afdd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e43669f2-3f33-4aec-baf8-c1e145d4c6d5.e27ba1f637d954021e82a596dbf8afdd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e43669f2-3f33-4aec-baf8-c1e145d4c6d5.e27ba1f637d954021e82a596dbf8afdd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (110343207, 'Glory Food 12oz Squash Medley', 2.28, '736393207046', 'short description is not available', 'Glory Food 12oz Squash Medley', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (110362266, 'Habichuelas, 1 Lb.', 2.97, '400094434666', 'Habichuelas, 1 Lb.', 'Habichuelas Tiernas', 'Unbranded', 'https://i5.walmartimages.com/asr/e2b99c12-c552-4656-867c-6bc3f5cace1b.d046175bdfdd2400520f3842623d75a8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2b99c12-c552-4656-867c-6bc3f5cace1b.d046175bdfdd2400520f3842623d75a8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2b99c12-c552-4656-867c-6bc3f5cace1b.d046175bdfdd2400520f3842623d75a8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (110384918, 'Mcintosh Fresh Apples, 5 lb Bag', 4.92, '033383084770', 'One bite of our Macintosh fresh apples and you\'ll be transported to the crisp autumn air of the orchard. These juicy apples are perfect for snacking, baking or using in savory dishes. They\'re naturally sweet with a tartness that will keep you coming back for more. With their bright red skin and creamy white flesh, Macintosh apples are not only delicious but also visually stunning. Order a bushel today and see for yourself!', 'Freshness Guaranteed McIntosh Apples, 5 lb Bag: Crisp & juicy Excellent snacking apple Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp & apple pie', 'Unbranded', 'https://i5.walmartimages.com/asr/3cc1dbea-7e35-45ea-9cb3-b943caa034bb.ddaa5414f846595569ded2a10ede0cbc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3cc1dbea-7e35-45ea-9cb3-b943caa034bb.ddaa5414f846595569ded2a10ede0cbc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3cc1dbea-7e35-45ea-9cb3-b943caa034bb.ddaa5414f846595569ded2a10ede0cbc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (110388786, 'CH Robinson Glory Foods Kale Greens, 10 oz', 4.56, 'deleted_736393206551', 'Greens, Kale, Organic, Bag 10 OZ Ready to cook. USDA organic. Southern food with a soulful heritage. Glory Foods Southern-flavored greens, beans, squash and more - are fresh picked at the peak of their flavor and nutrients, washed, bagged and ready to cook. Fresh food. Fast. Because Glory Foods knows you\'d rather spend your time eating a home-cooked meal that nurtures the soul, than preparing one. Good taste for the table good taste for the soul. Certified organic by Quality Assurance International. If you have questions or comments about Glory Foods Products, please call 1-877-404-5679. Perishable - keep refrigerated. 10 oz (283 g) Eden Prairie, MN 55347 877-404-5679', 'Kale Greens, Organic Ready to cook. USDA organic. Southern food with a soulful heritage. Glory Foods Southern-flavored greens, beans, squash and more - are fresh picked at the peak of their flavor and nutrients, washed, bagged and ready to cook. Fresh food. Fast. Because Glory Foods knows you\'d rather spend your time eating a home-cooked meal that nurtures the soul, than preparing one. Good taste for the table good taste for the soul. Certified organic by Quality Assurance International. If you have questions or comments about Glory Foods Products, please call 1-877-404-5679.', 'Glory Foods', 'https://i5.walmartimages.com/asr/e5255e3f-eeb9-459f-93b8-3d75db35a868_1.1c452bda5b6785803b6dfa30eed4073c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5255e3f-eeb9-459f-93b8-3d75db35a868_1.1c452bda5b6785803b6dfa30eed4073c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5255e3f-eeb9-459f-93b8-3d75db35a868_1.1c452bda5b6785803b6dfa30eed4073c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (110468066, 'Fresh Red Seedless Grapes, 2 Lb.', 3.96, 'deleted_881006020212', 'Red Seedless Grapes, 2 Lb.', 'Fresh Red Seedless Grapes, 2 Lb.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (110654123, 'Ready Pac Asian Wrap, 5.5 Oz.', 2.98, '077745296272', 'This ready-made meal has two tortillas included to help you get started with a quick meal. It has 280 calories per bowl, so it can provide you with a quick, low-calorie lunch or dinner. Each bowl contains a fork inside. This boxed meal consists of Artisan sesame seed tortillas, crisp iceberg and cabbage mix, white chicken, celery, fire-roasted edamame, natural sweet Thai peanut sauce, carrots and red cabbage. It is inspected for wholesomeness by the US Department of Agriculture.Ready Pac Asian Wrap, 5.5 oz:', 'Wrap kit, Thai peanut crunch2 tortillas included280 calories per bowlMix, fill and enjoyPacked meal with a fork insideIncludes Artisan sesame seed tortillas, crisp iceberg and cabbage mix, white chicken, celery, fire roasted edamame, natural sweet Thai peanut sauce, carrots and red cabbageInspected for wholesomeness by the U.S. Department of Agriculture', 'Ready Pac Foods', 'https://i5.walmartimages.com/asr/92a48d11-2c9b-4d36-a76d-2c3cb3bc1188.0f272cf164582d5ca85640166c02d2c4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/92a48d11-2c9b-4d36-a76d-2c3cb3bc1188.0f272cf164582d5ca85640166c02d2c4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/92a48d11-2c9b-4d36-a76d-2c3cb3bc1188.0f272cf164582d5ca85640166c02d2c4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (110787220, 'Dole Mandarin Sweet Chili Salad Companion, 1 Oz.', 3.48, '071430000472', 'Dole Mandarin Sweet Chili Salad Companion, 1 Oz.', 'Salad Companion Mandarin Sweet Chili', 'Dole', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111066591, '200pc Pto Ykn/red 5#', 824, '405536848889', 'short description is not available', '200pc Pto Ykn/red 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111078096, 'Whole Fresh White Sweet Potatoes, 2 lb, Bag', 2.98, '850148003070', 'Fresh Potatoes are ideal for any time of the day and may be prepared multiple ways. They are handy for baking, microwaving, mashing or sliced into wedges. With 110 calories per serving, these high-fiber potatoes also provide a good source of vitamin C, B vitamins and potassium. You can add this fresh produce to your breakfast in the form of delicious hash browns, add them to the lunch menu as tasty French fries or bring more substance to your dinner by serving them in baked or mashed form. They are available in a convenient 10-pound bag with easy recipes on the package. Stock your pantry with Fresh Potatoes.', 'White Sweet Potatoes 2 Lb Bag Fresh Potatoes are ideal for any time of the day and may be prepared multiple ways. They are handy for baking, microwaving, mashing or sliced into wedges. With 110 calories per serving, these high-fiber potatoes also provide a good source of vitamin C, B vitamins and potassium. You can add this fresh produce to your breakfast in the form of delicious hash browns, add them to the lunch menu as tasty French fries or bring more substance to your dinner by serving them in baked or mashed form. They are available in a convenient 10-pound bag with easy recipes on the package. Stock your pantry with Fresh Potatoes.', 'Unbranded', 'https://i5.walmartimages.com/asr/b33fd2a9-2e6e-49e3-96b4-d1c521d53ebd.05d5f6316cee80a1367fccb62a5c036d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b33fd2a9-2e6e-49e3-96b4-d1c521d53ebd.05d5f6316cee80a1367fccb62a5c036d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b33fd2a9-2e6e-49e3-96b4-d1c521d53ebd.05d5f6316cee80a1367fccb62a5c036d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111146370, 'Fresh Organic Mini Sweet Peppers, 8 oz, Bag', 3.46, '603224255050', 'Introducing our Fresh Organic whole Peppers - greenhouse grown without the use of pesticides. These peppers offer a naturally sweet and crisp flavor, with virtually no seeds. Enjoy the goodness of organic produce in every bite. With their small size, these peppers are a convenient and delicious addition to any meal. Experience the freshness and quality of our Organic Peppers and savor the taste of nature. Try them today and elevate your culinary creations.', 'Organic Biologiques mini peppers are greenhouse grown without the use of pesticides Unique size is packed with sweet flavor Minimal seeds make this a quick and easy snack option A sweet source of Vitamin C', 'Fresh Produce', 'https://i5.walmartimages.com/asr/937430ea-9661-43df-a238-44ff38438226.e357818578ade69c9e929fb0805a7835.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/937430ea-9661-43df-a238-44ff38438226.e357818578ade69c9e929fb0805a7835.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/937430ea-9661-43df-a238-44ff38438226.e357818578ade69c9e929fb0805a7835.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111224631, 'Fresh D\'Anjou Pears, 1 lb Bag', 1.97, '400094433966', 'Indulge in the juicy and succulent taste of Danjou Pears, a premium fresh produce with a delightful blend of organic ingredients. These whole pears are hand-picked from the orchards and packed with the goodness of nature, with no containers required. Enjoy the full natural flavors of this wholesome fruit and enrich your meals with a touch of elegance and healthful nutrition.', 'Anjou pears are a classic variety known for their sweet, juicy flavor and smooth, firm texture. They are versatile and can be used in a variety of dishes, from salads to desserts. High in dietary fiber and vitamin C, making them a healthy snack option. The 3lb bag size is convenient for families and individuals looking for a larger supply of fresh pears. Whole Anjou pears are harvested at their peak ripeness and carefully packed to ensure maximum freshness and flavor. They have a long shelf life and can be stored in the refrigerator for up to 2-3 weeks. Anjou pears are available year-round, making them a reliable choice for any occasion. Made with organic ingredients.', 'Unbranded', 'https://i5.walmartimages.com/asr/1768e8ef-865f-48d4-912f-b986d583fdf5.08b640e3e963a277c891bfd44fa1dbd6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1768e8ef-865f-48d4-912f-b986d583fdf5.08b640e3e963a277c891bfd44fa1dbd6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1768e8ef-865f-48d4-912f-b986d583fdf5.08b640e3e963a277c891bfd44fa1dbd6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111242525, 'Organic Sweet Potatoes 3 Lb Bag', 6.28, 'deleted_790132087320', 'Baking yams is the most straightforward way to prepare them. Wash the yams thoroughly. Prick them with a fork. Preheat your oven to 200 C and bake for approximately 40 minutes. When done, slice them open and add a bit of butter and a sprinkle of cinnamon.', 'Organic Sweet Potatoes 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111257215, 'Fresh Strawberries, 4 lb', 12.47, '686478000126', 'short description is not available', 'Fieldpack Unbranded Strawberries', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b1e063a4-1d67-43b2-bf36-6e9e4e1e53b4.ee5d2c1163b851257e6c523b44c1b693.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b1e063a4-1d67-43b2-bf36-6e9e4e1e53b4.ee5d2c1163b851257e6c523b44c1b693.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b1e063a4-1d67-43b2-bf36-6e9e4e1e53b4.ee5d2c1163b851257e6c523b44c1b693.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111422396, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094144152', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111459585, 'Marketside Greek Salad', 3.98, '681131095594', 'short description is not available', 'Marketside Greek Salad', 'Marketside', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111521775, 'Fresh Athena Cantaloupe, Each', 3.28, '689076992596', 'Fresh Athena Cantaloupe is a high-sugar melon with a delectable flavor enhanced with honeyed nuances. Athena melons have a sweet and floral flavor that is well suited for fresh and cooked meals. They are great added to a cheese plate, tossed into an herb-based salad or eaten freshly cut. Cut it into small pieces and put it in a fresh salad along with chicken, cucumbers, tomatoes, and a light dressing. You can even use this sweet cantaloupe to make a refreshing summer cocktail, a spreadable jam, or a light sorbet. Enjoy the sweet and juicy taste of Fresh Athena Cantaloupe.', 'Fresh Athena Cantaloupe, Each Flavorful addition to many recipes Enjoy on its own or add to a mixed fruit salad Add to your fresh garden salad High sugar content A great source of potassium and vitamin C Sweeter taste and more fragrant than other melons', 'Fresh Produce', 'https://i5.walmartimages.com/asr/59aad4b7-b020-47cc-b7b7-3c85277229ce.6d58d83c48301f60e92519256dd3a3fe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59aad4b7-b020-47cc-b7b7-3c85277229ce.6d58d83c48301f60e92519256dd3a3fe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59aad4b7-b020-47cc-b7b7-3c85277229ce.6d58d83c48301f60e92519256dd3a3fe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111731346, 'Fresh Organic Bosc Pears, 2 lb, Bag', 4.98, '888289402506', 'Introducing the sweet and juicy Fresh Bosc Organic pear, known for its distinct elongated shape and brownish-golden skin. This versatile fruit is perfect for snacking, cooking, and baking. Its firm flesh holds up well under heat, making it the ideal ingredient for pies, tarts, and baked goods. Enjoy the subtle honey-like flavor of the Organic Bosc pear in a 2lb Bag in salads or sliced with your favorite cheese. Fill your fruit basket with the delicious and nutritious Bosc pear today.', 'This package includes 2 lbs of pears, each with a distinctive brownish-yellow skin and a long, tapered neck. The flesh of the Organic Bosc Pear is dense and juicy, with a sweet and spicy flavor that is perfect for eating fresh or cooking. These pears are certified organic, which means that they are grown without the use of synthetic pesticides, fertilizers, or genetically modified organisms (GMOs). Organic Bosc Pears are a good source of fiber, vitamin C, and antioxidants, and are a healthy and flavorful addition to any diet. With their unique taste and appearance, Organic Bosc Pears are a premium choice for pear lovers who value organic and sustainable farming practices. The flesh of the Organic Bosc Pear is dense and juicy, with a sweet and spicy flavor that is perfect for eating fresh or cooking. These pears are certified organic, which means that they are grown without the use of synthetic pesticides, fertilizers, or genetically modified organisms (GMOs). Organic Bosc Pears are a good source of fiber, vitamin C, and antioxidants, and are a healthy and flavorful addition to any diet. With their unique taste and appearance, Organic Bosc Pears are a premium choice for pear lovers who value organic and sustainable farming practices. These pears are certified organic, which means that they are grown without the use of synthetic pesticides, fertilizers, or genetically modified organisms (GMOs). Organic Bosc Pears are a good source of fiber, vitamin C, and antioxidants, and are a healthy and flavorful addition to any diet. With their unique taste and appearance, Organic Bosc Pears are a premium choice for pear lovers who value organic and sustainable farming practices.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5d196224-2231-471f-936c-8e469e3939e0_1.093fc731528375e86c28ce931fa79eae.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5d196224-2231-471f-936c-8e469e3939e0_1.093fc731528375e86c28ce931fa79eae.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5d196224-2231-471f-936c-8e469e3939e0_1.093fc731528375e86c28ce931fa79eae.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111835793, 'Yellow Squash, 2 Pack', 1.57, '711069541143', 'Yellow Squash is an extremely versatile vegetable that is a must-have for every cook. This yellow squash is rich in vitamin C, so you know you\'re getting a wholesome vegetable. You can prepare the squash in many different ways. Sauté it with butter and serve with your choice of protein, like pork chops or grilled chicken breast. You can slice it and fry it up Southern-style, or you can incorporate it into a casserole for a little comfort food. For a sweet treat use the squash to bake a decadent lemon and yellow squash muffins, you can through in some blueberries for a fresh addition. The culinary possibilities are endless with Yellow Squash.', 'Fresh, versatile ingredient Sauté it with butter, slice it and fry it up Southern-style, or bake into sweet lemon and yellow squash muffins Rick in vitamin C Wash before use and use within 2-3 days of opening', 'Fresh Produce', 'https://i5.walmartimages.com/asr/981cb5fe-eb0c-4954-adcc-c4a004043213_1.e7342e4945605edb54577accf3314284.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/981cb5fe-eb0c-4954-adcc-c4a004043213_1.e7342e4945605edb54577accf3314284.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/981cb5fe-eb0c-4954-adcc-c4a004043213_1.e7342e4945605edb54577accf3314284.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111844339, 'ROLAND DRIED FANCY PORCINI MUSHROOM', 48.57, '041224448162', 'These popular dried cepes are noted for their earthy aroma and intense flavor. Roland Dried Porcini Mushrooms are excellent with meats, rice and pasta dishes, they are also the preferred mushrooms for soups and casseroles. Reconstitute by soaking it in hot water till soft and prepare just like fresh mushrooms. Specialty foods. Boletus edulis. Visit us at www.rolandfood.com. Product of Serbia/Montenegro. Packed in France.', 'ROLAND DRIED FANCY PORCINI MUSHROOM', 'Roland', 'https://i5.walmartimages.com/asr/fae48ea4-96ed-4035-a301-718c4aeda815.c891bac22e5011405739696e43c2d173.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fae48ea4-96ed-4035-a301-718c4aeda815.c891bac22e5011405739696e43c2d173.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fae48ea4-96ed-4035-a301-718c4aeda815.c891bac22e5011405739696e43c2d173.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111868357, 'Fresh Green Cabbage, LB', 1.07, '400094439913', 'Get creative in the kitchen with green cabbage (Repollo) . Fresh green cabbage is low in calories and high in fiber and antioxidants making it a great part of any healthy diet. Best of all, cabbage can be used for many different recipes and cuisines. Cabbage can be incorporated into everything from delicious and creamy cole slaw, wraps, egg rolls, curry, kimchi and more. Green cabbage can be roasted, boiled, braised, grilled, sauted, and even blanched. The possibilities are endless when you bring home green cabbage.', '1 head of green cabbage Versatile and healthy ingredient Can be roasted, boiled, braised, grilled, sauted, and even blanched Incorporate into everything from delicious and creamy cole slaw, stuffed cabbage, and wraps, to egg rolls, grilled cabbage, curry, kimchi and more Low in calories and high in fiber and antioxidants', 'Repollo Verde', 'https://i5.walmartimages.com/asr/82d23d6a-d19c-4182-967e-ffcc4d40926f.25f2601e790451103f702155dae3d29c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/82d23d6a-d19c-4182-967e-ffcc4d40926f.25f2601e790451103f702155dae3d29c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/82d23d6a-d19c-4182-967e-ffcc4d40926f.25f2601e790451103f702155dae3d29c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (111906876, 'Dole Spring Mix with Garden Vegetables, 8 Oz.', 2.98, '071430010860', 'Dole Spring Mix with Garden Vegetables, 8 Oz.', 'Dole Spring Mix with garden Veggies 8 Oz.', 'Dole', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (112030832, 'Milpas Japones Whole Chile Pods, 3 Oz', 1.64, '074734184145', 'Milpas Japones Whole Chile Pods offer an authentic taste of Mexican culinary tradition. These whole dried Japones chiles are known for their mild to medium heat and distinct, slightly fruity flavor, making them a versatile ingredient in a wide range of dishes. The 3 oz package provides a convenient amount for home cooks looking to add a touch of authentic spice and depth to their meals. Perfect for crafting traditional salsas, marinades, or infusing oils, these chile pods can also be rehydrated and incorporated into stews and braises. Their whole form allows for controlled flavor release, and they are a staple for anyone seeking to explore or recreate authentic Mexican flavors. Elevate your cooking with the simple yet impactful addition of Milpas Japones Whole Chile Pods.', 'Authentic Japones whole chile podsMild to medium heat level, perfect for various dishes3 oz package for convenient useAdds a distinct flavor and subtle spiceIdeal for sauces, marinades, stir-fries, and traditional Mexican cuisine', 'Milpas', 'https://i5.walmartimages.com/asr/1d2cb315-75f4-47c0-b694-3e6df18accfc.bb0e67b9789460945e019f1e25432b88.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d2cb315-75f4-47c0-b694-3e6df18accfc.bb0e67b9789460945e019f1e25432b88.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d2cb315-75f4-47c0-b694-3e6df18accfc.bb0e67b9789460945e019f1e25432b88.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (112100895, 'Fresh Gold Nugget Mandarin Oranges, 3 lb Bag', 4.96, '605049521631', 'Enjoy the juicy sweetness of Fresh Gold Nugget Mandarin Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these mandarin oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. However you choose to use them, Fresh Gold Nugget Mandarin Oranges add flavor to any meal or beverage.', '3-pound bag of deliciously sweet and juicy fresh mandarin oranges Extend shelf-life by storing in the fridge Easy to peel and segment Only available in the spring California grown Package branding may vary by region', 'Fresh Produce', 'https://i5.walmartimages.com/asr/33fc9b18-8298-486f-bc57-d2d44729379c.337c994f9936cd521c173d8f41f73e5d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/33fc9b18-8298-486f-bc57-d2d44729379c.337c994f9936cd521c173d8f41f73e5d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/33fc9b18-8298-486f-bc57-d2d44729379c.337c994f9936cd521c173d8f41f73e5d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (112144424, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094344118', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (112244005, 'Fresh Valencia Oranges, 4 lb Bag', 7.57, '605049510895', 'Orange Valencia is a variety of orange that is highly sought after for its sweet and juicy flavor. Named after the city of Valencia in Spain, where it is believed to have originated, this orange has become popular worldwide for its exceptional taste and vibrant color. The fruit is medium-sized with a smooth and slightly pebbled skin that is easy to peel. Its bright orange hue is a visual delight, adding a touch of sunshine to any fruit bowl. The flesh of the Orange Valencia is tender, succulent, and bursting with tangy-sweet juice.', 'Orange Valencia is a variety of orange that is highly sought after for its sweet and juicy flavor. Named after the city of Valencia in Spain, where it is believed to have originated, this orange has become popular worldwide for its exceptional taste and vibrant color. The fruit is medium-sized with a smooth and slightly pebbled skin that is easy to peel. Its bright orange hue is a visual delight, adding a touch of sunshine to any fruit bowl. The flesh of the Orange Valencia is tender, succulent, and bursting with tangy-sweet juice.', 'Sunkist', 'https://i5.walmartimages.com/asr/4967e330-10dc-4669-acb2-401efa61a63d.c5824c6c3b0f1240b36d09393c76904d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4967e330-10dc-4669-acb2-401efa61a63d.c5824c6c3b0f1240b36d09393c76904d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4967e330-10dc-4669-acb2-401efa61a63d.c5824c6c3b0f1240b36d09393c76904d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (112253687, 'Tuscan Cantaloupe 2 Ct Bag', 3.98, '827575300065', 'short description is not available', 'Tuscan Cantaloupe 2 Ct Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (112332122, 'Marketside Butternut Squash, 12 oz Bag', 2.72, 'deleted_605806138010', 'Squash, Butternut, Fresh, Wrapper 12 OZ Steams in pack. Per Serving: 40 calories; 0 g sat fat (0% DV); 0 mg sodium (0% DV); 2 g sugars; vitamin A (180% DV); vitamin C (30% DV). Find Delicious Recipes: GreenGiantFresh.com. Questions or comments? 1-800-998-9996. Follow us on: Facebook and Twitter. Find delicious recipes, helpful tips & more: Scan code with app. greengiantfresh.com/value-added. Product of USA. Perishable. Keep refrigerated. Microwave in Bag Directions: 1. Pierce bag with fork. 2. Place bag on microwavable plate. 3. Microwave on high for 3 minutes. For softer texture, add up to 1 minute. Let sit for 1 minute. Caution: Contents and bag hot! 4. Open bag, pour contents into serving dish and enjoy. Because microwaves vary, cook times are approximate. Serving Suggestions: Saute squash with butter and brown sugar for a flavorful side dish. Sauteed squash can also be served with vanilla ice cream for a delicious dessert! Boil squash until tender, then mash and top with pecans and nutmeg for a festive twist to traditional mashed potatoes. Chop into bite size pieces and add to rice pilaf for added color and flavor. Toss squash with olive oil, salt, pepper and rosemary. Roast at 400 degrees F for 45-50 minutes, or until caramelized and golden brown. 12 oz (340 g) Salinas, CA 93901 800-998-9996 2013 Growers Marketing, LLC.', 'Marketside Butternut Squash, 12 oz', 'Green Giant', 'https://i5.walmartimages.com/asr/d3b01b24-04b1-4fa1-9f3b-3367eee237f0_1.0b565097358daa53310049d065299221.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d3b01b24-04b1-4fa1-9f3b-3367eee237f0_1.0b565097358daa53310049d065299221.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d3b01b24-04b1-4fa1-9f3b-3367eee237f0_1.0b565097358daa53310049d065299221.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (112493923, 'Organic Whole White Mushrooms, 6 Oz.', 2.54, 'deleted_678286888553', 'Organic Whole White Mushrooms, 6 Oz.', 'Organic Mushroom White Whole 6 Oz.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (112575948, 'Marketside Diced Butternut Squash, 20 oz', 2.98, '669826501209', 'Marketside Diced Butternut Squash, 20 oz', 'Butternut Squash Diced 20 oz', 'Marketside', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (112588693, 'Revol Greens Organic Green and Red Leaf Lettuce Salad Blend, 4 oz Clam Shell, Fresh', 2.98, '850024486027', 'Revol Greens® Organic Green & Red Duo 4 oz is a blend of organic green and red leaf lettuce. This versatile blend of green & red lettuce adds color and crunch to salads and sandwiches. All Revol Greens® lettuce is grown inside a greenhouse and harvested daily, 365 days a year. Our regional greenhouse locations allow us to reach nearly all our customers within 24-48 hours of harvest, so that our greens arrive incredibly fresh and at peak nutritional value. Revol Greens® Organic Green & Red Duo 4 oz is ready to eat and packaged in a convenient resealable container.', 'USDA Certified Organic Grown inside a protected greenhouse environment Grown with 90% less water than field grown lettuce', 'Revol Greens', 'https://i5.walmartimages.com/asr/1dc73899-84c5-4d48-992d-9e6657b4f487.1d2e84da762a75192a92700064edb788.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1dc73899-84c5-4d48-992d-9e6657b4f487.1d2e84da762a75192a92700064edb788.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1dc73899-84c5-4d48-992d-9e6657b4f487.1d2e84da762a75192a92700064edb788.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (112614055, 'Fresh Organic Brown Sliced Mushrooms, 8 oz', 3.88, '678286889000', 'Experience the fresh taste of Organic Brown Sliced Mushrooms. If you\'re looking for a traditional mushroom with a mild earthy taste, brown mushrooms are just what you need. Versatile and meaty, these mushrooms are a great addition to any meal. Pre-cleaned and sliced, they are perfect for adding to stir-fries, sauces, soups, pizzas, salads, and stews to create culinary works all your own. They are free of fat and cholesterol and are low in calories and sodium. Plus, mushrooms are a natural source of the antioxidant selenium, making them an excellent addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try out Organic Brown Sliced Mushrooms.', '8-ounce package of organic brown sliced mushrooms Naturally fat-free Cholesterol-free Low in calories, carbs and sodium Fresh and all natural Natural source of the antioxidant selenium Great for salads, pizzas, and much more', 'Unbranded', 'https://i5.walmartimages.com/asr/9845e302-060b-4a1e-ac36-9fd1e741f660_4.989f447e486395f3bfa28d1f6b935ab0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9845e302-060b-4a1e-ac36-9fd1e741f660_4.989f447e486395f3bfa28d1f6b935ab0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9845e302-060b-4a1e-ac36-9fd1e741f660_4.989f447e486395f3bfa28d1f6b935ab0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113088542, 'Sugarbee Apple 2ct', 1.97, '888289403749', 'short description is not available', 'Sugarbee Apple 2ct', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113108793, 'Fresh Slicing Tomato, 3 Pack', 2.5, '057836655812', 'Create something wholesome and delicious with 4pk tomatoes. These fresh tomatoes are the perfect ingredient for a variety of tasty dishes. Use them to make a decadent tomato sauce for a pasta dish; try slicing them up and pairing with mozzarella cheese, basil and balsamic vinegar; or simply enjoy them on their own as a nutritious snack. They would make a comforting and appetizing tomato soup and a flavorful salsa. You could also slice them up and use them to top burgers and pizza or use them to make a delicious grilled cheese and tomato sandwich. However you choose to use them, these tomatoes will add flavor and taste to any meal. Be sure to add these fresh tomatoes to your Walmart purhase today.', 'Slicing Tomatoes, 4 Count: Pack of 4 whole slicing tomatoes Firm and thick-skinned Large size is perfect for slicing up and garnishing sandwiches and burgers Classic tomato flavor lends itself to a wide variety of recipes Delicious base for making salsas, soups, sauces, and more', 'Sunset Grown', 'https://i5.walmartimages.com/asr/66a57190-3844-4a00-8135-3466bbfce8b0.d49d3461c8a0b731cc67c52cceea0bb9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/66a57190-3844-4a00-8135-3466bbfce8b0.d49d3461c8a0b731cc67c52cceea0bb9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/66a57190-3844-4a00-8135-3466bbfce8b0.d49d3461c8a0b731cc67c52cceea0bb9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113309180, 'Melon Medly', 10.98, '893268001052', 'short description is not available', 'Melon Medly', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113309473, 'Fresh Whole Slicing Tomato, Each', 1.98, '405522485401', 'Bring the delicious taste of Fresh Whole Slicing Tomatoes into your home. These tomatoes deliver sweet and juicy flavor with each bite and are an ideal ingredient in a variety of recipes. They would make a tasty, garden-inspired addition to salads, burgers, gourmet sandwiches, and so much more. They are picked at peak freshness and specially bred for deep red color, intense flavor, and higher lycopene content than standard tomatoes. Whether you slice or dice them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with these Fresh Whole Slicing Tomatoes.', 'Fresh Whole Slicing Tomato, Each Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Picked at peak freshness High lycopene content Ideal ingredient for a variety of dishes Perfect for salads, burgers, gourmet sandwiches, and more Add to party trays or school lunches', 'Fresh Produce', 'https://i5.walmartimages.com/asr/596ed5a2-6558-42d6-9a5b-c318bc9f4ae2.4927131d05c00312cf51744e17e11473.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/596ed5a2-6558-42d6-9a5b-c318bc9f4ae2.4927131d05c00312cf51744e17e11473.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/596ed5a2-6558-42d6-9a5b-c318bc9f4ae2.4927131d05c00312cf51744e17e11473.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113322217, 'Sun-Maid Deglet Noor Pitted Dried Dates, 8 oz (227 g)', 7.23, '041143089088', 'Whole Fruit 0 g Added Sugars* Good Source of Fiber Fresh Lock® Quality Seal Since 1912 Non GMO Project Verified Kosher Grown in ample sunlight and dry conditions to produce its sweet and nutty flavor, Sun-Maid Deglet Noor Pitted Dates are healthy, good source of fiber snacks right out of the bag. Healthy, sun-dried to perfection and perfectly delicious. *All dates have 0 g added sugars.', 'Whole fruit 0 g added sugars Good source of fiber Fresh lock Quality seal since 1912', 'Sun-Maid', 'https://i5.walmartimages.com/asr/5b4c4bef-89c3-484f-95d6-95cb987e9691.5ff6018a089d92393a6c25bce7d0b08a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5b4c4bef-89c3-484f-95d6-95cb987e9691.5ff6018a089d92393a6c25bce7d0b08a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5b4c4bef-89c3-484f-95d6-95cb987e9691.5ff6018a089d92393a6c25bce7d0b08a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113604620, 'Microwave in Bag Yellow Potatoes, 1.25 Lb.', 3.97, '661061000387', 'Microwave in Bag Yellow Potatoes, 1.25 Lb.', 'Microwave In Bag Yellow Potatoes 1.25 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113643498, 'Clementine Baby Cuties, 3.6 lb', 4.99, '033383104164', 'Clementines, 3.6 lb', 'Clementines, 3.6 lb', 'Unbranded', 'https://i5.walmartimages.com/asr/a117be90-8c23-4f71-916b-f66270c44319.c7fc66e36cd8b355b23432f451bee70f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a117be90-8c23-4f71-916b-f66270c44319.c7fc66e36cd8b355b23432f451bee70f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a117be90-8c23-4f71-916b-f66270c44319.c7fc66e36cd8b355b23432f451bee70f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113706232, 'Fresh Blueberries, 2 lb Box', 6.94, '812049006246', 'Create decadent meals with sweet and light Fresh Blueberries. Enjoy them for breakfast, lunch, dinner, or dessert. Use them to make a lemon and blueberry galette, bake them into delicious blueberry muffins, cook up a sweet and savory pizza topped with blueberries and bacon, or reduce them for a sauce to use on grilled chicken or cheesecake. They contain essential vitamins and nutrients like, vitamin C, vitamin K, antioxidants, and manganese making them perfect for a healthy diet. Prior to serving simply gently wash them with cool water and enjoy the fresh taste. Refrigerate the berries to keep them fresh and ready for use. Pick up Fresh Blueberries today and savor the delectable flavor.', 'Fresh Blueberries, 2 lb Box: Best when enjoyed at room temperature Light, refreshing taste Healthy treat Prior to serving gently wash them with cool water Refrigerate your berries in the original container to maintain freshness They should approximately last 3-5 days after purchase Keep dry for optimal freshness', 'Unbranded', 'https://i5.walmartimages.com/asr/95dcb6db-b793-4da5-8bdc-f0884cc337fc.aa761c55c1ab1460c3451fbc379b662a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/95dcb6db-b793-4da5-8bdc-f0884cc337fc.aa761c55c1ab1460c3451fbc379b662a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/95dcb6db-b793-4da5-8bdc-f0884cc337fc.aa761c55c1ab1460c3451fbc379b662a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113716180, 'Gefen Organic Vacuum Pack Beets, 17.6 Oz', 4.93, '710069011014', 'Gefen Organic Vacuum Pack Beets offer a convenient and healthy way to enjoy this nutritious root vegetable. Sourced from organic farms and vacuum-sealed to preserve their natural flavor and vibrant color, these beets are ready to be incorporated into your favorite meals. Their tender texture and earthy taste make them a versatile addition to salads, grain bowls, or as a simple, delicious side dish. Perfect for busy households and health-conscious consumers, Gefen\'s organic beets eliminate the need for peeling and cooking from scratch. They are a staple in many Eastern European and Kosher cuisines, often enjoyed pickled, roasted, or mashed. Whether you\'re preparing a traditional borscht or a modern beet salad, these ready-to-eat beets provide exceptional quality and convenience.', 'Certified organic beets, vacuum-sealed for freshnessConvenient 17.6 oz packageTender, earthy flavor and vibrant colorReady to eat, perfect for salads and side dishesVersatile ingredient for various culinary creations', 'Gefen', 'https://i5.walmartimages.com/asr/0a9405f5-63eb-4849-9de2-debcc156ac9f_1.c00291e6af5df99f138f828e0ef756a8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a9405f5-63eb-4849-9de2-debcc156ac9f_1.c00291e6af5df99f138f828e0ef756a8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a9405f5-63eb-4849-9de2-debcc156ac9f_1.c00291e6af5df99f138f828e0ef756a8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113724749, 'Mott\'s Sliced Green Apples, 12 Oz., 6 Count', 5.47, '095829201479', 'Apple, Green, Sliced, Tray 12 OZ Individual bags. Hand-picked goodness. Ready to eat. If you have any questions or comments about Mott\'s branded products please call 1-800-487-3245. www.mottsfresh.com. Product of USA. Keep refrigerated. 6 - 2 oz bags [12 oz (340 g)] Eden Prairie, MN 55347 800-487-3245 2011 Mott\'s LLP', 'Mott\'s Sliced Green Apples - 6 CT.Motts is a trademark of Mott\'s LLP.Grown in Chile.chile.If you have any questions or comments abouts Mott\'s branded products please call 1-800-487-3245.www.mottsfresh.com.©2011 Mott\'s LLP.', 'Mott\'s', 'https://i5.walmartimages.com/asr/19c00892-224e-48cd-a446-fc7316104d04.9504feab939e99de4c64130a19fb504b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19c00892-224e-48cd-a446-fc7316104d04.9504feab939e99de4c64130a19fb504b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19c00892-224e-48cd-a446-fc7316104d04.9504feab939e99de4c64130a19fb504b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113790422, 'Nopalito Diced', 2.38, '045255113341', 'Add flavor and goodness to your recipes with Nopalito Cactus. Nopalitos, tender, juicy cactus chunks, are a staple in Central and South American dishes, adding texture and depth to salads, stews, soups and more. Cactus is packed with dietary fiber and vitamins and minerals, including vitamins A, C, D, E, K, B6 and B12 as well as iron, phosphorous, magnesium and zinc. It contains no cholesterol, trans or saturated fat, with just 14 calories per cup. This diced California cactus comes ready to add to your recipes.', 'Nopalito, Diced: Tender, diced cactus Low in calories Delicious added to cold salads for extra flavor and texture Essential for a variety of Central and South American dishes Rich in vitamins and minerals, including vitamins A, C, D, E, K, B6 and B12 as well as iron, phosphorous, magnesium and zinc No cholesterol, trans fat, saturated fat High in dietary fiber 14 calories per cup', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cbff6710-7d2e-4e22-8f91-d9cbadd9dda8.d3bdbf392766a6067b072f89872a52a6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cbff6710-7d2e-4e22-8f91-d9cbadd9dda8.d3bdbf392766a6067b072f89872a52a6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cbff6710-7d2e-4e22-8f91-d9cbadd9dda8.d3bdbf392766a6067b072f89872a52a6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113804290, '250pc Pto Rst Jmb 8#', 1605, '405518780305', 'short description is not available', '250pc Pto Rst Jmb 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113865188, 'Zestar Apple Totes', 0.98, '681131124249', 'short description is not available', 'Zestar Apple Totes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113874169, 'Pretty Lady White Grapes, 2 Count', 6.97, '850859002003', 'Pretty Lady White Grapes, 2 Count', 'Pr Pretty Lady Grape White', 'Pretty Lady', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113914413, '180pc Pto Rst 10#2ts', 889.2, '405542167950', 'short description is not available', '180pc Pto Rst 10#2ts', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (113986818, 'Anjou Pears, 5 lb', 4.97, '033383300559', 'Danjou Pears, 5 Lb.', '5lb Bag Of Danjou Pears', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9c58b4e3-6dee-44fa-9489-4b8056bfb81b_1.77992124e814dfb65dcbefb14d277f1c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9c58b4e3-6dee-44fa-9489-4b8056bfb81b_1.77992124e814dfb65dcbefb14d277f1c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9c58b4e3-6dee-44fa-9489-4b8056bfb81b_1.77992124e814dfb65dcbefb14d277f1c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (114189769, 'Fresh Organic Blueberries, 6 oz Container', 2.67, '899062002264', 'Fresh Blueberries are a delightful and nutritious treat that brings a burst of flavor to any dish. These plump and juicy berries are picked at the peak of freshness, ensuring a sweet and tangy taste that is hard to resist. Perfect for snacking, baking, or adding to your favorite recipes, these blueberries are a versatile fruit that can be enjoyed in countless ways. Whether you sprinkle them on top of your morning cereal, blend them into a smoothie, or bake them into a delicious pie, Fresh Blueberries are sure to satisfy your cravings for a healthy and delicious snack.', 'Are you ready to experience the vibrant taste and health benefits of Fresh Blueberries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Blueberries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. The versatility of blueberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these blue gems into your baking endeavors, whether it\'s muffins, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Not only are blueberries delicious, but they also offer an array of health benefits. Loaded with antioxidants, vitamins, and dietary fiber, blueberries are known to promote heart health, support brain function, and boost the immune system. They are a nutritious choice that will keep you feeling good from the inside out. Our Fresh Blueberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness. Treat yourself to the delightful taste and nutritional benefits of Fresh Blueberries. Elevate your dishes, satisfy your cravings, and experience the joy of these plump and juicy berries. Order your batch today and unlock a world of flavor and wellness.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/738b6006-e4bb-41a7-bd14-5a4e7adf1b24.0925ca0c47211b0a3a12fb1897566002.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/738b6006-e4bb-41a7-bd14-5a4e7adf1b24.0925ca0c47211b0a3a12fb1897566002.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/738b6006-e4bb-41a7-bd14-5a4e7adf1b24.0925ca0c47211b0a3a12fb1897566002.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (114204302, 'Organic Fresh Rainbow Baby Carrots, 12 oz, Bag', 2.16, '078783907267', 'Enjoy a colorful and delicious snack with these Organic Fresh Rainbow Baby Carrots. Certified USDA organic, these baby carrots are cut, washed, peeled, and ready to eat. They\'re great for packing in lunches to take to school or the office. You could also bring them along on a road trip when you\'re in the mood for a quick and healthy snack. If you\'re throwing a dinner party, set them out on a vegetable tray along with a variety of crowd-pleasing dips. Keep refrigerated until ready to enjoy. Bring home some Organic Fresh Rainbow Baby Carrots today.', 'Organic Fresh Rainbow Baby Carrots, 12 oz Plastic Bag USDA certified organic rainbow baby carrots Cut and peeled Washed and ready to eat Great for packing in lunches to take to school or the office Set them out on a vegetable tray along with your favorite dips Keep refrigerated', 'Fresh Produce', 'https://i5.walmartimages.com/asr/98941551-0007-4141-89d4-6fcaf5392f62.f832d472fabe56e24c4844d3c9353bdd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/98941551-0007-4141-89d4-6fcaf5392f62.f832d472fabe56e24c4844d3c9353bdd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/98941551-0007-4141-89d4-6fcaf5392f62.f832d472fabe56e24c4844d3c9353bdd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (114256350, 'Brussels Sprouts, 12 oz', 2.48, 'deleted_716519010354', '', '', 'Mann\'s', 'https://i5.walmartimages.com/asr/827a1ba5-10ff-4a82-842c-42ecaec7a085_1.7fbcd3e53ac6ed7df4a4574d22c27cab.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/827a1ba5-10ff-4a82-842c-42ecaec7a085_1.7fbcd3e53ac6ed7df4a4574d22c27cab.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/827a1ba5-10ff-4a82-842c-42ecaec7a085_1.7fbcd3e53ac6ed7df4a4574d22c27cab.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (114263715, 'Heirloom Tomato, 2 Pack', 3.98, 'deleted_867747000003', 'Fresh Heirloom Tomatoes are the time tested, never modified, reminder of the quality eating experience that can only come from a tomato grown in your own backyard and picked at the peak of perfedtion! Whether chopping to add into a salad, or sliced as part of a burger, these fresh heirloom tomatoes will not dissapoint. Be sure to add fresh heirloom tomatoes to our Walmart produce purchase today', 'Uglyripe Heirloom Tomato', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (114263964, 'Batata, 3 Lb.', 4.97, '882623895818', 'Fresh Batata, 3 Lb.', 'Good source of fiber and potassium Rich in vitamin C and vitamin B Nutty flavor when cooked Fresh and whole Can be mashed, baked, boiled, fried, creamed, and more Versatile and delicious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ab5d23d2-8648-4ced-bdfe-bae89c3ee3f1.6c7f199c87af3ca8c039cb3dcd9b2387.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ab5d23d2-8648-4ced-bdfe-bae89c3ee3f1.6c7f199c87af3ca8c039cb3dcd9b2387.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ab5d23d2-8648-4ced-bdfe-bae89c3ee3f1.6c7f199c87af3ca8c039cb3dcd9b2387.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (114400724, 'Fresh Yellow Grape Tomato, 10 oz Package', 2.98, '000000031486', 'These Yellow Grape Tomatoes deliver fresh, versatile flavor to take you from sauces to salads and beyond. A unique spin on the time-tested grape tomato, these colorful cousins of the grape tomato boast unique citrusy, floral notes. Refreshingly vibrant and versatile, you can enjoy them for snacking, salads, grilling, roasting or sauteing. You can combine these tasty little tomatoes with fresh mozzarella and basil drizzled with olive oil or slice them up and add them to a freshly tossed salad. If you\'re feeling something classic, you can always cut one up to add that fresh tomato taste to a sandwich or dice up a few to make a delightful pizza topping. Be sure to add Yellow Grape Tomatoes to your inventory of fresh ingredients today.', 'Yellow Grape Tomato, 10 oz Package: Wholesome, versatile, and delicious Colorful tomatoes with citrusy, floral notes Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9f25e3db-2d7e-4cc6-9630-325a4d12829b_5.f5ece42c4ed727430faecd9822c3f490.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9f25e3db-2d7e-4cc6-9630-325a4d12829b_5.f5ece42c4ed727430faecd9822c3f490.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9f25e3db-2d7e-4cc6-9630-325a4d12829b_5.f5ece42c4ed727430faecd9822c3f490.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (114429665, 'Marketside Brussels Sprouts & Asparagus, 8 oz', 3.4, '681131147057', 'short description is not available', 'Ms Brussels Sprouts Asparagus 8oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/09949f41-496e-4fe4-b4f7-661d3829440f_1.47727f515cae19074401f28178edb30b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/09949f41-496e-4fe4-b4f7-661d3829440f_1.47727f515cae19074401f28178edb30b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/09949f41-496e-4fe4-b4f7-661d3829440f_1.47727f515cae19074401f28178edb30b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (114511126, 'Fresh Tricolor Grapes, 10 Oz', 2.98, '708174105001', 'Grapes, Rainbow 1 qt 1 US dry quart. May contain blue, white or red grapes. www.SpiechFarms.com. Product of USA (CS). 1 qt Lawton, MI 49065', 'Fresh Tricolor Grapes, 10 Oz', 'Spiech Farms', 'https://i5.walmartimages.com/asr/792b6ecd-c260-487e-8bc1-834b31989ba4.5a1bd01de7fde77bfc0f5d90074a91d0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/792b6ecd-c260-487e-8bc1-834b31989ba4.5a1bd01de7fde77bfc0f5d90074a91d0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/792b6ecd-c260-487e-8bc1-834b31989ba4.5a1bd01de7fde77bfc0f5d90074a91d0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (114600353, 'Organic French Fingerling Potatoes, 1.5 Lb.', 3.48, '690545915336', 'Organic French Fingerling Potatoes, 1.5 Lb.', 'Organic French Fingerling Potatoes 1.5lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (114653332, 'Organic Russet Baking Potatoes, Each, Whole', 0.57, '000000940726', 'Introducing our Organic Russet Baking Potatoes, the perfect choice for indulging in a healthy and flavorful culinary experience. Sourced from premium organic farms, each pound of these earthy, golden-brown delights guarantees a satisfying and mouthwatering baked potato experience. Rich in essential nutrients and packed with natural goodness, our Russet Baking Potatoes are both delicious and nourishing. Fresh Produce With their tender, fluffy interior and crisp, flavorful skin, these versatile potatoes are ideal for whipping up savory dishes, hearty soups, or classic comfort food favorites. Elevate your meals and treat your taste buds with our exceptional Organic Russet Baking Potatoes, available by the pound.', 'Organic Russet Baking Potatoes, each Introducing our Organic Russet Baking Potatoes, the perfect choice for indulging in a healthy and flavorful culinary experience. Sourced from premium organic farms, each pound of these earthy, golden-brown delights guarantees a satisfying and mouthwatering baked potato experience. Rich in essential nutrients and packed with natural goodness, our Russet Baking Potatoes are both delicious and nourishing. With their tender, fluffy interior and crisp, flavorful skin, these versatile potatoes are ideal for whipping up savory dishes, hearty soups, or classic comfort food favorites. Elevate your meals and treat your taste buds with our exceptional Organic Russet Baking Potatoes, available by the pound.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b99497a7-6eae-4182-92d5-9116cbf632d6.70adfa0891a33515a4e64c85f019868a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b99497a7-6eae-4182-92d5-9116cbf632d6.70adfa0891a33515a4e64c85f019868a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b99497a7-6eae-4182-92d5-9116cbf632d6.70adfa0891a33515a4e64c85f019868a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (114803944, 'Guava, 1 lb, Clamshell', 3.34, '614360000480', 'Savor the irresistible taste of fresh Guava. Guavas are an excellent fruit to add to your breakfast, lunch, dinner, or dessert. For breakfast, you can chop them up and add to yogurt or a smoothie for a sweet treat that\'s sure to get your morning started on a high note. For dessert, you could use them to make a creamy cheesecake, scrumptious pastries, and so much more. You can also use them to make a unique cocktail to serve at your next dinner party. The culinary possibilities are endless when you keep your kitchen stocked with fresh Guavas.', 'Fresh and juicy guavas Delicious on its own or in a variety of recipes Add to yogurt or a smoothie Use to top your salad for a tropical twist Excellent source of vitamin C High in dietary fiber Rich in potassium Also known as Guayaba and Bayabas around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/543f54e0-9053-40c6-b65d-d49315703202.83039a112dfb97284a3ee601fa58a751.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/543f54e0-9053-40c6-b65d-d49315703202.83039a112dfb97284a3ee601fa58a751.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/543f54e0-9053-40c6-b65d-d49315703202.83039a112dfb97284a3ee601fa58a751.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (114992615, 'Rome Apples 3 Lb Bag', 3.94, '022906300022', 'short description is not available', 'Rome Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (115085981, 'Plumogranate Plumcot - 1 lb Bag', 3.98, 'deleted_813187011314', 'Plumogranate® plumcots are a black plumcot with a deep, dark red flesh. They burst with flavors of plum, berry and pomegranate. Plus, they are packed with healthy disease-fighting antioxidants.', 'Plumogranate Plumcot - 1 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cf8031bf-ae52-4066-970b-47801ab7f4d5_1.7d51442f5b5d5b6a299096b77a356edb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cf8031bf-ae52-4066-970b-47801ab7f4d5_1.7d51442f5b5d5b6a299096b77a356edb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cf8031bf-ae52-4066-970b-47801ab7f4d5_1.7d51442f5b5d5b6a299096b77a356edb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (115156596, 'Plumcot, 1 lb Pack', 4.48, 'deleted_813187011307', 'Thousands of tiny speckles grace the rosy colored skin. The color and flavors will remind you of a delicious fruit punch.', 'Summer Punch Plumcot 1# Clamshell', 'Fresh Produce', 'https://i5.walmartimages.com/asr/71c6d5cb-8616-4113-8aca-dd5a6619d255_1.562b25a1ffd7eea2f14b0754f808e28c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71c6d5cb-8616-4113-8aca-dd5a6619d255_1.562b25a1ffd7eea2f14b0754f808e28c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71c6d5cb-8616-4113-8aca-dd5a6619d255_1.562b25a1ffd7eea2f14b0754f808e28c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (115230324, 'Haralson Apple Totes', 0.98, '681131124423', 'short description is not available', 'Haralson Apple Totes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (115329445, 'Fresh Lychee, 1 lb Package', 2.98, '851720003082', 'Our whole lychees are a fresh produce pick that\'s sure to satisfy your sweet tooth. These juicy, tropical fruits come in a convenient bag, making it easy to enjoy a snack on-the-go. Perfect for pairing with desserts or adding to your favorite cocktail, these whole lychees are a must-have for anyone who loves delicious fresh fruit.', 'Bring the tropics into your home with Lychee. Sweat, flowery and fresh flavor and a great source of vitamins, minerals and antioxidants. Crack and peel the skin off to discover the fruit inside, often described as a grape without the skin. Fresh and whole 1 lb lychee', 'Unbranded', 'https://i5.walmartimages.com/asr/c06d0176-c5d4-414b-b001-ef3fbec22850.ff5b7785860aa59713129271e1e06561.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c06d0176-c5d4-414b-b001-ef3fbec22850.ff5b7785860aa59713129271e1e06561.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c06d0176-c5d4-414b-b001-ef3fbec22850.ff5b7785860aa59713129271e1e06561.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (115416805, 'Cameo Apples 5 Lb Bag', 5.29, '847473005886', 'short description is not available', 'Cameo Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (115511928, 'Halos Mandarin Oranges, 2 Count', 0.99, '072240424229', 'Halos Mandarin Oranges, 2 Count', 'Halos 2 Pk', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (115738305, 'Melon Cantalupe', 2.5, '400094288238', 'Melon Cantalupe', 'Melon Cantalupe 15', 'Unbranded', 'https://i5.walmartimages.com/asr/cf901ec3-9e25-4e79-ab8b-296b6e94d3e6.aa2c19f4402d076204c6eead51241c30.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cf901ec3-9e25-4e79-ab8b-296b6e94d3e6.aa2c19f4402d076204c6eead51241c30.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cf901ec3-9e25-4e79-ab8b-296b6e94d3e6.aa2c19f4402d076204c6eead51241c30.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (116097530, 'Bartlett Pears, 4 lb', 6.36, 'deleted_885880007079', 'Bartlett Pears, 4 Lb.', '4lb Bag Of Packham Pears', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a6fbdd1e-9ba0-4018-be9e-e103a7aff0c8_1.7bea0e2f51b084242fcf154eeae372d0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6fbdd1e-9ba0-4018-be9e-e103a7aff0c8_1.7bea0e2f51b084242fcf154eeae372d0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6fbdd1e-9ba0-4018-be9e-e103a7aff0c8_1.7bea0e2f51b084242fcf154eeae372d0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (116142869, 'Tomoor Palmera Ajwa Luxury Dates from Madinah 100% Natural Dates, 3000g (6.6LBs)', 110, '761062893022', 'Tomoor Palmera Ajwa Luxury Dates pits and flesh are good source of naturally occurring antioxidants and other beneficial bioactive. Our dates are naturally sweet, luscious and very soft. Dates from Saudi Arabia Fresh hand-picked, no preservatives, tightly packed without chemicals. Dates a sacred food in Islam is among prophet Mohammed favorites. Dates are a sacred food in Islam, one of the favorites in the month of Ramadan, the ideal food for iftar in Ramadan; Best breakfast in Ramadan everyone loves to eat wonderful dates in Ramadan because of its multiple benefits. Maintain your health, as dates are not only healthy and delicious, but they are also a source of vitamins and minerals. Aiwa are sourced from organic Farmers in Madinah. Try it soft moist and tasty packed in a happy approved factory.', '100% Natural:Tomoor Palmera Luxury Organic Whole Ajwa Dates from Madinah 100% Natural, 3000g (6.6LBs) 100% Fresh: Our dates are naturally sweet, luscious and very soft. Fresh hand-picked dates, no preservatives, tightly packed without chemicals, Best breakfast in Ramadan everyone loves to eat wonderful dates in Ramadan because of its multiple benefits. Stay healthy: Dates are not only healthy and delicious, but they are also a source of vitamins, minerals and natural immunity. easy-to-eat: If you want healthy nutrition for your children with a taste similar to sweets without artificial colors and preservatives that harm their health, here is a delicious and nutritious taste that young children accept for its sweetness, softness and swallowing, just like sweets. No Pesticides, no chemical fertilizers, no added sugar, no sweeteners, Authentic Ajwa taste maintained for hundreds of years', 'Tomoor Palmera', 'https://i5.walmartimages.com/asr/54ca0464-a7a9-43f6-8f27-269ff6272154.5974b3e029304b44a873183f2b661d81.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54ca0464-a7a9-43f6-8f27-269ff6272154.5974b3e029304b44a873183f2b661d81.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54ca0464-a7a9-43f6-8f27-269ff6272154.5974b3e029304b44a873183f2b661d81.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (116148654, 'Manzana Braeburn Apples, 1 lb Bag, Whole, Fresh', 1.77, 'deleted_400094433195', 'Looking for fresh produce that packs a punch? Look no further than our organic Braeburn apples! These whole, juicy apples are bursting with sweet flavor and make a delicious snack any time of day. Made with only the best organic ingredients, you can feel good about indulging in this healthy treat. Perfect for baking or eating raw, these apples are sure to brighten up any dish!', 'Fresh Braeburn Apple, Each: Sweet, crisp & juicy Mild lemon-citrus undertones Excellent snacking apple Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp & apple pie', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/8bb3f41b-7560-485d-a19f-f6c6910dd450.f86ec5dde8443841c6b18be976bfbcc5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8bb3f41b-7560-485d-a19f-f6c6910dd450.f86ec5dde8443841c6b18be976bfbcc5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8bb3f41b-7560-485d-a19f-f6c6910dd450.f86ec5dde8443841c6b18be976bfbcc5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (116224014, 'Cameo Apples 3 Lb Bag', 3.58, '033383010120', 'short description is not available', 'Cameo Apples 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b0164a7d-e94a-442e-bbf0-237bb8108d79.8f3bfc0d82fb0737879f106a2dfdb329.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b0164a7d-e94a-442e-bbf0-237bb8108d79.8f3bfc0d82fb0737879f106a2dfdb329.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b0164a7d-e94a-442e-bbf0-237bb8108d79.8f3bfc0d82fb0737879f106a2dfdb329.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (116566237, 'Seedless Green Grapes, 2 lb bag', 3.96, 'deleted_091636144985', 'short description is not available', 'Green Grapes Seedless Bag, 2 lbs.', '', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (116598552, 'Fresh Ugli-uniq Fruit, Each', 1.68, '204459000004', 'Experience the exotic taste of the Caribbean with our fresh Ugli-Uniq fruit, a unique and delectable citrus variety from Jamaica. This fruit boasts an easy-to-peel skin, making it perfect for on-the-go snacking. With its delightful blend of sweet and tangy flavors, it adds a tropical twist to salads and recipes. Ideal for health enthusiasts, it is rich in Vitamin C and supports a balanced diet. Discover the distinct bumpy exterior that sets it apart from other fruits. Try it today for a refreshing tropical indulgence that brings the taste of the tropics to your table, simply irresistible!', 'Ugli-Uniq Fruit Unique Appearance: Ugli-Uniq Fruit has a distinctive, rough, and bumpy exterior that\'s unlike any other fruit. High in Vitamin C: Ugli-Uniq Fruit is an excellent source of vitamin C, making it a great addition to a healthy diet. Sweet and Tangy Flavor: Enjoy the perfect balance of sweet and tangy flavors in every bite. Easy-to-Peel: Convenient for snacking and culinary use. Food Condition: Fresh and ready to eat. Imported from Jamaica: Authentic Caribbean taste.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/baefe933-2874-4c8a-bf2a-5b544ac4a6b2_1.7e76110c509aa345797ba03c7a4be1b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/baefe933-2874-4c8a-bf2a-5b544ac4a6b2_1.7e76110c509aa345797ba03c7a4be1b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/baefe933-2874-4c8a-bf2a-5b544ac4a6b2_1.7e76110c509aa345797ba03c7a4be1b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (116940085, 'Yellow Flesh Peaches, per Pound', 1.58, '400094167366', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (117174014, 'Fresh Peras (Pears) Anjou, 3 lb Bag, Sweet', 8.97, '400094308042', 'Introducing the Anjou Pears – a bag of fresh, full and organic produce! Bursting with flavor, these sweet delights are carefully made with organic ingredients to ensure optimal quality. Whether you’re looking for a healthy snack or want to add some fruity goodness to your favorite meals, these Anjou Pears are perfect for you. Satisfy your cravings and enjoy the natural sweetness that nature has to offer with every bite!', 'Organic Anjou pears are a classic variety grown using organic farming practices, ensuring they are free from harmful chemicals and pesticides. They have a sweet, juicy flavor and smooth, firm texture that makes them a versatile ingredient in a variety of dishes - Certified organic, they are non-GMO and free from synthetic fertilizers and pesticides. High in dietary fiber and vitamin C, making them a healthy snack option. The 3lb bag size is convenient for families and individuals looking for a larger supply of fresh pears - Organic Anjou pears are harvested at their peak ripeness and carefully packed to ensure maximum freshness and flavor. They have a long shelf life and can be stored in the refrigerator for up to 2-3 weeks. Organic Anjou pears are available year-round, making them a reliable choice for any occasion. Find these in your local stores!', 'Fresh Peras', 'https://i5.walmartimages.com/asr/3d896424-8396-449b-a52e-d7cc4ab59073.d62f3e8ee1a90b3756728a940d4e21d7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3d896424-8396-449b-a52e-d7cc4ab59073.d62f3e8ee1a90b3756728a940d4e21d7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3d896424-8396-449b-a52e-d7cc4ab59073.d62f3e8ee1a90b3756728a940d4e21d7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (117299794, 'Little Bagged Pumpkin, 1 Each', 2.98, '743425089402', 'Little Bagged Pumpkin, 1 Each', 'Pumpkin Little Bagged', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (117452205, 'Bicolor Grapes Clamshell, 2 Lb.', 6.47, 'deleted_073748141410', 'Treat yourself to the delicious, juicy flavor of Fresh Bi-Color Grapes. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Fresh Bi-Color Grapes.', 'Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/9641d3e8-ea3b-48f9-bd76-18e13427e066.2ccf355f62b2cde352311041f272321e.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9641d3e8-ea3b-48f9-bd76-18e13427e066.2ccf355f62b2cde352311041f272321e.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9641d3e8-ea3b-48f9-bd76-18e13427e066.2ccf355f62b2cde352311041f272321e.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (117735559, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094360149', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (117765046, 'Ambrosia Apples, 3 lb bag', 5.47, 'deleted_847473000355', 'short description is not available', 'Ambrosia Apples, 3 lb bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/9e3da353-e08a-464d-946e-16309b3b3709_1.8c2783bdedf49352910e3673170af77f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9e3da353-e08a-464d-946e-16309b3b3709_1.8c2783bdedf49352910e3673170af77f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9e3da353-e08a-464d-946e-16309b3b3709_1.8c2783bdedf49352910e3673170af77f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (118208792, 'Apple Pear', 3.98, '400094288658', 'short description is not available', 'Apple Pear', 'Unbranded', 'https://i5.walmartimages.com/asr/5327ee21-8005-4411-8362-4b5b623ab313.60f486f2a2486ada80efa46bd09e1ecf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5327ee21-8005-4411-8362-4b5b623ab313.60f486f2a2486ada80efa46bd09e1ecf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5327ee21-8005-4411-8362-4b5b623ab313.60f486f2a2486ada80efa46bd09e1ecf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (119375246, 'Pineapple Spears, 1 lb', 3.88, '077745237572', 'Pineapple Spears 16 oz (454 g) www.freshdelmonte.com. Product of Costa Rica. 16 oz (454 g) PO Box 149222 Coral Gables, FL 33114-9222', 'Pineapple Spears, Gold www.freshdelmonte.com. Product of Costa Rica.', 'WALMART PRODUCE', 'https://i5.walmartimages.com/asr/58157f3f-88fd-4500-baaf-364e865a7a74.7171307f32477593738f800d68141222.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58157f3f-88fd-4500-baaf-364e865a7a74.7171307f32477593738f800d68141222.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58157f3f-88fd-4500-baaf-364e865a7a74.7171307f32477593738f800d68141222.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (119662145, 'Dark Sweet Cherries, Half Pint', 2.98, '883391003948', 'Dark Sweet Cherries, Half Pint', 'Dark Sweet Cherries 1/2 Dry Pint', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (119752152, 'Fresh USDA Organic Blackberries, 6 oz. Container', 4.16, '852990008098', 'The sweet, juicy flavor of Fresh Blackberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes or yogurt, bake them into mouthwatering blackberry cobbler, mix them with other fruit for a light and flavorful salad, or add them to a creamy smoothie. They contain essential vitamins and nutrients like vitamin C, fiber, potassium, vitamin K and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them with cool water and enjoy the fresh taste. Refrigerate the berries to keep them fresh and ready for use. Pick up a Fresh Blackberry container today and savor the delectable flavor.', 'Are you ready to experience the vibrant taste and health benefits of Fresh Blackberries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Blackberries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. The versatility of blackberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these tasty gems into your baking endeavors, whether it\'s cobblers, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Not only are blackberries delicious, but they also offer an array of health benefits. Loaded with vitamins and dietary fiber, blackberries are a nutritious choice that will keep you feeling good from the inside out. Our Fresh Blackberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness. Treat yourself to the delightful taste and nutritional benefits of Fresh Blackberries. Elevate your dishes, satisfy your cravings, and experience the joy of these plump and juicy berries. Order your batch today and unlock a world of flavor and wellness.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cc59ff3c-2e82-477b-b73e-0381bac00fac_1.8cea8b96440dc796935f0ad4bc140919.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc59ff3c-2e82-477b-b73e-0381bac00fac_1.8cea8b96440dc796935f0ad4bc140919.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc59ff3c-2e82-477b-b73e-0381bac00fac_1.8cea8b96440dc796935f0ad4bc140919.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (119856351, 'Fresh Cherimoya, Each', 5.27, '000000042574', 'Indulge in the sweet and tangy taste of cherimoya, a tropical fruit from south America. our fresh cherimoya is carefully selected to ensure optimal flavor and texture. enjoy it as a healthy snack or add it to your favorite recipes for a burst of exotic flavor.', 'Item Type: Assembly Heater Defrost 115V Unique Flavor: Cherimoya has a sweet and slightly tangy flavor, often described as a combination of pineapple, strawberry, and banana. Creamy Texture: Enjoy the creamy and smooth texture of Cherimoya, similar to a pear. Rich in Antioxidants: Cherimoya is rich in antioxidants, which can help protect against free radicals and support overall health. Exotic and Rare: Cherimoya is a rare and exotic fruit, making it a unique addition to your fruit bowl.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/485a0081-e1aa-41f3-9992-19e2c9bc6f9b.2cc3a8305928ba55b4d40dfea95b7895.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/485a0081-e1aa-41f3-9992-19e2c9bc6f9b.2cc3a8305928ba55b4d40dfea95b7895.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/485a0081-e1aa-41f3-9992-19e2c9bc6f9b.2cc3a8305928ba55b4d40dfea95b7895.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (120036098, 'Fresh Caramel Apples with Nuts, 3 Pack', 4.64, '034986000020', 'Our Classic 3 pack Caramel with Nuts is the perfect treat to celebrate the fall season, adding a touch of autumn to any gathering or occasion. Handcrafted with fresh apples dipped in creamy caramel and rolled in chopped nuts, the perfect blend of sweet, nutty, and crunchy flavors in every bite is sure to satisfy any sweet tooth. This timeless favorite is perfect for any event or as a special treat for yourself or your loved ones. Don\'t miss out on this delicious and satisfying treat that never fails to delight.', 'Fresh Apples dipped in caramel and rolled in crushed peanuts. Caramel Apples with Nuts, 3 Pack Rolled in Chopped Nuts. This is a great PRODUCE UNBRANDED product that pairs well with any meal. Grab yours today, in a local store.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/91e5db36-5d2a-4404-8523-2ffee3d63b89_4.263dcf9cc2552e5d3b078f631b82d5a9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/91e5db36-5d2a-4404-8523-2ffee3d63b89_4.263dcf9cc2552e5d3b078f631b82d5a9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/91e5db36-5d2a-4404-8523-2ffee3d63b89_4.263dcf9cc2552e5d3b078f631b82d5a9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (120070481, 'Fresh Forelle Pears, 2 Lb.', 3.57, '847473004438', 'Forelle Pears, 2 Lb.', 'Savor the sweet taste of Fresh Forelle Pears are aromatic and have a definitive pear flavor that make them great for breakfast, lunch, dinner, and dessert. Chop the pears up and add them to muffins with walnuts and vanilla for a sweet treat that’s great for breakfast to get your morning started on a high note. Slice them up and top a pizza with prosciutto, goat cheese, and arugula for a mouthwatering meal perfect for a family dinner or dinner party. Cut the pear in half and cook it in a skillet with butter, brown sugar, and vanilla and serve with a scoop of vanilla ice cream for a decadent dessert. Enjoy tasty meals any time of day with Fresh Pears.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/157babee-5a2e-4c67-9794-bb1054fa771a.8433bbc08a89b26acbb4b4ad2ff069b0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/157babee-5a2e-4c67-9794-bb1054fa771a.8433bbc08a89b26acbb4b4ad2ff069b0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/157babee-5a2e-4c67-9794-bb1054fa771a.8433bbc08a89b26acbb4b4ad2ff069b0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (120211483, 'Mangoes, per Pound', 1.67, '400094673560', 'Mangoes, per Pound', 'Naturally sweet and juicy tropical fruit Rich in vitamins A and C for immune support Deliciously smooth texture and vibrant flavor Perfect for snacking, smoothies, salads, and desserts Handpicked at peak ripeness for optimal taste Can be stored at room temperature or refrigerated Low in fat and a source of dietary fiber', 'Unbranded', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (120312952, 'Pear, per Pound', 1.47, '681131124409', 'Pear, per Pound', 'Pear Totes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (120351830, 'Lil Snapper Cara Cara Oranges, 3 Lb.', 4.48, '605049458296', 'While Cara Cara Oranges look like a regular Navel orange on the outside, It is actually pink on the inside. Nicknamed \'The Power Orange®\' because it packs a nutritional punch with more Vitamin A and C than normal oranges. The Cara Cara tastes extremely sweet and has a tangy, cranberry-like zing.', 'Lil Snapper Cara Cara Oranges', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (121049574, 'Fresh Red Grapes, 2 lb Package', 6.47, '850859002058', 'Treat yourself to the delicious, juicy flavor of Fresh Red Seedless Grapes. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the fresh taste of Fresh Red Seedless Grapes.', 'Fresh Red Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3141816b-7f00-44b8-8b00-7b8e682ccd18.6cbe9f0913007e9fead77236b2ad4c4f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3141816b-7f00-44b8-8b00-7b8e682ccd18.6cbe9f0913007e9fead77236b2ad4c4f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3141816b-7f00-44b8-8b00-7b8e682ccd18.6cbe9f0913007e9fead77236b2ad4c4f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (121524969, 'Cantaloupe Chunk 16oz', 3.88, '813055012863', 'short description is not available', 'Cantaloupe Chunk 16oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (121612745, 'Stemilt Growers Golden Delicious Washington Apples, 1 ea', 1.67, 'deleted_000000040211', 'Washington Apples 1 each 1 each', 'Golden Delicious Apples Bulk Small', 'Golden Delicious', 'https://i5.walmartimages.com/asr/057bda41-124a-4fd6-bcc5-9377df88ab5e_1.b0ed184ba644ac29be649cd14f553db6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/057bda41-124a-4fd6-bcc5-9377df88ab5e_1.b0ed184ba644ac29be649cd14f553db6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/057bda41-124a-4fd6-bcc5-9377df88ab5e_1.b0ed184ba644ac29be649cd14f553db6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (121938338, 'Fresh Idared Apples, Each', 1.47, '000000041423', 'Introducing our premium Idared Fresh Apples, grown in the fresh and fertile orchards of North America. These juicy, moderately sweet apples feature a bright red skin and a creamy white flesh. Their crisp texture makes them perfect for snacking, baking, or adding to salads. Packed with nutritional benefits, these apples are rich in fiber, vitamins, and antioxidants. Enjoy them fresh or cooked whole, and savor the delightful taste of nature\'s bounty. Order now and taste the Fresh Produce difference!', 'Officially Licensed Featuring Dungeon & Dragons 6 small bases, 6 small adapters, 2 large bases, 6 large pegs, and 2 large adapters. Make a creamy smoothie or a nutritious juice blend Adds flavor to a variety of recipes', 'BelleHarvest', 'https://i5.walmartimages.com/asr/aa15aaac-2794-471c-a5c9-c3dff9128d50.3695d6f88aa63324b8d469f642c560e9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa15aaac-2794-471c-a5c9-c3dff9128d50.3695d6f88aa63324b8d469f642c560e9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa15aaac-2794-471c-a5c9-c3dff9128d50.3695d6f88aa63324b8d469f642c560e9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (122446525, 'Gesex Smart Fruit Cirueas/plums', 3.97, '814746010854', 'Gesex Smart Fruit Cirueas/plums', 'Gesex Smart Fruit Cirueas/plums', 'Unbranded', 'https://i5.walmartimages.com/asr/0a5dffd1-b77e-49e3-8ee6-ebc37c949452.f3202fa20364886dfa607ce9223cfb47.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a5dffd1-b77e-49e3-8ee6-ebc37c949452.f3202fa20364886dfa607ce9223cfb47.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a5dffd1-b77e-49e3-8ee6-ebc37c949452.f3202fa20364886dfa607ce9223cfb47.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (122537353, 'Small Cantaloupe Tub', 1.97, '224132000008', 'short description is not available', 'Small Cantaloupe Tub', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (122552887, 'Fresh Mandarins, 2 lb Bag', 4.97, '072240434976', 'Fresh Mandarin Oranges, 2 lb', 'Fresh Mandarin 2 lb Easy Peel', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6660a2b4-e56e-4306-bda1-5a64ef065196.3a025cf66d706c26f352a32e04ea266d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6660a2b4-e56e-4306-bda1-5a64ef065196.3a025cf66d706c26f352a32e04ea266d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6660a2b4-e56e-4306-bda1-5a64ef065196.3a025cf66d706c26f352a32e04ea266d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (122641195, 'Ambrosia Apples 5 Lb Bag', 5.29, '847473005855', 'short description is not available', 'Ambrosia Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (122699969, 'Fresh Apple Granny Smith, 1 Lb Package', 1.97, '400094435090', 'Our Granny Smith fresh apples are a delightfully tart and crunchy treat. With their bright green skin and firm flesh, they\'re perfect for snacking or adding a refreshing twist to your favorite recipes. These apples are packed with fiber, vitamins, and antioxidants, making them a healthy choice for anytime indulgence. Enjoy the deliciously tangy taste and characteristic juicy crunch of our fresh Granny Smith apples today.', 'Granny apples are a classic and beloved apple variety that has been a staple in kitchens for generations. These apples are known for their tart flavor and crisp texture, making them perfect for baking in pies, crisps, and other desserts. They are also a popular choice for making homemade applesauce and apple cider. Granny apples are an excellent source of dietary fiber and vitamin C, making them a healthy snack option that can be enjoyed anytime. Our Granny apples are carefully selected and picked at the peak of their freshness to ensure maximum flavor and quality. With their distinct flavor and versatility, Granny apples are a must-have for any apple lover\'s pantry. Whether you\'re a seasoned baker or simply enjoy the classic taste of a tart apple, Granny apples are sure to become a favorite in your household. Give them a try and discover why they have been a beloved apple variety for generations.', 'Unbranded', 'https://i5.walmartimages.com/asr/b5e97858-b90e-43cb-9c32-25734ddf948d.acc09060e7faa2752339ab01bcdfbb5f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b5e97858-b90e-43cb-9c32-25734ddf948d.acc09060e7faa2752339ab01bcdfbb5f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b5e97858-b90e-43cb-9c32-25734ddf948d.acc09060e7faa2752339ab01bcdfbb5f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (123453879, 'Fresh Red Apple, 3 lb Bag', 4.47, '033383000251', 'Our Gala Apples are grown with care, hand-picked at peak ripeness, and delivered straight to your doorstep. Each bite bursts with the sweet, juicy flavor characteristic of the Gala variety. Perfect for snacking on-the-go, baking into a pie, or adding to your favorite salad recipe. Stock up on these delicious, healthy apples today! This is some delicious organic fresh produce, available for you!', 'Manzana Empacada Roja 3# Great for on the go this Whole Fresh Produce apple is amazing This a great natural ingredient to cook and bake with Nice and juice flavor with yummy texture', 'Unbranded', 'https://i5.walmartimages.com/asr/20408dce-424e-401f-a14f-45dfef314fae.5492c0eec7d4c544d59dbd2c903f6f8a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20408dce-424e-401f-a14f-45dfef314fae.5492c0eec7d4c544d59dbd2c903f6f8a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20408dce-424e-401f-a14f-45dfef314fae.5492c0eec7d4c544d59dbd2c903f6f8a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (124020415, 'Braeburn Apples 5 Lb Bag', 5.29, '405559309930', 'short description is not available', 'Braeburn Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (124372391, 'California Grown Peaches, per Pound', 1.58, '400094420539', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (124508940, 'Fresh Limes, 6 Count Bag', 2.48, '813055011385', 'Add zest and flavor to your meals and beverages with these Limes. Freshly squeezed limes provide a healthy dose of vitamin C to your diet and are a key ingredient in many recipes, from homemade salsa to chicken dishes. The citrusy tropical flavor of these limes are sure to add a zing to all your cooked meals. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use them when baking cakes, cookies, and tarts. These limes are sold in a six count bag, so you\'ll have just enough for all your culinary creations. Enjoy the refreshing, tart flavor of Limes.', 'Fresh and juicy limes Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies, and tarts Refreshing, tart flavor Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/aa7311c2-100b-415f-bfcc-06ec70a10913_1.251cd3ec98b2618be14072fe1bbafe50.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa7311c2-100b-415f-bfcc-06ec70a10913_1.251cd3ec98b2618be14072fe1bbafe50.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa7311c2-100b-415f-bfcc-06ec70a10913_1.251cd3ec98b2618be14072fe1bbafe50.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (124939268, 'Cantaloupe', 2.48, 'deleted_858739002006', 'Stemming from the cantaloupe center of the world, customers are assured that they are buying quality cantaloupes, honey dews, and mini watermelons to gratify their taste buds.', 'Cantaloupe With the help of many well crafted ideas, use of underground drip tape and a Full Safety Program for the cooling facility, Stamoules Produce Company has been a successfully family operated business in Central California for more than 80 years.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b9a935f3-3129-433a-b4ae-aa3f984205de_1.368084f65845cf092465c6fb99ad8dc5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b9a935f3-3129-433a-b4ae-aa3f984205de_1.368084f65845cf092465c6fb99ad8dc5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b9a935f3-3129-433a-b4ae-aa3f984205de_1.368084f65845cf092465c6fb99ad8dc5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (125160939, 'Tangelo Mineola', 1.86, '405536998614', 'Tangelo Mineola', 'Tangelo Mineola #40', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (125512428, 'Melocotones, 1 lb Bag, Whole, Fresh', 2.18, '400094288306', 'Indulge in the juicy and succulent taste of Melocotones, a delectable fruit that\'s perfect for snacking or adding to your favorite recipes. Our Melocotones are carefully hand-picked to ensure the highest quality and freshness, making them a favorite among fruit lovers. Whether you\'re baking a peach cobbler or simply enjoying a healthy snack, Melocotones are the perfect choice for anyone who loves sweet and natural fruit. Order now and experience the irresistible taste of Melocotones for yourself!', 'These Fresh Produce Melocotones are great for any occasion! Grab some stone fruit, fresh produce, or organic ingredients at your local store today! Great in dessert or grilled for a fresh summer treat! A healthy snack or side to lunch.', 'Melocotones', 'https://i5.walmartimages.com/asr/9428617e-86b9-4ccc-a91b-19c286f12ae9.994eb3255ed942b25f49104d16d067b8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9428617e-86b9-4ccc-a91b-19c286f12ae9.994eb3255ed942b25f49104d16d067b8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9428617e-86b9-4ccc-a91b-19c286f12ae9.994eb3255ed942b25f49104d16d067b8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (125528621, 'Fresh Banana Bunch, 3lb Package', 2.98, 'deleted_826125232276', 'Enjoy the sweet, tropical taste of Fresh Banana. They are a good source of several vitamins and minerals including potassium, vitamin B6 and vitamin C and are low in sodium. Enjoy them at breakfast, lunch, dessert, or anytime you want a healthy snack. Use them to make a loaf of moist banana bread and enjoy with a hot cup of coffee in the mornings or layer them with pudding and vanilla wafer cookies for a light, sweet banana pudding that\'s perfect for dessert', 'Sweet, tropical flavor Enjoy at breakfast, lunch, dessert, or when you want a snack Good source of potassium, vitamin B6 and vitamin C and low in sodium Make banana bread or banana pudding and enjoy with a hot cup of coffee Peel open and enjoy', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/816648b2-6f37-4601-8181-40a1004f452a.d59cb573f23290b8b7aac66b6001272c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/816648b2-6f37-4601-8181-40a1004f452a.d59cb573f23290b8b7aac66b6001272c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/816648b2-6f37-4601-8181-40a1004f452a.d59cb573f23290b8b7aac66b6001272c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (125768151, 'Fresh Whole Tamarind, 1 Count', 2.48, '204448000008', 'Our whole Tamarindo is the perfect addition to your fresh produce collection. These sweet pods come in a bag ready to be enjoyed as a snack or used in your favorite recipes. Add them to smoothies, teas, or use them in sauces for a tangy kick. This fresh whole Tamarindo is sure to satisfy your taste buds and add some variety to your kitchen.', 'Our whole Tamarindo comes in a bag, and is the perfect addition to your fresh produce collection. These sweet pods come in a bag ready to be enjoyed as a snack or used in your favorite recipes. Add them to smoothies, teas, or use them in sauces for a tangy kick. This fresh whole Tamarindo is sure to satisfy your taste buds and add some variety to your kitchen.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/12c2d6b0-3c03-4d11-9a13-dfc4d95b9040.c8df60247015270131c589086d7d2c2d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/12c2d6b0-3c03-4d11-9a13-dfc4d95b9040.c8df60247015270131c589086d7d2c2d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/12c2d6b0-3c03-4d11-9a13-dfc4d95b9040.c8df60247015270131c589086d7d2c2d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (125878944, 'Fresh Manzana Pink Lady, Apple 3 lb Bag, Whole', 3.98, '851210002885', 'Sweet, crisp and juicy, Pink Lady fresh apples are a delicious and healthy snack that\'s perfect for any time of day. These apples have a distinctive blush pink hue, making them a unique and visually appealing addition to any fruit bowl or recipe. With their satisfying crunch and tartness, Pink Lady apples are sure to become your go-to fruit for all your snacking and cooking needs.', 'Fresh Pink Lady Apples, 3 lb Bag: Includes 3 pounds of tart, crisp apples Tart taste with a sweet finish Pair them with sharp cheeses and crackers for a stunning appetizer board Can be enjoyed fresh or cooked into both savory and sweet dishes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ededa8d1-5f4f-475a-8495-d7bf604b23f5_1.46d0eea0118c03b2fd7ea2ffdaf072b7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ededa8d1-5f4f-475a-8495-d7bf604b23f5_1.46d0eea0118c03b2fd7ea2ffdaf072b7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ededa8d1-5f4f-475a-8495-d7bf604b23f5_1.46d0eea0118c03b2fd7ea2ffdaf072b7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (126250040, 'Jonathon Apples, 5 lbs, Tote', 0.98, '681131124232', 'APPLES JONATHON 5# TOTES', 'APPLES JONATHON 5# TOTE', 'Fresh Produce', 'https://i5.walmartimages.com/asr/54e39c36-fab6-4872-b08d-0a208b2d0393_1.f91f046e52c1ea156d85b79fbeace8a2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54e39c36-fab6-4872-b08d-0a208b2d0393_1.f91f046e52c1ea156d85b79fbeace8a2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54e39c36-fab6-4872-b08d-0a208b2d0393_1.f91f046e52c1ea156d85b79fbeace8a2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (126684515, 'Fresh Greenolla Seedless, 2 Lb', 4.94, 'deleted_881006000764', 'Greenolla Seedless, 2 Lb.', 'Fresh Greenolla Seedless, 2 Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (126688230, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094949382', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (126839909, 'Premium Injecto Snap On Hard Shell Case for Samsung DoubleTime - Blue/ White', 5.83, '033383110561', 'Looking for a case that protects your phone without adding bulk then this is the perfect solution for all of your worries. It fits like second skin to your phone and protect it from scratches, dust, drops and keep your phone new. The case has all required cut outs to charge, listen to music without removing.', 'The new Blue/ White Amzer Injecto Snap On Case is designed specifically for your Samsung DoubleTime, hugging every curve. Made of lightweight yet durable plastic material, it will safeguard your Samsung DoubleTime without adding extra bulk. So say good-bye to accidental bumps and scratches on your Samsung DoubleTime. Exact cutouts allow speedy access to critical controls. Protecting your new gadget has never been this easy. Get your Injecto Snap On Case for your Samsung DoubleTime today! Product Features: Made of lightweight yet durable Hard Plastic material. Perfect to showcase your device. Precise Cutouts for Charging, Audio. Charge, Listen to music without removing case Provide best protection from bumps and dust Easy Installation and Removal', 'Amzer', 'https://i5.walmartimages.com/asr/730a8993-0c66-40bf-83be-53ebbf3f4229_1.7a7fc5953f79acabe6ca2a3cc2e39a97.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/730a8993-0c66-40bf-83be-53ebbf3f4229_1.7a7fc5953f79acabe6ca2a3cc2e39a97.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/730a8993-0c66-40bf-83be-53ebbf3f4229_1.7a7fc5953f79acabe6ca2a3cc2e39a97.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (127000582, 'Fresh Red Pears, 1 lb Bag', 2.97, '405530349702', 'Indulge in the naturally sweet and juicy flavor of our whole Red Pear fruit! Our fresh produce is carefully picked and delivered straight to your doorstep. Our Red Pears are picked at peak ripeness for delicious, refreshing taste. Enjoy the pure, unadulterated goodness in every bite with no artificial colors or preservatives added. Perfect for snacking or adding to salads. Order yours today and taste the difference!', 'Red pears are a unique variety known for their striking red skin and sweet, juicy flavor. They have a tender, buttery texture that makes them ideal for eating fresh or using in cooking and baking. High in dietary fiber and vitamin C, making them a healthy snack option. The 3lb bag size is convenient for families and individuals looking for a larger supply of fresh pears - Red pears are harvested at their peak ripeness and carefully packed to ensure maximum freshness and flavor. They have a long shelf life and can be stored in the refrigerator for up to 2-3 weeks. Red pears are available seasonally, making them a special treat to enjoy during their peak harvest time.', 'Unbranded', 'https://i5.walmartimages.com/asr/28d00e39-19b9-4fcc-bc6c-9f99a6e17cf6.64c61c830ea98646824d6cb3e2d8e72a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/28d00e39-19b9-4fcc-bc6c-9f99a6e17cf6.64c61c830ea98646824d6cb3e2d8e72a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/28d00e39-19b9-4fcc-bc6c-9f99a6e17cf6.64c61c830ea98646824d6cb3e2d8e72a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (127073635, 'Fresh Strawberries, 4 lb Container', 7.98, '071430011065', 'The sweet, juicy flavor of Fresh Strawberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. They contain essential vitamins and nutrients like, vitamin C, dietary fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh Strawberries today and savor the delectable flavor.', 'Prior to serving gently wash them and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b99dc93e-639c-48ef-8848-989e0463bbe4_1.a7c565756d8c3b1110392ae7bffa42dc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b99dc93e-639c-48ef-8848-989e0463bbe4_1.a7c565756d8c3b1110392ae7bffa42dc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b99dc93e-639c-48ef-8848-989e0463bbe4_1.a7c565756d8c3b1110392ae7bffa42dc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (127075656, 'Ciruelas Rojas, 1 Lb.', 1.67, '400094255384', 'Ciruelas Rojas, 1 Lb.', 'Ciruelas Rojas', 'Unbranded', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (127728569, 'Melon Trio 16 Oz', 3.78, '826766255146', 'short description is not available', 'Melon Trio 16 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (127779976, 'Taylor Farms Fresh Red Grapes And Red Apple Wedges', 1.83, '030223081111', 'short description is not available', 'Taylor Farms Fresh Red Grapes And Red Apple Wedges', 'Taylor Farms', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (127854244, 'Fireside Apples 5 Lb Bag', 4.92, '033383044453', 'short description is not available', 'Fireside Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (127953976, 'Van Zyverden Grape Seedless Flame (1 Dormant Bare Plant Root) Full Sun, Red, Perennial', 6.97, '030641780535', 'Grow your own fresh fruit! Grape Flame Seedless Dormant Plant Root is a famous variety that will grow in a wide range of soils and prefers a full sun location. Grapes are excellent when used as an ornamental and can be trained onto arbors or on pergolas to provide a unique addition to the landscape. Grapes contain antioxidants that may help prevent heart disease and some cancers. Grapes are also an excellent source of vitamins A, C and K. Grape Flame Seedless produces medium-sized clusters of large, sweet, juicy grapes. Grape Flame Seedless is heat tolerant and is ideally suited for southern gardens. Harvest late summer. Perennial. Self pollinating. Soil: Grapes need deep, well draining, loose soil with pH levels of 5.5 to 6.5. Mulch: Add 2-3\" of mulch to maintain moisture. Pruning: Pruning is important.', 'Grape Seedless Flame Perennial Plant in full sun Grow your own fruit Garden to table freshness! Harvest Late Summer Excellent source of vitamins A, C, and K GMO Free Can be eaten fresh or used to make wine, jam, juice, or raisins', 'Van Zyverden', 'https://i5.walmartimages.com/asr/206a1781-7e77-46d8-a58a-dd8b9b8614b0.728780d6d4bc0e078181b1809400f47b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/206a1781-7e77-46d8-a58a-dd8b9b8614b0.728780d6d4bc0e078181b1809400f47b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/206a1781-7e77-46d8-a58a-dd8b9b8614b0.728780d6d4bc0e078181b1809400f47b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (128099596, 'Honeycrisp Apples, 5 lb bag', 7.92, '814365012604', 'Honeycrisp Apples, 5 lb bag', 'Honeycrisp Apples, 5 lb bag', 'Unbranded', 'https://i5.walmartimages.com/asr/c5f74f8b-8156-4ca8-8aa8-aa63b6e40574.2c3ba5e7acf09c9735dc3f7a7e7cc58b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c5f74f8b-8156-4ca8-8aa8-aa63b6e40574.2c3ba5e7acf09c9735dc3f7a7e7cc58b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c5f74f8b-8156-4ca8-8aa8-aa63b6e40574.2c3ba5e7acf09c9735dc3f7a7e7cc58b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (128575111, 'Gold Delicious Apple Totes', 1.63, '681131124256', 'short description is not available', 'Gold Delicious Apple Totes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (128683323, 'Walmart Produce Wrapped Watermelon Quarters', 3.28, '717524409188', 'short description is not available', 'Walmart Produce Wrapped Watermelon Quarters', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (129007530, 'Fresh Casaba Melon, Each', 2.98, '000000043205', 'Introducing the Fresh Casaba Melon, Each. This unique and delicious melon variety is perfect for a wide range of applications, from healthy snacking and fruit salads to refreshing smoothies and desserts. With its wrinkled, golden-yellow skin and sweet, tender pale-green to white flesh, the Casaba Melon offers a delightful taste and texture experience. Great for snacking or as an addition to any dish!', 'Introducing the Casaba Melon, available as a single unit for all your fruit needs, No Container. This unique and delicious melon variety is perfect for a wide range of applications, from healthy snacking and fruit salads to refreshing smoothies and desserts. With its wrinkled, golden-yellow skin and sweet, tender pale-green to white flesh, the Casaba Melon offers a delightful taste and texture experience. Fresh Casaba Melon Find this in your local Walmart', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5f04f875-ee62-4054-80a6-705f80be0b19.1584a4d1dee388a127909c20ed0635db.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5f04f875-ee62-4054-80a6-705f80be0b19.1584a4d1dee388a127909c20ed0635db.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5f04f875-ee62-4054-80a6-705f80be0b19.1584a4d1dee388a127909c20ed0635db.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (129094966, 'Fresh Green Seedless Grapes', 7.5, '033383250601', '', '', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (129676683, 'Fieldpack Unbranded Fresh Strawberries 1#', 7.36, 'deleted_780353744034', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (129734514, 'Fresh Red Delicious Apples, Tote', 7.5, '681131124225', 'Our Red Delicious Apples are the perfect addition to your shopping cart. This whole, fresh produce is sweet, juicy, and perfect for snacking on the go. Enjoy the satisfaction of eating a healthy and delicious fruit straight from the bag or add it to your favorite recipes. Our Red Delicious Apples are a staple for any kitchen and a must-have for any healthy lifestyle.', 'Sweet, crisp, and juicy Creamy white flesh with low acidity Excellent snacking apple Higher antioxidants due to the rich, deep red skin Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp, and apple pie', 'Fresh Produce', 'https://i5.walmartimages.com/asr/82370c02-fbc1-4664-a833-038039817701_1.f92306eb7e6b41d43ba1f1bb3b507023.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/82370c02-fbc1-4664-a833-038039817701_1.f92306eb7e6b41d43ba1f1bb3b507023.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/82370c02-fbc1-4664-a833-038039817701_1.f92306eb7e6b41d43ba1f1bb3b507023.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (129909888, 'Watermelon Seedless', 4.98, '400094256589', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (130375767, 'Freshness Guaranteed Strawberries & Blueberries 14 Oz', 6.12, '681131036504', 'short description is not available', 'Freshness Guaranteed Strawberries & Blueberries 14 Oz', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (130431702, 'Kiku Apples 5 Lb Bag', 5.29, '847473005848', 'short description is not available', 'Kiku Apples 5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (130464058, 'Golden Apple, 1 Lb.', 1.97, 'deleted_400094433409', 'Golden Apple, 1 Lb.', 'Manzana Golden', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (130970827, 'Fresh Red Plumcot, Each, Whole', 0.76, '895009002519', 'Fresh Plumcots are the perfect blend of flavor and texture of a plum and an apricot. There are more than 20 different plumcot varieties, each one with its own distinct appearance, color, and size. You can use them as a substitute in recipes with plums for a sweet twist. Bake a mouthwatering plumcot cake, plumcot and blueberry crisp, or roast them with honey and goat cheese for a decadent dish. Enjoy it as is as a healthy snack, add it to your lunch for a healthy side, or pack multiple and take on a picnic with friends and family. Enjoy the delicious flavor of Fresh Plumcots.', 'Fresh Plumcots, Each Enjoy it as is as a healthy snack, add it to your lunch for a healthy side, or pack multiple and take on a picnic More than 20 different plumcot varieties Use as a substitute in recipes using plums Bake a mouthwatering plumcot cake, plumcot and blueberry crisp, or roast them with honey and goat cheese Perfect blend of a plum and an apricot Find this in your local Walmart!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2ab51fef-1649-445e-9feb-a3fde91f698e.c20a5939ea1b87d9589b70a7d31c4002.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2ab51fef-1649-445e-9feb-a3fde91f698e.c20a5939ea1b87d9589b70a7d31c4002.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2ab51fef-1649-445e-9feb-a3fde91f698e.c20a5939ea1b87d9589b70a7d31c4002.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (131164824, 'Fresh Valencia Orange, Each', 1.37, '400094287675', 'Enjoy the juicy goodness of Fresh Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Fresh Oranges add flavor to any meal or beverage.', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast', 'China Valencia', 'https://i5.walmartimages.com/asr/cd81a81a-1a3f-4aca-8a8b-2270ca30443b.0fcb013b5071e2419f934364c85b0e5a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cd81a81a-1a3f-4aca-8a8b-2270ca30443b.0fcb013b5071e2419f934364c85b0e5a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cd81a81a-1a3f-4aca-8a8b-2270ca30443b.0fcb013b5071e2419f934364c85b0e5a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (131254124, 'Bulk Persian Limes', 0.25, 'deleted_744430275613', 'short description is not available', 'Bulk Persian Limes', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (131454366, 'Fresh Rambutan, 12 oz', 4.97, '037842037680', 'Fresh Rambutan brings a burst of tropical sweetness to your table with its juicy, mildly tart flavor and exotic appeal. This unique fruit has a soft, translucent flesh that\'s easy to peel and enjoy, revealing a refreshing taste similar to lychee or grapes. The seed in the center can even be cooked and eaten, adding versatility to your kitchen creations. Perfect for snacking, fruit salads, or party platters, rambutan makes a colorful and fun addition to any occasion. Add a touch of the tropics to your day with Fresh Rambutan.', 'Fresh Rambutan, 12 oz Sweet and mildly acidic tropical fruit with juicy flesh Easy to peel to enjoy the soft, refreshing inside Seed in the center can be cooked and eaten Great for fruit salads, desserts, or snacking Vibrant, eye-catching fruit ideal for entertaining Also known as Hairy Lychee around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/392edd21-1311-4e90-8ab4-a2d4e49bd34a.f57f876be1f72078125ae14ff5b0e6a4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/392edd21-1311-4e90-8ab4-a2d4e49bd34a.f57f876be1f72078125ae14ff5b0e6a4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/392edd21-1311-4e90-8ab4-a2d4e49bd34a.f57f876be1f72078125ae14ff5b0e6a4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (131497850, 'Organic Cotton Candy Grapes, 2 Lb', 3.98, '816426011373', 'short description is not available', 'Organic Cotton Candy Grapes, 2 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (131757259, 'Honeycrisp Apples, 2 lbs', 6.47, '033383047904', 'These Honeycrisp Apples feature a smooth blend of sweet and tart flavors that even kids will enjoy. They have a crisp crunch and are the right size for snacking. The honeycrisp fruit apples come in a handy 2 lb size.', 'Honeycrisp Apples, 2 lbs: Cross of macoun apple and honeygold apple 2 lbs of fresh apples with a smooth balance of sweet and tart flavors Can be stored 3-4 months in refrigerators', 'Generic', 'https://i5.walmartimages.com/asr/c5f74f8b-8156-4ca8-8aa8-aa63b6e40574.2c3ba5e7acf09c9735dc3f7a7e7cc58b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c5f74f8b-8156-4ca8-8aa8-aa63b6e40574.2c3ba5e7acf09c9735dc3f7a7e7cc58b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c5f74f8b-8156-4ca8-8aa8-aa63b6e40574.2c3ba5e7acf09c9735dc3f7a7e7cc58b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (131871565, 'Van Zyverden Grape Seedless Himrod (1 Dormant Bare Plant Root) Full Sun, Green, Woody Perennial', 6.88, '030641780542', 'Grow your own fresh fruit! Grape Seedless Himrod Dormant Plant Root is the perfect addition to your edible garden that will reap benefits for years to come! Grapevines are deciduous, woody perennial plants. Plant in Full Sun. Grapes will grow in a variety of soils. Grapes are excellent when used as an ornamental and can be trained onto arbors, or on pergolas to provide a unique addition to the landscape. Once established, care consists entirely of annual pruning and picking the fruit. Grapes contain antioxidants that may help prevent heart disease and some cancers. Grapes are also an excellent source of vitamins A, C, and K. Grapes need deep, well-drained, loose soil with pH levels 5.5 to 6.5. Add 2-3\" of mulch to maintain soil moisture. Pruning is important. Don\'t be afraid to remove at least 90% of the previous season\'s growth when vines are dormant.', 'Van Zyverden Grape Seedless Himrod Woody Perennial Plant in full sun Grow your own fruit Garden to table freshness! Harvest when vines are dormant Excellent source of vitamins A, C, and K GMO Free Can be eaten fresh or used to make wine, jam, juice, or raisins', 'Van Zyverden', 'https://i5.walmartimages.com/asr/19353b71-aebb-45f0-9876-89aa1dcb0d46.9cbe63d5718beae6931a59f26e23074a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19353b71-aebb-45f0-9876-89aa1dcb0d46.9cbe63d5718beae6931a59f26e23074a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19353b71-aebb-45f0-9876-89aa1dcb0d46.9cbe63d5718beae6931a59f26e23074a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (131895723, 'Watermelon Seedless', 4.48, '400094575796', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (132186502, 'Produce Unbranded Limon Amarillo', 1.87, '400094432983', 'Limon Amarillo', 'Limon Amarillo', 'Limon Amarillo', 'https://i5.walmartimages.com/asr/13f06f11-07ba-48c3-b8b8-34d86c67bba6.3e9489565cedc9d6cb9add1943a97a40.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13f06f11-07ba-48c3-b8b8-34d86c67bba6.3e9489565cedc9d6cb9add1943a97a40.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13f06f11-07ba-48c3-b8b8-34d86c67bba6.3e9489565cedc9d6cb9add1943a97a40.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (132306693, 'Fresh Oranges, 5 lb Bag', 6.47, '826594106023', 'Enjoy the taste of Fresh juicy oranges that comes in a 5 lb bag. They\'re ideal for enjoying with breakfast, lunch or dinner.', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Use as a garnish for your favorite adult beverage Enjoy on their own or in a variety of recipes Serve with your pancake breakfast or make a smoothie', 'Unbranded', 'https://i5.walmartimages.com/asr/8433dec6-8073-46c0-a064-6e9dff2c7bfd.e76bb26fa518c357be574e821174e0ab.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8433dec6-8073-46c0-a064-6e9dff2c7bfd.e76bb26fa518c357be574e821174e0ab.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8433dec6-8073-46c0-a064-6e9dff2c7bfd.e76bb26fa518c357be574e821174e0ab.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (132550702, 'Fresh Apples, Tote Bag', 6.56, '000000042048', 'Enjoy the satisfying taste of these Fresh Apples. These are excellent snacking apples, but you can also use them in many recipes. For breakfast, use these apples to make a rich and creamy yogurt parfait or a nutritious juice blend. Slice these apples and use them to add flavor to a lunchtime salad or spread peanut butter on them for a protein-filled snack. They can also be used in many tasty desserts like apple cobbler, apple crisp, and apple pie. Get creative in the kitchen and make your great-granny\'s homemade apple butter or cinnamon applesauce. However you choose to use them, this tote bag of Fresh Apples will add flavor to any meal.', 'Fresh Apples, Tote Bag Sweet, crisp, and juicy Excellent snacking apple Make a creamy parfait or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp and apple pie', 'Unbranded', 'https://i5.walmartimages.com/asr/9525c1c6-93ae-4127-80ec-67ad6fb8fe4b.33bd8cc31b89d369c11e414618112a98.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9525c1c6-93ae-4127-80ec-67ad6fb8fe4b.33bd8cc31b89d369c11e414618112a98.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9525c1c6-93ae-4127-80ec-67ad6fb8fe4b.33bd8cc31b89d369c11e414618112a98.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (132966605, 'Organic Raspberries, 12 oz', 4.98, '715756100156', 'Driscoll\'s® Organic Raspberries. Only the finest berries?. This is a Certified USDA Organic product.', 'Driscoll\'s Organic Raspberries. Driscoll\'s® Organic Raspberries. Only the finest berries?. USDA Organic. Certified Organic by CCOF. Net Wt 12 oz. www.driscolls.com. ©2016 Driscoll Strawberry Associates, Inc.', 'Unbranded', 'https://i5.walmartimages.com/asr/a299115b-169c-4adb-9b63-99b47bd627bf_1.e38e2f0279128e403776ed08c6c5a055.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a299115b-169c-4adb-9b63-99b47bd627bf_1.e38e2f0279128e403776ed08c6c5a055.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a299115b-169c-4adb-9b63-99b47bd627bf_1.e38e2f0279128e403776ed08c6c5a055.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (133599406, 'Fuyu Persimmons, 2 lb bag', 5.48, '854203001278', 'Fuyu Persimmons, 2 Lb.', 'Fuyu Persimmon 2 Lb Bag', 'Unbranded', 'https://i5.walmartimages.com/asr/07bfab6d-2e0d-4259-b000-bf2852241c62.311a6e7bff33a8dbf69e257e63381d7f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/07bfab6d-2e0d-4259-b000-bf2852241c62.311a6e7bff33a8dbf69e257e63381d7f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/07bfab6d-2e0d-4259-b000-bf2852241c62.311a6e7bff33a8dbf69e257e63381d7f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (133838470, 'Sabra Spicy Guacamole 8 oz', 5.38, '040822012225', 'Sabra Spicy Guacamole is coming in hot to your summer parties this year. Our authentic recipe combines ripe, hand-scooped, Mexican-grown Hass avocados, fresh jalapenos, fragrant cilantro, and tangy lime juice. This fiery chunky guacamole dip tastes just like homemade but is easy to store until serving. Sabra Spicy Guacamole dip is the ultimate avocado spread for anyone looking to turn up the flavor on gluten-free chips, tacos, quesadillas, and more. Whether you\'re enjoying summer fun by the pool, Memorial Day, or July 4th celebrations, it won\'t be long before Sabra Spicy Guacamole becomes the snacking staple at every summer event. In addition to Spicy Guacamole, Sabra offers chunky guacamole dip in a variety of irresistible flavors, including Classic, Classic With Lime, and Mexican Street Corn Inspired. The Classic Guacamole and Spicy Guacamole are also available in convenient on-the-go singles. For a fast, delicious breakfast, try Sabra Breakfast Avocado Toast, a creamy avocado dip made with Hass avocados and served alongside crispy whole wheat bread, or Sabra Snackers for a quick bite to eat. No matter the occasion, Sabra has a snack for you.', 'Our chunky, homestyle guacamole (made with ripe avocado, fragrant cilantro, tangy lime juice, and tomato) gets extra heat from jalapeño peppers. Saba Spicy Guacamole is served best with tortilla chips, tacos, and more for summer entertaining and BBQs. Made with ripe, hand-scooped, Mexican-grown Hass avocados (see product image for list of ingredients). Vegetarian; Kosher; GMO-free', 'Sabra', 'https://i5.walmartimages.com/asr/7d95af19-2d49-4e00-a447-4fc03847839c.55f624d36bb1a1f640d19a0aff253595.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7d95af19-2d49-4e00-a447-4fc03847839c.55f624d36bb1a1f640d19a0aff253595.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7d95af19-2d49-4e00-a447-4fc03847839c.55f624d36bb1a1f640d19a0aff253595.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (133856205, 'Fresh Clementines, 1 Each', 0.44, '000000044509', 'Enjoy the juicy goodness of citrus when you eat a Clementine. Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Among the smallest fruits in the orange family, clementines have a pleasing sweet-tart flavor and are typically seedless. Generally a winter fruit, clementines are now available year-round in most markets. Clementines are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the mandarins hang out in a bowl on your counter or table to breathe. Compact and portable, clementines are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious Clementines on hand for an easy, healthy treat.', 'Sweet & Juicy Flavor Naturally sweet with a pleasing sweet-tart balance, perfect for snacking. Easy to Peel Thin, loose skin makes them simple and mess-free to enjoy. Seedless Typically seedless for a smooth, fuss-free eating experience. Compact & Portable Ideal for lunchboxes, gym bags, or road trips healthy and travel-friendly.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/36ab60a4-249e-4602-8802-93ef8e98e468.70e4e1db9a9564f67c41cbf669561a78.webp?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/36ab60a4-249e-4602-8802-93ef8e98e468.70e4e1db9a9564f67c41cbf669561a78.webp?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/36ab60a4-249e-4602-8802-93ef8e98e468.70e4e1db9a9564f67c41cbf669561a78.webp?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (134267958, 'Snack Fresh Red Grapes 5/3 Oz', 3.88, '074641009999', 'short description is not available', 'Snack Fresh Red Grapes 5/3 Oz', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (134382335, 'Fresh Apple Braeburn, 5 lb Bag', 4.92, '033383087399', 'Fresh Apple Braeburn, 5 lb Bag is a pack of fresh and juicy apples that are perfect for snacking or baking. These apples are known for their sweet and tangy flavor, crispy texture, and vibrant red and green skin. They are carefully handpicked and packed to ensure their freshness and quality. Whether you\'re making a pie or just need a healthy snack, Fresh Apple Braeburn, 5 lb Bag is the ideal choice.', 'Fashion Sleeve Pouch for your 7 Inch Samsung Galaxy Tab A 2016, Samsung Galaxy J Max, Samsung Galaxy Tab 3 Lite 7.0, Samsung Galaxy Tab 4 7.0 is Tough enough to protect your tablet yet stylish to take everywhere you go. The high-grade and highly durable neoprene is water resistant and offers advanced protection from bumps, scratches and dust. And the smooth, non-scratch interior lining offers enhanced screen protection while your device is tucked away. Ideal for any tablet or e-book up to 7.75 inches, this no-bulk case easily slides into your bag, briefcase or backpack and perfect for those of you on the go. This Sleeve is compatible for most Tablets or Netbooks upto 7.75 inch. This pouch can accommodate your Samsung Galaxy Tab A 7.0 2016, Samsung Galaxy J Max, Samsung Galaxy Tab 3 Lite 7.0, Samsung Galaxy Tab 4 7.0. Product Features: Constructed of shock-absorbing & weather resistant neoprene material Non-abrasive material lines interior securing your device for safe travel and storage Slim and lightweight design provides low-profile protection against every day wear and tear Stylish exterior graphic and Dual zippers make accessing your device quick and easy', 'Unbranded', 'https://i5.walmartimages.com/asr/a2731ef5-32e9-4e85-8feb-748b2fb78bb5.bf99906400182e7f876d75c78b05c271.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a2731ef5-32e9-4e85-8feb-748b2fb78bb5.bf99906400182e7f876d75c78b05c271.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a2731ef5-32e9-4e85-8feb-748b2fb78bb5.bf99906400182e7f876d75c78b05c271.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (134518371, 'Crispin Apple, Each', 0.98, '681131124324', 'short description is not available', 'Crispin Apple, Each', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (134888415, 'Organic Tangerines, 1 Each', 0.38, '000000944496', 'Organic Tangerines, 1 Each', 'Organic Tangerines', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (134899769, 'Freshness Guaranteed Fresh Green Seedless Grapes', 1.88, 'deleted_816426013872', 'short description is not available', 'Freshness Guaranteed Fresh Green Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (134912068, 'Peacharine, 2 lb Pack', 3.98, '847081000587', 'short description is not available', '2# Peacharines', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (134918631, 'Watermelon Seedless', 4.48, '400094132265', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (135241386, 'Fresh Muscato Grapes, 2 lb Package', 3.88, '045255126396', 'Melissa\'s Muscatos Green Seedless Table Grapes are a delectable and healthy snack, perfect for any occasion. These 2 lb packs contain premium green grapes, known for their sweet, juicy flavor and firm texture. Seedless and easy to enjoy, Muscatos Grapes make a delightful addition to fruit salads, cheese platters, or as a simple on-the-go snack. Savor the refreshing taste and nutritional benefits of Melissa\'s Muscatos Green Seedless Table Grapes, and elevate your whole fruit snacking experience.', 'Fresh Green Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b21ee8da-a318-4799-8238-7d613524eb5f.3810631fdf4c79f043791935cfdd888c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b21ee8da-a318-4799-8238-7d613524eb5f.3810631fdf4c79f043791935cfdd888c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b21ee8da-a318-4799-8238-7d613524eb5f.3810631fdf4c79f043791935cfdd888c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (135890882, 'Macoun Apple Totes', 0.98, '681131124362', 'short description is not available', 'Macoun Apple Totes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (135964022, 'Ready Pac Foods Ready Pac Watermelon, 10.5 oz', 3.98, '077745237480', 'Watermelon, Chunks 10.5 oz (298 g) Natural fruit. Perishable. No preservatives. Keep refrigerated. 10.5 oz (298 g) Irwindale, CA 91706 800-800-7822', 'Watermelon, Chunks Natural fruit. Perishable. No preservatives.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (135998036, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094383636', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (136132805, 'Pineapple/mango/grapes 32 Oz', 7.68, '074641054067', 'short description is not available', 'Pineapple/mango/grapes 32 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8d87dfa7-d4f6-4281-9468-2ef4f853a81e_1.b24ee7ae70e6d4004f01ee39600a5315.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8d87dfa7-d4f6-4281-9468-2ef4f853a81e_1.b24ee7ae70e6d4004f01ee39600a5315.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8d87dfa7-d4f6-4281-9468-2ef4f853a81e_1.b24ee7ae70e6d4004f01ee39600a5315.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (136194520, 'Redfree Apple, Each', 0.98, '681131124935', 'short description is not available', 'Redfree Apple, Each', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (136326885, 'Braeburn Apples 3 Lb Bag', 3.94, '033383087375', 'Apples, Braeburn, Lil Snappers, Kid Size, Bag 3 LB 2-1/2 inch min dia. Meets or exceeds US extra fancy. Robust, spicey-sweet. World famous fruit. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. Follow us: YouTube; Facebook; Twitter; Pinterest. For fun recipes, activities and more, visit www.lilsnappers.com. (Std. msg & data rates may apply). Responsible choice. Fruits & Veggies: More matters. Resealable. Produce of USA. 3 lb (1.36 kg) Wenatchee, WA 98801', 'Apples, Braeburn, Kid Size Fruit 2-1/2 inch min dia. Meets or exceeds US extra fancy. Robust, spicey-sweet. World famous fruit. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. Follow us: YouTube; Facebook; Twitter; Pinterest. For fun recipes, activities and more, visit www.lilsnappers.com. (Std. msg & data rates may apply). Responsible choice. Fruits & Veggies: More matters. Resealable. Produce of USA.', 'Unbranded', 'https://i5.walmartimages.com/asr/358b0e15-e442-47bc-ad7e-2ec0781a657c.83069b302c5c985b72cc5cbf8c3db133.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/358b0e15-e442-47bc-ad7e-2ec0781a657c.83069b302c5c985b72cc5cbf8c3db133.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/358b0e15-e442-47bc-ad7e-2ec0781a657c.83069b302c5c985b72cc5cbf8c3db133.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (136441336, '2# Bag Lemons', 3.48, 'deleted_819265011559', 'short description is not available', '2# Bag Lemons', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (136520613, 'Fresh Fuyu Persimmons, 2 LB Bag', 4.24, '847081000686', 'Fuyu persimmons are a sweet, crisp treat with a vibrant orange hue and a delicate honey-like flavor. Unlike other varieties, they can be enjoyed firm or soft, making them versatile for snacking, salads, and desserts. Packed with fiber, vitamins, and antioxidants, Fuyu persimmons are a delicious and nutritious addition to your seasonal fruit selection. Available in a 2 lb bag.', 'Non-Stringy: Fuyu Persimmons are known for their non-stringy flesh, making them a great choice for eating fresh or using in recipes. Seasonal Availability: Fresh Fuyu Persimmons are available from September to February, making them a great winter treat Sweet and Juicy: Fuyu Persimmons are known for their sweet and juicy flesh, perfect for snacking or baking. Percinnamon Pouch 2lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/dca81229-099c-403a-a93c-978ccbe0d1c8_2.a4f326d1d6ca3335514c641adc65b3a0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dca81229-099c-403a-a93c-978ccbe0d1c8_2.a4f326d1d6ca3335514c641adc65b3a0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dca81229-099c-403a-a93c-978ccbe0d1c8_2.a4f326d1d6ca3335514c641adc65b3a0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (136640966, 'Sunkist Lil Snappers Granny Smith, 3 Lb.', 7.97, '741839005971', 'Granny Smith apples are available as Lil Snapper organics! Granny Smith Apples get their name from its founder, Mrs. Maria Ann (Granny) Smith. The variety has a solid green exterior with a greenish to yellowish-white, fine-grained flesh. The taste is mildly sweet with a tart after taste, which sweetens in storage. Today, Granny Smith is one of the most well-known apple varieties around. Firm with strong tartness resembling that of a lemon; this famously green apple is bound to make your mouth water!', 'Sunkist Lil Snappers Granny Smith 3 Lb', 'Lil Snappers', 'https://i5.walmartimages.com/asr/ca4295ce-ba18-4f7c-9436-03f061163d66_1.a294c511e738575ea58bfd076fbce897.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ca4295ce-ba18-4f7c-9436-03f061163d66_1.a294c511e738575ea58bfd076fbce897.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ca4295ce-ba18-4f7c-9436-03f061163d66_1.a294c511e738575ea58bfd076fbce897.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (136836092, 'Fresh Guava, Each', 0.82, '000000042994', 'Bring this Fresh Guava into your kitchen. It\'s a tropical fruit that somewhat resembles a pear but has a more round shape. When unripe, guava fruit has a green color, and once it ripens that shade of green changes into yellow. They give off an aroma that is somewhat similar to lemon rind. Depending on the species, the taste of the outer skin and the pulp inside can vary from sweet to sour. Guava is rich in vitamin C, which helps you maintain a healthy immune system, and fiber, which is important to keep your digestive system regular.', 'Guava, 1 lb Rich in vitamin C to support immune health Pink guava is a nice source of fiber for proper digestive system functioning May help reduce the risk of stroke and heart attack Also known as Guayaba Rosada and Pink Guayaba around the word', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bd96ed57-f000-42e6-8e24-a4dad7e42374.491a1eb4326d32dc3fbf6723b2d104c3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd96ed57-f000-42e6-8e24-a4dad7e42374.491a1eb4326d32dc3fbf6723b2d104c3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd96ed57-f000-42e6-8e24-a4dad7e42374.491a1eb4326d32dc3fbf6723b2d104c3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (137440708, 'Fresh Muscadine Bronze Grapes, Bag', 3.88, 'deleted_860655000202', 'short description is not available', 'Fresh Muscadine Bronze Grapes, Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/7236f72a-079e-486a-9ca3-f905a00f6317_1.cee7f10b4d62ca9683e11658ac7d83cb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7236f72a-079e-486a-9ca3-f905a00f6317_1.cee7f10b4d62ca9683e11658ac7d83cb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7236f72a-079e-486a-9ca3-f905a00f6317_1.cee7f10b4d62ca9683e11658ac7d83cb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (137703684, 'Honeycrisp Apples, 5 lb bag', 7.92, '405559309992', 'short description is not available', 'Honeycrisp Apples 5 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c5f74f8b-8156-4ca8-8aa8-aa63b6e40574.2c3ba5e7acf09c9735dc3f7a7e7cc58b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c5f74f8b-8156-4ca8-8aa8-aa63b6e40574.2c3ba5e7acf09c9735dc3f7a7e7cc58b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c5f74f8b-8156-4ca8-8aa8-aa63b6e40574.2c3ba5e7acf09c9735dc3f7a7e7cc58b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (137817725, 'Walmart Produce Fruit Burst 10oz', 2.97, '077745244457', 'short description is not available', 'Walmart Produce Fruit Burst 10oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (138096423, 'Cluster Grapes Green', 9.97, '764878633004', 'short description is not available', 'Cluster Grapes Green', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (138113429, 'Fresh Macoun Apples, Each', 1.47, '000000030731', 'Enjoy the sweet, juicy flavor of Apple Macoun Bulk, a premium variety of apples that are perfect for snacking and cooking. These apples are hand-selected to ensure the highest quality and freshness, making them a favorite among apple lovers. Whether you\'re baking an apple pie or simply enjoying a healthy snack, Apple Macoun Bulk is the perfect choice for anyone who loves the taste of fresh, delicious apples.', 'Each apple is medium to large in size, with a round shape and a deep red color that fades into a green-yellow background. The flesh of the Macoun apple is creamy-white, firm, and juicy, with a sweet and tangy flavor that has hints of honey and spice. This apple variety is perfect for snacking, but also holds up well in cooking and baking, maintaining its shape and flavor. Macoun Apples are a good source of fiber, vitamin C, and antioxidants, and can be enjoyed as a healthy and flavorful addition to any meal. With their distinctive taste and appearance, Macoun apples are a premium choice for apple lovers and foodies alike. The flesh of the Macoun apple is creamy-white, firm, and juicy, with a sweet and tangy flavor that has hints of honey and spice. This apple variety is perfect for snacking, but also holds up well in cooking and baking, maintaining its shape and flavor. Macoun Apples are a good source of fiber, vitamin C, and antioxidants, and can be enjoyed as a healthy and flavorful addition to any meal. With their distinctive taste and appearance, Macoun apples are a premium choice for apple lovers and foodies alike. This apple variety is perfect for snacking, but also holds up well in cooking and baking, maintaining its shape and flavor. Macoun Apples are a good source of fiber, vitamin C, and antioxidants, and can be enjoyed as a healthy and flavorful addition to any meal. With their distinctive taste and appearance, Macoun apples are a premium choice for apple lovers and foodies alike. Macoun Apples are a good source of fiber, vitamin C, and antioxidants, and can be enjoyed as a healthy and flavorful addition to any meal. With their distinctive taste and appearance, Macoun apples are a premium choice for apple lovers and foodies alike.', 'Unbranded', 'https://i5.walmartimages.com/asr/35f25653-a516-4b84-ab14-8a2d841e769d.0b1c00c02cb3d9d05f80101cd38db764.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35f25653-a516-4b84-ab14-8a2d841e769d.0b1c00c02cb3d9d05f80101cd38db764.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35f25653-a516-4b84-ab14-8a2d841e769d.0b1c00c02cb3d9d05f80101cd38db764.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (138129120, 'Fresh Paula Apples, Each', 1.27, '000000041577', 'Tamarind is a tangy and sweet fruit with numerous health benefits. It is versatile and can be used in a variety of dishes. Our tamarind is fully matured, hand-picked, and sun-dried to ensure maximum flavor and quality. Its distinct taste is perfect for adding a zing to your cooking and is an essential ingredient in many international cuisines. Try our tamarind today and experience its unique taste and benefits.', 'Paula apples are a unique and delicious variety with a sweet flavor and firm texture. These apples are perfect for snacking, baking, and cooking, and their distinct taste sets them apart from other apple varieties. They are also an excellent source of dietary fiber and vitamin C, making them a healthy addition to any diet. Our Paula apples are carefully selected and packed at the peak of their freshness to ensure maximum flavor and quality. Whether you\'re enjoying them on their own, using them in a recipe, or sharing them with friends and family, Paula apples are sure to impress with their delicious taste and satisfying crunch. Perfect for foodies and apple enthusiasts looking for a unique and flavorful apple variety, Paula apples are a must-try for anyone who loves apples.', 'Fresh', 'https://i5.walmartimages.com/asr/845043ea-5f53-4195-a994-3ea4d314c425.eb2eb37e071be719c64a1b4e1ef5d58b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/845043ea-5f53-4195-a994-3ea4d314c425.eb2eb37e071be719c64a1b4e1ef5d58b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/845043ea-5f53-4195-a994-3ea4d314c425.eb2eb37e071be719c64a1b4e1ef5d58b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (138227192, 'Mangosteens', 4.88, '712038811618', 'short description is not available', 'Mangosteens', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (138763361, 'Fresh Dark Sweet California Cherries, 3 Lb.', 17.64, '847473001376', 'Fresh Dark Sweet California Cherries, 3 Lb.', 'Fresh Dark Sweet California Cherries', 'Unbranded', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (138998369, 'Pomegranate Arils, 8 oz', 5.3, 'deleted_851362002092', 'Sweet Bursts all natural pomegranate arils are a great snack for everyone in your family. If you like sweet, crunchy, juicy snacks literally bursting with flavor, then you will love Sweet Bursts. Sweet Bursts are fantastic right out of the package or as an ingredient in your favorite main dish or salad. Nourishing your family with every bite was never so easy.', '100 % Natural Preservative Free Additive Free Sweet Juicy Crunchy', 'DJ.Forry', 'https://i5.walmartimages.com/asr/e74b1832-8390-4799-8427-3a5832256f71_1.c7d54d20deec09d5aee4fe62cb9ce7d7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e74b1832-8390-4799-8427-3a5832256f71_1.c7d54d20deec09d5aee4fe62cb9ce7d7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e74b1832-8390-4799-8427-3a5832256f71_1.c7d54d20deec09d5aee4fe62cb9ce7d7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (139461223, 'Black Seedless Grape', 1.98, '400094234815', 'short description is not available', 'Black Seedless Grape', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (139514017, 'White Peach, 4 Pack', 4, '898429002664', 'short description is not available', 'Peppermint White Peach 4 Ct Clamshell', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (139544225, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094208182', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (139685050, 'Yellow Flesh Peaches, per Pound', 1.58, '400094710197', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (140218018, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094358160', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (140304102, 'Fresh Dragon Fruit, Each', 4.97, '405509651621', 'Dragon fruit, also known as pitaya, is a vibrant tropical fruit native to Central America. Recognizable for its bright pink or yellow, spiky skin and creamy pulp filled with tiny seeds, it offers a subtly sweet taste reminiscent of kiwi or pear. Dragon fruit is a nutritional powerhouse, providing high amounts of fiber, vitamin C, essential minerals, and antioxidants. Grown on a climbing cactus, this refreshing fruit is harvested when its skin color fully develops, offering a unique and healthful treat.', 'Dragon fruit, also known as pitaya, is a tropical fruit that belongs to the cactus family. Native to Central America but now grown all over the world, dragon fruit is known for its unique appearance, vibrant color, and a wealth of health benefits. The fruit has a leathery, slightly leafy skin that is bright pink or yellow in color, while the inside boasts a sweet, creamy pulp dotted with tiny, crunchy seeds. Appearance and Taste: Dragon fruit stands out for its flamboyant appearance, with its bright pink or yellow, spiky skin, and white or red flesh speckled with small black seeds. The taste of dragon fruit is subtly sweet and often compared to that of a kiwi or pear, with the seeds providing a satisfying crunch. Its texture is wonderfully juicy and creamy, making it a refreshing treat on a hot day. Health Benefits: Dragon fruit is a nutritional powerhouse, packed with a range of beneficial compounds. It\'s high in fiber, vitamin C, and several essential minerals like iron and magnesium. Dragon fruit is also rich in antioxidants, which help fight off free radicals and prevent cell damage. Moreover, it contains prebiotics, which promote the growth of beneficial bacteria in your gut, contributing to a healthy digestive system. Cultivation and Harvest: Dragon fruit grows on a cactus plant that climbs up trees or walls with the help of its aerial roots. It thrives best in a dry tropical climate with a moderate amount of rain. The fruit is harvested when its skin color changes from bright green to pink or yellow, depending on the variety. Despite its exotic appearance, dragon fruit is easy to eat; simply slice it in half and scoop out the flesh with a spoon.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f528e325-51fe-44d1-a17f-2f9ff63f1713.6010e393face2dfefaa3560054b8f514.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f528e325-51fe-44d1-a17f-2f9ff63f1713.6010e393face2dfefaa3560054b8f514.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f528e325-51fe-44d1-a17f-2f9ff63f1713.6010e393face2dfefaa3560054b8f514.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (141113501, 'Fresh Navel Orange, Each', 1.37, '405536998607', 'Enjoy the juicy goodness of Fresh Navel Oranges (China Nebo). A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these navel oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Fresh Navel Oranges add flavor to any meal or beverage', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast Adds flavor to a variety or recipes Use as a garnish for your favorite cocktail', 'China Nebo', 'https://i5.walmartimages.com/asr/d4d3c917-dcc2-4ea4-bc0a-bf037237336a.95d3da224dc1740c5facfa2b1ac56481.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4d3c917-dcc2-4ea4-bc0a-bf037237336a.95d3da224dc1740c5facfa2b1ac56481.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4d3c917-dcc2-4ea4-bc0a-bf037237336a.95d3da224dc1740c5facfa2b1ac56481.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (141199612, 'Fresh Ginger Gold Apples, 5 lb Tote', 1.68, '681131124195', 'Our ginger gold apples are the perfect addition to your fresh produce selection. With whole and organic ingredients, these apples provide a delicious and healthy snacking option. Enjoy the crisp sweetness and tangy flavor of these juicy fruits as a snack, in a salad or baked dish. They are sure to impress your taste buds and are a great source of essential nutrients.', 'The Ginger Gold Fresh Apples have a crisp and juicy texture with a sweet and slightly tart flavor. They are great for eating fresh, adding to salads, or using in baking recipes . The 5 lb Tote provides a convenient and cost-effective way to stock up on these delicious apples . Listed apple varieties are rich in fiber, vitamins, and antioxidants, making them a healthy snacking option. They are also versatile and can be used in a variety of recipes, from sweet to savory. Whether you prefer the sweet and tart flavor of Ginger Gold Apples or the firm and sweet taste of Fuji Apples, both varieties offer a delicious and nutritious addition to your diet.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5deaecab-4f69-4029-b8be-5c2a3f8f0a5e_1.62a68d0b698540fc3e7be86b9e3ce9f2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5deaecab-4f69-4029-b8be-5c2a3f8f0a5e_1.62a68d0b698540fc3e7be86b9e3ce9f2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5deaecab-4f69-4029-b8be-5c2a3f8f0a5e_1.62a68d0b698540fc3e7be86b9e3ce9f2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (141358402, 'Walmart Produce Pineapple Blueberry 32 Oz', 7.98, '826766253692', 'short description is not available', 'Walmart Produce Pineapple Blueberry 32 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (141418923, 'Fresh Yellow Peaches, 2 lb Bag', 3.27, '813055011330', 'Discover the delightful sweetness of these Fresh Yellow Peaches. Enjoy them on their own as a sweet snack or use them in a variety of recipes. For breakfast, you could slice them to put into your oatmeal or use them to make a delicious yogurt parfait. You can also use these fresh peaches in several baking recipes including a comforting crisp topped with ice cream, a tasty upside-down cake, or a scrumptious tart. You can even use them to make a jam or a smooth sorbet. However you choose to use them, their sweet flavor will bring a smile to everyone\'s face. Treat the family to the irresistible taste of Fresh Yellow Peaches.', 'Fresh Yellow Peaches, 2 lb Bag Enjoy on their own as a satisfying snack Use in a variety of baking recipes Make a tasty jam or a smooth sorbet Slice as a sweet topping for waffles or pancakes Add to iced tea to create a refreshing summertime flavor', 'Unbranded', 'https://i5.walmartimages.com/asr/c16a22e8-802e-4317-a2b9-7cfb2c81e52c.7b91e88e4c599c94002b6ab5f0d9df9d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c16a22e8-802e-4317-a2b9-7cfb2c81e52c.7b91e88e4c599c94002b6ab5f0d9df9d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c16a22e8-802e-4317-a2b9-7cfb2c81e52c.7b91e88e4c599c94002b6ab5f0d9df9d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (141630284, 'Fresh Organic Washington Rainier Cherries, 16 oz Package', 3.96, '888289000825', 'Indulge in the sweet taste of Fresh Washington Organic Rainier Cherries - a summer indulgence you cannot resist! These cherries are hand-picked and grown with care for the ultimate taste experience. Savor the juicy texture and natural sweetness of these cherries, without any additives or preservatives. Perfect for snacking, baking, and even cocktail garnishes, these organic cherries are a delicious and healthy addition to your diet. Order now and savor the flavor of the Pacific Northwest!', 'Fresh Organic Washington Rainier Cherries are a delectable and healthy fruit that is sure to satisfy your sweet tooth. Each package contains 16 oz of these plump and juicy cherries with a distinctive yellow and red skin. The flesh of the Rainier Cherry is thick, firm, and has a creamy yellow color with a unique flavor that is both sweet and tangy. These cherries are grown organically in Washington State, without the use of synthetic pesticides, fertilizers, or genetically modified organisms (GMOs). They are a good source of fiber, vitamin C, and antioxidants, making them a nutritious and delicious addition to any diet. Fresh Organic Washington Rainier Cherries are perfect for snacking, but can also be used in a variety of recipes, from salads to desserts. With their sweet and tangy flavor, creamy texture, and organic certification, these cherries are a premium choice for health-conscious foodies who value sustainability and quality.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/67d27c14-7cd5-4d64-900d-c8e3a3a0a4fd.1e3dfca5606c7ac1e307c07a480f94e6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/67d27c14-7cd5-4d64-900d-c8e3a3a0a4fd.1e3dfca5606c7ac1e307c07a480f94e6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/67d27c14-7cd5-4d64-900d-c8e3a3a0a4fd.1e3dfca5606c7ac1e307c07a480f94e6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (141733704, 'Melon Medley 32oz', 6.88, '813055012993', 'short description is not available', 'Melon Medley 32oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (141845106, 'Fresh Oranges, 5 lb Bag', 6.47, '826594105026', 'Enjoy the taste of Fresh juicy oranges that comes in a 5 lb bag. They\'re ideal for enjoying with breakfast, lunch or dinner.', 'A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'HAR PRODUCTS', 'https://i5.walmartimages.com/asr/045dc826-a412-49a3-be38-9e30165f39fc.100e6befb2674a2db886d723132d5470.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/045dc826-a412-49a3-be38-9e30165f39fc.100e6befb2674a2db886d723132d5470.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/045dc826-a412-49a3-be38-9e30165f39fc.100e6befb2674a2db886d723132d5470.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (142082277, 'Pomegranate Arils 8 oz', 4.98, 'deleted_683953001777', '8 oz. Pomegranate Seeds', 'Pomegranate Seeds 8 Oz', 'Juicy Gems', 'https://i5.walmartimages.com/asr/33dcf507-ef18-4ab0-92be-1de88fa44b8e_2.14cc1e761945c8017596924283554824.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/33dcf507-ef18-4ab0-92be-1de88fa44b8e_2.14cc1e761945c8017596924283554824.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/33dcf507-ef18-4ab0-92be-1de88fa44b8e_2.14cc1e761945c8017596924283554824.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (142100999, 'Produce Produce Apple, 1 ea', 2.97, 'deleted_880563000064', 'Apple, Grape Flavored 1 each 1 each', 'Apple, Grape Flavored', 'Produce', 'https://i5.walmartimages.com/asr/6418cf79-d0c2-4155-a447-157948628018_1.1c8068a0b5c2b9a8a49855b87189575a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6418cf79-d0c2-4155-a447-157948628018_1.1c8068a0b5c2b9a8a49855b87189575a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6418cf79-d0c2-4155-a447-157948628018_1.1c8068a0b5c2b9a8a49855b87189575a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (142135105, 'Fresh Red Plum, Each', 2.57, '405535277529', 'Each fresh red plum is a delicious and juicy fruit with a vibrant red skin. Known for its sweet and tangy flavor, this plum variety is a popular choice for both snacking and cooking. Each plum is carefully picked when it is perfectly ripe, ensuring optimal sweetness and texture. The firm flesh of the plum has a smooth and succulent texture, making it a delight to bite into. The deep red skin adds a beautiful pop of color to any dish or fruit bowl. Whether enjoyed on its own, sliced into salads, or used in jams and desserts, each fresh red plum is a burst of refreshing and delightful flavor.', 'Ciruelas', 'Ciruelas', 'https://i5.walmartimages.com/asr/d16964a8-a814-4060-bfd7-158ccc2310de.92d8631b5b2051e5ee725f2ea4f4ac2d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d16964a8-a814-4060-bfd7-158ccc2310de.92d8631b5b2051e5ee725f2ea4f4ac2d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d16964a8-a814-4060-bfd7-158ccc2310de.92d8631b5b2051e5ee725f2ea4f4ac2d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (142505318, 'Organic Personal Sized Seedless Watermelon, Each', 4.18, '033383402697', 'Enjoy the sweet, refreshing taste of an Organic, Personal Seedless Watermelon. Watermelons are great for breakfast, lunch, dessert, or when you want a snack. Watermelon is a good source of vitamin C, vitamin A, and potassium making them an excellent healthy treat. Cut the watermelon into chunks for a quick snack, infuse it with water for a refreshing drink, or chop it up and make a mouthwatering watermelon salad with feta and mint. This watermelon is great for sharing with friends and family or keep it for yourself. Bring it to your next cookout or get it as a sweet after dinner treat with friends.', 'Juicy and fresh organic personal watermelon Enjoy on its own or add to a mixed fruit salad Serve at your next neighborhood barbecue Get creative and make a watermelon cocktail or a refreshing sorbet Explore all the delicious ways to add fresh organically grown watermelon to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a4354248-7204-46da-9c9a-16085000fec5.e50fa8651db9c595777b69a457922483.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a4354248-7204-46da-9c9a-16085000fec5.e50fa8651db9c595777b69a457922483.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a4354248-7204-46da-9c9a-16085000fec5.e50fa8651db9c595777b69a457922483.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (142838230, 'Watermelon Seedless', 4.48, '405503752409', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (143502117, 'Fresh Manzana (Apples) Roja, 1 lb.', 1.68, 'deleted_400094433829', 'Grown with care and picked at the peak of ripeness, our Red Apples are sure to satisfy your cravings. With their sweet and juicy taste, they make for a perfect snack any time of the day. Graced with a classic, vibrant red color, these apples are full of nutrients such as fiber, vitamin C, and antioxidants. Get your daily dose of health and deliciousness with our Red Apples.', 'Red Rome apples are a delicious and versatile apple variety that is known for its sweet, tangy flavor and firm texture. These apples are perfect for snacking, baking, and cooking, and their unique taste and texture make them a favorite among apple enthusiasts. Red Rome apples are also an excellent source of dietary fiber and vitamin C, making them a healthy addition to any diet. Our Red Rome apples are carefully selected and packed at the peak of their freshness to ensure maximum flavor and quality. With their beautiful red color and distinctive taste, Red Rome apples are a great choice for adding a pop of color and flavor to any dish. Whether you\'re using them in a savory recipe or baking them in a pie, Red Rome apples are sure to impress with their delicious taste and satisfying crunch. If you\'re looking for a delicious and versatile apple variety that is perfect for any occasion, give Red Rome apples a try and discover why they are a popular choice among apple lovers everywhere.', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/72bba039-d136-4929-a22b-bf6168248e81.4f906c353fe8bce2de49f18dd60f7600.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/72bba039-d136-4929-a22b-bf6168248e81.4f906c353fe8bce2de49f18dd60f7600.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/72bba039-d136-4929-a22b-bf6168248e81.4f906c353fe8bce2de49f18dd60f7600.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (143658128, 'Garden Highway Garden Highway Pineapple Core, 18 oz', 3.97, '826766217007', 'Pineapple Core 18 oz (1 lb 2 oz) 510 g Perishable. Cut fresh daily. Product of: Costa Rica. Keep refrigerated. 18 oz (1 lb 2 oz) 510 g Rancho Cordova, CA 95670 888-4-HWYFUN', 'Pineapple Core Perishable. Cut fresh daily. Product of: Costa Rica.', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (143887151, 'Fresh White Peach, Each', 1.14, '895359002092', 'Discover the delightful sweetness of these Fresh White Peaches. Enjoy them on their own as a sweet snack or use them in a variety of recipes. For breakfast, you could slice them to put into your oatmeal or use them to make a delicious yogurt parfait. You can also use these fresh peaches in several baking recipes including a comforting crisp topped with ice cream, a tasty upside-down cake, or a scrumptious tart. You can even use them to make a jam or a smooth sorbet. However you choose to use them, their sweet flavor will bring a smile to everyone\'s face. Treat the family to the irresistible taste of Fresh White Peaches.', 'Fresh White Peach, Each Enjoy on their own as a satisfying snack Bag Use in a variety of baking recipes Make a tasty jam or a smooth sorbet Slice as a sweet topping for waffles or pancakes Add to iced tea to create a refreshing summertime flavor', 'Fresh Produce', 'https://i5.walmartimages.com/asr/88636da4-e6ee-43ef-98f7-0e942d44a698.fd38b955c99bbb0874ce8ca29b6e661a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/88636da4-e6ee-43ef-98f7-0e942d44a698.fd38b955c99bbb0874ce8ca29b6e661a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/88636da4-e6ee-43ef-98f7-0e942d44a698.fd38b955c99bbb0874ce8ca29b6e661a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (143888914, 'Mother Earth Products Crunchy Whole Red Grapes, 2 Cup Jar', 11.13, '810919034535', 'Mother Earth Products Freeze Dried Whole Red Grapes: a healthy & convenient addition to every area of your life without the headache: emergency preparedness, snacking, long and short term storage, traveling, everyday cooking, hiking, backpacking, spicing up your recipes, etc. use it now or later. Mother Earth Products Freeze Dried Whole Red Grapes are made with real, Non-GMO Red Grapes, no additives or preservatives, & is kosher - a guilt-free, robust food that makes eating tasty & rewarding, without the hassle of weekly trips to the store or the worry of spoiling. It’s so delicious you won’t store it away and hope you never have to use it. Taste the Goodness of Mother Earth Products', '100% red grapes; long term storage; short term storage; pantry; portable; convenient; nothing added; emergency preparedness; great flavor; easy to cook with; can eat straight from container without reconstituting', 'Mother Earth Products', 'https://i5.walmartimages.com/asr/7465c8cb-a233-41cf-aa3e-d06a0b0657e5_1.02f08f61dac85f4319468e57e158d04b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7465c8cb-a233-41cf-aa3e-d06a0b0657e5_1.02f08f61dac85f4319468e57e158d04b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7465c8cb-a233-41cf-aa3e-d06a0b0657e5_1.02f08f61dac85f4319468e57e158d04b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (143938248, 'Uvas Rojas, 10 Lb.', 2.17, '400094943991', 'Uvas Rojas, 10 Lb.', 'Uvas Red Globe', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (144148311, 'Uva Blanca, 1 Lb.', 4.47, '405515367721', 'Uva Blanca, 1 Lb.', 'Uva Blanca', 'Unbranded', 'https://i5.walmartimages.com/asr/f236462b-dc7a-47ff-90d4-7281369ce012.7a2478c3d27e4526eac51d6fda7bf11f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f236462b-dc7a-47ff-90d4-7281369ce012.7a2478c3d27e4526eac51d6fda7bf11f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f236462b-dc7a-47ff-90d4-7281369ce012.7a2478c3d27e4526eac51d6fda7bf11f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (144288494, 'Fresh Chilean Grown Yellow Peaches, 1 Lb.', 1.58, '400094390177', 'Fresh Chilean Grown Yellow Peaches, 1 Lb.', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (144523396, '?BBQ Jackfruit Meal, 10 oz', 4.99, '859806003025', 'BBQ PULLED JACKFRUIT', 'MEATY TEXTURE NEW TASTIER RECIPE! SWEET & SMOKY SAUCE', 'The Jackfruit Company', 'https://i5.walmartimages.com/asr/ab2ba3ea-6a31-43f6-a1c3-5f3157e29ea1.e43a20450c4220655b3cb455f14a84b1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ab2ba3ea-6a31-43f6-a1c3-5f3157e29ea1.e43a20450c4220655b3cb455f14a84b1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ab2ba3ea-6a31-43f6-a1c3-5f3157e29ea1.e43a20450c4220655b3cb455f14a84b1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (145162910, 'Yellow Flesh Peaches, per Pound', 1.58, '400094620700', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (145181964, 'Sunkist Lil Snappers Gala Smith, Fresh Apples, 3 lb Bag', 7.97, 'deleted_653571128125', 'Gala apples are available in Lil Snappers organics! The light golden streaks of color on the outside of the Gala hint at the honey-floral taste on the inside. We think there\'s a touch of banana in there, too. Sweet with a medium-crisp bite, the Gala looks like a beautiful old-time fruit-stand apple. Its delicate taste gets a boost from the slightly tart skin.', 'Sunkist Lil Snappers Gala Smith 3 Lb', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/ebc4b1a9-015d-4d8f-9941-deb80bcce50b_1.789098d8ffe09116e428523af3f61357.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ebc4b1a9-015d-4d8f-9941-deb80bcce50b_1.789098d8ffe09116e428523af3f61357.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ebc4b1a9-015d-4d8f-9941-deb80bcce50b_1.789098d8ffe09116e428523af3f61357.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (145353718, 'Kanzi Apples, Each', 1.77, '847473002656', 'Kanzi Apples, Each', 'Apple, Kanzi Sold per Apple Satisfaction guaranteed. For more information call 1-877-505-2267 or visit Walmart.com/help', 'Fresh Produce', 'https://i5.walmartimages.com/asr/96ed6e2f-d64a-4608-b5f1-4c95008f7dd0.a00f49a8adbefb5845d212cacd0d55d1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96ed6e2f-d64a-4608-b5f1-4c95008f7dd0.a00f49a8adbefb5845d212cacd0d55d1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96ed6e2f-d64a-4608-b5f1-4c95008f7dd0.a00f49a8adbefb5845d212cacd0d55d1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (145362893, 'Fresh Cactus (Nopales) Leaves, 1 lb', 1.48, '000000045582', 'Introducing our fresh cactus leaves, a unique and exotic ingredient ready to elevate your culinary journey. Packed with nutrients and antioxidants, these succulent leaves boast a mildly tangy flavor and a tender, yet crunchy texture. Ideal for salads, stir-fries, or grilled dishes, our cactus leaves offer a delightful twist to traditional recipes. Embrace the taste of adventure and add some excitement to your plate with our fresh cactus leaves.', 'Introducing our Fresh Cactus Leaves, a unique and nutritious addition to your culinary adventures. Handpicked for their exceptional quality and flavor, these vibrant green leaves bring a delightful, tangy taste and a satisfyingly crunchy texture to your dishes. Rich in antioxidants, fiber, and vitamins, our cactus leaves are not only delicious but also a powerhouse of health benefits. Enjoy them grilled, sautéed, or in salads and salsas for an exotic twist to your meals. Experience the magic of Fresh Cactus Leaves and surprise your taste buds with their extraordinary flavor and versatility.', 'Unbranded', 'https://i5.walmartimages.com/asr/97742ace-a7d5-4dcc-873c-e3576a5bb914.5e3d793853aebdb387639c30c417d41d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/97742ace-a7d5-4dcc-873c-e3576a5bb914.5e3d793853aebdb387639c30c417d41d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/97742ace-a7d5-4dcc-873c-e3576a5bb914.5e3d793853aebdb387639c30c417d41d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (145491247, 'Halos Mandarin Oranges, 2 Lb.', 3.97, '072240067204', 'Halos Mandarin Oranges, 2 Lb.', '2# Mandarin Halo', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (145623438, 'Pink Grapefruit, 1 Each', 1.84, '400094434314', 'Pink Grapefruit, 1 Each', 'Toronja Rosada', 'Unbranded', 'https://i5.walmartimages.com/asr/4ddf5bd9-20aa-483f-858a-8e7b636989e4.422b7ae9ad103680a1fb86e708b34815.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ddf5bd9-20aa-483f-858a-8e7b636989e4.422b7ae9ad103680a1fb86e708b34815.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ddf5bd9-20aa-483f-858a-8e7b636989e4.422b7ae9ad103680a1fb86e708b34815.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (145878309, 'Fruit Medley 16oz', 4.68, '813055012870', 'short description is not available', 'Fruit Medley 16oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (146356591, 'Gala Apples 5 Lb Bag', 5.29, '847473005862', 'short description is not available', 'Gala Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (146504937, 'Nectarines, 1 Lb.', 1.88, 'deleted_400094457481', 'Nectarines, 1 Lb.', 'Nectarines', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/ecee5f5a-6458-438a-b8c7-78a26974ae98.5492556a3e46d4abe66f9ffc0fb22665.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecee5f5a-6458-438a-b8c7-78a26974ae98.5492556a3e46d4abe66f9ffc0fb22665.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecee5f5a-6458-438a-b8c7-78a26974ae98.5492556a3e46d4abe66f9ffc0fb22665.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (146658675, 'Stayman Apple, Each', 0.98, '681131124300', 'short description is not available', 'Stayman Apple, Each', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (146912822, 'Gold Delicious Apples, 3lb Bag', 3.42, '405559309817', 'short description is not available', 'Gold Delicious Apples, 3lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/18a3ca48-62f6-42c5-9637-b04394ded669_1.5a234bb1d7bd5799a31dfe59ee4e8532.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18a3ca48-62f6-42c5-9637-b04394ded669_1.5a234bb1d7bd5799a31dfe59ee4e8532.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18a3ca48-62f6-42c5-9637-b04394ded669_1.5a234bb1d7bd5799a31dfe59ee4e8532.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (147038309, 'Braeburn Apple, Each', 0.98, '681131124331', 'short description is not available', 'Braeburn Apple, Each', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (147204902, 'Fresh Organic Oranges, 3 lb Bag', 5.97, 'deleted_400094666432', 'Enjoy the fresh sweetness of Marketside Organic Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite adult beverage. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Marketside Organic Oranges add flavor to any meal or beverage. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Organic Oranges 3lb bag Great source of vitamin C Certified USDA organic Use to add zest and flavor to your meals and beverages Use as a garnish for your favorite adult beverage Enjoy on their own or in a variety of recipes Serve with your pancake breakfast or make a smoothie', 'Fresh Produce', 'https://i5.walmartimages.com/asr/35e5e43b-d7f7-4c05-ad55-d2df5404c1cd_1.8a8b9be88694f526967d6d5b24c78bae.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35e5e43b-d7f7-4c05-ad55-d2df5404c1cd_1.8a8b9be88694f526967d6d5b24c78bae.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35e5e43b-d7f7-4c05-ad55-d2df5404c1cd_1.8a8b9be88694f526967d6d5b24c78bae.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (147348986, 'Green Lime, 1 Each', 1.57, '400094986257', 'Green Lime, 1 Each', 'Lima Verde', 'Unbranded', 'https://i5.walmartimages.com/asr/4c195d67-0b07-46f8-b242-b80ee435ccdb.9646b96390ea44bad3467705da9a11bb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4c195d67-0b07-46f8-b242-b80ee435ccdb.9646b96390ea44bad3467705da9a11bb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4c195d67-0b07-46f8-b242-b80ee435ccdb.9646b96390ea44bad3467705da9a11bb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (147688715, 'Wrapped Watermelon Quarters', 3.28, '077745225357', 'short description is not available', 'Wrapped Watermelon Quarters', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (148479111, 'Red Delicious Apples 3 Lb Bag', 3.42, '847473005787', 'short description is not available', 'Red Delicious Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (148582375, 'Manzana Organica Gala, 3 Lb.', 7.97, '400094307908', 'Manzana Organica Gala, 3 Lb.', 'Organic Manzana Gala', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (148636252, 'Fresh Cut Pineapple', 1.97, '224133000007', 'short description is not available', 'Fresh Cut Pineapple', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (148660296, 'Fresh Mcintosh Apples, 5 lbs Tote', 35.97, '681131124201', 'Indulge in the crisp and succulent flavor of whole Macintosh apples – the perfect snack for any time of day! Our juicy and fresh produce is sourced directly from the growers and contains no artificial colors or preservatives. Packed with essential nutrients and fiber, Macintosh apples make for a delicious and healthy snack that\'ll keep you energized and satisfied all day long!', 'Crisp & juicy Excellent snacking apple Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp & apple pie', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b52bfce0-fa29-4aae-a431-96e7aec61e5d.54cfdb525ebed061758b86d3a746944a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b52bfce0-fa29-4aae-a431-96e7aec61e5d.54cfdb525ebed061758b86d3a746944a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b52bfce0-fa29-4aae-a431-96e7aec61e5d.54cfdb525ebed061758b86d3a746944a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (148960971, 'Platanos Frescos, cantidad individual', 1.08, '405560823623', 'Platanos Frescos', 'Platanos Frescos Caja Platanos Frescos Caja Platanos Frescos Caja', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1aee9064-91f0-453e-98f0-b74db05e29d6.042fc0cbb3c38e4fbc14c6957d105ad7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aee9064-91f0-453e-98f0-b74db05e29d6.042fc0cbb3c38e4fbc14c6957d105ad7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aee9064-91f0-453e-98f0-b74db05e29d6.042fc0cbb3c38e4fbc14c6957d105ad7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (149006406, 'Small Bagged Oranges', 4.12, 'deleted_072240757341', 'short description is not available', 'Small Bagged Oranges', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (149035112, 'Yellow Flesh Peaches, per Pound', 1.58, '400094484371', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (149237862, '180pc Apple Gala 3#', 561.6, '405667977847', 'short description is not available', '180pc Apple Gala 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (149669949, 'Fresh Gala Apples, 3lb', 4.97, '033383084626', 'Gala fresh apples are sweet and mild with a subtle floral aroma making them perfect for breakfast, lunch, dinner, and dessert. Perfect for snacking, they have a creamy white flesh with low acidity. Chop the apples up and add them to a salad with walnut, mixed greens, and a poppy seed vinaigrette for a crunchy delicious salad that you can enjoy for lunch or dinner. Add it to your favorite smoothie or juice blend for a morning pick me up to get your day started right. Serve with a dollop of peanut butter and enjoy as a healthy snack that both kids and adults will love.', 'Sweet and mild with a subtle floral aroma Perfect for breakfast, lunch, dinner, and dessert Chop them up and add to a salad, add them to a smoothie or juice blend, or serve with peanut butter Perfect for snacking They have a creamy white flesh with low acidity', 'Fresh', 'https://i5.walmartimages.com/asr/af429a77-d9b3-492c-bdce-a37a1352127d.cb79424e07c374f20a2a09991c28b4bd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af429a77-d9b3-492c-bdce-a37a1352127d.cb79424e07c374f20a2a09991c28b4bd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af429a77-d9b3-492c-bdce-a37a1352127d.cb79424e07c374f20a2a09991c28b4bd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (149875299, 'Fresh Red Cherries, 2.25 lb Bag', 11.88, '628893000022', 'Fresh Dark Sweet Washington Cherries, 32 Oz.', 'Fresh Dark Sweet Washington Cherries', 'Fresh Produce', 'https://i5.walmartimages.com/asr/df09a170-3ae2-47ab-87f1-fdfa5c9565ee.10d08c0ac5fd99b53856ca15954a2026.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/df09a170-3ae2-47ab-87f1-fdfa5c9565ee.10d08c0ac5fd99b53856ca15954a2026.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/df09a170-3ae2-47ab-87f1-fdfa5c9565ee.10d08c0ac5fd99b53856ca15954a2026.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (149908720, 'Fresh Yellow Nectarines, Lb.', 1.88, 'deleted_405535277536', 'Savor the irresistible taste of these Fresh Yellow Nectarines. With a red and yellow coloration, these juicy nectarines are round, slightly heart-shaped with smooth skin. The flesh is soft and yellow with a sweet flavor and a slightly acidic taste. For breakfast, you can make a sweet fruit bowl with sliced nectarines, strawberries, pineapple, banana, and kiwi. For an extra special treat, top with a dollop of whipped cream. For dessert, you could use them to make a tasty crisp or a crowd-pleasing cobbler. Treat the entire family to the sweet flavor of Fresh Yellow Nectarines.', 'Juicy and fresh yellow nectarines Add to baked goods for a unique flavor Use to top your salad for extra flavor or make a tasty fruit bowl Slice as a sweet topping for waffles or pancakes Add to iced tea to create a refreshing summertime flavor', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/ecee5f5a-6458-438a-b8c7-78a26974ae98.5492556a3e46d4abe66f9ffc0fb22665.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecee5f5a-6458-438a-b8c7-78a26974ae98.5492556a3e46d4abe66f9ffc0fb22665.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecee5f5a-6458-438a-b8c7-78a26974ae98.5492556a3e46d4abe66f9ffc0fb22665.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (149938827, 'Fresh Yellow Nectarines, 2 lb Bag', 4.83, '788814320759', 'Savor the irresistible taste of these Fresh Yellow Nectarines. With a red and yellow coloration, these juicy nectarines are round, slightly heart-shaped with smooth skin. The flesh is soft and yellow with a sweet flavor and a slightly acidic taste. For breakfast, you can make a sweet fruit bowl with sliced nectarines, strawberries, pineapple, banana, and kiwi. For an extra special treat, top with a dollop of whipped cream. For dessert, you could use them to make a tasty crisp or a crowd-pleasing cobbler. Treat the entire family to the sweet flavor of Fresh Yellow Nectarines.', 'Fresh Yellow Nectarines, 2 lb Carton Add to baked goods for a unique flavor Use to top your salad for extra flavor or make a tasty fruit bowl Slice as a sweet topping for waffles or pancakes Add to iced tea to create a refreshing summertime flavor', 'Unbranded', 'https://i5.walmartimages.com/asr/fe56fa6a-09b8-4b74-8914-73603f49c498.b3a2d5752a7ca3a9dd910c54cf5ca6b5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fe56fa6a-09b8-4b74-8914-73603f49c498.b3a2d5752a7ca3a9dd910c54cf5ca6b5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fe56fa6a-09b8-4b74-8914-73603f49c498.b3a2d5752a7ca3a9dd910c54cf5ca6b5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (150401354, 'Packed Lemons, 1 Each', 3.47, '890685001351', 'Packed Lemons, 1 Each', 'Limones Empacados', 'Packed', 'https://i5.walmartimages.com/asr/33e3a080-7a51-4f05-86ad-a0c77b13a5ce.5b7806f9573718f631b518bd9ea3ddd3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/33e3a080-7a51-4f05-86ad-a0c77b13a5ce.5b7806f9573718f631b518bd9ea3ddd3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/33e3a080-7a51-4f05-86ad-a0c77b13a5ce.5b7806f9573718f631b518bd9ea3ddd3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (150485413, 'National Brand Fresh Fuji Apples, 8/Pack', 5, '041163453463', 'Our fresh produce of Fuji apples are a delicious variety belonging to the genus epithat \"Malus\". Bursting with sweetness and a crisp texture, these whole apples are perfect for snacking or cooking up a storm in the kitchen. Packed with flavor and nutrition, our Fuji apples are a must-have addition to your healthy lifestyle. Order now and savor the taste of these amazing fruits!', 'Super sweet Fresh and sophisticated flavor Hints of spice and savory earth character Juicy and aromatic Healthy snack', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8ab0e092-accf-44c7-bdf7-b370d2177e48.eef64f686b78eb19e6f13a108b1c5a96.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ab0e092-accf-44c7-bdf7-b370d2177e48.eef64f686b78eb19e6f13a108b1c5a96.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ab0e092-accf-44c7-bdf7-b370d2177e48.eef64f686b78eb19e6f13a108b1c5a96.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (150495343, 'Fuji Apples 3 Lb Bag', 3.94, '405544384430', 'short description is not available', 'Fuji Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (150795406, 'Yellow Flesh Peaches, per Pound', 1.58, '400094391082', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (150804164, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_400094237113', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (150984213, 'Orange Holiday Box, 1 Each', 9.98, '614200324073', 'Orange Holiday Box, 1 Each', 'Orange Holiday Box', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (151443931, 'Fresh Grapefruit, Each', 11.97, '032601502508', 'Grapefruit is the perfect balance between tart and sweet. The balance between tart and sweet is great for both savory and sweet dishes any time of day. Enjoy half of a grapefruit sprinkled with sugar with some eggs in the morning for a light, sweet breakfast. Slice it up and put in a salad with spinach, avocado, and red onion topped with a mustard and balsamic vinegar dressing for lunch or dinner. Make delicious grapefruit bars that showcase the sweet and tartness of this versatile fruit. For an adult recipe juice the grapefruit and pair with some simple syrup and alcohol for a refreshing cocktail. This fruit is the perfect addition to a healthy diet as it is a great source of vitamin C and vitamin A. With such versatility, Grapefruit will become a pantry staple in your home.', 'Great for both savory and sweet dishes Enjoy it for breakfast, lunch, dinner, or dessert Enjoy half a grapefruit sprinkled with sugar in the morning, slice it up and put it in salad for lunch or dinner, or make grapefruit bars Great source of vitamin C and vitamin A', 'Unbranded', 'https://i5.walmartimages.com/asr/4ddf5bd9-20aa-483f-858a-8e7b636989e4.422b7ae9ad103680a1fb86e708b34815.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ddf5bd9-20aa-483f-858a-8e7b636989e4.422b7ae9ad103680a1fb86e708b34815.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ddf5bd9-20aa-483f-858a-8e7b636989e4.422b7ae9ad103680a1fb86e708b34815.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (151762086, 'Fresh Honeycrisp Apples, 3 lb Bag', 5.46, '033383088044', '3 lb bag of Honeycrisp apples — fresh, crisp, and juicy. Crisp. Juicy. Perfectly sweet. Bite into the ultimate apple experience with Honeycrisp apples — loved for their refreshing crunch and balanced sweet-tart flavor. Each bite bursts with juice, making them an irresistible favorite for snacking, baking, and salads alike. Hand-picked at peak ripeness, these Honeycrisp apples deliver farm-fresh quality in every 3 lb bag. Great for families, lunchboxes, and meal prep. Crisp and juicy texture with a sweet, refreshing flavor. Perfect for snacking, salads, and baking. Good source of fiber and vitamin C. Hand-picked for peak ripeness and freshness. Enjoy chilled for a refreshing snack. Slice into salads for extra crunch and sweetness. Pair with peanut butter or cheese for a healthy combo. Bake into pies, crisps, or muffins for homemade treats.', 'Crisp, juicy Honeycrisp apples with sweet-tart flavor 3 lb bag—perfect for families, snacks, and meal prep Fresh, hand-picked apples for premium quality and taste Great for healthy snacks, lunchboxes, salads, and baking Naturally high in fiber and vitamin C Perfect balance of sweetness and crunch in every bite Ideal for apple pies, crisps, tarts, and caramel apples Farm-fresh Honeycrisp apples picked at peak ripeness Great value and freshness from Walmart Produce', 'Marketside', 'https://i5.walmartimages.com/asr/fc711cde-aa4a-49c2-8870-1d909354b78e.fd77ae610969e9058336736a4e65f7fd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fc711cde-aa4a-49c2-8870-1d909354b78e.fd77ae610969e9058336736a4e65f7fd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fc711cde-aa4a-49c2-8870-1d909354b78e.fd77ae610969e9058336736a4e65f7fd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (151988482, 'Disney Frozen II Tri-Color Seedless Table Grapes, 3 Lb', 5.98, '814326010298', 'Frozen II Tri-Color Grapes are seedless for your convenience and deliver a pleasantly refreshing taste in every bite. These California Grown grapes have a firm crisp texture with a sweet mild grape flavor. Grapes that are naturally high in vitamins and low in calories. Enjoy them as or use as an ingredient in sweet and savory dishes. Use them sliced in salads, pies, tarts, chicken salad, veggie wraps and more. They can also be frozen and whipped into an instant sorbet or smoothie for a refreshing frozen treat. Tri-Color grapes can be paired with soft texture cheeses, olives and charcuteries for an easy appetizer. They are great for health conscious individuals as they are high in natural antioxidant qualities that can help boost overall health. They are also a nutrient dense fruit that is low in calories. This container comes with three pounds of grapes making it easy to stock up on your favorite fruit. Enjoy fresh from the farm flavors with Frozen II Tri-Color Seedless Grapes. Before eating wash grapes under cool running water for about 30 seconds to a minute. To ensure freshness store grapes in refrigerator at 32-34 degrees. You can also freeze grapes to enjoy for a refreshing, nutritious frozen treat.', 'Disney Frozen II Tri-Color Seedless Table Grapes, 3 Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b1f2a83c-8e76-4172-9601-0c825760f101_1.ab3da40a7ff7541a83315b4a624ee104.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b1f2a83c-8e76-4172-9601-0c825760f101_1.ab3da40a7ff7541a83315b4a624ee104.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b1f2a83c-8e76-4172-9601-0c825760f101_1.ab3da40a7ff7541a83315b4a624ee104.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (152092308, 'Fresh Red Seedless Grapes, 1 Lb', 3.68, '033383250038', 'Face Glitters Body Gel Sequins Liquid Eyeshadow Glitter For Face Hair Nails Cosmetic Powder Festival Glitter Makeup Material: Color: as the picture shows, (Due to the difference between different monitors, the picture may have slight color difference. please make sure you do not mind before ordering, Thank you!) Daily Dose with Dupe Cosmetics Makeup Petal Bun Blended Family Wedding Gift Shadow Seal Makeup', 'Fresh Red Seedless Grapes, 1 Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (152592177, 'Fresh Granny Apple, 5 lb Bag', 5, '033383001555', 'Our Granny Smith apples are a delightfully tart and crunchy treat. With their bright green skin and firm flesh, they\'re perfect for snacking or adding a refreshing twist to your favorite recipes. These apples are packed with fiber, vitamins, and antioxidants, making them a healthy choice for anytime indulgence made with organic ingredients. Enjoy the deliciously tangy taste and characteristic juicy crunch of our fresh Granny Smith apples today.', 'Apple Granny is a classic apple variety known for its tart and tangy flavor, firm texture, and versatility in cooking and baking. Each Apple Granny is medium to large in size, with a round shape and a green background that is often streaked with red. The flesh of the Apple Granny is crisp and juicy, with a tart and acidic taste that is balanced by a subtle sweetness. This apple variety is perfect for making pies, sauces, and baked goods, but can also be enjoyed as a healthy snack. Apple Granny apples are a good source of fiber, vitamin C, and antioxidants, and are a nutritious and flavorful addition to any diet. With their distinctive taste and texture, Apple Granny apples are a popular choice for apple lovers and foodies alike.', 'Unbranded', 'https://i5.walmartimages.com/asr/aaf26660-1a7d-4f4b-961a-b07f9cd94ad7_1.4ad07051fe63abcc9eccdda62639a1f4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aaf26660-1a7d-4f4b-961a-b07f9cd94ad7_1.4ad07051fe63abcc9eccdda62639a1f4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aaf26660-1a7d-4f4b-961a-b07f9cd94ad7_1.4ad07051fe63abcc9eccdda62639a1f4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (152769711, 'Hypermart Green Pears, 1 Lb.', 2.27, '204202000008', 'Hypermart Green Pears, 1 Lb.', 'Hypermart Pera Verde Argentina', 'Hypermart', 'https://i5.walmartimages.com/asr/5a6421af-11b3-401b-8457-975765ef9db0_1.60acae23e90e1141a5e4050bdba533c5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a6421af-11b3-401b-8457-975765ef9db0_1.60acae23e90e1141a5e4050bdba533c5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a6421af-11b3-401b-8457-975765ef9db0_1.60acae23e90e1141a5e4050bdba533c5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (152781448, 'Ruby Cherries, 15 Oz.', 5.98, '888289402155', 'Ruby Cherries, 15 Oz.', 'Ruby Cherries, 15 oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/af03e207-8965-45af-b06e-3b429cce4b03.17803005180ed41c6ed488470be1312e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af03e207-8965-45af-b06e-3b429cce4b03.17803005180ed41c6ed488470be1312e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af03e207-8965-45af-b06e-3b429cce4b03.17803005180ed41c6ed488470be1312e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (152819719, 'Pluot, 1 lb Carton', 2.28, '847081000563', 'short description is not available', 'Pluot 1lb Clam', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (152993731, 'Fresh Guineo Nino, Puerto Rico, 2 lb Bag', 3.57, '893108000290', 'Guineo Nino, 2 Lb.', 'Guineo Nino 2 Lb', 'Unbranded', 'https://i5.walmartimages.com/asr/53f995ca-ea43-4ed0-a9f0-bb9b3bf85a75.6e5131c2fd1eb75390c49dc62827da97.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/53f995ca-ea43-4ed0-a9f0-bb9b3bf85a75.6e5131c2fd1eb75390c49dc62827da97.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/53f995ca-ea43-4ed0-a9f0-bb9b3bf85a75.6e5131c2fd1eb75390c49dc62827da97.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (153278640, 'Organic Fresh Red Seedless Grapes, 1 lb Package', 5.98, '000000944991', 'Marketside Organic Red Grapes are seedless for you convenience and deliver a pleasantly refreshing taste in every bite. These fresh grapes have a firm texture and a vibrant red color. Enjoy them as a healthy snack or use as an ingredient in sweet and savory dishes. Use them in salads, pies, tarts, chicken salad and more. They are great for health conscious individuals as they are USDA organic. They are also a nutrient dense fruit that is low in calories. This container comes with two pounds of grapes making it easy to stock up on your favorite fruit. Enjoy fresh from the farm flavors with Marketside Organic Red Grapes.Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Fresh Organic Red Seedless Grapes Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (153336862, 'Snack Fresh Pine Spears 2.7 Oz', 0.98, '074641010063', 'short description is not available', 'Snack Fresh Pine Spears 2.7 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (153431095, 'Ambrosia Apples 3 Lb Bag', 4.94, '405559309718', 'short description is not available', 'Ambrosia Apples 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (153466616, 'Fresh Plums, 2 lb Bag', 5.58, '847081000440', 'Discover the delightful sweetness of Moonlight Plums. Enjoy them on their own as a sweet snack or use them in a variety of recipes. For breakfast, you could slice them to put into your oatmeal or use them to make a delicious yogurt parfait. You can also use these juicy plums in several baking recipes including a comforting crisp topped with ice cream, a tasty upside-down cake, or a scrumptious tart. You can even use them to make a jam or a smooth sorbet. However you choose to use them, their sweet flavor will bring a smile to everyone\'s face. Treat the family to the irresistible taste of Moonlight Plums.', 'Sweet and juicy plums Enjoy on their own as a satisfying Bag snack Use in a variety of baking recipes Make a tasty jam or a smooth sorbet Ideal snack to take to work or on a road trip', 'Fresh Produce', 'https://i5.walmartimages.com/asr/487ef962-3184-402f-bcf5-01da9b9cd544.f4d05caaeeeef5ad829478780c48974e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/487ef962-3184-402f-bcf5-01da9b9cd544.f4d05caaeeeef5ad829478780c48974e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/487ef962-3184-402f-bcf5-01da9b9cd544.f4d05caaeeeef5ad829478780c48974e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (153495541, 'Manzana Gala, 1 Lb.', 1.77, 'deleted_400094433331', 'Manzana Gala, 1 Lb.', 'Manzana Gala', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/8d883673-bcdc-4d0e-a377-bc0ef667c26e.6020cde76cad8270758f69c6a7638a7f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8d883673-bcdc-4d0e-a377-bc0ef667c26e.6020cde76cad8270758f69c6a7638a7f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8d883673-bcdc-4d0e-a377-bc0ef667c26e.6020cde76cad8270758f69c6a7638a7f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (153584093, '10lb Bag Of Red Delicious Apples', 8.92, '033383000046', 'Shock absorbing and weather resistant neoprene material is perfect to protect your device. Looking for case that protects your tablet as well store additional accessories like Smart Case, this is the solution of your problems. Internal Dimensions of this case are 7.75 x 5.25 inches while external 8.5 x 5.875 inches.', 'Fashion Sleeve Pouch for your tablet is Tough enough to protect your tablet yet stylish to take everywhere you go. The high-grade and highly durable neoprene is water resistant and offers advanced protection from bumps, scratches and dust. And the smooth, non-scratch interior lining offers enhanced screen protection while your device is tucked away. Ideal for any tablet or e-book up to 7.75 inches, this no-bulk case easily slides into your bag, briefcase or backpack and perfect for those of you on the go. This Sleeve is compatible for most Tablets or eBook readers upto 7.75 inch. Product Features: Constructed of shock-absorbing & weather resistant neoprene material Non-abrasive material lines interior securing your device for safe travel and storage Slim and lightweight design provides low-profile protection against every day wear and tear Stylish exterior graphic and Dual zippers make accessing your device quick and easy', 'Unbranded', 'https://i5.walmartimages.com/asr/ba64186b-9e72-42d1-86ef-b30bd0b4e13c_1.53359afa8d5ee64fba4e5b1c1169961d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ba64186b-9e72-42d1-86ef-b30bd0b4e13c_1.53359afa8d5ee64fba4e5b1c1169961d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ba64186b-9e72-42d1-86ef-b30bd0b4e13c_1.53359afa8d5ee64fba4e5b1c1169961d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (153589350, 'True Fruit Ruby Grapefruit No Sugar Added 7 oz', 1.28, 'deleted_810051010497', 'TRUE FRUIT: FRUIT GRPEFRUIT LITE SS (7.000 OZ)', 'GRPFRUIT LITE 7Z TF', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f02aa6f7-25d7-4350-b7b7-d5598327791f.0564cc072ab89019238d3ad5baaaa4b1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f02aa6f7-25d7-4350-b7b7-d5598327791f.0564cc072ab89019238d3ad5baaaa4b1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f02aa6f7-25d7-4350-b7b7-d5598327791f.0564cc072ab89019238d3ad5baaaa4b1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (154211430, 'Melissa\'s Sweet Young Coconuts, each', 3.48, '045255119671', 'Coconut, Sweet Young, Wrapper 1 CT This sweet coconut has a tender flesh and is full of refreshing water. For nutritional information and recipes, contact: www.melissas.com. Product of Thailand. To Prepare: Using a heavy knife, carefully cut off the diamond-shaped point of the coconut. Poke a hole in the exposed shell and pry off the circular crown. Slide in a straw and savor this delicious, sweet water for a refreshing, tropical drink! Perishable/Keep refrigerated. 1 coconut PO Box 21127 Los Angeles, CA 90021 800-588-0151', 'Coconut, Sweet Young This sweet coconut has a tender flesh and is full of refreshing water. www.melissas.com. For nutritional information and recipes contact: www.melissas.com; 1-800-588-0151. Product of Thailand.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a8fd0057-8825-4f6d-91b1-e641ab3a531c.874d372ed9334f54e03b757251b5bbaa.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a8fd0057-8825-4f6d-91b1-e641ab3a531c.874d372ed9334f54e03b757251b5bbaa.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a8fd0057-8825-4f6d-91b1-e641ab3a531c.874d372ed9334f54e03b757251b5bbaa.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (154218942, 'Organic Valencia Orange, 4 Lb.', 9.97, '032601501259', 'Organic Valencia Orange, 4 Lb.', 'Organic Valencia Orange', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (154345805, 'Walmart Produce Berry Blend 36 Oz', 11.98, '717524721648', 'short description is not available', 'Walmart Produce Berry Blend 36 Oz', 'WALMART PRODUCE', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (154392923, 'Jazz Apples 5 Lb Bag', 5.92, '066022000114', 'short description is not available', 'Jazz Apples 5 Lb Bag', 'Enza Costa', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (154594766, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094381670', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (154717836, 'Pineapple 16 Oz', 3.88, '813055012931', 'In season from March through June, pineapples are juicy and sweet. This versatile tropical fruit is delicious sliced, cubed into salads and in dessert recipes.', 'Pineapple 16 Oz', 'LANCASTER (LANCASTER FOODS LLC)', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (154812550, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094274958', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (154966581, 'Organic Tangelos, 4 Lb.', 3.98, '880612150030', 'Organic Tangelos, 4 Lb.', '4# Organic Tangelo', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (155140283, 'Red Grapes 3oz Bag', 1.27, 'deleted_859002004154', 'short description is not available', 'Red Grapes 3oz Bag', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (155215380, 'Pineapple 32 Oz', 7.97, '813055012962', 'short description is not available', 'Pineapple 32 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (155314356, 'Designer 7.75 Inch Soft Neoprene Sleeve Case Pouch for Alcatel ONETOUCH POP 7 LTE, Acer Iconia One 7, LG G Pad, Amazon Fire 7, Kindle/ Kindle HD 7, RCA 7 Tablet - Rose', 3.74, '033383092553', 'Shock absorbing and weather resistant neoprene material is perfect to protect your device. Looking for case that protects your tablet as well store additional accessories like Smart Case, this is the solution of your problems. Internal Dimensions of this case are 7.75 x 5.25 inches while external 8.5 x 5.875 inches.', 'Fashion Sleeve Pouch for your tablet is Tough enough to protect your tablet yet stylish to take everywhere you go. The high-grade and highly durable neoprene is water resistant and offers advanced protection from bumps, scratches and dust. And the smooth, non-scratch interior lining offers enhanced screen protection while your device is tucked away. Ideal for any tablet or e-book up to 7.75 inches, this no-bulk case easily slides into your bag, briefcase or backpack and perfect for those of you on the go. This Sleeve is compatible for most Tablets or Netbooks upto 7.75 inch. This pouch can accommodate your tablet with 7.75 inch width like Alcatel ONETOUCH POP 7 LTE, Acer Iconia One 7, LG G Pad, Amazon Fire 7, Kindle/ Kindle HD 7, RCA 7 Tablet . Product Features: Constructed of shock-absorbing & weather resistant neoprene material Non-abrasive material lines interior securing your device for safe travel and storage Slim and lightweight design provides low-profile protection against every day wear and tear Stylish exterior graphic and Dual zippers make accessing your device quick and easy', 'Unbranded', 'https://i5.walmartimages.com/asr/8b72ddd0-261c-4d95-b542-894b5db1dcd8_1.63e2ddc98e61b968ea4b9ebf5258c481.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8b72ddd0-261c-4d95-b542-894b5db1dcd8_1.63e2ddc98e61b968ea4b9ebf5258c481.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8b72ddd0-261c-4d95-b542-894b5db1dcd8_1.63e2ddc98e61b968ea4b9ebf5258c481.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (155577101, 'Fruit Medley 32oz', 6.98, '813055012887', 'short description is not available', 'Fruit Medley 32oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (155599563, 'Black Seedless Grape', 1.98, 'deleted_400094234884', 'short description is not available', 'Black Seedless Grape', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (155700350, 'Fresh Red Delicious Apples, 3 lb Bag', 4.47, '033383080642', 'Red Delicious 3lb Apple Bag', 'Red Delicious Sweet, crisp, and juicy Creamy white flesh with low acidity Excellent snacking apple Higher antioxidants due to the rich, deep red skin Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipesMake apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp, and apple pie', 'Timber Ridge Fruit Farm, LLC', 'https://i5.walmartimages.com/asr/fcee6e93-8d1d-40cf-89f7-c376710172d7.94f546efe5957e73ed1810f91c2497cf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fcee6e93-8d1d-40cf-89f7-c376710172d7.94f546efe5957e73ed1810f91c2497cf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fcee6e93-8d1d-40cf-89f7-c376710172d7.94f546efe5957e73ed1810f91c2497cf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (155898432, 'Stemilt Lil Snappers Apples, 3 Lb.', 4.67, '741839005902', 'Apples, Gala, Lil Snappers, Bag 3 LB Sweet, snappy and aromatic. Kid size fruit. Scan me! Resealable. World famous fruit. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. Follow us YouTube; Facebook; Twitter; Pinterest. For fun recipes activities and more, visit www.lilsnappers.com. Responsible choice. Fruits & veggies more matters. Meets or exceeds U.S. extra fancy. 2-1/2 inch min dia. Produce of USA. 3 lb (1.36 kg) Wenatchee, WA 98801', 'Apples, GalaSweet, snappy and aromatic. Kid size fruit. Scan me! Resealable. World famous fruit. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. Follow us YouTube; Facebook; Twitter; Pinterest. For fun recipes activities and more, visit www.lilsnappers.com. Responsible choice. Fruits & veggies more matters. Meets or exceeds U.S. extra fancy. 2-1/2 inch min dia. Produce of USA.', 'Stemilt', 'https://i5.walmartimages.com/asr/360e0b98-944e-467a-bd54-70c901dea4bf_1.a73370cdb6f4e046262ee695ac594ebb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/360e0b98-944e-467a-bd54-70c901dea4bf_1.a73370cdb6f4e046262ee695ac594ebb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/360e0b98-944e-467a-bd54-70c901dea4bf_1.a73370cdb6f4e046262ee695ac594ebb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (156312838, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094046876', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (156314893, 'Strawberry/cantaloupe/grapes 32 Oz', 8.48, '074641054074', 'short description is not available', 'Strawberry/cantaloupe/grapes 32 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (156437706, 'WHOLLY GUACAMOLE Homestyle, 16 oz', 6.46, 'deleted_616112027868', 'Need a little flavor in your day? We have an easy way to make your meals OMGuac! WHOLLY GUACAMOLE Homestyle Guacamole contains precut chunks of 100% Hass avocados with diced veggies to give you that homemade taste without any of the hassle. Dip it with veggies and pretzels. Top it on burgers and salads. Spread it on sandwiches and wraps. Love it! Every meal of the day (and some in between!). Goodbye mayo, hello Guac! Dip it, top it, spread it, love it. WHOLLY GUACAMOLE is a trademark of Avomex, Inc.', 'That homemade taste without the hassle of tricky avocados. America’s #1 selling refrigerated guacamole Keep refrigerated 50 calories per serving No Preservatives added and gluten free', 'WHOLLY GUACAMOLE', 'https://i5.walmartimages.com/asr/67cbf04a-f964-432a-877a-2ca48205ce58_1.9aab8fdc7715f7e51d5d54bd23632f06.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/67cbf04a-f964-432a-877a-2ca48205ce58_1.9aab8fdc7715f7e51d5d54bd23632f06.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/67cbf04a-f964-432a-877a-2ca48205ce58_1.9aab8fdc7715f7e51d5d54bd23632f06.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (156471039, 'Gala Apples 4 Pack', 3.98, '033383047805', 'short description is not available', 'Gala Apples 4 Pack', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (156640211, 'Fresh Yellow Watermelon, Each', 5.77, '823298601830', 'Enjoy the sweet, refreshing taste of a Fresh Yellow Seedless Watermelon. Watermelons are great for breakfast, lunch, dessert, or when you want a snack. Watermelon is a good source of vitamin C, vitamin A, and potassium making them an excellent healthy treat. Cut the watermelon into chunks for a quick snack, infuse it with water for a refreshing drink, or chop it up and make a mouthwatering watermelon salad with feta and mint. This watermelon is great for sharing with friends and family or keep it for yourself. Bring it to your next cookout or get it as a sweet after dinner treat with friends. Make every occasion special with a Fresh Yellow Seedless Watermelon.', 'Fresh Seedless Yellow Watermelon Enjoy a fresh Seedless Yellow Watermelon on its own or add to a mixed fruit salad Serve at your next neighborhood barbecue Get creative and make a watermelon cocktail or a refreshing sorbet Sweet and juicy Explore all the delicious ways to add fresh yellow watermelon to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/39dee6b3-ee6a-4774-9603-14f435fd7678.23e48889862abc7ec4e0e2f0a7b43555.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39dee6b3-ee6a-4774-9603-14f435fd7678.23e48889862abc7ec4e0e2f0a7b43555.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39dee6b3-ee6a-4774-9603-14f435fd7678.23e48889862abc7ec4e0e2f0a7b43555.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (156765768, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094608333', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (156901895, 'Organic Bartlett Pears, 3 Lb.', 4.96, '033383300788', 'Organic Bartlett Pears, 3 Lb.', 'Organic Bartlett Pears 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a6fbdd1e-9ba0-4018-be9e-e103a7aff0c8_1.7bea0e2f51b084242fcf154eeae372d0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6fbdd1e-9ba0-4018-be9e-e103a7aff0c8_1.7bea0e2f51b084242fcf154eeae372d0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6fbdd1e-9ba0-4018-be9e-e103a7aff0c8_1.7bea0e2f51b084242fcf154eeae372d0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (156905449, 'Fresh Cup of Cherries, Half Pint', 2.88, '888289402117', 'Fresh Cup of Cherries, Half Pint', 'Fresh Cup Of Cherries', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (157005099, 'Fresh Organic Peaches, 2 lb Bag', 5.66, '683953001449', 'Discover the delightful sweetness of Fresh Organic Peaches. Enjoy them on their own as a sweet snack or use them in a variety of recipes. For breakfast, you could slice them to put into your oatmeal or use them to make a delicious yogurt parfait. You can also use these organic peaches in several baking recipes including a comforting crisp topped with ice cream, a tasty upside-down cake, or a scrumptious tart. You can even use them to make a jam or a smooth sorbet. However you choose to use them, their sweet flavor will bring a smile to everyone\'s face. Treat the family to the irresistible taste of Fresh Organic Peaches.', 'Fresh Organic Peaches, 2 lb Bag Sweet and juicy organic peaches Enjoy on their own as a satisfying snack Use in a variety of baking recipes Make a tasty jam or a smooth sorbet Ideal snack to take to work or on a road trip', 'Fresh Produce', 'https://i5.walmartimages.com/asr/248fc84d-1607-415c-955e-788cd596d218.03af188de26b138b710defbe4b5c566c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/248fc84d-1607-415c-955e-788cd596d218.03af188de26b138b710defbe4b5c566c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/248fc84d-1607-415c-955e-788cd596d218.03af188de26b138b710defbe4b5c566c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (157008929, 'Seedless Green Grapes, 2 lb bag', 2.73, 'deleted_813552010034', 'short description is not available', 'Green Grapes Seedless Bag, 2 lbs.', '', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (157184028, 'Fresh Bosc Pears, 3 lb Bag', 5.47, '033383300511', 'The fresh Bosc Pear is a one-of-a-kind fruit. Featuring a 3 Lb Bag, the Pear white flesh that is slightly firmer and denser than other pears, this unique winter variety are widely used for baking, broiling, or poaching. With subtle notes of cinnamon and nutmeg, this flavorful pear is a great choice for baking as well; try baking these pears with walnuts and honey or creating a bosc pear crumble with brown sugar, rolled oats, cinnamon, and butter. Pears are also known to have great health benefits, as they include a wide variety of nutrients like folate, vitamin C, copper, and potassium. No matter how you enjoy, Bosc Pears are sure to leave your taste buds satisfied.', 'Fresh Bosc Pears, 3 lb Bag Sweet, crisp, and juicy Excellent snacking pear Make a creamy smoothie or a nutritious juice blend Add to your salad for extra crunch and flavor Adds flavor to a variety of recipes Make pear butter or poached pears Make sweet desserts like pear cobbler, pear crisp or pear tarts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3ca70784-4dfc-40c9-8f42-f0c4155d8c5f.fa3bb306d71ddf06055217909b92cc62.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3ca70784-4dfc-40c9-8f42-f0c4155d8c5f.fa3bb306d71ddf06055217909b92cc62.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3ca70784-4dfc-40c9-8f42-f0c4155d8c5f.fa3bb306d71ddf06055217909b92cc62.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (157249826, 'Valencia Oranges, 3 lb Bag', 4.98, '033383101163', 'short description is not available', '', 'Fresh Produce', 'https://i5.walmartimages.com/asr/58883aba-8ce4-4d6b-8cbd-7368e4dc0f30.3e590d8ad1eb2cc6e7973838f1ace692.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58883aba-8ce4-4d6b-8cbd-7368e4dc0f30.3e590d8ad1eb2cc6e7973838f1ace692.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58883aba-8ce4-4d6b-8cbd-7368e4dc0f30.3e590d8ad1eb2cc6e7973838f1ace692.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (157250373, 'Marketside Pineapple, 16 oz Tray', 4.97, '681131180467', 'Enjoy the sweet, tropical flavor of Marketside Pineapple. These precut chunks are great for breakfast, lunch, dessert, or when you want a snack. Pineapple is a good source of vitamin C, vitamin A and vitamin B6 making them an excellent healthy treat. You can eat the chunks right out of the container, infuse them with water and mint for a refreshing drink, or chop them up and make a mouthwatering pineapple salsa with jalapenos, tomatoes, and red onion. With 16-ounces in each container, this pineapple is great for sharing with friends and family or keep it for yourself. It comes in a closable container to help maintain freshness. Bring home Marketside Pineapple today for a refreshing, healthy treat. Marketside provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Marketside item.', 'Marketside Pineapple 16 oz Comes in a re-closable container to help maintain freshness Great for breakfast, lunch, dessert, or when you want a snack No preservatives, artificial colors or artificial flavors Convenient and portable Share with friends and family or keep for yourself Make a fruit bowl topped with whipped cream or a yogurt parfait Enjoy on their own or in a variety of recipes', 'Marketside', 'https://i5.walmartimages.com/asr/f4376da2-1090-4847-b1f1-5cee6e1af8ba.fa5e9b190849ba0a897c8f83347a6021.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f4376da2-1090-4847-b1f1-5cee6e1af8ba.fa5e9b190849ba0a897c8f83347a6021.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f4376da2-1090-4847-b1f1-5cee6e1af8ba.fa5e9b190849ba0a897c8f83347a6021.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (157381791, 'Fresh Organic Granny Smith Apples, 3 lb Pouch', 5.84, '033383009889', 'Treat yourself to the delicious, crisp taste of Marketside Organic Granny Smith Apples. These apples are known for their bright green skin speckled with faint white spots, bright white and crisp flesh, and tart, acidic yet subtly sweet flavor. Enjoy one with breakfast or lunch or as a fresh snack any time of day. Best of all, these delicious apples hold up well when cooked and can be used in both savory and sweet dishes. They are a favorite of pie bakers and can be used for snacking, salads, pairing, or made into a delicious sauce that pairs perfectly with pork. Try incorporating them into soups and compotes or use them to make yummy jam or juice. Use them to create apple crisp, pie, and strudel for a sweet treat. You can even pair them with sharp cheeses and crackers to create a stunning appetizer cheese board to share with guests. The possibilities are endless with Marketside Organic Granny Smith Apples. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to delivering freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Bright green skin speckled with faint white spots Bright white, crisp flesh USDA organic Tart, acidic yet subtly sweet flavor Can be enjoyed fresh or cooked into both savory and sweet dishes Meets or exceeds U.S. Extra Fancy Minimum diameter: 2.25\"', 'Marketside', 'https://i5.walmartimages.com/asr/c74d3488-a852-4732-8b5a-e937cb442670.bb2aaa079cec891fbfdc9463d0dc023a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c74d3488-a852-4732-8b5a-e937cb442670.bb2aaa079cec891fbfdc9463d0dc023a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c74d3488-a852-4732-8b5a-e937cb442670.bb2aaa079cec891fbfdc9463d0dc023a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (157512072, '3lb Bag Of Gala Apples', 5.28, '060034302150', 'short description is not available', '3lb Bag Of Gala Apples', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (157891483, 'Dark Sweet Cherries, Half Pint', 3.73, '888289403640', 'Dark Sweet Cherries, Half Pint', 'Dark Sweet Cherries 1/2 Dry Pint', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (158098953, 'Fresh Organic Black Grapes, 32 oz', 6.48, '333832506946', 'Black grapes, also sometimes known as Concord grapes or slipskin grapes, are consumed fresh or made into fresh juice, jams or jellies.', 'Fresh Organic Black Grapes, 32 oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/520b62d6-f187-40bc-912a-489a8bcb0465.006c94121dd200c99545ed781fee6b77.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/520b62d6-f187-40bc-912a-489a8bcb0465.006c94121dd200c99545ed781fee6b77.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/520b62d6-f187-40bc-912a-489a8bcb0465.006c94121dd200c99545ed781fee6b77.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (158450577, 'Fresh Cut Jicama', 1.97, '224136000004', 'short description is not available', 'Fresh Cut Jicama', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (158672885, 'Paula Red Apple, Each', 1.58, '681131124294', 'short description is not available', 'Paula Red Apple, Each', 'RiverRidge', 'https://i5.walmartimages.com/asr/c8bc7c5e-eb09-4ce5-8836-836d3be45ba3.47de0b5b062dc4790d65aaaf41996445.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8bc7c5e-eb09-4ce5-8836-836d3be45ba3.47de0b5b062dc4790d65aaaf41996445.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8bc7c5e-eb09-4ce5-8836-836d3be45ba3.47de0b5b062dc4790d65aaaf41996445.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (158871007, 'Red Delicious Extra Fancy, 3 Lb.', 4.97, '818679004041', 'Red Delicious Extra Fancy, 3 Lb.', 'Red Delicious Extra Fancy 3 Lb', 'Peters Orchards', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (159106613, 'Marketside Fresh Cut Cantaloupe, 10 oz Tray', 3.12, '681131180146', 'Experience a burst of summertime goodness with this delicious Marketside Cantaloupe. This pre-cut ripe cantaloupe is juicy, sweet, and refreshing to the taste. In addition, cantaloupes are a great natural source of calcium, zinc, and iron. Enjoy some straight out of the tray, set it up for a dinner party as fruit tray, take it with you for lunch, or savor some as a delicious dessert. Pair it with a tasty salad or sandwich for a nutritious and delicious lunch. You can also use it as a naturally sweet ingredient in a fruit salad. Add some fresh fruit to your daily menu with this Marketside Cantaloupe. Marketside provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Marketside item.', 'Marketside Cantaloupe 10 oz Pre-Cut Convenience: Fresh, sweet, juicy cantaloupe chunks are ready to eat, saving you time on preparation. Portable Packaging: Comes in a 10 oz re-closable container, making it easy for grab-and-go convenience. Nutrient-Rich: A good source of calcium, zinc, and iron, contributing to your daily nutritional needs. No Artificial Additives: Free from preservatives, artificial colors, and artificial flavors, ensuring a natural taste. Versatile Use: Perfect as a standalone snack, addition to fruit salads, or as a refreshing side dish. Perishable Item: Keep refrigerated to maintain freshness and quality.', 'Marketside', 'https://i5.walmartimages.com/asr/e659b7db-8c12-41d5-b205-529a2607efc9.205f7a3283253fe6f9ebff9250dc3148.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e659b7db-8c12-41d5-b205-529a2607efc9.205f7a3283253fe6f9ebff9250dc3148.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e659b7db-8c12-41d5-b205-529a2607efc9.205f7a3283253fe6f9ebff9250dc3148.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (159134009, 'Valencia Oranges, 1 Each', 0.97, 'deleted_791928040147', 'Valencia Oranges, 1 Each', 'Bulk Valencia Oranges', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (159602774, 'Fresh Caramel Apple Without Nuts, Each, Whole', 0.98, '034986001997', 'Savor the deliciousness of our Simple Fresh Caramel Apple, crafted with premium, plant-based ingredients. The crisp Granny Smith apple is enveloped in creamy, decadent caramel, creating a tantalizing flavor experience. Gluten-free and made with a variety of plants, this guilt-free snack is perfect for indulging your sweet tooth.', 'Simply Caramel, Due to the nature of this sticky, delicious, no-frills flavor, Simply Caramel is delicious. Fresh Apples handpicked, in a tray dipped on a special-recipe caramel for a taste that’s so simple, so delicious! Fresh Apples are used for this snack, mostly Granny Apples, but another varieties with the right level of sweetness will also make the work! The perfect healthy treat for the season. Looking for a delicious and healthy treat that\'s perfect for the season? Look no further than Simply Caramel! Made with fresh apples that are handpicked and dipped in a special-recipe caramel, this treat is so simple and yet so delicious. With a no-nuts formula, Simply Caramel is perfect for those with nut allergies or simply those who prefer a nut-free option. Also great for those with a gluten allergy as it is Gluten-Free.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/28269aff-7f28-4d22-878e-3cc6ef509708_1.cc7e8a2c0900657a391925ef159dc39a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/28269aff-7f28-4d22-878e-3cc6ef509708_1.cc7e8a2c0900657a391925ef159dc39a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/28269aff-7f28-4d22-878e-3cc6ef509708_1.cc7e8a2c0900657a391925ef159dc39a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (159719786, 'Fresh Gala Apples, 3 lb', 4.67, '087434007447', 'Looking for the perfect snack that\'s both delicious and healthy? Look no further than our Fresh Gala Apples! Bursting with sweet, juicy flavor and hand-picked at peak ripeness, our Gala Apples are the perfect addition to your favorite recipes or for snacking on-the-go. Order now and experience the crisp texture and refreshing taste of our Fresh Gala Apples, delivered straight to your doorstep for ultimate convenience!', 'Fresh Gala Apples, 3 lb Bag: Sweet and mild with a subtle floral aroma Fresh Gala Apples, 3 lb Bag: Sweet and mild with a subtle floral aroma Sweet and mild with a subtle floral aroma Perfect for breakfast, lunch, dinner, and dessert Chop them up and add to a salad, add them to a smoothie or juice blend, or serve with peanut butter Perfect for snacking They have a creamy white flesh with low acidityFresh Gala Apples, 3 lb Bag: Includes 3 pounds of crisp apples Perfect for breakfast, lunch, dinner, and dessert Chop them up and add to a salad, add them to a smoothie or juice blend, or serve with peanut butter Perfect for snacking They have a creamy white flesh with low acidity Includes 3 pounds of crisp apples Pair them with sharp cheeses and crackers for a stunning appetizer board Can be enjoyed fresh or cooked into both savory and sweet dishes Meets or exceeds U.S. Extra Fancy Minimum diameter: 2.25\" Make a creamy smoothie or a nutritious juice blend Perfect as a healthy treat or seasonal baking ingredient Great for packing in lunches Make a creamy smoothie or a nutritious juice blend Adds flavor to a variety of recipes Pair them with sharp cheeses and crackers for a stunning appetizer board Can be enjoyed fresh or cooked into both savory and sweet dishes Meets or exceeds U.S. Extra Fancy Minimum diameter: 2.25\" Make a creamy smoothie or a nutritious juice blend Perfect as a healthy treat or seasonal baking ingredient Great for packing in lunches Make a creamy smoothie or a nutritious juice blend Adds flavor to a variety of recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ebd2f199-5ee9-4c03-a20e-2bad77147595.d78301ad27601db895884cc7fa9157b0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ebd2f199-5ee9-4c03-a20e-2bad77147595.d78301ad27601db895884cc7fa9157b0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ebd2f199-5ee9-4c03-a20e-2bad77147595.d78301ad27601db895884cc7fa9157b0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (159809222, 'Cucumbers 3-pack', 3.58, '028383001537', 'short description is not available', 'Cucumbers 3-pack', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (159833348, 'Emoji Pink Lady Apple, 3lb', 4.87, '887434011464', 'Treat yourself to the delicious and crisp apple. These apples are known for their vivid green skin covered in a pinkish blush, crunchy texture, and tart taste with a sweet finish.', 'Includes 3 pounds of tart, crisp apples Tart taste with a sweet finish Pair them with sharp cheeses and crackers for a stunning appetizer board Can be enjoyed fresh or cooked into both savory and sweet dishes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/862bb433-d0ff-438b-8860-fbe1a7157c9c.4babf736917349ec25028d902df8abc9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/862bb433-d0ff-438b-8860-fbe1a7157c9c.4babf736917349ec25028d902df8abc9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/862bb433-d0ff-438b-8860-fbe1a7157c9c.4babf736917349ec25028d902df8abc9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (160175726, 'Stayman Apples 5 Lb Bag', 4.92, '840208101112', 'short description is not available', 'Stayman Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (160281751, 'Cut Pineapple', 1.97, '224144000003', 'short description is not available', 'Cut Pineapple', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (161050666, 'Fresh Cherry, 1 Lb.', 2.97, '405543370908', 'Fresh Cherry, 1 Lb.', 'Cherry Fresca', 'Cherry Fresca', 'https://i5.walmartimages.com/asr/821f9110-4798-421b-983e-2dfb0dcb4ea8.4e50526b18e589c6af58eecdf3ba8d97.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/821f9110-4798-421b-983e-2dfb0dcb4ea8.4e50526b18e589c6af58eecdf3ba8d97.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/821f9110-4798-421b-983e-2dfb0dcb4ea8.4e50526b18e589c6af58eecdf3ba8d97.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (161086629, 'Fuji Apples 5 Lb Bag', 5.29, '847473005831', 'short description is not available', 'Fuji Apples 5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (161115457, 'Fresh Blueberries, 18 oz. Container', 5.12, '066022002460', 'Fresh Blueberries are a delightful and nutritious treat that brings a burst of flavor to any dish. These plump and juicy berries are picked at the peak of freshness, ensuring a sweet and tangy taste that is hard to resist. Perfect for snacking, baking, or adding to your favorite recipes, these blueberries are a versatile fruit that can be enjoyed in countless ways. Whether you sprinkle them on top of your morning cereal, blend them into a smoothie, or bake them into a delicious pie, Fresh Blueberries are sure to satisfy your cravings for a healthy and delicious snack.', 'Are you ready to experience the vibrant taste and health benefits of Fresh Blueberries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Blueberries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. The versatility of blueberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these blue gems into your baking endeavors, whether it\'s muffins, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Our Fresh Blueberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness. Treat yourself to the delightful taste and nutritional benefits of Fresh Blueberries. Elevate your dishes, satisfy your cravings, and experience the joy of these plump and juicy berries. Order your batch today and unlock a world of flavor and wellness.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/66ee489f-0ddc-43b4-99ce-07c0a7bf886e_1.b805f72f3cafb54c77a036a6ab6f4ed4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/66ee489f-0ddc-43b4-99ce-07c0a7bf886e_1.b805f72f3cafb54c77a036a6ab6f4ed4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/66ee489f-0ddc-43b4-99ce-07c0a7bf886e_1.b805f72f3cafb54c77a036a6ab6f4ed4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (161304925, 'Watermelon Seeded, each', 6.47, '098843040314', 'short description is not available', 'Watermelon Seeded, each', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bf9c3233-0f6d-4fb6-a020-9ba5d9e26c7f_1.5cf6a6df3761717142d2a644edb907a4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bf9c3233-0f6d-4fb6-a020-9ba5d9e26c7f_1.5cf6a6df3761717142d2a644edb907a4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bf9c3233-0f6d-4fb6-a020-9ba5d9e26c7f_1.5cf6a6df3761717142d2a644edb907a4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (161770510, 'Pineapple & Mango With Tajin Spice 10 Oz', 2.48, '717524773869', 'short description is not available', 'Pineapple & Mango With Tajin Spice 10 Oz', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (161861341, 'Fresh Cantaloupe, Each', 2.5, '405544695017', 'Treat yourself to the refreshing flavor of a fresh Cantaloupe. Enjoy this tasty melon on its own as a healthy snack or incorporate it into a variety of delicious recipes. For breakfast, you can make a sweet fruit bowl with sliced cantaloupe, strawberries, pineapple, and kiwi. For an extra special treat, top with a dollop of whipped cream. Cut it into small pieces and put it in a fresh salad along with chicken, cucumbers, tomatoes, and a light dressing. You can even use cantaloupe to make a refreshing summer cocktail, a spreadable jam or a light sorbet. Enjoy the sweet and juicy taste of fresh Cantaloupe.', 'Ideal addition to every kitchen Flavorful addition to many recipes Enjoy on its own or add to a mixed fruit salad Add to your fresh garden salad Get creative & make a cantaloupe cocktail or a refreshing sorbet Explore all the delicious ways to add fresh cantaloupe to your favorite recipes', 'Unbranded', 'https://i5.walmartimages.com/asr/cf901ec3-9e25-4e79-ab8b-296b6e94d3e6.aa2c19f4402d076204c6eead51241c30.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cf901ec3-9e25-4e79-ab8b-296b6e94d3e6.aa2c19f4402d076204c6eead51241c30.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cf901ec3-9e25-4e79-ab8b-296b6e94d3e6.aa2c19f4402d076204c6eead51241c30.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (162229317, 'Yellow Nectarine, 1 lb Carton', 4.47, '078742037479', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh California Grown White Nectarines', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (162344814, 'Walmart Produce Caito Fruit Platter With Dip 32 Oz', 6.98, '081851834211', 'short description is not available', 'Walmart Produce Caito Fruit Platter With Dip 32 Oz', 'WALMART PRODUCE', 'https://i5.walmartimages.com/asr/5bbf8d6e-030e-4e57-9791-12fc106f3d99_1.0d9b4c5d5d69be19093a8fb7a0a87125.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5bbf8d6e-030e-4e57-9791-12fc106f3d99_1.0d9b4c5d5d69be19093a8fb7a0a87125.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5bbf8d6e-030e-4e57-9791-12fc106f3d99_1.0d9b4c5d5d69be19093a8fb7a0a87125.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (162405584, '15# Bag Grapefruit', 5.98, '033383125107', 'short description is not available', '15# Bag Grapefruit', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (162577028, 'Fresh Navel Orange, Each', 0.98, '649370331538', 'Enjoy the juicy goodness of Fresh Navel Oranges (China Nebo). A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these navel oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Fresh Navel Oranges add flavor to any meal or beverage.', 'Fresh Navel Orange, Each Great source of vitamin C Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast Adds flavor to a variety or recipes Use as a garnish for your favorite cocktail Make sweet desserts like ambrosia, orange bars, and orange pie Available by the each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/be6fbf0c-9e03-4540-9fdd-e75c01e4d545.54cac44316eb806f46fb15e2189994ba.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/be6fbf0c-9e03-4540-9fdd-e75c01e4d545.54cac44316eb806f46fb15e2189994ba.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/be6fbf0c-9e03-4540-9fdd-e75c01e4d545.54cac44316eb806f46fb15e2189994ba.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (162707289, 'Bi-Color Seedless Grapes, per lb', 6.98, '850905002155', 'Bi-Color Seedless Grapes, 2 Lb.', 'Bi-color Seedless Grapes 32 Oz Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (162762710, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094341209', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (162889456, 'Eastern Cantaloupe Bag', 3.28, 'deleted_896071002254', 'short description is not available', 'Eastern Cantaloupe Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2374b61b-4660-49ec-9578-770c29ef23a8_1.d9df3b6f4d875882ee05cca3e59e4899.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2374b61b-4660-49ec-9578-770c29ef23a8_1.d9df3b6f4d875882ee05cca3e59e4899.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2374b61b-4660-49ec-9578-770c29ef23a8_1.d9df3b6f4d875882ee05cca3e59e4899.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (163251761, 'Fresh Cored Pineapple', 1.97, '224145000002', 'short description is not available', 'Fresh Cored Pineapple', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (163337767, 'Melon Medly', 5.33, '893268001007', 'short description is not available', 'Melon Medly', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (163376993, 'Organic Pineapple Chunks, 10oz', 3.38, '074641082336', '1 Tray of Organic Pineapple 10oz', 'ORG PINEAPPLE 10Z TF', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1e926209-a257-4099-9830-a8df28b1db3d_6.20546656a1b94b2330f22f14ae0b40f5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1e926209-a257-4099-9830-a8df28b1db3d_6.20546656a1b94b2330f22f14ae0b40f5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1e926209-a257-4099-9830-a8df28b1db3d_6.20546656a1b94b2330f22f14ae0b40f5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (163541275, 'Fresh Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094357347', 'Fresh Grown Yellow Nectarines, 1 Lb.', 'Fresh Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (163701608, 'Fresh Strawberries 1#', 1.56, '400094383148', 'short description is not available', 'Fresh Strawberries 1#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (164237236, 'Gala Apples 3 Lb Bag', 3.42, '405559309794', 'short description is not available', 'Gala Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (164619042, 'Freshness Guaranteed Red Apple Slices, 32 oz', 5.97, '077745250564', 'Enjoy the sweet, refreshing taste of Freshness Guaranteed Red Apple Slices. These pre-cut slices are great for breakfast, lunch, dessert, or when you want a snack. Apples are a good source of vitamin C, fiber, and potassium making them an excellent healthy treat. You can eat the slices right out of the container, serve with a dollop of peanut butter for a sweet treat, or cover them in nutmeg and cinnamon and bake in the oven for a mouthwatering dish. With 32-ounces in each container, these apples are great for sharing with friends and family or keeping it for yourself. Them come in a re-closable container to help maintain freshness. Bring home Freshness Guaranteed Red Apples Slices today for a refreshing, healthy treat. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Red Apple Slices, 32 oz Sweet, refreshing treat Great for breakfast, lunch, dessert, or when you want a snack Good source of vitamin C, fiber, and potassium Enjoy right out of the container, serve with a dollop of peanut butter, or cover in nutmeg and cinnamon and bake Share with friends and family or keep for yourself Comes in a re-closable container to help maintain freshness', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/f850ec9d-cfbd-4195-8b43-ed4ecdb67363.95c16960cede460b9c86e0cb2918df5a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f850ec9d-cfbd-4195-8b43-ed4ecdb67363.95c16960cede460b9c86e0cb2918df5a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f850ec9d-cfbd-4195-8b43-ed4ecdb67363.95c16960cede460b9c86e0cb2918df5a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (165531610, 'Fresh Organic Black Grapes', 4.78, '405526052623', 'short description is not available', 'Fresh Organic Black Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (165632982, 'Yellow Flesh Peaches, per Pound', 1.58, '400094345580', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (165736144, 'Fuji Apples, 8 lb Bag', 7.98, '033383007007', 'Fuji Apples, 8 lb Bag', 'Fuji Apples 8 Pound Bag Satisfaction guaranteed. For more information call 1-877-505-2267 or visit Walmart.com/help', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (166122433, 'Organic Cantaloupe', 3.98, '098843940508', 'short description is not available', 'Organic Cantaloupe', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (166231970, 'Fieldpack Unbranded Fresh Strawberries 2#', 3.42, 'deleted_400094170885', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 2#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (166239443, 'Fresh Manzana (Apples) Jonagold, 1 lb, Package, Sweet', 1.68, 'deleted_400094433478', 'Looking for the perfect apple? Fresh Jonagold apples are a sweet, juicy, and versatile option for all your snacking and baking needs. With a crisp texture and a balanced flavor, these apples are perfect for pies, tarts, and other baked goods. Their beautiful blend of red and yellow skin makes them an attractive addition to any fruit basket or decorative display. Enjoy the delicious taste of Jonagold apples today!', 'Jonagold apples are a hybrid variety, combining the best features of Jonathan and Golden Delicious apples. They have a sweet and tangy flavor with a crisp texture, making them a versatile apple for a variety of uses. High in dietary fiber, vitamin C, and antioxidants for a healthy snack option - Great for baking and cooking, retaining their shape and flavor when heated. Jonagold apples are available year-round, making them a reliable choice for any occasion. They have a long shelf life and can be stored for several months when kept in a cool, dry place.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/71cd183d-aa98-4033-bd3f-05428a1a4215.a650133cdb53a8bb5908c7d0e9a67b14.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71cd183d-aa98-4033-bd3f-05428a1a4215.a650133cdb53a8bb5908c7d0e9a67b14.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71cd183d-aa98-4033-bd3f-05428a1a4215.a650133cdb53a8bb5908c7d0e9a67b14.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (166339270, 'Grapefruit Gift Box', 12.88, '072240062438', 'short description is not available', 'Grapefruit Gift Box', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (166399725, 'Lil Snappers Bosc Pears, 3 lb', 5.98, 'deleted_741839007203', 'Pears, Bosc, Lil Snappers, Bag 3 LB Dense and buttery smooth. Sweet, spicy flavor. Kid size fruit. Scan me! Resealable. World famous fruit. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. Follow us YouTube; Facebook; Twitter; Pinterest. For fun recipes activities and more, visit www.lilsnappers.com. Responsible choice. Fruits & veggies more matters. US No. 1. 2-1/8 inch min dia. Produce of USA. 3 lb (1.36 kg) Wenatchee, WA 98801', 'Pears, BoscDense and buttery smooth. Sweet, spicy flavor. Kid size fruit. Scan me! Resealable. World famous fruit. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. Follow us YouTube; Facebook; Twitter; Pinterest. For fun recipes activities and more, visit www.lilsnappers.com. Responsible choice. Fruits & veggies more matters. US No. 1. 2-1/8 inch min dia. Produce of USA.', 'Stemilt', 'https://i5.walmartimages.com/asr/18636883-ae4f-46e3-bdc3-bcba1c7b2783_1.70452e8e1472416a006cb9c1f4c9c254.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18636883-ae4f-46e3-bdc3-bcba1c7b2783_1.70452e8e1472416a006cb9c1f4c9c254.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18636883-ae4f-46e3-bdc3-bcba1c7b2783_1.70452e8e1472416a006cb9c1f4c9c254.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (166855436, 'Freshness Guaranteed McIntosh Apples, 3 lb Bag', 3.88, '071208084598', 'Enjoy the juicy, bittersweet taste of Freshness Guaranteed McIntosh Apples. The McIntosh apple tastes like going home. Its traditional and subtle apple flavor makes it perfect for eating out of hand, but also adds a depth of flavor for baking, saucing and cider making. They come in a three-pound bag, so you can stock up and share them with others. Apples are proven to have major health benefits. You can eat an apple for weight loss as they are full of fiber, which helps you stay full, and they can fuel your immune system. Eat this fresh fruit as a snack or peel the skins off and mash them up to make applesauce. Create tarts, strudels and pies with them. Put them on sticks and dip them in caramel, chocolate or candy coating for handmade treats. However you choose to use them, Freshness Guaranteed McIntosh Apples add flavor to any meal. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Crisp & juicy Excellent snacking apple Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp & apple pie', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/84fa4d46-d30b-4df3-8854-899ae5cfb750.1b1269dc28980d35f0352e353d659184.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/84fa4d46-d30b-4df3-8854-899ae5cfb750.1b1269dc28980d35f0352e353d659184.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/84fa4d46-d30b-4df3-8854-899ae5cfb750.1b1269dc28980d35f0352e353d659184.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (166985214, 'Melon De Agua En Pedazos', 0.97, '204144000005', 'Melon De Agua En Pedazos', 'Hypermart Melon De Agua En Pedazos', 'Hypermart', 'https://i5.walmartimages.com/asr/834763c0-c2ba-4275-b2b6-91aaa313db02.2ee4efed122059ee6ad49968c3e11fbc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/834763c0-c2ba-4275-b2b6-91aaa313db02.2ee4efed122059ee6ad49968c3e11fbc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/834763c0-c2ba-4275-b2b6-91aaa313db02.2ee4efed122059ee6ad49968c3e11fbc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (167007975, 'Fresh Manzana (Apples) Fuji, Each', 1.72, 'deleted_400094273418', 'Enjoy the crisp and juicy taste of our fresh Fuji apples. Our farmers delicately grow these apples to ensure they are the freshest and highest quality. Made with organic ingredients, these apples are a healthy snack choice for any time of day. Perfect for baking, juicing, or eating plain, these apples are the perfect addition to your fresh produce selection. Try them today and taste the fresh difference!', 'Enjoy the crisp and juicy taste of our fresh Fuji apples. Our farmers delicately grow these apples to ensure they are the freshest and highest quality. Made with organic ingredients, these apples are a healthy snack choice for any time of day. Perfect for baking, juicing, or eating plain, these apples are the perfect addition to your fresh produce selection. Try them today and taste the fresh difference!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a8924898-d577-4073-b149-aa9955d2583b.4ec60638e6b9ea2ec88fb4218489a6d5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a8924898-d577-4073-b149-aa9955d2583b.4ec60638e6b9ea2ec88fb4218489a6d5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a8924898-d577-4073-b149-aa9955d2583b.4ec60638e6b9ea2ec88fb4218489a6d5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (167089070, 'Pinata Apples 5 Lb Bag', 6.92, '741839006978', 'short description is not available', 'Pinata Apples 5 Lb Bag', 'Unbranded', 'https://i5.walmartimages.com/asr/c77c576a-f65c-494c-9f9b-e9cfcf2423ea_1.15239987cf49d0bdc6ad7cc90bdebf14.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c77c576a-f65c-494c-9f9b-e9cfcf2423ea_1.15239987cf49d0bdc6ad7cc90bdebf14.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c77c576a-f65c-494c-9f9b-e9cfcf2423ea_1.15239987cf49d0bdc6ad7cc90bdebf14.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (167600391, 'Organic Pink Lady Apples, Bulk Each', 2.46, '847473000720', 'Welcome to my store! We print designs on clothes; t-shirts, sweatshirts, and hoodies. We\'re working with the best print providers around the world to get a high quality printing and good service. And we\'ll also do our best to satisfy our valued customers. Key Details : Condition : New brand with tag Material : 100% cotton Fit : classic fit, runs true to size Neckline : Round Neck Size: Please See the Size picture *****PLEASE ORDER THE 1 SIZE BIGGER T-SHIRT***** Returns & Exchanges : You can get a replacement if the product is not arrived, lost, or again if the print quality was low. Above all, please contact us if you have any queries or encounter difficulties with your order.', 'Polyester Machine Wash Soft fabric, stretchy, lightweight and breathable. Short sleeve, crew neck, casual trendy. Funny cute graphic shirts perfect for street , beach, party, dating, casual wear, work, vacation, outdoor, holiday, daily life etc. easy to match with your favorite skinny jeans or shorts.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/508e6487-0928-4f83-aaf5-0d602c668807.b5c1d4c0c83bdd8b8c4400b4e25c34cb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/508e6487-0928-4f83-aaf5-0d602c668807.b5c1d4c0c83bdd8b8c4400b4e25c34cb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/508e6487-0928-4f83-aaf5-0d602c668807.b5c1d4c0c83bdd8b8c4400b4e25c34cb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (167745190, 'Freshness Guaranteed Cantaloupe & Blueberries 10 Oz', 3.98, '681131305457', 'short description is not available', 'Freshness Guaranteed Cantaloupe & Blueberries 10 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (167862546, 'Rainier White Cherries, 1 Lb.', 7.97, '400094720134', 'Rainier White Cherries, 1 Lb.', 'Cherries Rainier Blancas', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (167869723, 'Walmart Produce Watermelon 9.5 Oz', 3.98, '077745244426', 'short description is not available', 'Walmart Produce Watermelon 9.5 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (168568908, 'Fresh Oranges, 5 Lb.', 6.47, '612920443388', 'Enjoy the fresh Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite adult beverage. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Oranges add flavor to any meal or beverage.', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Use as a garnish for your favorite adult beverage Enjoy on their own or in a variety of recipes', 'Unbranded', 'https://i5.walmartimages.com/asr/c09f46c4-878b-493f-b3b6-4cd356e2b7f1.d2b8ef9c80daeb9c8ccf07a74e201081.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c09f46c4-878b-493f-b3b6-4cd356e2b7f1.d2b8ef9c80daeb9c8ccf07a74e201081.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c09f46c4-878b-493f-b3b6-4cd356e2b7f1.d2b8ef9c80daeb9c8ccf07a74e201081.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (168653438, 'Fresh Sour Orange, Each', 0.38, '000000031097', 'Enjoy the juicy goodness of Fresh Navel Oranges (China Nebo). A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these navel oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Fresh Navel Oranges add flavor to any meal or beverage', 'A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2dd32fb4-3f23-49f6-91f0-7eed4150be5c.42d436251700b42dc6a471fb0a4ecc62.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2dd32fb4-3f23-49f6-91f0-7eed4150be5c.42d436251700b42dc6a471fb0a4ecc62.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2dd32fb4-3f23-49f6-91f0-7eed4150be5c.42d436251700b42dc6a471fb0a4ecc62.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (168714720, 'Fresh Organic Fuji Apples Bulk, Each', 2.46, '032601505813', 'Indulge in the crisp sweetness of organic fuji apples, available in bulk for a healthy snack or delicious addition to your favorite recipes.', 'Polyester Organic: Grown without synthetic pesticides, herbicides, or fertilizers Fresh: Freshly harvested and delivered to ensure optimal taste and texture Crisp Sweetness: Enjoy the classic Fuji apple flavor and texture Healthy Snack: A great option for a quick and healthy snack Versatile: Perfect for adding to salads, baking, or making delicious apple products', 'Unbranded', 'https://i5.walmartimages.com/asr/a6095dce-02d3-48bf-811f-e5a3c1fbae1e.317803027376a5cf26f89872f83a94cc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6095dce-02d3-48bf-811f-e5a3c1fbae1e.317803027376a5cf26f89872f83a94cc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6095dce-02d3-48bf-811f-e5a3c1fbae1e.317803027376a5cf26f89872f83a94cc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (168800956, 'Zestar Apples 5 Lb Bag', 4.92, '879329003609', 'short description is not available', 'Zestar Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (169065641, 'Mandarina China, 1 Lb.', 1.88, '405719377823', 'Mandarina China, 1 Lb.', 'China Mandarina Caja 33lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1271f7d9-bff0-4d07-8f75-038eff6274ff.d3e1d3735cd356bc2abe2b9f017c9a25.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1271f7d9-bff0-4d07-8f75-038eff6274ff.d3e1d3735cd356bc2abe2b9f017c9a25.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1271f7d9-bff0-4d07-8f75-038eff6274ff.d3e1d3735cd356bc2abe2b9f017c9a25.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (169150590, 'Hay Bale', 8.88, '892134002070', 'short description is not available', 'Hay Bale', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (169248215, 'Organic Tangelos, 3 Lb.', 3.76, '080612150034', 'Organic Tangelos, 3 Lb.', 'Organic 3# Bag Tangelo', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (169296662, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094210260', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (169753573, 'Virgina Gold Apple Totes', 0.98, '681131124133', 'short description is not available', 'Virgina Gold Apple Totes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (169772273, 'Fresh Chilean Grown Green Grapes', 2.28, 'deleted_812985018020', 'short description is not available', 'Fresh Chilean Grown Green Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (170125816, 'Fresh Red Grapefruit, 3 lb Bag', 4.98, '033383911120', 'Grapefruit is the perfect balance between tart and sweet. The balance between tart and sweet is great for both savory and sweet dishes any time of day. Enjoy half of a grapefruit sprinkled with sugar with some eggs in the morning for a light, sweet breakfast. Slice it up and put in a salad with spinach, avocado, and red onion topped with a mustard and balsamic vinegar dressing for lunch or dinner. Make delicious grapefruit bars that showcase the sweet and tartness of this versatile fruit. For an adult recipe juice the grapefruit and pair with some simple syrup and alcohol for a refreshing cocktail. This fruit is the perfect addition to a healthy diet as it is a great source of vitamin C and vitamin A. With such versatility, Grapefruit will become a pantry staple in your home.', 'Great for both savory and sweet dishes Enjoy it for breakfast, lunch, dinner, or dessert Enjoy half a grapefruit sprinkled with sugar in the morning, slice it up and put it in salad for lunch or dinner, or make grapefruit bars Great source of vitamin C and vitamin A', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9183bc36-5af9-4986-bb8b-d0051507c3fe.990659cf83a79a12424f34a36a70d080.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9183bc36-5af9-4986-bb8b-d0051507c3fe.990659cf83a79a12424f34a36a70d080.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9183bc36-5af9-4986-bb8b-d0051507c3fe.990659cf83a79a12424f34a36a70d080.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (170703872, 'Watermelon Seedless', 4.48, '400094579503', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (170737646, 'Fresh Driscoll\'s USDA Organic Strawberry, 8.8 oz Container', 2.48, '812049005300', 'The sweet, juicy flavor of Fresh USDA Organic Strawberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. These organic berries contain essential vitamins and nutrients like, vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh USDA Organic Strawberries today and savor the delectable flavor.', 'Fresh USDA Organic Strawberries, 8.8 oz Package: Certified organic Prior to serving gently wash the strawberries and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bc56dbdd-df40-49c5-8519-c224ea93dfd9_1.bd10c35f8f55ed1ced9774b81e3c902b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc56dbdd-df40-49c5-8519-c224ea93dfd9_1.bd10c35f8f55ed1ced9774b81e3c902b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc56dbdd-df40-49c5-8519-c224ea93dfd9_1.bd10c35f8f55ed1ced9774b81e3c902b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (170794542, 'Fresh California Grown Apricots 16oz', 2.98, 'deleted_813187010584', 'short description is not available', 'Fresh California Grown Apricots 16oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (170820340, 'Walmart Produce Pineapple Mango 16 Oz', 3.98, '030223082347', '1 Tray of 10oz Red Grapes', 'Fresh picked red grapes', 'WALMART PRODUCE', 'https://i5.walmartimages.com/asr/e722f9f9-e1fe-4e58-add3-a3b67455b315.1b37f274658e2c1f8e79a3ce37036968.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e722f9f9-e1fe-4e58-add3-a3b67455b315.1b37f274658e2c1f8e79a3ce37036968.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e722f9f9-e1fe-4e58-add3-a3b67455b315.1b37f274658e2c1f8e79a3ce37036968.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (171284729, 'Sprite Melon 2ct Bag', 1.98, '896071002247', 'short description is not available', 'Sprite Melon 2ct Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (171385002, 'Del Monte Fresh Honeydew Half 32 Oz', 2.68, '717524889041', 'short description is not available', 'Del Monte Fresh Honeydew Half 32 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (171411617, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094950081', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (171918306, 'Sweet Tamarind, 16 Oz.', 6.97, '400094288795', 'Sweet Tamarind, 16 Oz.', 'Tamarindo Sweet', 'Unbranded', 'https://i5.walmartimages.com/asr/2066f2d6-b632-477b-97cb-1054a712b50b.4b01468ce3faf911ddc2d002e98fd82b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2066f2d6-b632-477b-97cb-1054a712b50b.4b01468ce3faf911ddc2d002e98fd82b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2066f2d6-b632-477b-97cb-1054a712b50b.4b01468ce3faf911ddc2d002e98fd82b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (172214974, 'Stemilt Lil Snappers Apples, 3 Lb.', 4.87, '741839005919', 'Apples, Granny Smith, Lil Snappers, Bag 3 LB Crisp with lemon-like tartness. Kid size fruit. Scan me! Resealable. World famous fruit. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. Follow us YouTube; Facebook; Twitter; Pinterest. For fun recipes activities and more, visit www.lilsnappers.com. Responsible choice. Fruits & veggies more matters. Meets or exceeds U.S. extra fancy. 2-1/2 inch min dia. Produce of USA. 3 lb (1.36 kg) Wenatchee, WA 98801', 'Apples, Granny SmithCrisp with lemon-like tartness. Kid size fruit. Scan me! Resealable. World famous fruit. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. Follow us YouTube; Facebook; Twitter; Pinterest. For fun recipes activities and more, visit www.lilsnappers.com. Responsible choice. Fruits & veggies more matters. Meets or exceeds U.S. extra fancy. 2-1/2 inch min dia. Produce of USA.', 'Stemilt', 'https://i5.walmartimages.com/asr/2f348f18-f5aa-46c0-b193-133b0eb10088.fd788e8c5b72d9e96f5d56b405fa8434.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f348f18-f5aa-46c0-b193-133b0eb10088.fd788e8c5b72d9e96f5d56b405fa8434.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f348f18-f5aa-46c0-b193-133b0eb10088.fd788e8c5b72d9e96f5d56b405fa8434.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (172276419, 'Fresh Goldenberries, 6 oz Container', 2.48, '405559979836', 'The sweet, juicy flavor of Goldenberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes or yogurt, use them to make mouthwatering jam, mix them with other fruit for a light and flavorful salad, or add them to a creamy smoothie. They contain essential vitamins and nutrients like vitamin C, fiber, iron, vitamin A and beta-carotene making them perfect for a healthy diet. Prior to serving simply gently wash them with cool water and enjoy the fresh taste. Refrigerate the berries to keep them fresh and ready for use. Pick up Goldenberries today and savor the delectable flavor.', 'Best when enjoyed at room temperature Tangy, tropical, and sweet taste Also known as Cape Gooseberries Prior to serving gently wash them with cool water Refrigerate your berries in the original container to maintain freshness, they should approximately last 3-5 days after purchase Keep dry for optimal freshness', 'Unbranded', 'https://i5.walmartimages.com/asr/ab53bbf1-3f9e-47cd-aeb6-d246dc8b29d5.6ce7aefc36632be8ad2817a7969c9aca.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ab53bbf1-3f9e-47cd-aeb6-d246dc8b29d5.6ce7aefc36632be8ad2817a7969c9aca.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ab53bbf1-3f9e-47cd-aeb6-d246dc8b29d5.6ce7aefc36632be8ad2817a7969c9aca.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (172511418, 'Granny Smith Apples 3 Lb Bag', 4.98, 'deleted_033383022116', 'short description is not available', 'Granny Smith Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (172874380, 'Fresh Peruvian Grown Green Grapes', 1.98, 'deleted_775403000017', 'short description is not available', 'Fresh Peruvian Grown Green Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (172893349, 'Snack Fresh Red Apple Slices, 4ct, 10 oz', 3.68, '074641070005', 'short description is not available', 'Snack Fresh Red Apple Slices, 4ct, 10oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f404bff6-0dcf-4860-adb6-0f188a721fd6.e3b1fe8a469684df85283118cf7ede07.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f404bff6-0dcf-4860-adb6-0f188a721fd6.e3b1fe8a469684df85283118cf7ede07.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f404bff6-0dcf-4860-adb6-0f188a721fd6.e3b1fe8a469684df85283118cf7ede07.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (173070552, 'Cantaloupe Spears 32oz', 6.98, '030223082484', 'Cantaloupe Spears 32oz', 'Cantaloupe Spears 32oz', 'WALMART PRODUCE', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (173115427, 'Fresh Cherries, 1 lb Bag', 7.97, '400094304402', 'Cherries are a household favorite- great as a snack, the perfect addition to morning breakfasts in oatmeal or yogurt, a great ingredient for baking or salad toppings, and are a perfect stand-alone snack- even for your child’s lunch box! Our family cookie recipe including these cherries is a major hit among our family and friends', 'Fresh Cherries are good source of potassium Great for snacking Great for baking or salad topping', 'Unbranded', 'https://i5.walmartimages.com/asr/b1f64bb9-11a3-4258-8d29-43797ec94dbd.cd5b884e9c562bc7b61adf10abf9a365.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b1f64bb9-11a3-4258-8d29-43797ec94dbd.cd5b884e9c562bc7b61adf10abf9a365.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b1f64bb9-11a3-4258-8d29-43797ec94dbd.cd5b884e9c562bc7b61adf10abf9a365.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (174155646, 'Canning Peach, 16 lb Carton', 18, '033383284736', 'Canning Peaches, 16 Lb.', 'Canning Peaches 16 Lbs', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (174250135, 'Star Fruit, 10 oz container', 6.97, '400094287880', 'The Star Fruit, in a 10 oz container, is a tropical wonder that will transport your taste buds on a journey to paradise. This unique fruit, also known as carambola, is aptly named for its distinctive star-shaped appearance. Grown in lush, sun-drenched orchards, the Star Fruit boasts a vibrant yellow color and a smooth, waxy skin. Its unique shape and bright hue make it a visually striking addition to any fruit display or recipe. When you slice into the Star Fruit, you\'ll be greeted with a sight that is as beautiful as it is delicious. Each slice reveals a perfect star shape, making it a stunning addition to fruit salads, desserts, or even cocktails. But it\'s not just the appearance that makes the Star Fruit special. The taste is truly something to savor. With a flavor profile that is a delightful blend of sweet and tangy, the Star Fruit offers a refreshing burst of tropical goodness. Its juicy flesh is crisp and succulent, leaving a lingering citrusy note on your palate. Perfectly ripened and carefully selected, the 10 oz container of Star Fruit ensures that you\'ll have plenty to enjoy. Whether you\'re indulging in a healthy snack, creating a tropical-inspired dish, or simply wanting to experience the exotic flavors of the tropics, the Star Fruit in a 10 oz container is a delicious and visually stunning choice.', 'Carambola', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/59f9a143-ba57-4e06-8f3d-3eda0c4b8419.40034ea258fba271104e368f9940c918.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59f9a143-ba57-4e06-8f3d-3eda0c4b8419.40034ea258fba271104e368f9940c918.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59f9a143-ba57-4e06-8f3d-3eda0c4b8419.40034ea258fba271104e368f9940c918.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (174311984, 'WHOLLY GUACAMOLE Homestyle, 8 oz', 3.38, '616112278680', 'Need a little flavor in your day? We have an easy way to make your meals OMGuac! WHOLLY GUACAMOLE Homestyle Guacamole contains precut chunks of 100% Hass avocados with diced veggies to give you that homemade taste without any of the hassle. Dip it with veggies and pretzels. Top it on burgers and salads. Spread it on sandwiches and wraps. Love it! Every meal of the day (and some in between!). Goodbye mayo, hello Guac! Dip it, top it, spread it, love it. WHOLLY GUACAMOLE is a trademark of Avomex, Inc.', 'That homemade taste without the hassle of tricky avocados America’s #1 selling refrigerated guacamole Keep refrigerated 50 calories per serving No Preservatives added and gluten free', 'WHOLLY GUACAMOLE', 'https://i5.walmartimages.com/asr/1a1624bf-00e9-4395-9a6f-6524862cb843_1.cabf369b117a45811436156b4ddb2efe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a1624bf-00e9-4395-9a6f-6524862cb843_1.cabf369b117a45811436156b4ddb2efe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a1624bf-00e9-4395-9a6f-6524862cb843_1.cabf369b117a45811436156b4ddb2efe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (174349019, 'Granny Smith Apple Totes', 0.98, '681131124157', 'short description is not available', 'Granny Smith Apple Totes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (175768727, 'Missing Key Attributes : This title includes key attributes such as \'food condition\', but is missing others such as \'flavor notes\'.', 5.47, '033383300054', 'Treat yourself to the delicious, sweet taste of Fresh Anjou Pears.Enjoy one with breakfast or lunch or as a fresh snack any time of day. Best of all, these delicious pears have a dense flesh that holds up well when cooked. They can be used for baking, snacking, salads, pairing, or made into a delicious sauce that pairs perfectly with pork. Try incorporating them into soups and compotes or using to make yummy jam or juice. They are delicious when sliced fresh in salads or eaten out-of-hand for a refreshing snack. You can even pair them with sharp cheeses and crackers to create a stunning appetizer cheese board to share with guests. The possibilities are endless with Anjou Pears.', '- D\'Anjou pears are a classic variety known for their sweet, juicy flavor and smooth, firm texture - They are versatile and can be used in a variety of dishes, from salads to desserts - High in dietary fiber and vitamin C, making them a healthy snack option - The 3lb bag size is convenient for families and individuals looking for a larger supply of fresh pears - D\'Anjou pears are harvested at their peak ripeness and carefully packed to ensure maximum freshness and flavor - They have a long shelf life and can be stored in the refrigerator for up to 2-3 weeks - D\'Anjou pears are available year-round, making them a reliable choice for any occasion.', 'Unbranded', 'https://i5.walmartimages.com/asr/1768e8ef-865f-48d4-912f-b986d583fdf5.08b640e3e963a277c891bfd44fa1dbd6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1768e8ef-865f-48d4-912f-b986d583fdf5.08b640e3e963a277c891bfd44fa1dbd6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1768e8ef-865f-48d4-912f-b986d583fdf5.08b640e3e963a277c891bfd44fa1dbd6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (176153950, 'Freshness Guaranteed Red Grapes, 10 oz', 3.63, 'deleted_681131036603', 'Freshness Guaranteed Red Grapes, 10 oz', 'Red Grapes 10 Ounce Freshness Guaranteed Return the package for replacement or money back. 1-877-505-2267 or visit Walmart.com/help', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (176166715, 'Fuji Apples 3 Lb Bag', 3.42, '847473005718', 'short description is not available', 'Fuji Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (176179556, 'Red Delicious Apples 5 Lb Bag', 4.93, '405559310042', 'short description is not available', 'Red Delicious Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (176509402, 'Jicama Slices W/ Tajin 10 Oz', 2.58, '074641012661', 'short description is not available', 'Jicama Slices W/ Tajin 10 Oz', 'Country Fresh', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (176531588, 'Organic Bartlett Pears, Each', 1.58, '000000944090', 'Our Organic Bartlett Pears come in a full bag of delicious and juicy fresh produce. Each pear is whole and ready to be consumed as a healthy snack or used in your favorite recipes. These pears are hand-picked to ensure only the highest quality, giving you a sweet flavor with a soft texture. Order now and enjoy the taste of a perfectly ripened Bartlett Pear!', 'Each pear is medium to large in size, with a bell-shaped body that tapers towards the stem. The skin of the Organic Bartlett Pear is thin, smooth, and bright green-yellow in color, with occasional red blushes. The flesh of the pear is aromatic, with a creamy, white color that is tender and juicy. The flavor of the Organic Bartlett Pear is sweet and mellow, with a subtle hint of citrus. These pears are certified organic, which means that they are grown without the use of synthetic pesticides, fertilizers, or genetically modified organisms (GMOs). Organic Bartlett Pears are a good source of fiber, vitamin C, and antioxidants, making them a healthy and delicious addition to any diet. Whether eaten fresh or cooked, Organic Bartlett Pears are a tasty and nutritious choice for pear lovers. The skin of the Organic Bartlett Pear is thin, smooth, and bright green-yellow in color, with occasional red blushes. The flesh of the pear is aromatic, with a creamy, white color that is tender and juicy. The flavor of the Organic Bartlett Pear is sweet and mellow, with a subtle hint of citrus. These pears are certified organic, which means that they are grown without the use of synthetic pesticides, fertilizers, or genetically modified organisms (GMOs). Organic Bartlett Pears are a good source of fiber, vitamin C, and antioxidants, making them a healthy and delicious addition to any diet. Whether eaten fresh or cooked, Organic Bartlett Pears are a tasty and nutritious choice for pear lovers. The flesh of the pear is aromatic, with a creamy, white color that is tender and juicy. The flavor of the Organic Bartlett Pear is sweet and mellow, with a subtle hint of citrus. These pears are certified organic, which means that they are grown without the use of synthetic pesticides, fertilizers, or genetically modified organisms (GMOs). Organic Bartlett Pears are a good source of fiber, vitamin C, and antioxidants, making them a healthy and delicious addition to any diet. Whether eaten fresh or cooked, Organic Bartlett Pears are a tasty and nutritious choice for pear lovers. The flavor of the Organic Bartlett Pear is sweet and mellow, with a subtle hint of citrus. These pears are certified organic, which means that they are grown without the use of synthetic pesticides, fertilizers, or genetically modified organisms (GMOs). Organic Bartlett Pears are a good source of fiber, vitamin C, and antioxidants, making them a healthy and delicious addition to any diet. Whether eaten fresh or cooked, Organic Bartlett Pears are a tasty and nutritious choice for pear lovers.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/816d781a-3b62-4c72-9cd2-1f2d7a319a3d_1.ca76075635d3893113edaf1998aab3c7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/816d781a-3b62-4c72-9cd2-1f2d7a319a3d_1.ca76075635d3893113edaf1998aab3c7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/816d781a-3b62-4c72-9cd2-1f2d7a319a3d_1.ca76075635d3893113edaf1998aab3c7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (176985086, 'Taylor Fresh Gold Pears, Each', 1.67, '000000045537', 'Indulge in the freshness of Taylor Gold Pears, the perfect choice for a healthy lifestyle. Our premium quality pears are sourced from the best farms and are made with whole, organic ingredients. These juicy and delicious pears contain essential nutrients that make them a must-have in your daily diet. Whether you enjoy them as a snack or a part of your meal, Taylor Gold Pears are a great addition to any fresh produce basket.', 'Each pear is hand-selected for its crisp texture, juicy sweetness, and beautiful appearance. With their smooth, golden skin and delicate flavor, these pears are a true delight for the senses. Their firm texture makes them great for snacking on the go, while their natural sweetness makes them an excellent addition to your favorite recipes. Plus, they\'re packed with fiber, vitamin C, and other essential nutrients, making them a healthy choice for any time of day. Whether you\'re enjoying them as a quick snack or using them in a gourmet dish, our Taylor Gold Pears are sure to impress. So why wait? Grab one (or more!) today and experience the delicious taste and health benefits of this amazing fruit! Their firm texture makes them great for snacking on the go, while their natural sweetness makes them an excellent addition to your favorite recipes. Plus, they\'re packed with fiber, vitamin C, and other essential nutrients, making them a healthy choice for any time of day. Whether you\'re enjoying them as a quick snack or using them in a gourmet dish, our Taylor Gold Pears are sure to impress. So why wait? Grab one (or more!) today and experience the delicious taste and health benefits of this amazing fruit! Whether you\'re enjoying them as a quick snack or using them in a gourmet dish, our Taylor Gold Pears are sure to impress. So why wait? Grab one (or more!) today and experience the delicious taste and health benefits of this amazing fruit!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/56c85257-bd4e-457b-9e4d-3b595303ed8e.e80f2c313060ecb125ef1a4314858d69.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/56c85257-bd4e-457b-9e4d-3b595303ed8e.e80f2c313060ecb125ef1a4314858d69.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/56c85257-bd4e-457b-9e4d-3b595303ed8e.e80f2c313060ecb125ef1a4314858d69.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (177004160, 'Fresh White Peaches, 2 lb Bag', 3.98, '078742037462', 'Discover the delightful sweetness of these Fresh White Peaches. Enjoy them on their own as a sweet snack or use them in a variety of recipes. For breakfast, you could slice them to put into your oatmeal or use them to make a delicious yogurt parfait. You can also use these fresh peaches in several baking recipes including a comforting crisp topped with ice cream, a tasty upside-down cake, or a scrumptious tart. You can even use them to make a jam or a smooth sorbet. However you choose to use them, their sweet flavor will bring a smile to everyone\'s face. Treat the family to the irresistible taste of Fresh White Peaches.', 'Fresh White Peaches, 2 lb Bag Enjoy on their own as a satisfying snack Use in a variety of baking recipes Make a tasty jam or a smooth sorbet Slice as a sweet topping for waffles or pancakes Add to iced tea to create a refreshing summertime flavor', 'Unbranded', 'https://i5.walmartimages.com/asr/e22a5d89-835d-4b67-a72b-470c5cca1195.e535703db2ee9e3508f75572c6eb49c5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e22a5d89-835d-4b67-a72b-470c5cca1195.e535703db2ee9e3508f75572c6eb49c5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e22a5d89-835d-4b67-a72b-470c5cca1195.e535703db2ee9e3508f75572c6eb49c5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (177144025, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094659304', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (177249446, 'Watermelon With Tajin Spice 32 Oz', 7.78, '717524409126', 'short description is not available', 'Watermelon With Tajin Spice 32 Oz', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (177421246, 'Jonagold Apples 5 Lb Bag', 5.29, '847473005879', 'short description is not available', 'Jonagold Apples 5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (177823154, 'Gala Apples, 5 lb Tote', 0.98, '681131124171', 'Apples Gala 5# Tote', 'Gala 5 Pound Tote Satisfaction guaranteed. For more information call 1-877-505-2267 or visit Walmart.com/help', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d07ac182-4c8b-49ef-9654-83be0c52d2e2_1.c439c71883e000343a50e709a5660df4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d07ac182-4c8b-49ef-9654-83be0c52d2e2_1.c439c71883e000343a50e709a5660df4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d07ac182-4c8b-49ef-9654-83be0c52d2e2_1.c439c71883e000343a50e709a5660df4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (178283560, 'Fresh Aloe Leaf, Each', 1.67, '045255117264', 'Renowned for its versatility, Aloe Vera Leaves are sure to be a must-have in your home. Aloe Vera is known for its ability to help soothe sunburn and treat skin irritation with its cooling abilities. Its packed with vitamins and minerals that are great for your skin and even your hair. But it doesn\'t stop there! Aloe Vera is also edible and perfect for blending into smoothies and shakes for added nutrients. All you need to do is carefully slice the leaf open to reveal the clear gel inside. Scrape it out with a spoon and apply it to your skin or hair, or blend into your favorite drink. The possibilities are endless with Aloe Vera Leaves.', '1 piece per unit Fresh aloe vera is only available within the store\'s produce section 100% natural plant material Used as both a home remedy and for food and drink Also known as Sábila and Aloe Vera around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8e286b82-c071-46f8-a956-2462b685847d.242620a41b08ac767ca346350f56b39e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8e286b82-c071-46f8-a956-2462b685847d.242620a41b08ac767ca346350f56b39e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8e286b82-c071-46f8-a956-2462b685847d.242620a41b08ac767ca346350f56b39e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (178285011, 'Fresh Organic Nectarines, 2 lb Bag', 5.66, '849315000394', 'Savor the irresistible taste of these Fresh Organic Nectarines in 2# Bags. With a red and yellow coloration, these juicy nectarines are round, slightly heart-shaped with smooth skin. The flesh is soft and yellow with a sweet flavor and a slightly acidic taste. Certified USDA organic, these nectarines have a firm bite with juicy flesh. These are a great quick, healthy snack for on-the-go people. You could also slice them for kids\' snacks and lunches. These also make a great addition to the grill for a delicious summer barbeque. Treat the entire family to the sweet flavor of Fresh Organic Nectarines.', 'Fresh Organic Nectarines, 2 lb Bag Certified USDA organic Packaged in a resealable bag to maintain freshness Add to baked goods for a unique flavor Use to top your salad for extra flavor or make a tasty fruit salad Pair with meat, poultry, and fish Slice as a sweet topping for waffles or pancakes Add to iced tea to create a refreshing summertime flavor', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f42523cf-104d-40d8-8ab2-e9fd59af1dbd.f37a1b293b03fa5f369807b8431de7aa.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f42523cf-104d-40d8-8ab2-e9fd59af1dbd.f37a1b293b03fa5f369807b8431de7aa.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f42523cf-104d-40d8-8ab2-e9fd59af1dbd.f37a1b293b03fa5f369807b8431de7aa.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (178326488, 'Watermelon Seedless', 4.98, '400094408568', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (178655432, 'Ida Red Apple Totes', 0.98, '681131124270', 'short description is not available', 'Ida Red Apple Totes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (178786074, 'Garden Highway Watermelon 16oz Rfg', 3.88, '826766255160', 'short description is not available', 'Garden Highway Watermelon 16oz Rfg', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (178839795, '120pc Apl Red Del 5#', 656.4, '405667978424', 'short description is not available', '120pc Apl Red Del 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (179052840, 'Good Foods Tableside Greek Yogurt Guacamole', 3.56, '736798901884', 'with simple, kitchen fresh ingredients, Good Foods Tableside Guacamole delivers superior tastes without compromise. We believe that real ingredients make really good foods; no need to add sugar, preservatives, dehydrated vegetables like some competitive offerings. Good Foods Tableside Guacamole is never heated – preserves the product flavor and nutrients. Good Foods harnesses the power of cold water pressure to give us a preservative-free way to keep our guacamole fresher, longer.', 'Good Foods Tableside Greek Yogurt Guacamole, 7 oz. Made with Hand-Scooped, Fresh Hass Avocados and rBST-Free Greek Yogurt No Artificial Colors, Flavors or Preservatives', 'Good Foods', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (179099824, 'Fresh Black Seedless Grapes, lb', 6.98, '850859002034', 'Treat yourself to the delicious, juicy flavor of Fresh Black Seedless Grapes. These grapes are bursting with flavor and are completely seedless, so you can easily enjoy a handful as a fresh snack any time of day. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the fresh taste of Fresh Black Seedless Grapes.', 'Fresh Black Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ade17cfd-b528-426e-a4e8-1744cd837766.971df50b9d7a3b0325702e7ad6e46907.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ade17cfd-b528-426e-a4e8-1744cd837766.971df50b9d7a3b0325702e7ad6e46907.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ade17cfd-b528-426e-a4e8-1744cd837766.971df50b9d7a3b0325702e7ad6e46907.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (179493152, 'Fresh Papaya Chunks, 24oz', 7.67, '794504174823', 'Fresh Papaya is a tropical fruit that originated in the tropics of the Americas and is known to be a great source of vitamins C, A, fiber, and antioxidants. When ripe, this fruit has a butter-like texture with a fairly sweet flavor similar to cantaloupe and can be eaten raw.', 'Creamy, butter-like flavor when ripe Rich in vitamins A, C, fiber, and antioxidants Fairly sweet flavor like cantaloupe and mango Great addition to smoothies, salads, salsa, and more Delicious and nutritious', 'PRICO', 'https://i5.walmartimages.com/asr/72bfc24e-1bda-4bc4-aa2a-b25392dd537d.1b456f7450c3449fabe62df265577943.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/72bfc24e-1bda-4bc4-aa2a-b25392dd537d.1b456f7450c3449fabe62df265577943.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/72bfc24e-1bda-4bc4-aa2a-b25392dd537d.1b456f7450c3449fabe62df265577943.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (179637288, 'Pineapple Cut 12oz', 2.47, '826766217083', 'Pineapple Chunks 12 oz (340 g) No preservatives. Packed in its own juice. Product of Costa Rica. Keep refrigerated. 12 oz (340 g) Rancho Cordova, CA 95670 888-4-HWYFUN', 'Pineapple Chunks No preservatives. Packed in its own juice. Product of Costa Rica.', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (179839918, 'Regent Apple Totes', 0.98, '681131124386', 'short description is not available', 'Regent Apple Totes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (180088917, 'Rainier Cherries Frescos, 16 oz', 5.98, '852908002798', 'Cherries, Rainier 1 lb (454 g) World famous fruit. www.stemilt.com. Fruits & Veggies: More matters. Family owned since 1964. Facebook. Produce of USA. 1 lb (454 g) Wenatchee, WA 98801', 'Produce Unbranded Cherries Frescos 16 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/22d3a265-4cf7-4ab8-9a43-bf54c407b3b5.89711ba2a756bacf1dc4c2e26b842d40.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/22d3a265-4cf7-4ab8-9a43-bf54c407b3b5.89711ba2a756bacf1dc4c2e26b842d40.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/22d3a265-4cf7-4ab8-9a43-bf54c407b3b5.89711ba2a756bacf1dc4c2e26b842d40.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (180275380, 'Mixed Fruit 3 Lb Bag', 6.67, '810506011758', 'short description is not available', 'Mixed Fruit 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (180400255, 'Seedless Green Grapes, 2 lb bag', 3.96, 'deleted_813686010016', 'short description is not available', 'Green Grapes Seedless Bag, 2 lbs.', '', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (180576354, 'Motts Apples, 12 Count', 4.97, '095829201462', 'Apples, Sliced, Red 6 - 2 oz (57 g) bags [12 oz (340 g)] Hand-picked goodness. 6 individual bags. Ready to eat. Grown in USA. Keep refrigerated. 6 - 2 oz (57 g) bags [12 oz (340 g)] Eden Prairie, MN 55347 800-487-3245 2011 Mott\'s LLP', 'Mott\'s Sliced Red Apples - 6 CT.Motts is a Trademark of Mott\'s LLP.If you have any questions or comments abouts Mott\'s branded products please callGrown in Chile.1-800-487-3245.www.mottsfresh.com.©2011 Mott\'s LLP.', 'Mott\'s', 'https://i5.walmartimages.com/asr/3b6bb468-58bb-4d15-8916-edf6b7bb4a4e.0edf7b4d90814b8f43ec3bed949bea46.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3b6bb468-58bb-4d15-8916-edf6b7bb4a4e.0edf7b4d90814b8f43ec3bed949bea46.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3b6bb468-58bb-4d15-8916-edf6b7bb4a4e.0edf7b4d90814b8f43ec3bed949bea46.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (180842553, 'Yellow Flesh Peaches, per Pound', 1.58, '400094457054', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (180917271, 'China Nebo', 1.37, '400094287606', 'China Nebo', 'China Nebo 56', 'China Nebo', 'https://i5.walmartimages.com/asr/a134f2a1-2bb0-4e5c-a594-f84b63ab5928.22241f295458186b2ba0e4ed7d460d52.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a134f2a1-2bb0-4e5c-a594-f84b63ab5928.22241f295458186b2ba0e4ed7d460d52.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a134f2a1-2bb0-4e5c-a594-f84b63ab5928.22241f295458186b2ba0e4ed7d460d52.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (181108256, 'Fresh Lychees, 12 oz clamshell', 3.28, '037842054748', 'Also known as ?Lychee Nuts,? these small, unmistakably sweet fruits have rough, bumpy rinds that vary from red to pale-green blush. Inside, Lychees have perfumy, juicy, grape-like flesh that surrounds a single large, inedible seed.', 'Peel away outer skin; enjoy the juicy white flesh; discard inner seed; Keep refrigerated, wrapped in plastic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b5f75f25-17a2-4b7f-b3d4-bb835fa046c9.5bfbb286548ea8cc7f62921918290852.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b5f75f25-17a2-4b7f-b3d4-bb835fa046c9.5bfbb286548ea8cc7f62921918290852.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b5f75f25-17a2-4b7f-b3d4-bb835fa046c9.5bfbb286548ea8cc7f62921918290852.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (181116726, 'Large Avocado 4 Count Bag', 4.48, 'deleted_010612042251', 'short description is not available', 'Large Avocado 4 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (181474285, 'Walmart Produce Watermelon Quarters 2.5 Lb', 3.28, '074641012609', 'short description is not available', 'Walmart Produce Watermelon Quarters 2.5 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (181937951, 'Seedless Green Grapes, 2 lb bag', 3.96, 'deleted_885282001583', 'short description is not available', 'Green Grapes Seedless Bag, 2 lbs.', '', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (182168416, 'Fresh Dark Sweet California Cherries, Half Pint', 2.98, '845762088886', 'Fresh Dark Sweet California Cherries, Half Pint', 'Fresh Dark Sweet California Cherries', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (182199131, 'Organic Tropical Divine Grapes 1lb', 3.98, '816426013049', 'short description is not available', 'Organic Tropical Divine Grapes 1lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (182199330, 'Snack Fresh Red Grapes, 4ct, 12oz', 3.78, '074641070012', 'short description is not available', 'Snack Fresh Red Grapes, 4ct, 12oz', 'Snack Fresh', 'https://i5.walmartimages.com/asr/f8b9b0ce-edd8-425d-b628-8079742e2dfe.245e22e82c4f4d34934d92813d9f5af0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f8b9b0ce-edd8-425d-b628-8079742e2dfe.245e22e82c4f4d34934d92813d9f5af0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f8b9b0ce-edd8-425d-b628-8079742e2dfe.245e22e82c4f4d34934d92813d9f5af0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (182237089, 'Fresh Gala Apples, 5 lb Bag', 5, '033383087016', 'Gala apples are the perfect snack for anyone who loves fresh produce. These whole, juicy apples make for a sweet and satisfying treat. With no added sugar, you can feel good about snacking on these crisp and delicious fruits. Great for lunchboxes or as a midday snack, Gala apples are a must-have for anyone looking for a healthy and delicious snack option.', 'Fresh Gala Apples, 5 lb Bag: Sweet and mild with a subtle floral aroma Perfect for breakfast, lunch, dinner, and dessert Chop them up and add to a salad, add them to a smoothie or juice blend, or serve with peanut butter Perfect for snacking They have a creamy white flesh with low acidityFresh Gala Apples, 5 lb Bag: Includes 5 pounds of crisp apples Pair them with sharp cheeses and crackers for a stunning appetizer board Can be enjoyed fresh or cooked into both savory and sweet dishes Meets or exceeds U.S. Extra Fancy Minimum diameter: 2.25\"', 'Generic', 'https://i5.walmartimages.com/asr/c3a11866-043d-4cc2-88e1-994b0ef03d6c.468c36bb784022682bf220a2f872335c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c3a11866-043d-4cc2-88e1-994b0ef03d6c.468c36bb784022682bf220a2f872335c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c3a11866-043d-4cc2-88e1-994b0ef03d6c.468c36bb784022682bf220a2f872335c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (182434677, 'Braeburn Apples 3 Lb Bag', 3.42, '405559309732', 'short description is not available', 'Braeburn Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (182649342, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094007822', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (182777975, 'Fresh Concord Grapes, Bag', 2.98, '708174102000', 'short description is not available', 'Fresh Concord Grapes, Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (182930825, 'Fresh Apples, 3 lb Bag', 5.97, '741839007173', 'Our fresh produce of Fuji apples are a delicious variety belonging to the genus epithat \"Malus\". Bursting with sweetness and a crisp texture, these whole apples are perfect for snacking or cooking up a storm in the kitchen. Packed with flavor and nutrition, our Fuji apples are a must-have addition to your healthy lifestyle. Order now and savor the taste of these amazing fruits!', 'Our Delicious Whole Fuji Apples are great for snacking or a side to lunch! Pairs well with caramel or any fresh produce or organic ingredients. Sure to be a crowd pleaser with the crisp texture and sweet flavor! Grab some at your local store today!', 'Fresh', 'https://i5.walmartimages.com/asr/20408dce-424e-401f-a14f-45dfef314fae.5492c0eec7d4c544d59dbd2c903f6f8a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20408dce-424e-401f-a14f-45dfef314fae.5492c0eec7d4c544d59dbd2c903f6f8a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20408dce-424e-401f-a14f-45dfef314fae.5492c0eec7d4c544d59dbd2c903f6f8a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (183648377, 'Fieldpack Unbranded Chocolate Dipped Strawberries 8pack', 7.28, '204253000002', 'short description is not available', 'Fieldpack Unbranded Chocolate Dipped Strawberries 8pack', 'Fresh Produce', 'https://i5.walmartimages.com/asr/84a00c32-800d-48d9-8dc4-52cab770e5fe.d65255f5d4d4123aaa2aa1b0b41b0e57.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/84a00c32-800d-48d9-8dc4-52cab770e5fe.d65255f5d4d4123aaa2aa1b0b41b0e57.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/84a00c32-800d-48d9-8dc4-52cab770e5fe.d65255f5d4d4123aaa2aa1b0b41b0e57.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (183694367, 'Van Zyverden Grape Seedless Concord (1 Dormant Bare Plant Root) Full Sun, Blue, Perennial', 6.88, '030641780511', 'Grow your own fresh fruit! Grape Seedless Concord Dormant Plant Root is the perfect addition to your edible garden that will reap benefits for years to come! Plant Grapes in full sun. Grapes will grow in a variety of soils. Grapes are excellent when used as an ornamental and can be trained onto arbors, or on pergolas to provide a unique addition to the landscape. Once established, care consists entirely of annual pruning and picking the fruit. Grapes contain antioxidants that may help prevent heart disease and some cancers. Grapes are also an excellent source of vitamins A, C, and K. Grapes need deep, well-drained, loose soil with pH levels 5.5 to 6.5. Add 2-3\" of mulch to maintain soil moisture. Pruning is important. Don\'t be afraid to remove at least 90% of the previous season\'s growth when vines are dormant. Perennial', 'Grape Seedless Concord Edible Grow your own fruit Garden to table freshness! Plant in a full sun location Harvest Mid Season Excellent source of vitamins A, C, and K Can be eaten fresh or used to make wine, jam, juice, or raisins GMO Free Perennial', 'Van Zyverden', 'https://i5.walmartimages.com/asr/c0c7ff3c-b963-4655-9589-1f384e5c2b55.33b95a2d00b113260075f20bf3c0f13d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c0c7ff3c-b963-4655-9589-1f384e5c2b55.33b95a2d00b113260075f20bf3c0f13d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c0c7ff3c-b963-4655-9589-1f384e5c2b55.33b95a2d00b113260075f20bf3c0f13d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (183826277, 'Dragon Fruit', 4.98, '333835710586', 'Dragon fruit is a beautiful fruit grown in Southeast Asia, Mexico, Central and South America and Israel. The plant is actually a type of cactus. Dragon fruit is low in calories and offers numerous nutrients, including Vitamin C, phosphorus, and calcium, plus fiber and antioxidants.', 'Dragon Fruit', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cecadce6-c516-475b-8d2a-f4f8a63bf489_1.edd7181e4bc48c5abf58e16b135c374d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cecadce6-c516-475b-8d2a-f4f8a63bf489_1.edd7181e4bc48c5abf58e16b135c374d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cecadce6-c516-475b-8d2a-f4f8a63bf489_1.edd7181e4bc48c5abf58e16b135c374d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (184131762, 'Premium Polished Rose Pink Snap On Hard Shell Case for Motorola CLIQ MB200', 12.88, '033383109213', 'Looking for a case that protects your phone without adding bulk then this is the perfect solution for all of your worries. It fits like second skin to your phone and protect it from scratches, dust, drops and keep your phone new. The case has all required cut outs to charge, listen to music without removing.', 'The new Amzer Snap On Case is designed specifically for your Motorola CLIQ MB200, hugging every curve. Made of lightweight yet durable plastic material, it will safeguard your Motorola without adding extra bulk. So say good-bye to accidental bumps and scratches on your Motorola CLIQ MB200. Exact cutouts allow speedy access to critical controls. Protecting your new gadget has never been this easy. On the back. Get your Snap On Case for your Motorola CLIQ MB200 today! Product Features: Made of lightweight yet durable Hard Plastic material. Perfect to showcase your device. Precise Cutouts for Charging, Audio. Charge, Listen to music without removing case Provide best protection from bumps and dust Easy Installation and Removal', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5503d1cb-dcb2-458d-84c0-8f136f7a5c97.cbdac16d2d5f56e8027438ec69ab2edc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5503d1cb-dcb2-458d-84c0-8f136f7a5c97.cbdac16d2d5f56e8027438ec69ab2edc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5503d1cb-dcb2-458d-84c0-8f136f7a5c97.cbdac16d2d5f56e8027438ec69ab2edc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (184786729, 'Kiwi Picado, 4 Count', 2.47, '204925000002', 'Kiwi Picado, 4 Count', 'Hypermart Kiwi Picado 4ct', 'Fresh Produce', 'https://i5.walmartimages.com/asr/25c22e47-d2a3-4043-a4a2-3e3b5e4709ff.bb13816c8e0e0508c6e1e1a912e881d9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/25c22e47-d2a3-4043-a4a2-3e3b5e4709ff.bb13816c8e0e0508c6e1e1a912e881d9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/25c22e47-d2a3-4043-a4a2-3e3b5e4709ff.bb13816c8e0e0508c6e1e1a912e881d9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (184872867, 'Seedless Green Grapes, 2 lb bag', 7.92, 'deleted_850550002715', 'short description is not available', 'Green Grapes Seedless Bag, 2 lbs.', '', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (184910024, 'Kanzi (nikita) Apples 3 Lb Bag', 3.42, '847473005985', 'short description is not available', 'Kanzi (nikita) Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (184936689, 'Zestar Apples, Each', 1.47, '000000036252', 'short description is not available', 'Zestar Apples, Each', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (185123933, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094208441', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (185612868, 'Mixed Fruit', 3.42, '893268001038', 'short description is not available', 'Mixed Fruit', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (185626623, 'Manzana Roja, 3 Lb.', 4.97, '033383002804', 'Manzana Roja, 3 Lb.', 'Manzana Red Rome Wxf 3 Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/20408dce-424e-401f-a14f-45dfef314fae.5492c0eec7d4c544d59dbd2c903f6f8a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20408dce-424e-401f-a14f-45dfef314fae.5492c0eec7d4c544d59dbd2c903f6f8a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20408dce-424e-401f-a14f-45dfef314fae.5492c0eec7d4c544d59dbd2c903f6f8a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (185660950, 'Watermelon Seedless', 4.48, '400094475751', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (185865524, 'Melorange Melon, each', 3.98, '885674000439', 'short description is not available', 'Melorange Melon, each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4421d2a2-59f0-41d0-8e19-6b607bf36575.d211e0b684e27d345eabd8031c801986.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4421d2a2-59f0-41d0-8e19-6b607bf36575.d211e0b684e27d345eabd8031c801986.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4421d2a2-59f0-41d0-8e19-6b607bf36575.d211e0b684e27d345eabd8031c801986.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (185869511, 'Fresh Manzana (Apples) Roja, 1 lb Bag Whole, Fresh', 1.57, '400094433683', 'Introducing the Jazz apple, a crisp and juicy variety with a sweet, tangy flavor. These apples are perfect for snacking, baking, and adding a burst of flavor to salads. With their beautiful red and yellow striped appearance, they are also a visually appealing addition to any fruit bowl. Grown in orchards across the USA, Jazz apples are a delicious and nutritious choice for any occasion. Fresh Produce that is made with organic ingredients.', 'Manzana Red Premium A delicious fresh and crispy apple A nutritious and whole food that is fresh produce Great for any occasion', 'Unbranded', 'https://i5.walmartimages.com/asr/ada31246-1c45-4c41-aec7-e2d607500bdf.38553668d16b287cd56e935e3f043740.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ada31246-1c45-4c41-aec7-e2d607500bdf.38553668d16b287cd56e935e3f043740.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ada31246-1c45-4c41-aec7-e2d607500bdf.38553668d16b287cd56e935e3f043740.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (186115783, 'Seedless Green Grapes, 2 lb bag', 3.96, 'deleted_850550002210', 'short description is not available', 'Green Grapes Seedless Bag, 2 lbs.', '', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (186220624, 'Watermelon Seedless', 4.48, '405503752416', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (186366439, 'Honeydew Slices 16oz Rfg', 6.88, '826766254200', 'short description is not available', 'Honeydew Slices 16oz Rfg', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (186548189, 'Fresh Organic Mangoes, Size Varies', 0.96, '000000949590', 'Get ready for big flavor with our Fresh Organic Mangoes. This sweet, juicy tropical fruit originated in South Asia and has a soft, buttery texture and naturally sweet taste that the whole world has grown to love. They\'re delicious and nutritious, containing loads of vitamin C, which may act as an antioxidant and contribute to healthy immunity. They also have vitamin A, calcium, iron and fiber, so you can feel good about eating them. Slice up a mango and enjoy as a healthy, sweet snack, use it to make fresh mango salsa, or add it to sweet treats like creamy mango-lime bars or mango sorbet! The sky is the limit with this versatile fruit. Life is better when you have Fresh Organic Mangoes.', 'Soft, buttery texture and naturally sweet taste Rich in vitamins A, C, calcium, iron, and fiber Makes a healthy snack Great addition to smoothies, salads, salsa, and more Can also be used to cook and bake with Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/49e5128f-8d9e-477d-8f8e-2e619d55c101.69d7f91ed746f894aac7ddbb65978487.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/49e5128f-8d9e-477d-8f8e-2e619d55c101.69d7f91ed746f894aac7ddbb65978487.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/49e5128f-8d9e-477d-8f8e-2e619d55c101.69d7f91ed746f894aac7ddbb65978487.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (186560626, 'Mineolas', 1.86, '400094292990', 'Mineolas', 'Mineolas', 'Unbranded', 'https://i5.walmartimages.com/asr/f045e684-51cf-402a-9f18-dfb2fd606a4d.cb9d28972bb86b364aa09b97aeddb498.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f045e684-51cf-402a-9f18-dfb2fd606a4d.cb9d28972bb86b364aa09b97aeddb498.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f045e684-51cf-402a-9f18-dfb2fd606a4d.cb9d28972bb86b364aa09b97aeddb498.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (186590709, 'Green Banana, 1 Lb Individual Unit', 0.97, '400094021323', 'Green Banana, 1 Lb.', 'Platano Verde Platano Verde Platano Verde', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ce39766e-ebf1-4923-810f-3a013337279d.7fc21d8dee14b8feda43214ff58c3a66.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ce39766e-ebf1-4923-810f-3a013337279d.7fc21d8dee14b8feda43214ff58c3a66.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ce39766e-ebf1-4923-810f-3a013337279d.7fc21d8dee14b8feda43214ff58c3a66.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (186737523, 'Fresh Apple Snapdragon, Each', 2.47, '879329004422', 'Get ready for a crunch like no other with our Fresh Apple Snapdragon! This apple variety is known for its crisp texture and satisfying snap when bitten into. Our Snapdragons are hand-picked at peak ripeness and carefully selected for their size and quality. Perfect for snacking, baking, or adding to salads, our Apple Snapdragons are a versatile and delicious choice. Order now and experience the satisfying crunch of our Snapdragons!', 'Sweet Crunchy Fresh', 'TRICO', 'https://i5.walmartimages.com/asr/a0bb730d-2d53-498d-ae7c-f82d7439c74a.1b0c9c794b996baea40f94c736b6716e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a0bb730d-2d53-498d-ae7c-f82d7439c74a.1b0c9c794b996baea40f94c736b6716e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a0bb730d-2d53-498d-ae7c-f82d7439c74a.1b0c9c794b996baea40f94c736b6716e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (186979264, 'Fresh Red Apples, 3 lb Bag', 5.57, '033383002774', 'Apples, Red Rome, Bag 48 OZ US extra fancy - 2-1/2 inch min. Grown and packed by Fitzgerald\'s Orchards. Washed and coated with a food grade lac-resin based waxy to preserve freshness. Produce of USA. 48 oz (3 lb) 1.36 kg Tyro, VA 22976 434-277-5798. Savor the sweet taste of Red Apples that have a classic sweet flavor and are crisp and juicy with higher antioxidants due to the rich deep red skin. Perfect for snacking, they have a creamy white flesh with low acidity. Chop the apples up and add them to a slow cooker with lemon juice, water and cinnamon for a sweet and tasty apple sauce that everyone is sure to love. Add it to your favorite smoothie or juice blend for a morning pick me up to get your day started right. Serve with a dollop of peanut butter and enjoy as a healthy snack that both kids and adults will love. Enjoy the delicious taste of Red Apples.', 'Apples, Red Rome US extra fancy - 2-1/2 inch min. Grown and packed by Fitzgerald\'s Orchards. Washed and coated with a food grade lac-resin based waxy to preserve freshness. Produce of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/02b8a627-7446-4ddb-9802-24328c117b2c.a66b7ba953580f36a1b7cf618a58fee1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/02b8a627-7446-4ddb-9802-24328c117b2c.a66b7ba953580f36a1b7cf618a58fee1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/02b8a627-7446-4ddb-9802-24328c117b2c.a66b7ba953580f36a1b7cf618a58fee1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (187159123, 'Fresh Cranberries, 32 oz Bag', 3.58, '031200900111', 'Savor the tart taste of Fresh Cranberries. Cranberries have a wonderful tart flavor that can easily take on the sweetness of your favorite sweetener. Use them to make a tart cranberry sauce, bake them into delicious cranberry and orange scones, combine with baked Brie for a gooey, sweet appetizer, or reduce them for a glaze to use on grilled chicken or turkey. They contain essential vitamins and nutrients like vitamin C, vitamin B, fiber, and antioxidants making them perfect for a healthy diet. Prior to use simply gently wash them with cool water, drain, and enjoy the zesty taste. Refrigerate the berries to keep them fresh and ready for use. Pick up Fresh Cranberries today and relish the delectable flavor.', 'Fresh Cranberries, 32 oz: Enjoy with your favorite sweetener, baked good, or savory dish Light, tart taste Healthy treat Prior to use gently wash them with cool water Refrigerate your berries in the original container to maintain freshness Keep dry for optimal freshness Cranberries can be stored up to 4 weeks in the refrigerator and up to 1 year in the freezer', 'Unbranded', 'https://i5.walmartimages.com/asr/27b6e404-9171-4feb-a69e-3ae7e8b51fe2.16454745b2d2da4194075b1433d8212e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/27b6e404-9171-4feb-a69e-3ae7e8b51fe2.16454745b2d2da4194075b1433d8212e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/27b6e404-9171-4feb-a69e-3ae7e8b51fe2.16454745b2d2da4194075b1433d8212e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (187576586, 'Fresh Black Seedless Grapes bagged,2lb', 3.47, '405515367738', 'Indulge in the freshness of our juicy black grapes. Carefully handpicked, each grape is carefully inspected to ensure a whole and delectable fruit. Packed in a convenient bag, our grapes are perfect for a light and healthy snack. Savor the sweetness of every bite, bursting with flavors that will satisfy your taste buds. Order our fresh black grapes now for a healthier and happier you!', 'Fresh Black Seedless Grapes Bags Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/726cc348-eba5-40a7-85b5-7ec18fa52642.7205c13cc733c5b050b72d02d77f385a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/726cc348-eba5-40a7-85b5-7ec18fa52642.7205c13cc733c5b050b72d02d77f385a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/726cc348-eba5-40a7-85b5-7ec18fa52642.7205c13cc733c5b050b72d02d77f385a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (187743523, 'Fresh Dark Sweet Cherries, 1 Lb.', 5.47, 'deleted_888289402063', 'Fresh Dark Sweet Cherries, 1 Lb.', 'Fresh Dark Sweet Cherries', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (187943300, 'Orange Slices, 2.25 lbs', 5.98, '826766252251', 'Orange Slices 2/36oz', 'ORANGE SLICES 36Z RF', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a3f1d265-3cc9-44ad-b351-31fdbaac92ba_1.e52ff139e67785230894e85199c8a3d9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a3f1d265-3cc9-44ad-b351-31fdbaac92ba_1.e52ff139e67785230894e85199c8a3d9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a3f1d265-3cc9-44ad-b351-31fdbaac92ba_1.e52ff139e67785230894e85199c8a3d9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (188047527, 'Satsuma Mandarin Oranges, 1 Each', 9.98, '605049436751', 'Satsuma Mandarin Oranges, 1 Each', 'Orange Satsuma', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (188211987, 'Fresh Bananas, 3 lb Bunch', 1.47, '949228266570', 'Our fresh bananas are made with organic ingredients and are the perfect healthy snack! These sweet and delicious fruits are filled with essential vitamins and minerals that provide energy and help maintain a balanced diet. Enjoy them as a quick on-the-go snack or add them to smoothies and desserts for a delicious treat. Trust us, you won\'t be disappointed!', '3lb whole bananas, a staple fresh produce item, are renowned for their full, sweet flavor and versatility in various recipes, making them a popular and nutritious choice for consumers around the world. As a type of fresh produce, bananas are packed with essential nutrients like potassium, vitamin C, and vitamin B6, contributing to a well-rounded diet and promoting overall health. Enjoying a whole, ripe banana provides a satisfying and naturally sweet snack, while also allowing for easy incorporation into dishes such as smoothies, fruit salads, pancakes, and baked goods.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ed997ace-a601-48bb-8700-670d063577a3_1.f519cb22f8fc8dfcd0faea10c5c3b97f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed997ace-a601-48bb-8700-670d063577a3_1.f519cb22f8fc8dfcd0faea10c5c3b97f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed997ace-a601-48bb-8700-670d063577a3_1.f519cb22f8fc8dfcd0faea10c5c3b97f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (188649899, 'Stemilt Growers Stemilt Lil Snappers Apples, 3 lb', 4.99, 'deleted_741839005896', 'Apples, Braeburn, Lil Snappers, Kid Size, Bag 3 LB 2-1/2 inch min dia. Meets or exceeds US extra fancy. Robust, spicey-sweet. World famous fruit. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. Follow us: YouTube; Facebook; Twitter; Pinterest. For fun recipes, activities and more, visit www.lilsnappers.com. (Std. msg & data rates may apply). Responsible choice. Fruits & Veggies: More matters. Resealable. Produce of USA. 3 lb (1.36 kg) Wenatchee, WA 98801', 'Apples, Braeburn, Kid Size Fruit 2-1/2 inch min dia. Meets or exceeds US extra fancy. Robust, spicey-sweet. World famous fruit. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. Follow us: YouTube; Facebook; Twitter; Pinterest. For fun recipes, activities and more, visit www.lilsnappers.com. (Std. msg & data rates may apply). Responsible choice. Fruits & Veggies: More matters. Resealable. Produce of USA.', 'Stemilt', 'https://i5.walmartimages.com/asr/ccdca3ff-b2c2-43fd-b52e-561b1eaccea3_1.0ea87f279447fe052e2bfd1817fd5b03.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ccdca3ff-b2c2-43fd-b52e-561b1eaccea3_1.0ea87f279447fe052e2bfd1817fd5b03.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ccdca3ff-b2c2-43fd-b52e-561b1eaccea3_1.0ea87f279447fe052e2bfd1817fd5b03.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (188889007, 'Fresh Mamey, Each', 2.47, '000000043106', 'Fresh Mamey fruit is a tropical delight known for its rich, creamy flavor and impressive nutritional benefits. Packed with vitamins A, C, and E, along with powerful antioxidants, it supports healthy skin, strong immunity, and clear vision. Its natural sugars and dietary fiber promote sustained energy and smooth digestion, while minerals like potassium, iron, and magnesium contribute to heart health and overall vitality. With its abundance of nutrients and naturally sweet taste, fresh mamey is not only delicious but also a wholesome, energy-boosting fruit that enhances wellness and supports a balanced lifestyle.', 'Packed with Vitamins A & C Naturally Sweet and Creamy Flavor Boosts Energy and Vitality Supports Eye and Skin Health Aids in Healthy Digestion Rich in Dietary Fiber and Antioxidants Helps Strengthen the Immune System Also known as Mamey Sapote, Zapote, and Mamey Colorado around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6c5ee02b-8f69-4940-9aa7-f6aada45231f.70086e33d42f39d7c09afbfa89721f11.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6c5ee02b-8f69-4940-9aa7-f6aada45231f.70086e33d42f39d7c09afbfa89721f11.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6c5ee02b-8f69-4940-9aa7-f6aada45231f.70086e33d42f39d7c09afbfa89721f11.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (189271316, 'Fresh Organic Gala Apples, Each', 2.46, '405561020045', 'Our Gala Apples are grown with care, hand-picked at peak ripeness, and delivered straight to your doorstep. Each bite bursts with the sweet, juicy flavor characteristic of the Gala variety. Perfect for snacking on-the-go, baking into a pie, or adding to your favorite salad recipe. Stock up on these delicious, healthy apples today! This is some delicious organic fresh produce, available for you!', 'Organic Gala Apples, Each: Take home pounds of crisp apples! USDA organic Pair them with sharp cheeses and crackers for a stunning appetizer board Can be enjoyed fresh or cooked into both savory and sweet dishes Meets or exceeds U.S. Extra Fancy Minimum diameter: 2.25\"', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ad66fe2b-9c82-49cc-97c6-9c98e986287b.0eb55708071a4e14b8ffed5ebe0b345b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ad66fe2b-9c82-49cc-97c6-9c98e986287b.0eb55708071a4e14b8ffed5ebe0b345b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ad66fe2b-9c82-49cc-97c6-9c98e986287b.0eb55708071a4e14b8ffed5ebe0b345b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (189295778, 'Fresh Pineapple, Each', 3.97, 'deleted_689466403350', 'Enjoy a burst of tropical flavor with this Fresh Pineapple. This pineapple can be a satisfying afternoon snack, or you can use it in a variety of recipes. For breakfast, use this pineapple to make a rich and creamy smoothie or serve it alongside your pancakes, sausage, and eggs. Slice it up and use to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. For dessert, you could make a crowd-pleasing pineapple upside down cake or a comforting pineapple crisp. However you choose to use it, this Fresh Pineapple will add flavor to any meal or beverage.', 'Use the pineapple to make a rich and creamy smoothie Slice it up and use to add flavor to a lunchtime salad This pineapple can be a satisfying afternoon snack', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1d2b3723-b31f-481d-ae30-c82fcbb59e20.d2e4de8d8b987f98a6e9da93a7e8c752.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d2b3723-b31f-481d-ae30-c82fcbb59e20.d2e4de8d8b987f98a6e9da93a7e8c752.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d2b3723-b31f-481d-ae30-c82fcbb59e20.d2e4de8d8b987f98a6e9da93a7e8c752.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (189460586, '10# Bag Grapefruit', 9.56, '852453002083', 'short description is not available', '10# Bag Grapefruit', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (189558397, 'Organic White Grapes, 1 Lb.', 4.97, '400094307625', 'Organic White Grapes, 1 Lb.', 'Organic Uva Blanca', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/48f39cfd-558f-49cc-9dcc-9647d3a1bb9a.2892d620e7c34c7da1ab59479dcf5421.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/48f39cfd-558f-49cc-9dcc-9647d3a1bb9a.2892d620e7c34c7da1ab59479dcf5421.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/48f39cfd-558f-49cc-9dcc-9647d3a1bb9a.2892d620e7c34c7da1ab59479dcf5421.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (190011757, '308pc Pomegranate Ca', 702.24, '400094292143', 'short description is not available', '308pc Pomegranate Ca', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (190397400, 'Jonagold Apples 3 Lb Bag', 3.42, '847473005756', 'short description is not available', 'Jonagold Apples 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (190716908, 'Fresh Caramel Apple with Nuts, Each', 1.97, '035266002413', 'Experience the ultimate indulgence with our artisanal Fresh Caramel Apple with Nuts, various brands. We have expertly combined the crisp flavors of apple with rich, velvety caramel, creating a decadent masterpiece that\'s sure to tantalize your taste buds. Infused with a medley of fresh, crunchy nuts (allergens), this exquisitely crafted delicacy is a true feast for the senses. From the sharp, tangy top notes to the buttery base, each bite reveals a symphony of flavors. Perfect for any occasion.', 'Grab yourself a genus epithet fresh caramel apple today!! Simply Caramel, Due to the nature of this sticky, delicious, no-frills flavor, Simply Caramel is delicious. Fresh Apples handpicked, dipped on a special-recipe caramel for a taste that’s so simple, so delicious! The perfect healthy treat for the season.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/19fffe3d-bdc0-4e88-b7e7-410f2441a159_2.c186cf0fd89eeb2a860d10adef8c1c32.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19fffe3d-bdc0-4e88-b7e7-410f2441a159_2.c186cf0fd89eeb2a860d10adef8c1c32.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19fffe3d-bdc0-4e88-b7e7-410f2441a159_2.c186cf0fd89eeb2a860d10adef8c1c32.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (190768689, 'Granny Smith Apples 4 Pack', 3.98, '033383098524', 'short description is not available', 'Granny Smith Apples 4 Pack', 'Unbranded', 'https://i5.walmartimages.com/asr/fffe8009-58ce-4612-a363-07bca49e2f3c_1.0434d6d02aa20faef48fd4325b8b3259.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fffe8009-58ce-4612-a363-07bca49e2f3c_1.0434d6d02aa20faef48fd4325b8b3259.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fffe8009-58ce-4612-a363-07bca49e2f3c_1.0434d6d02aa20faef48fd4325b8b3259.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (191417752, 'Solo Papaya, 2 Count', 2.98, '852652006066', 'Solo Papaya, 2 Count', 'Solo Papaya, 2 pack', 'Unbranded', 'https://i5.walmartimages.com/asr/8d59132e-e32a-4053-a0ea-3db6146bd2b4.46b4be8e7b4a7f3193614c37517a23de.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8d59132e-e32a-4053-a0ea-3db6146bd2b4.46b4be8e7b4a7f3193614c37517a23de.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8d59132e-e32a-4053-a0ea-3db6146bd2b4.46b4be8e7b4a7f3193614c37517a23de.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (191481898, 'Melon Honeydew', 4.47, '400094058411', 'Melon Honeydew', 'Melon Honeydew', 'Unbranded', 'https://i5.walmartimages.com/asr/516f5aca-a745-40ac-a613-29e40b932d00.3d2901bc19ffd14d19045ee50f1437f8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/516f5aca-a745-40ac-a613-29e40b932d00.3d2901bc19ffd14d19045ee50f1437f8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/516f5aca-a745-40ac-a613-29e40b932d00.3d2901bc19ffd14d19045ee50f1437f8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (191809905, 'Fuji Apples Bulk', 1.47, '405521322257', 'short description is not available', 'Fuji Apples Bulk', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (192049973, '2# Bag Limes', 4.58, 'deleted_744430275507', 'short description is not available', '2# Bag Limes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (192337511, 'Fresh Organic Grapefruit, 4 lb Bag', 5.88, '095829310744', 'Organic Grapefruit is the perfect balance between tart and sweet. The balance between tart and sweet is great for both savory and sweet dishes any time of day. Enjoy half of an organic grapefruit sprinkled with sugar, beside some eggs and toast in the morning for a light, sweet breakfast. Slice it up and put in a salad with spinach, avocado, and red onion topped with a mustard and balsamic vinegar dressing for lunch or dinner. Make delicious grapefruit bars that showcase the sweet and tartness of this versatile fruit. For an adult recipe juice the grapefruit and pair with some simple syrup and alcohol for a refreshing cocktail. This fruit is the perfect addition to a healthy diet as it is a great source of vitamin C and vitamin A. With such versatility, Organic Grapefruit will become a pantry staple in your home.', 'Great for both savory and sweet dishes Enjoy it for breakfast, lunch, dinner, or dessert Enjoy half a grapefruit sprinkled with sugar in the morning, slice it up and put it in salad for lunch or dinner, or make grapefruit bars Great source of vitamin C and vitamin A', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f273fed7-a174-407c-8de0-4e6d5aff9082.21299a4242760c135764eed9fe4b8195.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f273fed7-a174-407c-8de0-4e6d5aff9082.21299a4242760c135764eed9fe4b8195.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f273fed7-a174-407c-8de0-4e6d5aff9082.21299a4242760c135764eed9fe4b8195.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (192484644, 'Fresh Miscellaneous Pears, per Pound', 1.97, '000000044141', 'Miscellaneous Pears, per Pound', 'Misc Pears, Each Pears in bulk are fresh and of high quality Nutritious fruit packed with fiber, vitamins, and minerals Aiding digestion, boosting immunity, and supporting heart health, Pears in bulk are an eco-friendly option, as buying in bulk reduces packaging waste Adds flavor to a variety of recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/91e9b535-1d59-4a79-8f9d-0175db92b355.2d3cac9509807a265a9177c2bc1758db.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/91e9b535-1d59-4a79-8f9d-0175db92b355.2d3cac9509807a265a9177c2bc1758db.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/91e9b535-1d59-4a79-8f9d-0175db92b355.2d3cac9509807a265a9177c2bc1758db.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (192692241, 'Stemilt Lil Snappers Apples Honeycrisp', 9.87, '741839005926', 'Apples, Honey Crisp, Lil Snappers, Bag 3 LB 2-1/2 inch min dia. Juicy and honey-sweet. Kid size fruit. Meets or exceeds US Extra Fancy. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. World famous fruit. Responsible choice. Fruits & Veggies: More matters. Follow Us: YouTube; Facebook; Twitter; Pinterest. For fun recipes, activities and more, visit www.lilsnappers.com. Std. msg & data rates may apply. Resealable. Scan me! Product of USA. 3 lb (1.36 kg) Wenatchee, WA 98801', 'Apples, Honeycrisp 2-1/2 inch min dia. Juicy and honey-sweet. Kid size fruit. Meets or exceeds US Extra Fancy. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. World famous fruit. Responsible choice. Fruits & Veggies: More matters. Follow Us: YouTube; Facebook; Twitter; Pinterest. For fun recipes, activities and more, visit www.lilsnappers.com. Std. msg & data rates may apply. Resealable. Scan me! Product of USA.', 'Lil Snappers', 'https://i5.walmartimages.com/asr/f45e4efb-bcfb-48be-b9ab-59c67d8c551e_1.bfbe4313d25692801b4e5a7f180e5ef2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f45e4efb-bcfb-48be-b9ab-59c67d8c551e_1.bfbe4313d25692801b4e5a7f180e5ef2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f45e4efb-bcfb-48be-b9ab-59c67d8c551e_1.bfbe4313d25692801b4e5a7f180e5ef2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (193644713, 'Genuine Coconut Refrigerated Fresh Organic Coconut Chunks, All-Natural Vanilla, 2 oz', 1.97, '856048008115', 'Genuine Coconut Organic Coconut Chunks are the perfect snack. They are ready to snack straight from the bag. Made with organic coconut chunks, this snack has a natural vanilla flavor that makes it excellent for satisfying your sweet tooth. Eat them as is, add them to a granola, or a fruit salad for a sweet and tropical addition. The resealable bag helps to maintain freshness, so you can enjoy these coconut chunks for longer. They are USDA certified organic, so you can feel good about buying these for your family. They are a good source of fiber and other nutrients. Treat yourself and your family to the Genuine Coconut Organic Coconut Chunks.', 'Genuine Coconut Organic Coconut Chunks, All Natural Vanilla, 2 oz Ready to snack straight from the bag Has natural vanilla flavor that makes it excellent for satisfying your sweet tooth Enjoy them as is, added to a granola, or in a fruit salad Resealable bag helps maintain freshness USDA certified organic Good source of fiber and other nutrients', 'Genuine Coconut', 'https://i5.walmartimages.com/asr/6f33eec3-0c61-4b83-8063-ea9f7c0af03d.de18c57645ef11312f6928eb659e140e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6f33eec3-0c61-4b83-8063-ea9f7c0af03d.de18c57645ef11312f6928eb659e140e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6f33eec3-0c61-4b83-8063-ea9f7c0af03d.de18c57645ef11312f6928eb659e140e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (194020572, 'Fieldpack Unbranded Watermelon Seedless', 5.67, 'deleted_858840007235', 'short description is not available', 'Fieldpack Unbranded Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (194194386, 'Carrot Grape & Pretzel Snack Tray 6 Oz', 2.5, '074641300560', 'short description is not available', 'Carrot Grape & Pretzel Snack Tray 6 Oz', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (194244879, 'Fresh Bosc Pears, 1 lb Bag', 2.47, '400094434031', 'Enjoy the sweet, juicy flavor and delicate texture of Fresh Bosc Pears. With their distinctive elongated shape and brownish-yellow skin, these pears are perfect for snacking, baking, or adding to salads. Grown in orchards and hand-picked for optimum freshness, each pear is bursting with natural goodness and nutritional benefits. With Bosc Pears, you can savor the taste of nature\'s bounty in every bite.', 'Bosco pears are a unique variety known for their distinctive shape and sweet, juicy flavor - They have a tender, buttery texture that makes them ideal for eating fresh or using in cooking and baking - High in dietary fiber and vitamin C, making them a healthy snack option - The 3lb bag size is convenient for families and individuals looking for a larger supply of fresh pears Bosco pears are harvested at their peak ripeness and carefully packed to ensure maximum freshness and flavor - They have a long shelf life and can be stored in the refrigerator for up to 2-3 weeks - Whole Bosco pears are available seasonally, making them a special treat to enjoy during their peak harvest time. Made with organic ingredients.', 'Unbranded', 'https://i5.walmartimages.com/asr/c98914c5-5c35-4240-9391-48236b252f48.be13451793917c57ecf99a1c43b26eb1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c98914c5-5c35-4240-9391-48236b252f48.be13451793917c57ecf99a1c43b26eb1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c98914c5-5c35-4240-9391-48236b252f48.be13451793917c57ecf99a1c43b26eb1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (194308159, 'Gala Apples 3 Lb Bag', 2.62, 'deleted_811857020581', '', '', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (194505867, 'Fresh Black Seedless Grapes bagged,2lb', 3.47, '400094434451', 'Indulge in the freshness of our juicy black grapes. Carefully handpicked, each grape is carefully inspected to ensure a whole and delectable fruit. Packed in a convenient bag, our grapes are perfect for a light and healthy snack. Savor the sweetness of every bite, bursting with flavors that will satisfy your taste buds. Order our fresh black grapes now for a healthier and happier you!', 'Fresh Black Seedless Grapes Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/94bf557c-b713-414a-bada-55eda039c35f.47094b314a59658a66e0ae4c74648f04.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/94bf557c-b713-414a-bada-55eda039c35f.47094b314a59658a66e0ae4c74648f04.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/94bf557c-b713-414a-bada-55eda039c35f.47094b314a59658a66e0ae4c74648f04.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (194783028, 'Summer Splash', 7.33, '893268001847', 'short description is not available', 'Summer Splash', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (196498007, 'Sicilia Lemon Squeeze, 4 Oz.', 2.18, '030849000046', 'Lemon Squeeze, Bottle 4 OZ Made with organic lemon juice and organic lemon oil. www.sicilia.us. Use like fresh lemons. Bottler: SIDAG AG, Switzerland. Certified organic by IMOswiss, AG. Product of Italy. Keep refrigerated after opening. Use by date stamped. 4 fl oz (118 ml) 777 Passaic Avenue Suite 488 Clifton, NJ 07012', 'Lemon SqueezeMade with organic lemon juice and organic lemon oil. www.sicilia.us. Use like fresh lemons. Bottler: SIDAG AG, Switzerland. Certified organic by IMOswiss, AG. Product of Italy.', 'Sicilia', 'https://i5.walmartimages.com/asr/c2f1e9a3-6969-4b7c-b9c1-e619826d8305_1.663970bbf5d49fc5288f7bc491312ccc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c2f1e9a3-6969-4b7c-b9c1-e619826d8305_1.663970bbf5d49fc5288f7bc491312ccc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c2f1e9a3-6969-4b7c-b9c1-e619826d8305_1.663970bbf5d49fc5288f7bc491312ccc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (196777487, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_400094103937', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (196788535, 'Ready Pac Foods Ready Pac Fruit Blend, 10.5 oz', 2.97, '077745237466', 'Fruit Blend, Super Fruit Melody 10.5 oz Perishable. No preservatives. Ingredients may vary by season. Keep refrigerated. 10.5 oz Irwindale, CA 91706 800-800-7822', 'Fruit Blend, Super Fruit Melody Perishable. No preservatives. Ingredients may vary by season.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (196871294, 'Cut Watermelon 1.5 Lbs', 1.5, '211566000001', 'short description is not available', 'Cut Watermelon 1.5 Lbs', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (196955294, 'Watermelon Seedless', 4.48, '400094138700', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (197097098, 'Fresh Multi Color Grapes, 3 Lb', 3.22, '814326010182', 'short description is not available', 'Fresh Multi Color Grapes, 3 Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (197461287, 'Fresh Navel Oranges, 10 lb Box', 9.98, '095829500213', 'Introducing our fresh produce of sweet and juicy oranges, packaged full and ready to enjoy in a convenient bag. Bursting with vitamin C and antioxidants, each whole orange provides a flavorful snack that is both healthy and delicious. Perfect for on-the-go or as a refreshing addition to any meal, our oranges are the perfect choice for those seeking wholesome, full-bodied produce. Order your bag of oranges today and taste the difference of high-quality, farm-fresh fruit!', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast Adds flavor to a variety or recipes Use as a garnish for your favorite cocktail Make sweet desserts like ambrosia, orange bars, and orange pie Available in a 10-pound box', 'Fresh Produce', 'https://i5.walmartimages.com/asr/da5dc133-8ac8-43e0-ad3a-5f6113dfcd24.25d2ffe88b1908ec0fe0922f58144769.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/da5dc133-8ac8-43e0-ad3a-5f6113dfcd24.25d2ffe88b1908ec0fe0922f58144769.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/da5dc133-8ac8-43e0-ad3a-5f6113dfcd24.25d2ffe88b1908ec0fe0922f58144769.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (197606488, 'Apricot, 1 lb Pack', 3.12, 'deleted_847081000464', 'short description is not available', 'Fresh Grown Apricots 16oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (197642988, '120pc Apl Granny 5#', 600, '405671839254', 'short description is not available', '120pc Apl Granny 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (198006071, 'Pineapple 9 Oz', 2.5, '826766255856', 'short description is not available', 'Pineapple 9 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (198209611, 'Rubberized Protector Hard Shell Snap On Case for HTC EVO V 4G, HTC EVO 3D, Sprint HTC EVO 3D - 3D Love', 4.24, '033383106007', 'Looking for a case that protects your phone without adding bulk then this is the perfect solution for all of your worries. It fits like second skin to your phone and protect it from scratches, dust, drops and keep your phone new. The case has all required cut outs to charge, listen to music without removing.', 'Personalize your handheld while you protect it! 3D Love Protector cases are fashioned from a durable hard shell and topped off with a soft rubberized finish. The 3D Love protector case is able to resist shock from accidental bumps and drops, providing the ultimate in phone protection. The 2 piece protector case snaps perfectly around your HTC and features precise cutouts for all ports and controls. So add a layer of fun and a layer of protection to your HTC EVO 3D with a 3D Love Protector Case! Product Features: Smooth to the touch. Definitive fit for maximum protection Resist shock from accidental bumps and drops Preserve from scratches, dirt or anything else that arrives into contact with your device Allow you to plug your charger, cable, headset without removing the case', 'Unbranded', 'https://i5.walmartimages.com/asr/919a01e0-2f04-4587-8c40-b4bfa618dc19.b7514fc2f42b99a71715d0fce3979ed9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/919a01e0-2f04-4587-8c40-b4bfa618dc19.b7514fc2f42b99a71715d0fce3979ed9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/919a01e0-2f04-4587-8c40-b4bfa618dc19.b7514fc2f42b99a71715d0fce3979ed9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (198291386, 'Viva Tierra Organic Pear, 3 Lb.', 8.97, '033383300825', 'Viva Tierra Organic Pear, 3 Lb.', 'Viva Tierra Pear Organic 3 Lb', 'Viva Tierra', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (198294985, 'Stemilt Lil Snappers Apples Fuji', 5.97, '741839005889', 'Apples, Fuji, Lil Snappers, Bag 3 LB 2-1/2 inch min dia. Crisp, juicy and sugary-sweet. Resealable. World famous fruit. Kid size fruit. Meets or exceeds US extra fancy. Coated with food grade vegetable and/or shellac based wax resin to maintain freshness. Follow us: YouTube; Facebook; Twitter; Pinterest. For fun recipes, activities and more, visit www.lilsnappers.com. World famous fruit. Fruits & Veggies: More matters. Produce of USA. 3 lb (1.36 kg) Wenatchee, WA 98801', 'Apples, Fuji 2-1/2 in min. dia. Crisp, juicy & sugary-sweet. Kid size fruit. World famous fruit. May have been treated with food grade vegetables and/or shellac based wax resin to maintain freshness. Meets or exceeds US extra fancy. Have a plant. Responsible choice. Follow us YouTube; Facebook; Twitter; Pinterest. For fun recipes activities and more, visit www.lilsnappers.com. Resealable. (Std. Msg & data rates may apply). Product of USA.', 'Lil Snappers', 'https://i5.walmartimages.com/asr/b49a683e-bd5e-435b-91e9-9f0ef7b73094.2a81f91ebadf460781a7be9520759dd1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b49a683e-bd5e-435b-91e9-9f0ef7b73094.2a81f91ebadf460781a7be9520759dd1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b49a683e-bd5e-435b-91e9-9f0ef7b73094.2a81f91ebadf460781a7be9520759dd1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (198386740, 'Candy Apples w/o Nuts, 3 Pack', 2.98, 'deleted_035266000112', 'Wanting a treat without Nuts? The 3 pack of Candy Apples without Nuts is the perfect way to get into the Fall season!', '3 Pack Candy Apple without Nuts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/41fc9e08-c1b3-416d-b006-8ce2f6894d3c_1.5fed48b33a2cb43837b6cd540211eb2a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/41fc9e08-c1b3-416d-b006-8ce2f6894d3c_1.5fed48b33a2cb43837b6cd540211eb2a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/41fc9e08-c1b3-416d-b006-8ce2f6894d3c_1.5fed48b33a2cb43837b6cd540211eb2a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (198420939, 'Yellow Flesh Peaches, per Pound', 1.58, '405513708649', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (198456300, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094033067', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (198700570, 'Fresh Magenta Melon, Each', 2.68, '000000031028', 'Treat yourself to the refreshing flavor of a fresh Magenta Melons. Enjoy this tasty melon on its own as a healthy snack or incorporate it into a variety of delicious recipes. For breakfast, you can make a sweet fruit bowl with sliced Magenta, strawberries, pineapple, and kiwi. For an extra special treat, top with a dollop of whipped cream. Cut it into small pieces and put it in a fresh salad along with chicken, cucumbers, tomatoes, and a light dressing. You can even use the magenta melons to make a refreshing summer cocktail, a spreadable jam or a light sorbet. Enjoy the sweet and juicy taste of fresh Magenta Melon.', 'Fresh Magenta Melons, Each: Ideal addition to every kitchen Flavorful addition to many recipes Enjoy on its own or add to a mixed fruit salad Add to your fresh garden salad Get creative & make a melon cocktail or a refreshing sorbet Explore all the delicious ways to add fresh melon to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (198777382, 'Stayman Apples, Each', 1.47, '898205002062', 'short description is not available', 'Stayman Apples, Each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (198819926, 'Fresh Manzana (Apples) Roja, 1 lb.', 1.57, 'deleted_400094433751', 'Our Gala Apples are grown with care, hand-picked at peak ripeness, and delivered straight to your doorstep. Each bite bursts with the sweet, juicy flavor characteristic of the Gala variety. Perfect for snacking on-the-go, baking into a pie, or adding to your favorite salad recipe. Stock up on these delicious, healthy apples today! This is some delicious organic fresh produce, available for you!', 'Red apples are a classic variety loved for their sweet, juicy flavor and crisp texture. These apples are versatile and can be used in a variety of dishes, from salads to desserts. They are also a great source of dietary fiber and vitamin C, making them a healthy snack option. Our red apples are carefully selected and packed at the peak of their freshness to ensure maximum flavor and quality. Whether you\'re biting into one for a quick snack or using them to create a delicious apple pie, our red apples are sure to satisfy with their delicious taste and satisfying crunch. Perfect for families and individuals looking for a healthy and delicious addition to their diet, these red apples are a staple in any kitchen.', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/72bba039-d136-4929-a22b-bf6168248e81.4f906c353fe8bce2de49f18dd60f7600.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/72bba039-d136-4929-a22b-bf6168248e81.4f906c353fe8bce2de49f18dd60f7600.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/72bba039-d136-4929-a22b-bf6168248e81.4f906c353fe8bce2de49f18dd60f7600.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (199196212, 'Super Fresh Kids Red Apple, 2lb Pouch', 4.47, '883391000787', 'The Super fresh Kids Red 2lb apples offer a vibrant and healthy option for sharing with the whole family. Packed in a convenient 2-pound bag, these red apples have been selected for their mildly sweet flavor, crisp bite, and ideal size for young hands. The packaging features colorful and fun graphics designed especially for children, making them perfect as a snack, to take to school or work, or simply to have at home ready to enjoy. The brand combines quality and presentation to encourage the daily consumption of fresh fruit in an easy and appealing way for kids.', 'Convenient 2lb bag of fresh red apples. Mildly sweet flavor with a crisp, crunchy texture. Ideal for snacks: perfect for school, work, or at-home consumption. Encourages healthy eating: promotes daily fruit consumption among children. Ready-to-use: easy to slice or eat on the go.', 'Superfresh Kids', 'https://i5.walmartimages.com/asr/7e18e0c0-3fb9-43f2-8b8e-71168e1d5ab0.c863336d54e1add79aaa77032f6f230a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7e18e0c0-3fb9-43f2-8b8e-71168e1d5ab0.c863336d54e1add79aaa77032f6f230a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7e18e0c0-3fb9-43f2-8b8e-71168e1d5ab0.c863336d54e1add79aaa77032f6f230a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (199507043, 'Fresh Sugar Kiss Melon, Each', 2.78, '000000043762', 'Each Fresh Sugar Kiss Melon will be a delight to eat. This variety of this fruit originated in Taiwan and is one of the sweetest. Choose a sweet melon that has a firm rind. The soft orange flesh is delicious at room temperature, and any uneaten, cut melon should be refrigerated. Delightful for nearly any meal, it can be eaten by itself, in smoothies, salads or paired with cured meant for an appetizer. Plus, melons have no container. Sugar Kiss Melons are a good source of vitamins A and C.', 'Fresh Sugar Kiss Melon, Each Sweet and juicy taste that is pleasant Sugar melon provides vitamins A and C One of the sweetest varieties for you to enjoy Sure to please the whole family Melons have no container', 'Fresh Produce', 'https://i5.walmartimages.com/asr/fe880c46-de66-48b1-b882-8b5df2e5a9a9.a433268d7cedb81e6ac949c8a4652bf9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fe880c46-de66-48b1-b882-8b5df2e5a9a9.a433268d7cedb81e6ac949c8a4652bf9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fe880c46-de66-48b1-b882-8b5df2e5a9a9.a433268d7cedb81e6ac949c8a4652bf9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (199628002, '75pc Orange Navel 8#', 589.5, '405870770884', 'short description is not available', '75pc Orange Navel 8#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (200164713, 'Fresh Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094357552', 'Fresh Grown Yellow Nectarines, 1 Lb.', 'Fresh Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (201050232, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '405516118704', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (201522834, 'Fresh Dark Sweet Red Cherries, 3 Lb.', 5.98, '850764002006', 'Fresh Dark Sweet Red Cherries, 3 Lb.', 'Fresh Dark Sweet Red Cherries', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (201859746, 'Yellow Peach, Each', 0.01, '405842619197', 'short description is not available', 'Yellow Peach, Each', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (202568645, 'Watermelon Seedless', 4.48, '400094403372', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (202871160, 'Bowery Salad Spinach Blend 4.5oz', 3.48, '851536007380', 'short description is not available', 'Bowery Salad Spinach Blend 4.5oz', 'Bowery Farming', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (203654116, 'Organic Sweet Potatoes 3 Lb Bag', 5.68, 'deleted_095829400193', 'short description is not available', 'Organic Sweet Potatoes 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (204469541, '90pc Pto Rst 10# Bm', 399.6, '405530514544', 'short description is not available', '90pc Pto Rst 10# Bm', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (204518138, 'Fresh Grape Tomato, 2.5 oz Cup', 2.98, '751666778856', 'Bring the fresh, delicious taste of Grape Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Grape Tomatoes.Fair Trade Certified tomatoes are the best way to have a positive impact on the lives of farmers, workers, and their communities. Through fair wages, enhanced health and safety on the job, and Community Development Funds that workers invest to solve their most pressing needs, every Fair Trade purchase you make has an impact. And you get to enjoy great quality tomatoes while making a difference!', 'Grape Tomatoes, 2.5 oz: Lower water content and longer shelf-life than cherry tomatoes Hardier and more resistant to bruising than traditional tomatoes Flavor in each bite Conveniently bite-sized Quick and excellent addition to salads and snack trays Best stored at room temperature out of sunlight Fresh produce', 'Fresh Produce', 'https://i5.walmartimages.com/asr/44b85fa9-33c6-4723-aac5-16d0f972e57c.3742aa7e897a91931c525ae5478ac756.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44b85fa9-33c6-4723-aac5-16d0f972e57c.3742aa7e897a91931c525ae5478ac756.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44b85fa9-33c6-4723-aac5-16d0f972e57c.3742aa7e897a91931c525ae5478ac756.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (204578374, 'Mini Cucumber Pk', 2.48, 'deleted_626074005569', 'short description is not available', 'Mini Cucumber Pk', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (204642102, 'AVO BAG 8/4 32 MX NR', 3.28, 'deleted_852324007278', 'Avocados', 'Large Avocado 4 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (205057333, 'Freshness Guaranteed Whole White Mushrooms 8oz', 4.97, '890445001249', 'short description is not available', 'Freshness Guaranteed Whole White Mushrooms 8oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (205177857, 'Fresh Mandarins, Each', 1.86, '405874101813', 'Enjoy the juicy goodness of citrus when you eat a Clementine. Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Among the smallest fruits in the orange family, clementines have a pleasing sweet-tart flavor and are typically seedless. Generally a winter fruit, clementines are now available year-round in most markets. Clementines are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the mandarins hang out in a bowl on your counter or table to breathe. Compact and portable, clementines are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious Clementines on hand for an easy, healthy treat.', 'Delicious, sweet, juicy citrus Pleasing sweet-tart flavor Easy to peel and segment Excellent source of vitamin C, potassium, and folic acid For maximum flavor, do not refrigerate Typically seedless You\'ll have plenty for everyone with this 5-pound bag Fresh Mandarin', 'Unbranded', 'https://i5.walmartimages.com/asr/bd763dda-b163-438e-ba60-79d19ecfd261.f1a7381116ace62844e1d4f7f4de1fc0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd763dda-b163-438e-ba60-79d19ecfd261.f1a7381116ace62844e1d4f7f4de1fc0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd763dda-b163-438e-ba60-79d19ecfd261.f1a7381116ace62844e1d4f7f4de1fc0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (205480599, 'Freshness Guaranteed Pineapple Large', 3.77, '262830000005', 'Experience a burst of tropical flavors with these Freshness Guaranteed Pineapple Chunks. The pre-cut slices of ripe pineapple are juicy and sweet to taste and are packed in its own juice. Carry them with you and eat them straight out of the tray any time you want, at home or on-the-go. You can also use them to top desserts and ice creams, in a fruit salad or blend them with milk to make milkshakes. Pineapples are known to have a number of nutrients, and they are especially rich in vitamin C. Add some fresh fruits to your daily menu today with these Freshness Guaranteed Pineapple Chunks.Freshness Guaranteed provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Pineapple Large', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (205801054, 'Green Seedless Grapes, 2 lb', 1.88, '014668760176', 'short description is not available', 'Green Seedless Grapes, 2 lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (205945431, 'Sunset Sugar Bombs Grape Tomatoes on the Vine, 12 oz', 3.98, 'deleted_057836021907', 'Flavor Rocks™', 'An Explosion of Flavor!', 'Sunsets', 'https://i5.walmartimages.com/asr/04b11f7c-04b7-497c-b4d8-020037dca9ce.1e1738f97e5c65d29ea4eece36d6e4b4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/04b11f7c-04b7-497c-b4d8-020037dca9ce.1e1738f97e5c65d29ea4eece36d6e4b4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/04b11f7c-04b7-497c-b4d8-020037dca9ce.1e1738f97e5c65d29ea4eece36d6e4b4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (206062390, 'Yellow Flesh Peaches, per Pound', 1.58, '400094344255', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (206284148, 'Fresh Grape Tomato, 10 oz Package', 2.48, 'deleted_691529040198', 'Fresh grape tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Grape Tomatoes are the perfect choice.', 'Grape Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (206396964, 'Freshness Guaranteed Cantaloupe Blueberry Blend 14 Oz', 5.48, '681131305464', 'short description is not available', 'Freshness Guaranteed Cantaloupe Blueberry Blend 14 Oz', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (206507006, 'Fresh Green Seedless Grapes', 1.78, 'deleted_850794002045', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (206816763, 'Warty Bumpy Pumpkins', 3.98, '823298001593', 'short description is not available', 'Warty Bumpy Pumpkins', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (207086614, 'Fresh Huerto Isleno Romain Lettuce, Each', 2.97, '860205000102', 'Treat yourself to the healthy, delicious taste of Fresh Romaine Lettuce. This romaine is perfect for a variety of healthy and delicious meals and is packed with vitamins, minerals and antioxidants. You can use it to whip up a classic Caesar salad with all the fixings or let your creativity run wild.', 'Extremely low-calorie content and high-water volume Packed full of vitamins, minerals, and antioxidants Use for salads, smoothies, lettuce wraps, sandwiches, and more', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ef9bbde3-5ffa-435b-8006-6371885fdc91.acc6c300749c683f4b0ed2ff8edda5c0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ef9bbde3-5ffa-435b-8006-6371885fdc91.acc6c300749c683f4b0ed2ff8edda5c0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ef9bbde3-5ffa-435b-8006-6371885fdc91.acc6c300749c683f4b0ed2ff8edda5c0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (207381470, 'Fresh Yautia Lila Root Bulk', 1.27, '000000047302', 'Purple Taro is rich in fiber, which contributes to good digestive and intestinal health. It provides complex carbohydrates, potassium, copper, and other minerals. It is gluten-free, making it a good option for people with intolerances. Versatile for Puerto Rican cuisine: it is used in stews, mashed dishes, and other traditional recipes. High in potassium and other minerals such as magnesium and iron. Its carbohydrates are complex, providing sustained energy rather than sharp spikes. Naturally gluten-free, making it suitable for people with gluten intolerance.', 'Fresh Yautia Lila, 1 Pound Is a good source of vitamin C Potassium Phosphorus Magnesium and also contains some iron and calcium', 'Fresh Produce', 'https://i5.walmartimages.com/asr/68863667-b638-492f-bf83-6be4ac17e475.31d6209af006675f6bbbbd4e0216b65b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68863667-b638-492f-bf83-6be4ac17e475.31d6209af006675f6bbbbd4e0216b65b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68863667-b638-492f-bf83-6be4ac17e475.31d6209af006675f6bbbbd4e0216b65b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (207672292, 'Yellow Flesh Peaches, per Pound', 1.58, '405515959834', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (207709377, 'Tasteful Selections Fingerling Gold Potato Bag 24 oz', 4.68, '826088710125', 'Honey gold potatoes bag 24 oz org', 'Creamy textures and tender skins, create this blend’s flavor fusion. The union of two of our two most popular varieties has created this great potato offering, Sunburst Blend™ potatoes! Creamy textures and tender skins create this blend’s flavor fusion that will satisfy your household. Copy Right Tasteful Selections', 'Tasteful Selections', 'https://i5.walmartimages.com/asr/f89beb03-eabf-4d01-9a24-789b898ad6d5.7c89ec12fab2927a6dcc4ef6efa5797f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f89beb03-eabf-4d01-9a24-789b898ad6d5.7c89ec12fab2927a6dcc4ef6efa5797f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f89beb03-eabf-4d01-9a24-789b898ad6d5.7c89ec12fab2927a6dcc4ef6efa5797f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (207963955, 'Yellow Flesh Peaches, per Pound', 1.58, '400094219508', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (208599377, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_405502886853', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (209205654, 'Pepper Green Bell', 1.47, 'deleted_823874000736', 'short description is not available', 'Pepper Green Bell', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/c9dff244-10f7-498a-b8d8-cfc377f678a7.f3b821354e1347f7371d699909e8e0f4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c9dff244-10f7-498a-b8d8-cfc377f678a7.f3b821354e1347f7371d699909e8e0f4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c9dff244-10f7-498a-b8d8-cfc377f678a7.f3b821354e1347f7371d699909e8e0f4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (209231950, '50pc Pto Idaho 20#', 324, '405888293528', 'short description is not available', '50pc Pto Idaho 20#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (209233878, 'Fieldpack Unbranded Fresh Strawberries 2#', 3.42, 'deleted_405512239090', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 2#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (209569031, 'Tasteful Selections Purple Potato Bag, 24oz', 4.88, '826088549152', 'Purple potato can be made in the blender for a nutritious drink with a sneaky ingredient for that lush purple color.', 'Tasteful Selections Purple Mesh Bag, 24oz powerhouse food full of nutrients full of flavor to fuel your everyday.', 'Tasteful Selections', 'https://i5.walmartimages.com/asr/26f7e8b0-5d27-4d3d-b27e-5199a788ebc1.001fae1cde94924b1b07cee14a875123.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/26f7e8b0-5d27-4d3d-b27e-5199a788ebc1.001fae1cde94924b1b07cee14a875123.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/26f7e8b0-5d27-4d3d-b27e-5199a788ebc1.001fae1cde94924b1b07cee14a875123.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (209858600, 'Fieldpack Unbranded Celery Stalk', 1.28, 'deleted_664781701008', 'short description is not available', 'Fieldpack Unbranded Celery Stalk', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/40c4a102-8a92-4011-963f-5a06bfd69cb8.4769616f7f2499dcd862c14814d9bbf3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/40c4a102-8a92-4011-963f-5a06bfd69cb8.4769616f7f2499dcd862c14814d9bbf3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/40c4a102-8a92-4011-963f-5a06bfd69cb8.4769616f7f2499dcd862c14814d9bbf3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (210604981, 'Lechuga Hidroponica Mezclum, Each', 2.17, '036446046920', 'This a is an excellent variety of lettuce and mustard, they provide a good balance on flavor, texture and color. This mezclum grow fast and can be harvested several times.', 'High in Vitamin A Iron Good balance on flavor and texture', 'Unbranded', 'https://i5.walmartimages.com/asr/e7419d7c-799e-4c31-b81d-4e35ac2f1ae8.e8915ce9b8aa187f52295e09953d766b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e7419d7c-799e-4c31-b81d-4e35ac2f1ae8.e8915ce9b8aa187f52295e09953d766b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e7419d7c-799e-4c31-b81d-4e35ac2f1ae8.e8915ce9b8aa187f52295e09953d766b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (210668370, 'Flamingo Pear, 2 Lb.', 3.67, '848768000180', 'Flamingo Pear, 2 Lb.', 'Pear Bag 2lb Flamingo', 'Fresh Produce', 'https://i5.walmartimages.com/asr/319a9ad3-b80c-41d7-91e7-518d9bc8d8c6_1.ceb80fb4b20c2662caff9aa5ce80476c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/319a9ad3-b80c-41d7-91e7-518d9bc8d8c6_1.ceb80fb4b20c2662caff9aa5ce80476c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/319a9ad3-b80c-41d7-91e7-518d9bc8d8c6_1.ceb80fb4b20c2662caff9aa5ce80476c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (210987662, 'Fresh Premium Grape Tomato, 2 lb Package', 4.98, '606105437781', 'Premium Grape Tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily complements your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Premium Grape Tomatoes are the perfect choice.', 'Premium Grape Tomato, 2 lb Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ef2dcbc7-1fc9-40cd-bf3e-09d72a0218d9.1d2f7b812b05175eccc5c66761b3fa2e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ef2dcbc7-1fc9-40cd-bf3e-09d72a0218d9.1d2f7b812b05175eccc5c66761b3fa2e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ef2dcbc7-1fc9-40cd-bf3e-09d72a0218d9.1d2f7b812b05175eccc5c66761b3fa2e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (211501420, 'California Grown Peaches, per Pound', 1.58, '400094203163', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (211607292, 'Gala Apples 3 Lb Bag', 3.97, 'deleted_080153341342', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (211749748, 'That\'s Tasty Classic Crunch Organic Iceberg Lettuce, 5 oz', 2.18, '768573710077', 'That\'s Tasty Classic Crunch Organic Iceberg Lettuce gives you truly delicious organic flavor that you can trust. This lettuce has a medium sweetness is highly crisp for a perfect bite every time. It is locally and sustainably grown in the USA, free from pesticides, and Non-GMO. Use it to make delicious salads topped with your favorite croutons, nuts, cheese, vegetables, protein and dressing for a fresh taste in every bite. Use it to top sandwiches and burgers or make delicious lettuce wraps. Fill the wraps with hummus and vegetables for a vegetarian option or use your favorite deli meat slices, condiments and vegetables for healthier lunch alternative. Enjoy freshness you can see with That\'s Tasty Classic Crunch Organic Iceberg Lettuce.', 'That\'s Tasty Classic Crunch Organic Iceberg Lettuce, 5 oz: Pure USDA certified organic flavor Locally and sustainably grown in the USA Medium sweetness and high crispness Free from pesticides and Non-GMO Top burgers and sandwiches, make tasty lettuce wraps, or make delicious salads', 'That\'s Tasty', 'https://i5.walmartimages.com/asr/c4466294-0ca2-49ca-96dd-6de98ee45adb.1c95db0a11f0e6ad1ec9ae51aef39560.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c4466294-0ca2-49ca-96dd-6de98ee45adb.1c95db0a11f0e6ad1ec9ae51aef39560.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c4466294-0ca2-49ca-96dd-6de98ee45adb.1c95db0a11f0e6ad1ec9ae51aef39560.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (212495582, 'Sunset Sweet Bites Snacking Tomatoes on the Vine, 12 oz', 3.27, 'deleted_057836022553', 'Sunset Sweet Bites Snacking Tomatoes on the Vine, 12 oz', 'Sweet Bites Cherry Tomatoes, 12 oz: Grown with seed Exclusively sourced from the south of France Award-winning tomatoes Explosion of flavor in every bite Excellent addition to your homemade salads', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/75729a92-22bc-4918-a0e7-3eab4746237b.b02f40e144d9b37c15ec25e7316afd22.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75729a92-22bc-4918-a0e7-3eab4746237b.b02f40e144d9b37c15ec25e7316afd22.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75729a92-22bc-4918-a0e7-3eab4746237b.b02f40e144d9b37c15ec25e7316afd22.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (212566816, 'Sweet Earth Asian Salad Kit', 4.98, '016741000612', 'short description is not available', 'Sweet Earth Asian Salad Kit', 'Unbranded', 'https://i5.walmartimages.com/asr/7617b261-cceb-4922-bd71-67d5e719c747_1.2092f0782724c239dff98f0cc80ff20c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7617b261-cceb-4922-bd71-67d5e719c747_1.2092f0782724c239dff98f0cc80ff20c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7617b261-cceb-4922-bd71-67d5e719c747_1.2092f0782724c239dff98f0cc80ff20c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (212907454, 'Services Reduced Program Dept 94', 0.01, '251743000004', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (213704883, 'Butternut Squash', 1.18, '850003165059', 'short description is not available', 'Butternut Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1357a9ae-97d2-4592-9705-57d743e6edab.91d20598c9bb3d5124aba5968e642d91.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1357a9ae-97d2-4592-9705-57d743e6edab.91d20598c9bb3d5124aba5968e642d91.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1357a9ae-97d2-4592-9705-57d743e6edab.91d20598c9bb3d5124aba5968e642d91.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (214210246, 'Fieldpack Unbranded Fresh Green Onions', 0.78, '073064406804', 'short description is not available', 'Fieldpack Unbranded Fresh Green Onions', 'FIELDPACK UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (214720987, 'Organic Sweet Potatoes 3 Lb Bag', 6.28, 'deleted_859246004514', 'short description is not available', 'Organic Sweet Potatoes 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (215642748, 'Fresh Bartlett Pears, Each', 1.39, '845736040247', 'Savor the sweet taste of Fresh Bartlett Pears. Bartlett Pears are aromatic and have a definitive pear flavor that make them great for breakfast, lunch, dinner, and dessert. Chop the pears up and add them to muffins with walnuts and vanilla for a sweet treat that?s great for breakfast to get your morning started on a high note. Slice them up and top a pizza with prosciutto, goat cheese, and arugula for a mouthwatering meal perfect for a family dinner or dinner party. Cut the pear in half and cook it in a skillet with butter, brown sugar, and vanilla and serve with a scoop of vanilla ice cream for a decadent dessert. Enjoy tasty meals any time of day with Fresh Bartlett Pears.', 'Fresh Bartlett Pear, Each: Sweet,crisp and aromatic with a definitive pear flavor Great for breakfast, lunch, dinner, and dessert Versatile ingredient perfect for both savory and sweet dishes Chop them up and add to muffins with walnuts and vanilla, slice and add to pizza with prosciutto, goat cheese, and arugula, or cut in half and cook in a skillet with butter, brown sugar, and vanilla', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6689d57d-1612-439e-8bf0-84670e942819.21f4f05ece3924be6986e91179ce571b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6689d57d-1612-439e-8bf0-84670e942819.21f4f05ece3924be6986e91179ce571b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6689d57d-1612-439e-8bf0-84670e942819.21f4f05ece3924be6986e91179ce571b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (216027643, 'Pepper Mini Sweet', 2.98, 'deleted_699058454516', 'short description is not available', 'Pepper Mini Sweet', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (216218066, 'Fresh Yellow Peach, Each', 0.98, '857362002018', 'Discover the delightful sweetness of these Fresh Yellow Peaches. Enjoy them on their own as a sweet snack or use them in a variety of recipes. For breakfast, you could slice them to put into your oatmeal or use them to make a delicious yogurt parfait. You can also use these fresh peaches in several baking recipes including a comforting crisp topped with ice cream, a tasty upside-down cake, or a scrumptious tart. You can even use them to make a jam or a smooth sorbet. However you choose to use them, their sweet flavor will bring a smile to everyone\'s face. Treat the family to the irresistible taste of Fresh Yellow Peaches.', 'Fresh Yellow Peach, Each Enjoy on their own as a satisfying snack Bag Use in a variety of baking recipes Make a tasty jam or a smooth sorbet Slice as a sweet topping for waffles or pancakes Add to iced tea to create a refreshing summertime flavor', 'Fresh Produce', 'https://i5.walmartimages.com/asr/97ffb3d9-2252-4d6b-955a-7f757b8befeb.5ed4fcdd6046842d35e72de00994c642.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/97ffb3d9-2252-4d6b-955a-7f757b8befeb.5ed4fcdd6046842d35e72de00994c642.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/97ffb3d9-2252-4d6b-955a-7f757b8befeb.5ed4fcdd6046842d35e72de00994c642.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (216397615, '190pc On Vid 3# Bg', 566.2, '405540188926', 'short description is not available', '190pc On Vid 3# Bg', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (216561753, 'California Grown Peaches, per Pound', 1.58, '400094434390', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (217139418, 'Services Reduced Program Dept 94', 0.01, '251742000005', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (217376390, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094345863', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (217381647, 'Fresh Red Seedless Grapes', 1.98, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (217491720, 'Freshness Guaranteed Seasonal Blend Medium', 4.87, '262827000001', 'Enjoy the sweet, refreshing taste of Freshness Guaranteed Seasonal Blend. This pre-cut Seasonal Blend is great for breakfast, lunch, dessert, or when you want a snack. You can eat them right out of the container, use them to infuse water for a refreshing drink. This Seasonal Blend is great for sharing with friends and family or keeping it for yourself. It comes in a reclosable container to help maintain freshness. Bring home Freshness Guaranteed seasonal blend today for a refreshing, healthy treat.Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Seasonal Blend Medium', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (217551922, '120pc Apple Fuji 5#', 600, '405876835457', 'short description is not available', '120pc Apple Fuji 5#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (217613592, 'Cucumber', 0.74, 'deleted_863533000035', 'short description is not available', 'Cucumber', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (217769206, '200pc Pto Ykn/red Id', 824, '405503116454', 'short description is not available', '200pc Pto Ykn/red Id', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (218049696, 'Freshness Guaranteed Fresh Black Seedless Grapes', 2.78, 'deleted_681131377287', 'short description is not available', 'Freshness Guaranteed Fresh Black Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (218307939, 'Freshness Guaranteed Fajita Blend Fresh Vegetables 8 oz', 2.88, '030223023203', 'Spare yourself the prep work and pick up a pack of our Freshness Guaranteed Fajita Mix to make your famous homemade fajitas in a flash! Yellow onion, green and red bell pepper come pre-prepared in perfect slices in every pack for you to bring home and toss right into the pan. Just coat them in your favorite fajita blend spices, add your favorite meats and garnishes, cook them until seared, and you\'ll be ready to dig in. Be sure to pair them up with your favorite toppings and style of tortillas to make it your own. Fresh flavors are just what your fajita night needs and our Freshness Guaranteed Fajita Mix is here to deliver.Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Fresh fajita vegetables mix consisting of yellow onions, green bell peppers, and red bell peppers Ingredients come pre-sliced for your convenience Perfect accompaniment to your family fajita nights Great way to add color, flavor, and texture to a wide variety of dishes Resealable container makes it easy to use as much or as little at a time as you need', 'Fresh Produce', 'https://i5.walmartimages.com/asr/aa18993e-b01f-4ac8-8bfc-1c504af14f11.6d93bce53692cda9cda29b850052e667.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa18993e-b01f-4ac8-8bfc-1c504af14f11.6d93bce53692cda9cda29b850052e667.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa18993e-b01f-4ac8-8bfc-1c504af14f11.6d93bce53692cda9cda29b850052e667.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (218314263, 'Mclane Company Red Delicious Apples, Each', 0.98, 'deleted_717524802286', 'short description is not available', 'Mclane Company Red Delicious Apples', 'McLane Company', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (218613183, 'Watermelon Seedless', 4.48, '400094408285', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (219153219, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_400094632253', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (219197481, 'Collard Greens, one bunch', 0.98, 'deleted_885435999859', 'Collard Greens', 'Collards’ wide leaves have a cabbage-like flavor. It is seldom served raw and is usually cooked or boiled to achieve tenderness. Traditionally, collards are cooked with salt pork, either fried in a skillet or boiled. Garlic, onion, chili peppers, ginger or curry are good complementary spices.', 'Ratto Bros.', 'https://i5.walmartimages.com/asr/0ef972bf-50bd-4b23-9aae-c27ecc4cdfd7.3d88fec12a2a1457bfeb254fbad1bc5f.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ef972bf-50bd-4b23-9aae-c27ecc4cdfd7.3d88fec12a2a1457bfeb254fbad1bc5f.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ef972bf-50bd-4b23-9aae-c27ecc4cdfd7.3d88fec12a2a1457bfeb254fbad1bc5f.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (219724744, 'Brown Beech Mushrooms, 2.5 Oz.', 3.98, '070475660634', 'Brown Beech Mushrooms, 2.5 Oz.', '2.5 Oz Brown Beech Mushroom', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (219743145, 'Dragonfly Seedless Tamarind', 6.25, '721557214480', 'Wet Seedless Tamarind Soft. Premium Quality.', 'Dragonfly Seedless Tamarind', 'Dragonfly', 'https://i5.walmartimages.com/asr/2e7f3f9e-cedd-4e76-b2ef-87001ada076b.725e6af2e1bfc0df82c5a451bc081d84.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2e7f3f9e-cedd-4e76-b2ef-87001ada076b.725e6af2e1bfc0df82c5a451bc081d84.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2e7f3f9e-cedd-4e76-b2ef-87001ada076b.725e6af2e1bfc0df82c5a451bc081d84.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (219786579, 'Apple, Dried Crnbrry, Grld Chicken 6.5z', 3.78, '074641073082', 'short description is not available', 'Apple, Dried Crnbrry, Grld Chicken 6.5z', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (219999431, 'Rainier Cherry 1 Lb Clam', 7.48, '813200013639', 'short description is not available', 'Rainier Cherry 1 Lb Clam', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (220156051, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094274880', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (220991572, 'Yellow Flesh Peaches, per Pound', 1.58, '400094358092', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (221180726, 'Seedless Watermelon', 4.98, 'deleted_813648010009', 'watermelon seedless', 'Seedless Watermelon', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2a225701-68dc-4495-96fc-3cf45b862d37.11f15337465cc530f4392de8d398d5f6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2a225701-68dc-4495-96fc-3cf45b862d37.11f15337465cc530f4392de8d398d5f6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2a225701-68dc-4495-96fc-3cf45b862d37.11f15337465cc530f4392de8d398d5f6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (221334931, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094275238', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (221372857, 'Louisiana Pepper Exchange 4oz Red Habanero Pepper Puree Sauce', 6.63, '850014104047', 'Louisiana Pepper Exchange 4oz Red Habanero Pepper Puree Sauce Ignite your taste buds with the bold heat and fruity twist of our Red Habanero Pepper Puree. This spicy habanero pepper sauce delivers intense heat while elevating your dishes with its rich, flavorful essence. From BBQ sauces and curries to Thai rice dishes and even Bloody Marys, this versatile puree adds the perfect kick to any meal. A convenient alternative to fresh peppers, our habanero salsa offers consistent flavor without the hassle of chopping or deseeding. Made with just red habanero peppers and a pinch of salt, it\'s gluten-free, calorie-free, and packed with natural flavor. Pair this habanero seasoning with mango, pineapple, seafood, or peaches to explore its dynamic flavor combinations. Whether you\'re a home cook or an aspiring chef, our habanero hot sauce will bring the heat to your culinary creations.', 'HOT, FRUITY FLAVOR – Experience the fiery heat and fruity essence of our red habanero pepper seasoning perfect for salsas, marinades, and more. NO CHOPPING NEEDED – Our super hot habanero sauce provides instant flavor like minced garlic, making cooking easier. SIMPLE INGREDIENTS – Made with just red habanero peppers and a pinch of salt, this gluten-free, calorie-free spicy sauce offers pure, guilt-free heat. EASY PEPPER SUBSTITUTE – One spoon of our habanero puree equals one whole habanero pepper, providing effortless recipe conversion. VERSATILE HEAT – Perfect for enhancing curries, BBQ sauces, fried chicken, and more, this habanero spicy seasoning brings bold heat to any dish.', 'Louisiana Pepper Exchange', 'https://i5.walmartimages.com/asr/64ce6a35-68db-4ae2-a1ec-b18b65390839.c4e7d5f76937d7ae6f2dc8e04dc32624.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/64ce6a35-68db-4ae2-a1ec-b18b65390839.c4e7d5f76937d7ae6f2dc8e04dc32624.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/64ce6a35-68db-4ae2-a1ec-b18b65390839.c4e7d5f76937d7ae6f2dc8e04dc32624.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (221539463, 'Mangoes, 1 Each', 0.65, '025838049595', 'Mangoes, 1 Each', 'Mango', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/855116ad-74e1-4d3e-8f1d-560c4be14b09_1.998844861241f4c338187565b7bae980.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/855116ad-74e1-4d3e-8f1d-560c4be14b09_1.998844861241f4c338187565b7bae980.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/855116ad-74e1-4d3e-8f1d-560c4be14b09_1.998844861241f4c338187565b7bae980.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (221934563, 'SUNSET Sweet Bites Cherry Tomatoes, 13 oz, Fresh, On-the-Vine', 3.48, '057836021778', 'SUNSET Sugar Sweets Tomatoes are 13 ounces of premium snacking tomatoes! Perfect for snacking, lunch, or dinner. Try them in salads, pastas, omelets, flatbreads, and more. Jam-packed flavor in a bite-size tomato. Hothouse grown to ensure consistent quality and freshness. Certified non-GMO tomatoes grown. Store at room temperature for optimal flavor, and wash before enjoying.. Enjoy SUNSET Sweet Bites Tomatoes all year long.', 'SUNSET fresh Sweet Bites snacking tomatoes Jam-packed flavor in a bite-sized tomato Perfect for snacking, lunch, or dinner Try them in salads, pastas, omelets, flatbreads, and more Wash and enjoy Available all-year-long Non-GMO verified Hothouse grown to ensure consistent quality and freshness Store at room temperature for optimal flavor', 'SUNSET', 'https://i5.walmartimages.com/asr/58f7fda5-2b5f-4b97-8ebb-30cf97ee6cf9.f29785bf74753d7ebddfe7b674383158.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58f7fda5-2b5f-4b97-8ebb-30cf97ee6cf9.f29785bf74753d7ebddfe7b674383158.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58f7fda5-2b5f-4b97-8ebb-30cf97ee6cf9.f29785bf74753d7ebddfe7b674383158.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (222752059, 'Brussels Sprouts, 16 Oz.', 2.98, 'deleted_060556602103', 'Brussels Sprouts, 16 Oz.', 'Brussel Sprouts', 'Queen Victoria', 'https://i5.walmartimages.com/asr/b46dc6c6-bf29-4acc-afb4-78f994a824bb_1.5bdc69e72f081cadb0e00fa94ca7ecb0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b46dc6c6-bf29-4acc-afb4-78f994a824bb_1.5bdc69e72f081cadb0e00fa94ca7ecb0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b46dc6c6-bf29-4acc-afb4-78f994a824bb_1.5bdc69e72f081cadb0e00fa94ca7ecb0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (222835430, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094659090', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (223172762, '2# Bag Calabacita', 2.98, '095829098086', 'short description is not available', '2# Bag Calabacita', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (223349494, '164pc On Vid Kit Bf', 546.72, '405505437083', 'short description is not available', '164pc On Vid Kit Bf', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (223592987, 'Fresh Tamarillo, Each', 1.97, '000000047937', 'Indulge in the sweet and tangy flavor of fresh tamarillo, a unique and exotic fruit from south america. with its vibrant red skin and juicy pulp, this small but mighty fruit is perfect for snacking, adding to salads, or using in recipes. try it today and discover a new world of flavors!', 'Unique Fruit: Tamarillos are a unique and exotic fruit that\'s not commonly found in most supermarkets, making them a great addition to any fruit platter. Sweet and Tart Flavor: Tamarillos have a unique sweet and tart flavor profile, making them a great addition to salads, smoothies, or desserts. High in Antioxidants: Tamarillos are a good source of antioxidants, which can help protect against cell damage and support overall health. Perfect for Snacking: Enjoy Fresh Tamarillos as a healthy snack on their own or add them to salads, smoothies, or desserts.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/074f10b1-d88d-4d67-b6cd-ff666de67a2d.bdf3ab41536192507b75bcad00ed96cf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/074f10b1-d88d-4d67-b6cd-ff666de67a2d.bdf3ab41536192507b75bcad00ed96cf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/074f10b1-d88d-4d67-b6cd-ff666de67a2d.bdf3ab41536192507b75bcad00ed96cf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (223614815, 'Fresh Green Seedless Grapes, 2 Lb', 5.48, 'deleted_813552010577', 'short description is not available', 'Fresh Green Seedless Grapes, 2 Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (224971549, 'Services Reduced Program Dept 94', 0.01, '251714000002', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (225131330, 'Fresh Green Seedless Grapes', 1.99, 'deleted_786066002003', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (225454127, 'Freshness Guaranteed Pineapple 42 Oz', 9.52, 'deleted_681131036566', 'short description is not available', 'Freshness Guaranteed Pineapple 42 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (225625757, 'Fresh Multi Color Grapes, 3lb Clamshell', 5.98, '887271000003', 'Enjoy the best of both worlds with Fresh Multi Color Grapes. This three-pound clamshell contains both red and green seedless grapes for delicious, juicy flavor. Bursting with flavor and completely seedless, you can easily enjoy a handful as a fresh snack any time of the day. Create stunning cheese boards and charcuterie plates by pairing these grapes with fresh cheeses, crackers, or delectable meats like prosciutto. Freeze the grapes and use them as ice cubs that won\'t melt and release water into your favorite drinks. Or incorporate them into a delicious fresh fruit salad for the perfect side dish for your meal. Treat yourself to the delicious taste of Fresh Multi Color Grapes.', 'Fresh Multi Color Grapes, 3lb Clamshell: Clamshell contains both red and green seedless grapes Bursting with flavor and completely seedless Enjoy a handful as a fresh snack any time of day pair with your favorite meats and cheeses for a charcuterie appetizer Incorporate into fruit salad Perfect for a quick, easy, and healthy snack', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a53f3bc1-7db7-4697-bc92-c1a5db9c2c14.ed91dd2c54f478d3e741b214e7b4ffef.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a53f3bc1-7db7-4697-bc92-c1a5db9c2c14.ed91dd2c54f478d3e741b214e7b4ffef.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a53f3bc1-7db7-4697-bc92-c1a5db9c2c14.ed91dd2c54f478d3e741b214e7b4ffef.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (225642643, 'Fresh Green Beans, bagged', 1.68, 'deleted_711069040660', 'Add fresh flavor to your meal with Green Beans. These beans are an excellent source of vitamin A and vitamin C. Serve as is or add your favorite spices for additional flavor. Roast them with oil and spices for a rich and flavorful dish or add butter, shallots, salt and pepper to green beans to create a yummy side dish. Serve with pork chops, chicken breasts, and other meats for a well-rounded meal. With so many uses, these greens beans will become a pantry staple for your home. Green Beans are a quick and healthy side dish and a great addition to any meal.', 'Green Beans, Per lb: Excellent source of vitamin A and C Roast with oil and spices or add butter, shallots, salt, and pepper the perfect side dish Versatile ingredient Serve with pork chops, chicken breasts, and other meats for a well-rounded meal Will become a pantry staple', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/9b80006b-97e0-46e9-b76f-911db42e55f2_3.dcfcd8dd0dcf9c21eb31a9f1c7572d77.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b80006b-97e0-46e9-b76f-911db42e55f2_3.dcfcd8dd0dcf9c21eb31a9f1c7572d77.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b80006b-97e0-46e9-b76f-911db42e55f2_3.dcfcd8dd0dcf9c21eb31a9f1c7572d77.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (226168734, 'Fresh Organic Medley Tomatoes, 10 oz Package', 3.46, 'deleted_684924900280', 'Organic Medley Tomatoes are an exciting summer treat, and they\'re the perfect size for skewers, salads and roasting. These bite-sized medley tomatoes look and taste great. Medley tomatoes are a low-calorie treat that are also low in sodium and are a good source of fiber. Whether you are snacking or adding them to your favorite dish. their uses are almost limitless. Try these grape tomatoes with feta cheese, fresh dill and a drizzle of olive oil for a light and delicious Mediterranean treat. Or make a caprese salad with medley tomatoes, fresh basil, fresh mozzarella and balsamic vinegar. With 10-ounces of tomatoes in each package, you\'ll have plenty to make mouthwatering meals. Use your imagination to create delicious dishes with Organic Medley Tomatoes.', 'Organic Medley Tomatoes, 10 oz Package: Perfect size for skewers, salads and roasting Low-calorie, low in sodium, and a good source of fiber Pair with feta cheese, fresh dill, and a drizzle of olive oil for a Mediterranean dish Certified organic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d89fbddf-e7a5-4dfa-aaa8-9de2080146d9_1.649ce383bc8d6b2758468cffe627d28d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d89fbddf-e7a5-4dfa-aaa8-9de2080146d9_1.649ce383bc8d6b2758468cffe627d28d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d89fbddf-e7a5-4dfa-aaa8-9de2080146d9_1.649ce383bc8d6b2758468cffe627d28d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (226422698, 'Watermelon Seedless', 4.98, '405504889647', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (226603944, 'Yellow Flesh Peaches, per Pound', 1.58, '400094619889', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (226963670, 'Dole Bacon Blu Salad Kit 11.8 Oz', 3.63, '714300003042', 'short description is not available', 'Dole Bacon Blu Salad Kit 11.8 Oz', 'Dole', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (227261707, 'Fresh Tomatillos, 1 lb', 4.57, '750455000031', 'Add rich flavor and color to your meals with fresh Tomatillos. Most cooks use this versatile ingredient as you would a vegetable even though it is actually a fruit. They have a tart flavor that adds a delicious tang to salsas, moles, and stews. The tomatillo is most commonly used to create a zesty and delicious salsa verde. Serve the salsa verde with chips or use it to enhance the flavors of your meal. Use these tomatillos to make tasty chicken tamales verdes. Tomatillos are also a great source of vitamin C, and they are low in calories. Explore all the delicious possibilities with fresh Tomatillos.', 'Tomatillos, 1 lb: Tart & tangy Make tasty chicken tamales verdes Perfect for salsas, moles & stews Use to make a zesty salsa verde Good source of vitamin C Low in calories 1 lb bag Explore delicious new recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5510837c-06f9-410d-9a26-d3a798426815_2.840b8d1bbac92ab814d2164200607109.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5510837c-06f9-410d-9a26-d3a798426815_2.840b8d1bbac92ab814d2164200607109.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5510837c-06f9-410d-9a26-d3a798426815_2.840b8d1bbac92ab814d2164200607109.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (227455052, 'Watermelon Seedless', 4.68, '852121003008', 'short description is not available', 'Watermelon Seedless', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (227986585, 'Freshness Guaranteed Whole White Mushrooms 16oz', 3.64, 'deleted_699058820052', 'short description is not available', 'Freshness Guaranteed Whole White Mushrooms 16oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (228010582, 'Potato Lemon & Garden Herb Micro Kit 16z', 3.39, '629307017445', 'The Little Potato Co.-lemon & Garden Herb', 'Fresh creamer potatoes paired with lemon and garden herb seasoning Ready-to-cook format for quick meal preparation Light and zesty flavor suitable for side dishes Convenient portion size for family meals or gatherings', 'Fresh Produce', 'https://i5.walmartimages.com/asr/77bced33-5b60-46c7-a2b1-eae25d1e7bd8.f14f2eebdcc85d70425326eca0a2f11e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77bced33-5b60-46c7-a2b1-eae25d1e7bd8.f14f2eebdcc85d70425326eca0a2f11e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77bced33-5b60-46c7-a2b1-eae25d1e7bd8.f14f2eebdcc85d70425326eca0a2f11e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (228558911, 'Snap Peas 16z', 5.98, '782796009022', 'short description is not available', 'Snap Peas 16z', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (228732767, '90pc Pto Rst 10# Ptd', 399.6, '405531145044', 'short description is not available', '90pc Pto Rst 10# Ptd', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (229403342, 'Terrasoul superfoods organic camu camu powder, 3.5 oz', 48, '083409801515', 'Terrasoul superfoods organic camu camu powder, 3.5 oz', 'Sun Date Premium Organic California Medjool Dates 2 lbs. (Pack of 2) Freshly handpicked Grown in Coachella Valley, California 2 lbs each', 'Sun Date', 'https://i5.walmartimages.com/asr/d824ec26-b4b4-4c4f-8057-c0e560eea4ee_1.942561081831c574a125d0be5fa2a4bb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d824ec26-b4b4-4c4f-8057-c0e560eea4ee_1.942561081831c574a125d0be5fa2a4bb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d824ec26-b4b4-4c4f-8057-c0e560eea4ee_1.942561081831c574a125d0be5fa2a4bb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (229493410, 'Marketside Crn Dog/hny Must/crt/apl/gummy Bears', 3.98, '859216007255', 'short description is not available', 'Marketside Crn Dog/hny Must/crt/apl/gummy Bears', 'Marketside', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (229527741, 'Fresh Green Seedless Grapes', 1.78, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (229598900, 'Mks Organic Pineapple', 2.98, '681131428651', 'short description is not available', 'Mks Organic Pineapple', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (229645254, 'Freshness Guaranteed Fresh Red Seedless Grapes', 1.98, 'deleted_681131377263', 'short description is not available', 'Freshness Guaranteed Fresh Red Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (229772737, 'Medley Tomato, 12 oz Package', 4.48, '626074919293', 'Bring the fresh, delicious taste of Medley Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Medley Tomatoes.', 'Medley Tomato, 12 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/114aa65a-601d-43bd-be7a-ca357d821a18.ef98efe2f7ed66e720145ded0b09dbed.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/114aa65a-601d-43bd-be7a-ca357d821a18.ef98efe2f7ed66e720145ded0b09dbed.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/114aa65a-601d-43bd-be7a-ca357d821a18.ef98efe2f7ed66e720145ded0b09dbed.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (229780007, 'Freshness Guaranteed Sunshine Trio Medium', 8.47, '262829000009', 'Freshness Guaranteed Medium Sunshine Trio in a plastic container. This delicious fresh cut Medium Sunshine Trio is a great snack and is ready to eat.', 'Freshness Guaranteed Sunshine Trio Medium', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (229970570, 'Organic Red Globe Grapes, 2 Lb', 6.97, 'deleted_638550012060', 'Treat yourself to the delicious, juicy flavor of Fresh Organic Red Globe Whole Seeded Grapes. These organic grapes are bursting with sweet flavor and known for their large size. Enjoy a handful as a fresh snack any time of day or dry them for scrumptious raisins. You can even use them to make refreshing organic grape juice. They are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with cheese, crackers, or delectable meats like prosciutto. If you want to be creative, you can freeze them and use them as ice cubes in your favorite drinks. Treat yourself to the whole fresh taste of Organic Red Globe Whole Seeded Grapes.', 'Organic Red Globe Grapes, 2 Lb Bursting with flavor and known for their large size Enjoy a handful as a fresh snack', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b041db3b-5145-4e28-99f0-f57f90e279fe_2.05260a3612d96115eb0fb3fe9f0cf599.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b041db3b-5145-4e28-99f0-f57f90e279fe_2.05260a3612d96115eb0fb3fe9f0cf599.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b041db3b-5145-4e28-99f0-f57f90e279fe_2.05260a3612d96115eb0fb3fe9f0cf599.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (230476122, 'Marketside Ruby Grapefruit Segments, 7 oz', 1.97, '681131161374', 'Marketside Ruby Grapefruit Segments are peeled and soaked in a slightly sweetened water to lock in all their delicious fruit flavors. This tasty citrus fruit is perfect for fruit cocktails, salsas, desserts, salads and can also be used as a garnish for meat and vegetable dishes. Enjoy them chilled for a refreshing snack that you can have any time of the day. They also offer a nutritional benefit as they are a low calorie source of vitamin C. These segments come in a ready-to-eat container making it easy to enjoy your favorite fruit on the go. Enjoy a healthy and delicious snack with the wholesome taste of Marketside Ruby Grapefruit Segments. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Ruby grapefruit segments soaked in slightly sweetened water Great in salads High in vitamin C Ready-to-eat container', 'Marketside', 'https://i5.walmartimages.com/asr/fb241d06-2643-4a47-8860-40457e452028_2.75bab3fde4f89142f98e2a6368066dd3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb241d06-2643-4a47-8860-40457e452028_2.75bab3fde4f89142f98e2a6368066dd3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb241d06-2643-4a47-8860-40457e452028_2.75bab3fde4f89142f98e2a6368066dd3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (230651706, 'Spice World Easy Onion, 9.5 oz Jar', 7.33, '070969004173', 'Spice World Squeezable 9.5oz Minced Onion is the perfect addition to pack in your picnic basket for an outdoor party, add to your cooler for a tailgate this fall, or keep in your fridge to make meal prep easy! Delicious on burgers, chicken, fish, steak, veggies, and hot dogs! It is ready-to-use and comes in a convenient plastic squeeze bottle to use just the right amount for your dish. No peeling, chopping, or tears. Remember that while this Fresh Produce item is Shelf-Stable, it should be refrigerated after opening and always shake well before using Latex-Free.', 'Ready-to-use Minced onion in a convenient squeeze bottle to be easily added to any dish Makes picnics and tailgating a breeze \'Fresh Produce\', \'Latex-Free\', \'Fresh\', and \'Plastic\' No peeling, chopping, or tears', 'Fresh Produce', 'https://i5.walmartimages.com/asr/75fa4342-00c1-4c02-944c-f95dc49c614d.5071a8f6dd102db49225b9831afa7cf2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75fa4342-00c1-4c02-944c-f95dc49c614d.5071a8f6dd102db49225b9831afa7cf2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75fa4342-00c1-4c02-944c-f95dc49c614d.5071a8f6dd102db49225b9831afa7cf2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (230708263, 'Viva Tierra Cubanelle Pepper', 1.97, '405966084239', 'short description is not available', 'Viva Tierra Cubanelle Pepper', 'Viva Tierra', 'https://i5.walmartimages.com/asr/6d7f08f0-453e-4938-95bd-96b172158bbe.98fc8e4fccc70e112f303761a3a2964c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6d7f08f0-453e-4938-95bd-96b172158bbe.98fc8e4fccc70e112f303761a3a2964c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6d7f08f0-453e-4938-95bd-96b172158bbe.98fc8e4fccc70e112f303761a3a2964c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (230831397, 'Homeboy Caliente Guacamole, 8oz', 3.58, '855420002666', 'Homeboy provides much more than flavor for your chips. It fuels transformation for thousands of former gang members on a journey to recovery through Homeboy Industries. Father Greg Boyle, \"G\", founded Homeboy Industries 27 years ago to provide hope, training, and support to formerly gang-involved and recently incarcerated men and women, allowing them to redirect their lives and become contribution members of our community. With every purchase you join a virtuous circle helping men and women develop the strength and skills to change for the better. We heal families. We create thriving communities. We provide the Strength to Change. Thank you for being a part of the Strength to Change at Homeboy Industries. Enjoy our Homeboy Caliente Guacamole!', 'Homeboy Caliente Guacamole, 8oz.', 'Homeboy', 'https://i5.walmartimages.com/asr/5b22c331-a194-4013-99c1-92cc474ead9d.26891323d1d4483dcf31c98ac1d6f2ba.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5b22c331-a194-4013-99c1-92cc474ead9d.26891323d1d4483dcf31c98ac1d6f2ba.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5b22c331-a194-4013-99c1-92cc474ead9d.26891323d1d4483dcf31c98ac1d6f2ba.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (231329978, 'Fresh Blueberries, Organic, 6 oz Package', 3.66, 'deleted_850003425276', 'Fresh Blueberries, Organic, 6 oz', 'Fresh Organic Blueberries, 6 oz: Best when enjoyed at room temperature Light, refreshing taste Healthy sweet treat Certified organic Prior to serving gently wash them with cool water Refrigerate your berries in the original container to maintain freshness, they should approximately last 3-5 days after purchase Keep dry for optimal freshness', 'Fresh Produce', 'https://i5.walmartimages.com/asr/17b4c389-769c-4ee4-b65e-ee26af1068da.7cc3cbe22bb30d9d6bda899a3117f656.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/17b4c389-769c-4ee4-b65e-ee26af1068da.7cc3cbe22bb30d9d6bda899a3117f656.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/17b4c389-769c-4ee4-b65e-ee26af1068da.7cc3cbe22bb30d9d6bda899a3117f656.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (231367138, 'Fresh Blends Herb & Peppercorn Medley Potatoes', 2.97, '134344010071', 'short description is not available', 'Herb And Peppercorn Potato Medley', 'Fresh Produce', 'https://i5.walmartimages.com/asr/10c30f42-2168-4df6-b774-7ca57bd360bc_1.def71d03816a582c9d7eddf766483d1f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/10c30f42-2168-4df6-b774-7ca57bd360bc_1.def71d03816a582c9d7eddf766483d1f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/10c30f42-2168-4df6-b774-7ca57bd360bc_1.def71d03816a582c9d7eddf766483d1f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (231671576, 'Premium Bananas', 0.49, 'deleted_204237000004', 'short description is not available', 'Premium Bananas', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (231946892, 'Taylor Farms® Snack Pack Fruit, Nuts & Cheese 5oz', 2.97, '030223060154', 'A snack pack worth going nuts about, well we will join you there! Our Fruit, Nuts and Cheese snack tray is packed with sweet crisp apples, creamy cheese, almonds, and dried cranberries making a tasty mid-morning snack.', 'Washed and ready to enjoy Perfect snack for all ages Fits perfectly in lunch boxes Easy to pack on-the-go Enjoy at school, work, in the car, outside or anywhere else you need a snack!', 'Taylor Farms', 'https://i5.walmartimages.com/asr/dbde0452-f9ef-4ee7-be4b-f23394a6e472.5bb14f8090e0bc74298d5299ea0f1967.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dbde0452-f9ef-4ee7-be4b-f23394a6e472.5bb14f8090e0bc74298d5299ea0f1967.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dbde0452-f9ef-4ee7-be4b-f23394a6e472.5bb14f8090e0bc74298d5299ea0f1967.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (231971901, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094008591', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (232487656, '(6 pack) (6 Pack) New Mexico Corn Husks, 15 oz', 0.98, '661389690482', 'short description is not available', '15OZ SNM CORN HUSKS', '505 Southwestern', 'https://i5.walmartimages.com/asr/86c037f6-6962-48ea-a1c6-0c7224f3c3d4_2.c82da1d7692cf78c4d2e356e5103eabe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/86c037f6-6962-48ea-a1c6-0c7224f3c3d4_2.c82da1d7692cf78c4d2e356e5103eabe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/86c037f6-6962-48ea-a1c6-0c7224f3c3d4_2.c82da1d7692cf78c4d2e356e5103eabe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (232492299, 'Fresh Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094357279', 'Fresh Grown Yellow Nectarines, 1 Lb.', 'Fresh Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (232554221, 'Honeydew Melon', 4.47, '405755137375', 'short description is not available', 'Melon Honeydew', 'Unbranded', 'https://i5.walmartimages.com/asr/6b14a8d0-5629-46d3-9ad7-e05250726c97.61e76de918c3cac1e24c73adf88ac106.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6b14a8d0-5629-46d3-9ad7-e05250726c97.61e76de918c3cac1e24c73adf88ac106.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6b14a8d0-5629-46d3-9ad7-e05250726c97.61e76de918c3cac1e24c73adf88ac106.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (232658327, 'Pepper Mini Sweet', 2.98, '', 'short description is not available', 'Pepper Mini Sweet', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (233156014, '192pc On Vid 3# Lg', 756.48, '405554688337', 'short description is not available', '192pc On Vid 3# Lg', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (233218166, 'Services Reduced Program Dept 94', 0.01, '251907000000', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (233692118, 'Melissas Organic Mini Swt Peppers 8oz', 3.46, '826920002012', 'short description is not available', 'Peppers, Mini, Sweet USDA organic. Certified organic by CCOF. Organic series. Greenhouse vegetables. Mini marvelous morsels. redsunfarms.com. Product of Mexico.', 'RedSun', 'https://i5.walmartimages.com/asr/4805e451-6857-4a69-a409-ef9f32765761.dd58c2c3c9832e5a6345e48c4062b260.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4805e451-6857-4a69-a409-ef9f32765761.dd58c2c3c9832e5a6345e48c4062b260.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4805e451-6857-4a69-a409-ef9f32765761.dd58c2c3c9832e5a6345e48c4062b260.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (233949940, 'Daikon', 2.84, 'deleted_045255181838', 'Daikon, also called Chinese radish, is an essential ingredient in a wide variety of Asian dishes. The origin of the radish can be traced back to ancient China, but the word Daikon actually comes from two Japanese words: dai (meaning large) and kon (meaning root). As one of the largest radishes, daikon is characterized by its long, narrow appearance and crisp texture. It can range in length from 6 to 15 inches and can average 2 to 3 inches in diameter. The skin is usually white but can also be black. Although it may look similar to a carrot in appearance, its flavor is anything but. It has been described as mildly sweet and juicy with a slightly spicy, peppery bite. This is one versatile Asian vegetable and its fresh flavor is delicious served raw or pickled. It is often used as a condiment, garnish or ingredient in soups, stews, salads and more. Besides enjoying them raw, you can also cook them in many different ways from roasting to steaming and more. They can also be thrown into classic braise with meat, since they absorb their braising liquid beautifully and take on the texture of turnips once cooked. Daikon should be scrubbed with a brush under running water, prior to use. Peel before using or grate with a sharp metal grater', 'Contains: Vitamin C Potassium Phosphorus', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/bc5f1a84-30cb-4796-a258-d3112fa3beec_1.dc4e700cc293daa7e0fe599d0fb2cc77.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc5f1a84-30cb-4796-a258-d3112fa3beec_1.dc4e700cc293daa7e0fe599d0fb2cc77.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc5f1a84-30cb-4796-a258-d3112fa3beec_1.dc4e700cc293daa7e0fe599d0fb2cc77.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (234074824, 'Fresh Green Bell Pepper 2ct', 1.47, '711069001593', 'Discover the crisp and refreshing taste of our fresh green bell peppers! Grown with care and harvested at perfect ripeness, these vibrant peppers are bursting with flavor and nutrients. Their crunchy texture adds a delightful crunch to salads, stir-fries, and sandwiches. Packed with vitamin C and antioxidants, our green bell peppers are a healthy and delicious addition to any recipe. Elevate your meals with the vibrant taste of our premium quality green bell peppers!', 'Green Bell Pepper 2ct Discover the crisp and refreshing taste of our fresh green bell peppers! Grown with care and harvested at perfect ripeness, these vibrant peppers are bursting with flavor and nutrients. Their crunchy texture adds a delightful crunch to salads, stir-fries, and sandwiches. Packed with vitamin C and antioxidants, our green bell peppers are a healthy and delicious addition to any recipe. Elevate your meals with the vibrant taste of our premium quality green bell peppers! Find this in your local Walmart!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c9dff244-10f7-498a-b8d8-cfc377f678a7.f3b821354e1347f7371d699909e8e0f4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c9dff244-10f7-498a-b8d8-cfc377f678a7.f3b821354e1347f7371d699909e8e0f4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c9dff244-10f7-498a-b8d8-cfc377f678a7.f3b821354e1347f7371d699909e8e0f4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (234771130, 'Fresh Medley Tomato, 12 oz Package', 3.98, '885773044020', 'Bring the fresh, delicious taste of Medley Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Medley Tomatoes.', 'Medley Tomato, 12 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/114aa65a-601d-43bd-be7a-ca357d821a18.ef98efe2f7ed66e720145ded0b09dbed.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/114aa65a-601d-43bd-be7a-ca357d821a18.ef98efe2f7ed66e720145ded0b09dbed.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/114aa65a-601d-43bd-be7a-ca357d821a18.ef98efe2f7ed66e720145ded0b09dbed.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (234987363, 'California Grown Peaches, per Pound', 1.58, '400094006078', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (235141397, 'California Grown Peaches, per Pound', 1.58, '400094867136', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (235875743, 'Fresh Red Seedless Grapes', 3.12, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (236052404, 'Fresh Pole Beans', 4.48, '033383910956', 'short description is not available', 'Fresh Pole Beans', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (236465477, 'Jalapeno Pepper 2 Lb Bag', 2.98, '095289098060', 'short description is not available', 'Jalapeno Pepper 2 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (236569829, 'California Grown Peaches, per Pound', 1.58, '400094859438', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (236746439, 'Avocado Per Each', 0.78, 'deleted_856397002529', 'short description is not available', 'Avocado Per Each', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/f0719810-325f-4415-85aa-3414018f80c9.69f50393a1d291661736387d4498fd10.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f0719810-325f-4415-85aa-3414018f80c9.69f50393a1d291661736387d4498fd10.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f0719810-325f-4415-85aa-3414018f80c9.69f50393a1d291661736387d4498fd10.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (236764320, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094586563', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (237001734, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094260944', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (237164916, 'Florida Grown Peaches, per Pound', 1.58, '405513530943', 'Florida Grown Peaches, per Pound', 'Fresh Florida Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (237957352, 'Watermelon Seedless', 4.48, '400094398340', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (237958112, 'Fresh Whole Grape Tomatoes, 10 oz Package', 4.98, '606105801575', 'Enjoy the refreshing taste of Fresh Whole Grape Tomatoes. They are an exciting summer treat, and they\'re the perfect size for skewers, salads and roasting. These bite-sized grape tomatoes look and taste great. Grape tomatoes are a low-calorie treat that are also low in sodium and are a good source of fiber. Whether you are snacking or adding them to your favorite dish. their uses are almost limitless. Try these grape tomatoes with feta cheese, fresh dill, and a drizzle of olive oil for a light and delicious Mediterranean treat. Or make a caprese salad with grape tomatoes, fresh basil, fresh mozzarella, and balsamic vinegar. With 10-ounces of tomatoes in each package, you\'ll have plenty to make mouthwatering meals. Use your imagination to create delicious dishes with Fresh Whole Grape Tomatoes.', 'Fresh Whole Grape Tomatoes, 10 oz Package Perfect size for skewers, salads and roasting Low-calorie, low in sodium, and a good source of fiber Pair with feta cheese, fresh dill, and a drizzle of olive oil for a Mediterranean dish Make a caprese salad with grape tomatoes, fresh basil, fresh mozzarella, and balsamic vinegar', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (238411570, '225pc Pto Idaho 8#', 1332, '405518789063', 'short description is not available', '225pc Pto Idaho 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (238561182, 'Watermelon Seedless', 4.48, '400094983676', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (238627435, 'Fresh Slicing Tomato, 3 Pack', 1.5, '811857020512', 'Create something wholesome and delicious with 3pk tomatoes. These fresh tomatoes are the perfect ingredient for a variety of tasty dishes. Use them to make a decadent tomato sauce for a pasta dish; try slicing them up and pairing with mozzarella cheese, basil and balsamic vinegar; or simply enjoy them on their own as a nutritious snack. They would make a comforting and appetizing tomato soup and a flavorful salsa. You could also slice them up and use them to top burgers and pizza or use them to make a delicious grilled cheese and tomato sandwich. However you choose to use them, these tomatoes will add flavor and taste to any meal. Be sure to add these fresh tomatoes to your Walmart purhase today.', 'Slicing Tomatoes, 3 Count: Pack of 3 whole slicing tomatoes Firm and thick-skinned Large size is perfect for slicing up and garnishing sandwiches and burgers Classic tomato flavor lends itself to a wide variety of recipes Delicious base for making salsas, soups, sauces, and more', 'Fresh Produce', 'https://i5.walmartimages.com/asr/66a57190-3844-4a00-8135-3466bbfce8b0.d49d3461c8a0b731cc67c52cceea0bb9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/66a57190-3844-4a00-8135-3466bbfce8b0.d49d3461c8a0b731cc67c52cceea0bb9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/66a57190-3844-4a00-8135-3466bbfce8b0.d49d3461c8a0b731cc67c52cceea0bb9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (238720430, 'Good Healthy Organic Superfood Blend Microgreens Salad, 3 oz Clam Shell, Fresh', 3.48, '856642007224', 'GoodHealthy Organic Superfood Blend is the perfect mix of protein-rich kale and organic tender beetroot to ensure you get all the veggie goodness you need! Perfect to top off your family’s favorite pasta dish, a warm winter soup, or burgers from the grill. Make every recipe GoodHealthy with our Superfood Blend! At GoodHealthy, we’re changing the way you think about farming! Every seed we plant is nurtured in organic soil, rich in nutrients, and cared for by our sustainable SmartFarm technology. Grown locally 365 days a year, our AI-driven farms are turning less into more; using less water, less land, and less energy to produce more of the farm-fresh organic veggies you love! Going beyond organic, our regenerative greenhouses restore nutrients to the soil with every harvest, reducing our carbon footprint and supporting the local environment. Making the world GoodHealthy, one plant at a time!', 'GoodHealthy Organic Superfood Blend 3oz', 'Good Healthy', 'https://i5.walmartimages.com/asr/b787d27c-e9a5-42eb-b338-ba9e563f3f0e.336e699fd8a9d7f447807be376a7adbe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b787d27c-e9a5-42eb-b338-ba9e563f3f0e.336e699fd8a9d7f447807be376a7adbe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b787d27c-e9a5-42eb-b338-ba9e563f3f0e.336e699fd8a9d7f447807be376a7adbe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (238885812, 'Granny Smith Apples 3 Lb Bag', 3.96, 'deleted_841190103665', 'short description is not available', 'Granny Smith Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (238959223, 'Simply Perfect Microwaveable Sweet Potato, 8 Oz', 1.18, 'deleted_819614010066', 'These delicious sweet potatoes are microwavable and cook in 5-8 minutes, making it easy to cook a quick and healthy meal. They are thoroughly washed and ready to microwave for you to enjoy! This sweet potato is orange on the outside and orange on the inside, delivering a sweet and earthy flavor. What are you waiting for? Pop it in the microwave and enjoy!m Designed to accommodate the individual on the go, our microwaveable sweet potato is nutritious, earthy, and delicious, these singles can complement any dish throughout the day or offer a snack in itself. Sweet potatoes are a pantry essential that you should have always in your kitchen. Just one sweet potato is an excellent source of vitamin containing 368% Vitamin A daily value. They are loaded with beta carotene which acts as a potent antioxidant, making it easy to feel good about what you are about to enjoy!', 'Microwaveable Sweet Potatoes Per Each', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/75f4050a-0e69-4bc0-8604-11f44ec405b3.8481ac97edd8fe483b8ec619a7f3458b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75f4050a-0e69-4bc0-8604-11f44ec405b3.8481ac97edd8fe483b8ec619a7f3458b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75f4050a-0e69-4bc0-8604-11f44ec405b3.8481ac97edd8fe483b8ec619a7f3458b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (239092183, 'Fresh Candy Dream Grapes, 1 Lb', 30, '', 'short description is not available', 'Fresh Candy Dream Grapes, 1 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (239512458, 'Organic Grape Tomato', 2.76, '400094027936', 'short description is not available', 'Organic Grape Tomato', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (240269413, '200pc Pto Red 5# Ff', 794, '405505737602', 'short description is not available', '200pc Pto Red 5# Ff', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (240386310, 'California Chopped Dates (Pack of 2)', 27.35, '100412721408', 'Feel revitalized with the fresh taste of sun-ripened dole all natural fruit. Rich in nutrients, fruit gives you healthy energy so you feel refreshed and ready to shine. Grown under the california sun. Dole dates are picked at the peak of ripeness for maximum sweetness and flavor. They\'re delicious, 100% natural, and contain more nutritious antioxidants than many other common fruits! For more than 100 years, dole has been committed to our environment, our employees and the communities in which we operate.', 'Includes two 8 oz packages of Dole California Chopped Dates,Great for snacking and Toppings!,Eat them right out of the package or top your favorite salad!,Gluten Free.,Comes in convenient, resealable pouch.', 'Dole', 'https://i5.walmartimages.com/asr/c75b2912-cce4-4dd4-aa2e-1657c3deb5aa.7ed7f89c9e89dc88d798d42a4d791c59.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c75b2912-cce4-4dd4-aa2e-1657c3deb5aa.7ed7f89c9e89dc88d798d42a4d791c59.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c75b2912-cce4-4dd4-aa2e-1657c3deb5aa.7ed7f89c9e89dc88d798d42a4d791c59.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (240406334, 'Indian Bittermelon', 3.48, '000000243193', 'short description is not available', 'Indian Bittermelon', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (240966206, 'Fieldpack Unbranded Fresh Strawberries 1#', 2.24, 'deleted_715756200498', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (241137723, 'Melon Honeydew 8 Ct', 4.98, '405873138407', 'short description is not available', 'Melon Honeydew 8 Ct', 'Fresh Produce', 'https://i5.walmartimages.com/asr/28ce1e41-6388-47c9-976f-b5cea1d46f40.4ba7bd174ffb53b01bf3540de6bb3f7b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/28ce1e41-6388-47c9-976f-b5cea1d46f40.4ba7bd174ffb53b01bf3540de6bb3f7b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/28ce1e41-6388-47c9-976f-b5cea1d46f40.4ba7bd174ffb53b01bf3540de6bb3f7b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (241481004, 'Yellow Bell Pepper, each', 1.68, 'deleted_699058046896', 'Naturally low in calories Exceptionally rich in vitamin C and other antioxidants Delicious cooked or uncooked', 'Yellow Bell Pepper, each', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/20d76a56-9908-4163-a6d7-ace44d153c32.e0c356ae8149a2683b203576a7d039af.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20d76a56-9908-4163-a6d7-ace44d153c32.e0c356ae8149a2683b203576a7d039af.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20d76a56-9908-4163-a6d7-ace44d153c32.e0c356ae8149a2683b203576a7d039af.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (241818845, '240pc On Swt 3# Nv', 787.2, '405555388670', 'short description is not available', '240pc On Swt 3# Nv', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (241950406, 'Granny Smith Apples 5 Lb Bag', 5.53, '847473005947', 'short description is not available', 'Granny Smith Apples 5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (242103463, 'Marketside Organic Fresh Sugar Snap Peas, 8 oz', 3.77, '681131161572', 'Marketside Organic Sugar Snap Peas are packed fresh, washed and ready to eat for your convenience. They have a delicious crisp texture and a vibrant green color that is sure to add a pop to all your dishes. Enjoy them as a healthy side or use them in all your favorite recipes. They are a great addition to stir fry and other Asian cuisines. Season them with salt, pepper and butter and serve with grilled chicken breast, grilled squash and bread for a filling dinner. Toss them with fresh cut carrot sticks for a tasty snack at the office. They are USDA organic and also offer a nutritional benefit as they are a rich source of iron. Snacking is made healthy with Marketside Organic Sugar Snap Peas. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Washed and ready to eat 2.5 servings per container USDA certified organic Great as a healthy side or snack', 'Marketside', 'https://i5.walmartimages.com/asr/62eed721-98b8-4e6b-bd1b-6919eb1536b0.8fe13f3d5c61ebbb98c5752109285e56.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/62eed721-98b8-4e6b-bd1b-6919eb1536b0.8fe13f3d5c61ebbb98c5752109285e56.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/62eed721-98b8-4e6b-bd1b-6919eb1536b0.8fe13f3d5c61ebbb98c5752109285e56.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (242307944, 'Green Seedless Grapes, 2 lb', 3.76, 'deleted_014668760121', 'short description is not available', 'Green Seedless Grapes, 2 lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (242386410, 'Fresh Peruvian Grown Black Grapes', 1.96, '', 'short description is not available', 'Fresh Peruvian Grown Black Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (243061563, 'SUNSET Wild Wonders Medley Tomato, 1.5 lb Package, Fresh', 4.98, '057836021174', 'Premium Wild Wonders Medley Tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily complements your recipes. Juicy and delicious, medley tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain Vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Premium Medley Tomatoes are the perfect choice.', 'Wild Wonders Premium Medley Tomatoes Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'SUNSET', 'https://i5.walmartimages.com/asr/20f46179-9a7c-4a56-9a3e-33ffd4158ee8.5197e09e3ff8cc2427d7ac2973389dfc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20f46179-9a7c-4a56-9a3e-33ffd4158ee8.5197e09e3ff8cc2427d7ac2973389dfc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20f46179-9a7c-4a56-9a3e-33ffd4158ee8.5197e09e3ff8cc2427d7ac2973389dfc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (243111863, 'Marketside Gala Apples/almond Pro-2 Snax', 1.38, '681131161107', 'short description is not available', 'Marketside Gala Apples/almond Pro-2 Snax', 'Marketside', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (243844975, 'Mann\'s Sesame Srirache Saute Bowl, 8.5oz', 4.98, '716519007835', 'Get the perfect combination of Asian flavors with our Sesame Sriracha Sauté Style Nourish Bowl® packed with broccoli, kohlrabi, cabbage, carrots, snap peas, brown rice and a spicy sesame sriracha sauce.', 'Mann\'s Sesame Srirache Saute Bowl, 8.5oz Microwaveable in just 3 minutes 5 grams of protein 270 calories Vegan Soy, Wheat and sesame', 'Mann\'s', 'https://i5.walmartimages.com/asr/218b9e14-40cc-4b7d-8983-c605c02e61ea.30d8837ca4eb9692c1fa436d0444b168.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/218b9e14-40cc-4b7d-8983-c605c02e61ea.30d8837ca4eb9692c1fa436d0444b168.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/218b9e14-40cc-4b7d-8983-c605c02e61ea.30d8837ca4eb9692c1fa436d0444b168.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (244607665, 'Fresh Red Seedless Grapes', 2.88, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (244674957, '175pc On Swt 4# Cfv', 689.5, '405512733475', 'short description is not available', '175pc On Swt 4# Cfv', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (244901640, '120pc Apl Gala 5# Wa', 600, '400094619803', 'short description is not available', '120pc Apl Gala 5# Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (245094489, 'Valencia Oranges', 0.98, 'deleted_073150043821', 'short description is not available', 'Valencia Oranges', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (245379472, 'Fresh Green Seedless Grapes', 1.78, '083477010307', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (245531026, 'Marketside Spinach Artichoke Stfd Mushrooms', 6.24, 'deleted_678286614060', 'short description is not available', 'Marketside Spinach Artichoke Stfd Mushrooms', 'Marketside', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (245786482, 'Tomato on the Vine, Bag', 1.98, '', 'Keep your recipes simple and classic with fresh tomatoes on the vine. With their vibrant red color, firm and juicy flesh, and unmistakably delicious flavor, this fresh produce item is sure to impress more than just your taste buds. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. The list is endless! Plus, they come right to your kitchen still on the vine that they grew on, meaning that their mouthwatering taste and freshness will be long-lasting for your culinary convenience. Stock up on Walmart\'s Tomatoes On The Vine and keep your dishes looking great and tasting equally as excellent.', 'Tomato on the Vine, Bag: Wholesome, versatile, and delicious Ideal ingredient for a variety of dishes Make a zesty tomato sauce to go along with your favorite pasta Enjoy on their own as a nutritious snack Make a flavorful salsa or add some pop to your guacamole', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (246000129, '200pc Pto Ylw 5# Ff', 994, '400094040553', 'short description is not available', '200pc Pto Ylw 5# Ff', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (246232835, 'Minced Garlic 4.5 Oz Jar', 1.97, 'deleted_718940001840', 'short description is not available', 'Garlic, Minced Fat free. Cholesterol free. Since 1992. Ready to use.', 'Garland Food', 'https://i5.walmartimages.com/asr/79fa661d-8854-43ed-a5a6-fc2c91afa42c.067aee5132203cf02eae185e9dbc0b42.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/79fa661d-8854-43ed-a5a6-fc2c91afa42c.067aee5132203cf02eae185e9dbc0b42.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/79fa661d-8854-43ed-a5a6-fc2c91afa42c.067aee5132203cf02eae185e9dbc0b42.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (246317393, 'Watermelon Seedless', 4.48, '400094575864', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (246741490, 'Earthbound Farm® Organic Spring Mix 10oz Tray', 8.93, '032601900182', 'In 1984, on a 2 ½ acres in California’s verdant Carmel Valley, our founders started Earthbound Farm. Rooted on that tiny farm, our commitment to organic has grown stronger every year. Thank you for choosing organic!', 'Organic Salad Organic Lettuce Blend A super-versatile mix of tender baby spinach, baby red and green chards, and baby kale.', 'Earthbound Farm', 'https://i5.walmartimages.com/asr/89d7821a-0ab9-4cdb-a76c-090bff390b5d.973b0bf5c828dae84c62e1dc22c34a56.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/89d7821a-0ab9-4cdb-a76c-090bff390b5d.973b0bf5c828dae84c62e1dc22c34a56.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/89d7821a-0ab9-4cdb-a76c-090bff390b5d.973b0bf5c828dae84c62e1dc22c34a56.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (246907370, '125pc Pto Rst Jmb 8#', 721.25, '405546022446', 'short description is not available', '125pc Pto Rst Jmb 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (247241026, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '405526537793', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (247826009, '100pc Pto Rst 10# Sc', 444, '405565996971', 'short description is not available', '100pc Pto Rst 10# Sc', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (248260406, 'Marketside Kosher Ruby Grapefruit Bites Segments, 64 oz Jar', 8.97, '681131161442', 'Marketside Ruby Grapefruit Segments are peeled and soaked in a slightly sweetened water to lock in all their delicious fruit flavors. This tasty citrus fruit is perfect for fruit cocktails, salsas, desserts, salads and can also be used as a garnish for meat and vegetable dishes. Enjoy them chilled for a refreshing snack that you can enjoy at anytime of the day. They also offer a nutritional benefit as they are a rich low calorie source of vitamin C. This large four pound container makes it easy to stock up on your favorite fresh fruit. Enjoy a healthy and delicious snack with the wholesome taste of Marketside Ruby Grapefruit Segments. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Kosher Ruby Grapefruit Bites Segments, 64 oz Jar Ruby grapefruit segments soaked in slightly sweetened water Great in salads High in vitamin C 1 plastic cup container has 15 servings Net weight: 4 pounds Keep refrigerated until ready to enjoy', 'Marketside', 'https://i5.walmartimages.com/asr/8bc86217-b71c-4263-a29c-eb81a43769b0_3.aa27b4db730405ef392d90f78a6324d7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8bc86217-b71c-4263-a29c-eb81a43769b0_3.aa27b4db730405ef392d90f78a6324d7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8bc86217-b71c-4263-a29c-eb81a43769b0_3.aa27b4db730405ef392d90f78a6324d7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (248275652, 'Snap Peas 8z', 2.68, '782796009176', 'short description is not available', 'Snap Peas 8z', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (248513200, 'Heirloom Tomato, 2 Pack', 3.98, 'deleted_689259003460', 'Fresh Heirloom Tomatoes are the time tested, never modified, reminder of the quality eating experience that can only come from a tomato grown in your own backyard and picked at the peak of perfedtion! Whether chopping to add into a salad, or sliced as part of a burger, these fresh heirloom tomatoes will not dissapoint. Be sure to add fresh heirloom tomatoes to our Walmart produce purchase today', 'Tomatoes Heirloom 2 Pk', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (248745453, 'Fresh Pineapple, Each', 0.88, '405810385161', 'Enjoy a burst of tropical flavor with this Fresh Pineapple. This pineapple can be a satisfying afternoon snack, or you can use it in a variety of recipes. For breakfast, use this pineapple to make a rich and creamy smoothie or serve it alongside your pancakes, sausage, and eggs. Slice it up and use to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. For dessert, you could make a crowd-pleasing pineapple upside down cake or a comforting pineapple crisp. However you choose to use it, this Fresh Pineapple will add flavor to any meal or beverage.', 'Aside from its sweetness, pineapple is abundant in potassium, iodine and vitamins A, B and C. It contains 85% water, carbohydrates and fiber, and provides great nutritional and health benefits. It is excellent for weight loss diets.', 'Pina Corona De Pr', 'https://i5.walmartimages.com/asr/32f4cb1f-71f8-4cbb-9539-e9c6718ca645.51d59e41d011e0a4fc92bc7bcd210c6a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/32f4cb1f-71f8-4cbb-9539-e9c6718ca645.51d59e41d011e0a4fc92bc7bcd210c6a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/32f4cb1f-71f8-4cbb-9539-e9c6718ca645.51d59e41d011e0a4fc92bc7bcd210c6a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (248783048, 'Manzana Mcintosh', 3.78, '072182002226', 'Manzana Mcintosh', 'Manzana Mcintosh Fcy 12/3', 'Manzana', 'https://i5.walmartimages.com/asr/1a5f3fb3-b19a-427a-bde3-00791668ecc9.caa10db611acf1d10999e3f8546e6d7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a5f3fb3-b19a-427a-bde3-00791668ecc9.caa10db611acf1d10999e3f8546e6d7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a5f3fb3-b19a-427a-bde3-00791668ecc9.caa10db611acf1d10999e3f8546e6d7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (249300669, 'Lunds & Byerlys Choice Premium Chili Meat Beef 1 ea', 0.01, '251701000008', 'Lunds & Byerlys Choice Beef Prm', 'Tradition; service; quality since 1939. Quality & value. Seal fresh - stays fresh longer. U.S. inspected and passed by Department of Agriculture. Product of USA. Beef, Chili Meat, Premium', 'SERVICES', 'https://i5.walmartimages.com/asr/1ee27183-1eea-41be-9528-4877e693426a.e1a3508b1968832d8e781a7779cf8316.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1ee27183-1eea-41be-9528-4877e693426a.e1a3508b1968832d8e781a7779cf8316.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1ee27183-1eea-41be-9528-4877e693426a.e1a3508b1968832d8e781a7779cf8316.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (249473755, 'Yellow Peach, 1.5 lb Carton', 3.48, '854378002162', 'short description is not available', 'Yellow Peach, 1.5 lb Carton', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (249565267, 'Simply Fresh Salad - Ultimate Blt', 3.98, '851125002505', 'short description is not available', 'Salad with Chicken, with Creamy Ranch Dressing, Ultimate BLT Romaine lettuce and tomatoes, bacon crumbles, seasoned chicken breast with rib meat and sea salt bagel chips. 280 calories. Loaded with toppings. 1 Fork included. Chicken raised without antibiotics. Inspected for Wholesomeness by U.S. Department of Agriculture. FivestarGourmetFoods.com. Follow us Facebook. Instagram. Pinterest. Twitter. This salad bowl is made from two recycled water bottles.', 'Simply Fresh', 'https://i5.walmartimages.com/asr/ac374f47-28c6-4599-9002-52c66e3003bb_3.b447ecf0fff669f16914eadaa812f902.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac374f47-28c6-4599-9002-52c66e3003bb_3.b447ecf0fff669f16914eadaa812f902.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac374f47-28c6-4599-9002-52c66e3003bb_3.b447ecf0fff669f16914eadaa812f902.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (250086645, 'NatureFresh Farms Sweet Bell Peppers, 12 Oz, 3 Count', 3.37, 'deleted_689259000582', 'Sweet Bell Peppers are a grills best friend and can add the extra flare your BBQ needs. Excellent color contrast in salads, sauce, dips, dressings, and stuffing. Don’t forget them in your juice/smoothie for the Vitamin C blast! Vitamin C is important in helping the body to better absorb iron. Try juicing a bell pepper with apple, lime and a splash of ginger for an excellent pre and post workout boost!', 'Mixed Bell Peppers (Selection May Vary) 3 count', 'Produce Unbranded', 'https://i5.walmartimages.com/asr/44b3d98e-5076-4720-a0e3-a1ea1471abcd.4063b270d6248fae43f21774f6fe1cfa.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44b3d98e-5076-4720-a0e3-a1ea1471abcd.4063b270d6248fae43f21774f6fe1cfa.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44b3d98e-5076-4720-a0e3-a1ea1471abcd.4063b270d6248fae43f21774f6fe1cfa.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (250231005, 'Freshness Guaranteed Seasonal Blend Small', 4.97, '262820000008', 'Enjoy the sweet, refreshing taste of Freshness Guaranteed Seasonal Blend. This pre-cut Seasonal Blend is great for breakfast, lunch, dessert, or when you want a snack. You can eat them right out of the container, use them to infuse water for a refreshing drink. This Seasonal Blend is great for sharing with friends and family or keeping it for yourself. It comes in a reclosable container to help maintain freshness. Bring home Freshness Guaranteed seasonal blend today for a refreshing, healthy treat.Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Seasonal Blend Small', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (250546773, 'Del Monte Red Grapefruit in 100% Juice, 20 oz Bowl', 4.28, '024000008385', 'Del Monte Red Grapefruit in 100% Juice, 20 oz Bowl makes it easy to enjoy high quality fruit in minutes. Del Monte Red Grapefruit in 100% Juice is packed with delicious, ripe grapefruit in 100% juice for a ready to eat fruit snack you can feel good about. Del Monte grapefruit offers a good source of Vitamin C, making them a convenient, wholesome and ready to eat citrus fruit option for busy nights. Picked and packed at the peak of freshness, peeled and sectioned, and immersed in extra light syrup, the jarred fruit slices are ideal as part of a quick lunch snack or as a flavorful addition to fruit cocktail. Each jar is easy to open, reseal, and store for a convenient fruit snack whenever you need delicious fruit on-the-go. Bring the wholesome goodness of the Earth to your family with Del Monte Jarred Grapefruit.', 'Juicy red grapefruit segments in 100% juice. 20 oz bowl, convenient and ready-to-eat. Naturally sweet with no artificial preservatives. Good source of Vitamin C for daily nutrition. Perfect for breakfast, snacks, or recipes.', 'Del Monte', 'https://i5.walmartimages.com/asr/abebd4fd-c862-44bc-b06c-527377cf0d70.95c881c34adeb7e8671cdabad002b696.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/abebd4fd-c862-44bc-b06c-527377cf0d70.95c881c34adeb7e8671cdabad002b696.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/abebd4fd-c862-44bc-b06c-527377cf0d70.95c881c34adeb7e8671cdabad002b696.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (252043056, 'Fresh Black Seedless Grapes', 2.78, '', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (252936575, 'Watermelon Seedless', 4.48, '400094476666', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (253758383, 'Little Leaf Farms Baby Crispy Green Leaf Lettuce Salad, 8 oz Clam Shell, Fresh', 4.97, '857394006138', 'Little Leaf Farms Baby Crispy Green Leaf lettuce is the perfect addition to any salad or sandwich. Our deliciously crisp, wonderfully fresh, and uniquely long-lasting greens are grown in a state-of-the-art, sustainable greenhouse that harnesses sunlight and fresh rainwater. With an a fully automated, hands-free growing process to seeding to packaging, there’s no need to wash. Just open the container and enjoy!', 'Greenhouse Grown ensures optimal growing conditions year-round Delicate, fresh, and crisp Pesticide, Herbicide, and Fungicide Free Naturally cultivated without genetic modification No Need to Wash Pristine and vibrant, perfect for salads, sandwiches, and garnishes', 'Little Leaf Farms', 'https://i5.walmartimages.com/asr/437970cf-a881-48e2-8a3e-19dde2a8aa4b.89ebfdbde10cf42de313bb040314604a.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/437970cf-a881-48e2-8a3e-19dde2a8aa4b.89ebfdbde10cf42de313bb040314604a.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/437970cf-a881-48e2-8a3e-19dde2a8aa4b.89ebfdbde10cf42de313bb040314604a.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (254074704, 'Fresh Dark Sweet Cherries', 84.5, '', 'short description is not available', 'Fresh Dark Sweet Cherries', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (254201565, 'California Grown Saturn Peaches, per Pound', 3.68, 'deleted_400094521816', 'California Grown Saturn Peaches, per Pound', 'Fresh California Grown Saturn Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (254451920, 'California Grown Peaches, per Pound', 1.58, '400094032756', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (254601066, 'Yellow Flesh Peaches, per Pound', 1.58, '400094145777', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (254642460, 'Fresh Slicing Tomato, 4 Pack', 2.48, '856441005001', 'Create something wholesome and delicious with Fresh Slicing Tomatoes. These fresh tomatoes are the perfect ingredient for a variety of tasty dishes. Use them to make a decadent tomato sauce for a pasta dish; try pairing with mozzarella cheese, basil, and balsamic vinegar for a delectable caprese salad; or simply enjoy them on their own as a nutritious snack. They would make a comforting and delicious tomato soup or a flavorful homemade salsa. You could also slice them up and use them to top burgers and pizza or use them to make a delicious grilled cheese and tomato sandwich. No matter how you choose to use them, these tomatoes will add flavor and taste to any meal. Be sure to add Fresh Slicing Tomatoes to your Walmart produce purchase today.', 'Slicing Tomatoes, Each: Wholesome, versatile, and delicious Large size with a juicy, delicious flavor Meaty texture makes them perfect for slicing Enjoy on burgers, sandwiches and more Enjoy on its own seasoned with salt and pepper as a heathy snack Create a mouthwatering salad or appetizer', 'Fresh Produce', 'https://i5.walmartimages.com/asr/596ed5a2-6558-42d6-9a5b-c318bc9f4ae2.4927131d05c00312cf51744e17e11473.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/596ed5a2-6558-42d6-9a5b-c318bc9f4ae2.4927131d05c00312cf51744e17e11473.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/596ed5a2-6558-42d6-9a5b-c318bc9f4ae2.4927131d05c00312cf51744e17e11473.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (254834665, 'Marketside Spring Mix Salad Blend, 11 oz Clam Shell, Fresh', 3.98, '681131355001', 'Marketside Spring Mix delivers a smooth, tender texture and great fresh taste with baby lettuce blend and baby greens blend. This mix comes loaded with nutrients and is packed, washed and ready to eat for your convenience. Use it to create your very own personalized salad that is tossed with your favorite vegetables, protein, nuts and dressing. Use it as a topping on sandwiches and pizzas or simply enjoy it as a healthy side. It offers nutritional benefits as it is a rich source of dietary fiber, calcium, iron and vitamins A and C. Enjoy fresh from the farm taste and bring home Marketside Spring Mix. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Spring Mix, 11 oz: Baby greens blend and baby lettuce blend Conveniently packaged to maintain freshness Loaded with nutrients and is packed, washed and ready to eat for your convenience Use it to create your very own personalized salad that is tossed with your favorite vegetables, protein, nuts and dressing Use it as a topping on sandwiches and pizzas or simply enjoy it as a healthy side', 'Marketside', 'https://i5.walmartimages.com/asr/60a7a38e-c6fd-48e9-83a1-f54d6dd08cbe.2621f189097ebab8659777c777cf9f2c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/60a7a38e-c6fd-48e9-83a1-f54d6dd08cbe.2621f189097ebab8659777c777cf9f2c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/60a7a38e-c6fd-48e9-83a1-f54d6dd08cbe.2621f189097ebab8659777c777cf9f2c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (255081551, 'Fresh Red Seedless Grapes', 2.58, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (255456870, 'Pompeii Lemon Juice 4 oz.', 1.37, '075879251877', 'Lemon juice Extract', 'Juices are made with only premium ingredients and freshly produced. Perfect for all cooking needs…sauces, salads, entrees and desserts have a fine quality of taste. 100% Juice concentrate', 'Pompeii Products', 'https://i5.walmartimages.com/asr/f810e3a5-5123-4dd8-a009-8f495cdd0369.f569a2b5d6330aa15231462a283bca44.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f810e3a5-5123-4dd8-a009-8f495cdd0369.f569a2b5d6330aa15231462a283bca44.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f810e3a5-5123-4dd8-a009-8f495cdd0369.f569a2b5d6330aa15231462a283bca44.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (256100431, 'Services Reduced Program Dept 94', 0.01, '252014000006', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (256156425, 'Fruit Medley 16oz', 4.38, '717524777164', 'short description is not available', 'Fruit Medley 16oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (256413023, 'Fresh Apio Root , lb', 1.77, '405872466884', 'Celery (Apio) is a root vegetable that you must try! Its flavor is buttery and its smell is very distinctive and rich. You peel it like a potato and you can do everything you would do with any other root. You can mash it and add a little butter like eating mash potato. Dice it to add to beans, stews, boil, sauté, and mash). Grown in Puerto Rico, Nicaragua, Honduras.', 'Carbohydrate Fiber, vitamin C, Zinc y vitamin Betacaroten,potassium, magnesium y calcium', 'Unbranded', 'https://i5.walmartimages.com/asr/77d96570-08b8-47de-a05a-39d08411c35d.5e7fe8ed254fd22869e4ffa91f609213.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77d96570-08b8-47de-a05a-39d08411c35d.5e7fe8ed254fd22869e4ffa91f609213.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77d96570-08b8-47de-a05a-39d08411c35d.5e7fe8ed254fd22869e4ffa91f609213.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (256492878, 'Fresh Organic Grape Tomato, 4 oz Cup', 0.01, 'deleted_751666770751', 'With the perfect balance of sweetness and acidity, these Organic Grape Tomatoes deliver fresh, versatile flavor to take you from sauces to salads and beyond. These grape tomatoes are certified organic, meaning that you can enjoy a healthy, flavorful addition to elevate the taste and texture of any meal. You can combine these tasty little tomatoes with fresh mozzarella and basil drizzled with olive oil or slice them up and add them to a freshly tossed salad. If you\'re feeling something classic, you can always cut one up to add that fresh tomato taste to a sandwich or dice up a few to make a delightful pizza topping. Be sure to add Organic Grape Tomatoes to your inventory of fresh ingredients today.', 'Organic Grape Tomato, 4 oz Cup: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches USDA organic Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (256569486, '150pc Pto Ykn 5# Co', 520.5, '405519876571', 'short description is not available', '150pc Pto Ykn 5# Co', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (256712932, 'Mangoes, 1 Each', 0.88, '', 'Although generally not considered to be the best in terms of sweetness and flavor, it is valued for its very long shelf life and tolerance of handling and transportation with little or no bruising or degradation.', 'Mango', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e75fbdb8-891a-483e-a48b-41da6099cddd_3.a040dcea704a1a361b37cfc7ec1323b4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e75fbdb8-891a-483e-a48b-41da6099cddd_3.a040dcea704a1a361b37cfc7ec1323b4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e75fbdb8-891a-483e-a48b-41da6099cddd_3.a040dcea704a1a361b37cfc7ec1323b4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (256763782, 'Name Root Per Pound', 1.72, 'deleted_847380000684', 'short description is not available', 'Name Root Per Pound', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/2e7cecd4-6650-43c5-8550-4d9e911f0b46_1.52b518732dc7c4be24b42df691aa3325.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2e7cecd4-6650-43c5-8550-4d9e911f0b46_1.52b518732dc7c4be24b42df691aa3325.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2e7cecd4-6650-43c5-8550-4d9e911f0b46_1.52b518732dc7c4be24b42df691aa3325.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (257183195, '100pc Pto Rst 10# Ph', 444, '405564156048', 'short description is not available', '100pc Pto Rst 10# Ph', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (258004738, 'Sweet Potato Oriental Yam', 1.28, '851502006393', 'short description is not available', 'Sweet Potato Oriental Yam', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (258401148, 'Services Reduced Program Dept 94', 0.01, '251862000008', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (258908097, 'Fresh Green Lime, 2lb', 3.67, '826594105170', 'Stock up on several of these juicy, Fresh Limes to enjoy with everyday meal planning. Freshly squeezed limes provide a healthy dose of vitamin C to your diet and are a key ingredient in many recipes, from homemade salsa to chicken dishes. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use them when baking cakes, cookies, and tarts. Limes are sold at a per unit price, so you can stock up on as many as you need. You can even buy just one single lime at a time. Enjoy the refreshing, tart flavor of Fresh Limes.', 'Juicy and fresh, packed with vitamin C Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies and tarts Refreshing, tart flavor', 'Fresh', 'https://i5.walmartimages.com/asr/7722c1e3-7bd1-4d24-899a-508e9b5af0b9.6b3561b7951fe249d5c5dc8634e4a010.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7722c1e3-7bd1-4d24-899a-508e9b5af0b9.6b3561b7951fe249d5c5dc8634e4a010.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7722c1e3-7bd1-4d24-899a-508e9b5af0b9.6b3561b7951fe249d5c5dc8634e4a010.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (259016357, '240pc On Swt 3# Ca', 787.2, '405542115364', 'short description is not available', '240pc On Swt 3# Ca', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (259059986, 'Yellow Flesh Peaches, per Pound', 1.58, '400094344323', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (259107783, 'Krinos Giardiniera', 4.84, '075013255006', 'A classic component of antipasti platters, Krinos Giardiniera is a vibrant mixture of cauliflower, carrots, celery and peppers – marinated in vinegar brine. Our crunchy, pickled salad is delicious and ready-to-serve on its own. For variety, coat the colorful vegetables with your favorite salad dressing and a sprinkle of cheese or toss into a cold pasta salad. We recommend rinsing Krinos Giardineria before using.', 'Krinos Giardiniera 1lb A classic component of antipasti platters, Krinos Giardiniera is a vibrant mixture of cauliflower, carrots, celery and peppers – marinated in vinegar brine. Ready to Eat For variety, coat the colorful vegetables with your favorite salad dressing and a sprinkle of cheese or toss into a cold pasta salad. We recommend rinsing Krinos Giardineria before using.', 'Krinos', 'https://i5.walmartimages.com/asr/a9ed8ce2-a89b-4861-8441-64a310692c1b.7f5ea600a6d8429865efe9331f636539.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a9ed8ce2-a89b-4861-8441-64a310692c1b.7f5ea600a6d8429865efe9331f636539.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a9ed8ce2-a89b-4861-8441-64a310692c1b.7f5ea600a6d8429865efe9331f636539.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (259332076, 'Moby Grape Tomato Plant - Distinctively Sweet - 2.5\" Pot', 7.99, '810096733771', 'Determinate. Distinctively sweet 2 inch red grape tomatoes are delicious eaten by the handful right off the vine or added to salads. Suitable for large containers. F1, Large 2\" x 1½\" grape, unusually sweet 1 oz fruit, compact plant for patio pot. 70-80 days from transplant.', 'Distinctively sweet 2 inch red grape tomatoes Delicious eaten by the handful right off the vine Indeterminate Add to salads', 'Hirt\'s Gardens', 'https://i5.walmartimages.com/asr/c3d0bd1f-60f4-4f3b-b4f1-0a0918362977.3462ef3845873659412cd77dcc571259.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c3d0bd1f-60f4-4f3b-b4f1-0a0918362977.3462ef3845873659412cd77dcc571259.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c3d0bd1f-60f4-4f3b-b4f1-0a0918362977.3462ef3845873659412cd77dcc571259.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (259394295, '180pc Apple Mac 3#', 624.6, '405671428601', 'short description is not available', '180pc Apple Mac 3#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (259513938, 'Sun-Dried Pitted Dates – 5 Pound Bulk Bag by Sunbest Natural – Naturally Chewy Deglet Noor Dates, No Sugar Added, Vegan Digestive Support', 25.99, '872224770218', 'Naturally Sweet Delight Experience the deliciously natural sweetness and delightful chewiness of Sunbest Natural Sun-Dried Dates. Our premium quality, pitted dates are packed with an intense flavor that only nature can provide. Each 80 oz (5 lbs) pack is a treasure trove of nutrients, rich in fiber, protein, calcium, iron, and vitamin A, making it not just a tasty treat but a healthful one as well. Diet-Friendly Snacking Sunbest Natural\'s dates are a perfect fit for various dietary needs. Whether you adhere to a keto, vegan, or paleo diet, our sun-dried dates are an excellent, guilt-free alternative to sugary snacks. Naturally gluten-free, non-GMO, and kosher certified, they support your health without compromising taste. Long-Lasting Freshness Packaged for maximum freshness, our dates maintain their chewy goodness down to the last bite. For optimal longevity, store them in an airtight container in the refrigerator, where they will keep fresh for up to 16 months. Enjoy the lasting natural flavor of Sunbest dates at your convenience. Versatile Culinary Ingredient Beyond their snack-worthy appeal, Sunbest Natural\'s dates offer versatile culinary uses. Whether eaten straight from the bag or incorporated into recipes, they add a naturally sweet and chewy dimension to salads, desserts, and baked goods. Explore the flavorful potential of our sun-dried dates in your kitchen and discover new ways to enhance your dishes.', 'Naturally Sweet & Chewy - Premium-quality Deglet Noor pitted dates, sun-dried for natural sweetness without added sugar or preservatives. Wholesome dried fruit snacks - a clean, satisfying option for everyday energy and meal prep. Versatile pantry staple - great for baking, smoothies, oatmeal, salads, and homemade bars; better than processed dry fruits. Clean label - dried dates no sugar added; nothing artificial. Bulk value - 5 lb (80 oz) resealable bag keeps dates pitted fresh and chewy. Diet-friendly - Vegan, Non-GMO, Kosher; convenient dry fruit for many lifestyles.', 'Sunbest Natural', 'https://i5.walmartimages.com/asr/d5c927d1-efb6-459c-854a-2251f35ea7df.94fd0914fbdef8901c8b43a86cfeb91f.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d5c927d1-efb6-459c-854a-2251f35ea7df.94fd0914fbdef8901c8b43a86cfeb91f.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d5c927d1-efb6-459c-854a-2251f35ea7df.94fd0914fbdef8901c8b43a86cfeb91f.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (259634077, 'California Grown Peaches, per Pound', 1.58, '400094859360', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (259842087, 'POM Wonderful Pomegranate Arils, Ready to Eat Pomegranate Seeds, 4 oz', 4.97, '824150910015', 'One 4 Ounce Cup of POM Wonderful Pomegranate Arils, Ready to Eat Pomegranate Seeds. Best Snack Award Winner: POM Wonderful Pomegranate Arils offer a deliciously convenient way to enjoy the sweet and tart flavor of fresh pomegranates anytime, anywhere. Each cup is packed with juicy, ruby-red arils that are bursting with flavor and naturally rich in antioxidants. Whether you\'re looking for a healthy snack between meetings, a vibrant topping for your morning yogurt, or a flavorful addition to your favorite salad, these arils deliver versatility and taste in every bite. You can even melt dark chocolate and sprinkle the arils on top for a decadent, antioxidant-rich treat. Their bold flavor complements both savory and sweet dishes, making them a must-have ingredient in your kitchen. The resealable, cup-like container is designed for freshness and portability, perfect for busy lifestyles. With POM Wonderful, you’re not just snacking, you’re choosing a smart, flavorful option that supports your wellness goals while satisfying your cravings.', 'One cup of 4 oz ready to eat POM Wonderful Pomegranate Arils (also known as pomegranate seeds) Pomegranates are known for their unique antioxidants and sweet, tart taste Conveniently packed in individual fruit cups with an easy peel lid. So simple for an on-the-go snack, lunch boxes, road trip or to enjoy at home Eat straight from the cup, or add a refreshing crunch to salads, smoothies, charcuterie boards or any of your favorite dishes Pomegranate arils (seeds) are a good source of fiber and vitamin C. A healthy treat Non-GMO, certified Kosher and Gluten Free', 'POM Wonderful', 'https://i5.walmartimages.com/asr/a266b2cf-b77a-45c0-aa2a-0a3c35cdd234.c6b1e198234376c7489f651ba2f46090.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a266b2cf-b77a-45c0-aa2a-0a3c35cdd234.c6b1e198234376c7489f651ba2f46090.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a266b2cf-b77a-45c0-aa2a-0a3c35cdd234.c6b1e198234376c7489f651ba2f46090.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (260162791, '200pc Pto Rst Jmb 8#', 1284, '405518789827', 'short description is not available', '200pc Pto Rst Jmb 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (260223661, 'Fieldpack Unbranded Fresh Strawberries 2#', 4.74, 'deleted_811334020172', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 2#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/19e5eec4-4ff0-4dc6-97d0-ae0d16d8f2b1.a0b683f83258e19335d29f622b44b8c3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19e5eec4-4ff0-4dc6-97d0-ae0d16d8f2b1.a0b683f83258e19335d29f622b44b8c3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19e5eec4-4ff0-4dc6-97d0-ae0d16d8f2b1.a0b683f83258e19335d29f622b44b8c3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (260595029, 'Freshness Guaranteed Pineapple 32 Oz', 8.46, 'deleted_681131036597', 'short description is not available', 'Freshness Guaranteed Pineapple 32 Oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (260739665, 'Fresh Black Seedless Grapes, Bag', 4.24, '681131433662', 'Treat yourself to the delicious, juicy flavor of Freshness Guaranteed Fresh Black Seedless Grapes. These grapes are bursting with flavor and are completely seedless, so you can easily enjoy a handful as a fresh snack any time of day. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the fresh taste of Freshness Guaranteed Fresh Black Seedless Grapes. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Spark Fresh item.', 'Fresh Black Seedless Grapes, Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f7d4ea27-1479-4ca8-b526-c16766ab8741_2.1067c57d4630bbc11557ab28a24f02cd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f7d4ea27-1479-4ca8-b526-c16766ab8741_2.1067c57d4630bbc11557ab28a24f02cd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f7d4ea27-1479-4ca8-b526-c16766ab8741_2.1067c57d4630bbc11557ab28a24f02cd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (260878081, '200pc Pto Rst 5# Sch', 554, '405507557444', 'short description is not available', '200pc Pto Rst 5# Sch', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (260992644, 'Gem Avocado 4 Count Bag', 6.94, 'deleted_887214001555', 'short description is not available', 'Gem Avocado 4 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (261656379, 'Fresh Red Seedless Grapes', 2.88, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (261993371, 'Pummelo Bulk', 2.97, '405999176482', 'short description is not available', 'Pummelo Bulk', 'Unbranded', 'https://i5.walmartimages.com/asr/ac5251b6-128c-4e59-9be8-3a2d5201ab08.b8c48f63c60e676284ad30adb8328401.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac5251b6-128c-4e59-9be8-3a2d5201ab08.b8c48f63c60e676284ad30adb8328401.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac5251b6-128c-4e59-9be8-3a2d5201ab08.b8c48f63c60e676284ad30adb8328401.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (262409313, '200pc Pto Id 5# Bm', 584, '405508051897', 'short description is not available', '200pc Pto Id 5# Bm', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (262587825, 'Seedless Medley Grapes 10oz', 2.98, '681131433587', 'short description is not available', 'Seedless Medley Grapes 10oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (262669766, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094470145', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (262705188, 'Services Reduced Program Dept 94', 0.01, '251876000001', 'short description is not available', 'Services Reduced Program Dept 94', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (262972056, 'Freshness Guaranteed Fresh Red Seedless Grapes', 2, '405992274949', 'short description is not available', 'Freshness Guaranteed Fresh Red Seedless Grapes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (263115974, 'Stuffed Baby Bella Mushrooms, Artichoke, Spinach, and Cheese Blend, 8.5 oz, 6 Count', 4.97, 'deleted_070475657238', 'Artichoke, Spinach, and Cheese Blend Stuffed Fresh Baby Bella Mushrooms are stuffed with a tasty combination of manchego and parmesan cheeses, spinach, artichokes, and garlic. These stuffed mushrooms are perfect for both grilling and baking and can even be cooked in the microwave. The stuffed caps are great as an appetizer or as a delicious side dish. Serve with tender New York strip steak and broccoli florets for an unforgettably delicious dinner the whole family will enjoy. They also offer nutritional benefits as they are a good source of dietary fiber, protein, calcium, and iron. Spice up your routine sides with Artichoke, Spinach, and Cheese Blend Stuffed Baby Bella Mushrooms.', 'Fresh Stuffed Baby Bella Mushrooms, Artichoke, Spinach, and Cheese Blend, 8.5 oz, 6 Count: Baby bella mushrooms stuffed with a tasty combination of manchego and parmesan cheeses, spinach, artichokes, and garlic Cooks in the tray Oven safe and microwavable tray Great as an appetizer or side item Good source of protein Net weight 8.5 oz', 'Giorgio', 'https://i5.walmartimages.com/asr/3d04cf59-21e7-47dc-88e0-91e5c67e8fbe.e5c15d9339f06879975091b52e742f53.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3d04cf59-21e7-47dc-88e0-91e5c67e8fbe.e5c15d9339f06879975091b52e742f53.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3d04cf59-21e7-47dc-88e0-91e5c67e8fbe.e5c15d9339f06879975091b52e742f53.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (263307588, 'Fresh Yellow Potatoes, Each', 0.98, '000000047272', 'Yellow Potatoes, per Pound', 'Yellow Potatoes Per Pound', 'Fresh Produce', 'https://i5.walmartimages.com/asr/342ca162-82a6-4976-bfa5-dc8cd584a908.5dcc0a10da8effda100024f76f8a6ad3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/342ca162-82a6-4976-bfa5-dc8cd584a908.5dcc0a10da8effda100024f76f8a6ad3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/342ca162-82a6-4976-bfa5-dc8cd584a908.5dcc0a10da8effda100024f76f8a6ad3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (264186630, 'Apple Waldorf Fruit Salad', 5.5, '681131436564', 'short description is not available', 'Apple Waldorf Fruit Salad', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (264302942, 'Bowery Farming Baby Kale Mix Pesticide-Free Lettuce, Locally Grown Salad Greens, Non-GMO, 10oz', 3.98, '851536007632', 'Baby Kale Mix has a hearty, sweet, and well-rounded flavor. It\'s great as a salad base and sauteed with your favorite veggies. Bowery Farming grows positively tasty, fresh produce in a cleaner, more sustainable way: in local, indoor smart farms. Every Bowery leaf is grown and handled with care, without pesticides. Bowery\'s smart farms use less water & create less waste on less land. Because Bowery\'s farms are local, you can trust that your produce is freshly harvested, picked at peak freshness 365 days a year, and available on shelf in just a few days.', 'Bowery Farming Baby Kale Mix Pesticide-Free, Locally Grown Salad Greens, 10oz: 100% Pesticide-free 100% Locally grown 100% Fully traceable Indoor-grown Protected Produce Clean & ready to eat Non-GMO Project Verified Recycled Packaging', 'Bowery Farming', 'https://i5.walmartimages.com/asr/96372864-605e-462e-ad66-30f6afbf2462.2034472fd93858983f709eef9d3ba5cf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96372864-605e-462e-ad66-30f6afbf2462.2034472fd93858983f709eef9d3ba5cf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96372864-605e-462e-ad66-30f6afbf2462.2034472fd93858983f709eef9d3ba5cf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (264341252, 'Bagged Serrano Pepper', 1.58, 'deleted_812181022197', 'short description is not available', 'Bagged Serrano Pepper', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (265105313, 'Spice World, ORGANIC MINCED GARLIC - LARGE Container - 32 OZ', 14.99, '070969000182', 'READY-TO-USE FRESH GARLIC – Add bold garlic flavor to a meal without the hassle of chopping or mincing. Spice World’s Organic Minced Garlic in jar is always just a spoonful away, offering an easy way to flavor your favorite dishes. DELICIOUS HEALTH FOOD – Our organic garlic minced is fresh, delicious, and good for you! It’s grown, processed, and handled naturally with no use of synthetic chemicals, preservatives, or sodium. Our garlic cloves are fat-free, non-GMO, and Kosher. BULK CONTAINER – There are so many ways to use our organic minced garlic, such as in pasta sauces, salsas, marinades, garlic bread, soups, and much more! Always have flavor on hand with this 32oz bulk-sized seasoning container. 1 TEASPOON EQUALS 1 CLOVE – Make meal prep a snap while adding savory flavor with minced garlic seasoning. Simply spoon straight from the minced garlic jar to amplify any meal. One teaspoon of pre minced garlic equals approximately one garlic clove. FLAVOR WITHOUT BOUNDARIES – It’s time to stir up adventure in your kitchen! Spice World grows our garlic fresh all year long. We make bringing bold flavor even easier for busy home chefs with our fresh minced, peeled, and squeezable flavors and blends.', 'Garlic, Organic, Minced USDA Organic. Certified Organic by CCOF. Non-GMO ingredients. Est 1949. Ready to use. Bold savory flavor! 1 tsp = 1 clove of garlic. spiceworldinc.com.', 'Spice World', 'https://i5.walmartimages.com/asr/f774f9d4-8181-4ab7-96ad-127efafc1ddb.35dc45e6bab33a8e28116fbc9f67ad00.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f774f9d4-8181-4ab7-96ad-127efafc1ddb.35dc45e6bab33a8e28116fbc9f67ad00.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f774f9d4-8181-4ab7-96ad-127efafc1ddb.35dc45e6bab33a8e28116fbc9f67ad00.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (265522069, '5# Bag Grapefruit', 5.98, 'deleted_860003045091', 'short description is not available', '5# Bag Grapefruit', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (265702938, 'Fresh Strawberries 1#', 1.56, '400094583913', 'short description is not available', 'Fresh Strawberries 1#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (266453017, 'Fresh Whole Squash, Pound', 2.47, '405854077329', 'Add some fresh flavor to your meal with Squash. This versatile vegetable can be used in a variety of dishes to create delicious and decadent meals. Roast the whole squash for a simple and flavorful side dish, chop it into cubes and put it in the slow cooker with chicken breast, kidney beans, and spices, or make noodles for a gluten-free pasta alternative. For a sweet treat turn the squash into a rich and spicy pie, perfect for the holiday season. With so many uses, this vegetable will become a pantry staple. Create tasty and flavorful meals with Squash', 'Versatile ingredient Roast the whole squash for the perfect side dish or chop into cubes, put into a slow cooker, and mix with chicken breast, beans, and spices for a flavorful dish Use it to create a sweet and decadent pie Make butternut squash noodles for a gluten free pasta alternative Will become a pantry staple', 'Unbranded', 'https://i5.walmartimages.com/asr/f57a6cdc-89ed-40bc-87d7-4f99067ee489.0b975be7fa233a234711a62552c2bf7a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f57a6cdc-89ed-40bc-87d7-4f99067ee489.0b975be7fa233a234711a62552c2bf7a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f57a6cdc-89ed-40bc-87d7-4f99067ee489.0b975be7fa233a234711a62552c2bf7a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (266917173, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094273302', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (267228575, 'Fresh Manns Veggie Bits Broccoli 12 oz', 4.47, '716519009877', 'Introducing Mann\'s Veggie Bits Broccoli, a convenient and delicious way to incorporate the goodness of nutrient-packed broccoli into your meals and snacks. Made from fresh, high-quality broccoli, these bite-sized bits are carefully chopped and ready to use, saving you precious time in the kitchen. Perfect for adding to salads, stir-fries, omelettes, or as a topping for your favorite pizza, Mann\'s Veggie Bits Broccoli provides a versatile and hassle-free solution for busy, health-conscious individuals. Enjoy the natural flavors and essential nutrients of broccoli with Mann\'s Veggie Bits Broccoli, your go-to choice for a balanced and vibrant diet.', 'Manns Veggie Bits Broccoli 12 Oz Introducing Mann\'s Veggie Bits Broccoli, a convenient and delicious way to incorporate the goodness of nutrient-packed broccoli into your meals and snacks. Made from fresh, high-quality broccoli, these bite-sized bits are carefully chopped and ready to use, saving you precious time in the kitchen. Perfect for adding to salads, stir-fries, omelettes, or as a topping for your favorite pizza, Mann\'s Veggie Bits Broccoli provides a versatile and hassle-free solution for busy, health-conscious individuals. Enjoy the natural flavors and essential nutrients of broccoli with Mann\'s Veggie Bits Broccoli, your go-to choice for a balanced and vibrant diet.', 'Mann\'s', 'https://i5.walmartimages.com/asr/98723136-d7b8-4710-bf0c-e73d70d2979b.c4bf47ae38ad85496b0f2d86f0cab7fe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/98723136-d7b8-4710-bf0c-e73d70d2979b.c4bf47ae38ad85496b0f2d86f0cab7fe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/98723136-d7b8-4710-bf0c-e73d70d2979b.c4bf47ae38ad85496b0f2d86f0cab7fe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (267265556, 'Dallas Cowboys Original Guacamole with Hass Avocados, Gluten-Free, 15 oz', 4.98, '810041599223', 'Our “classic original” guacamole is made with hand scooped avocados and the perfect blend of spices. Enjoy with chips or on your favorite sandwich. ¡Yo Quiero! and the Dallas Cowboys partnered up to bring easy snacks, easy lunches, and easy dinners to life. Whether you\'re planning for tailgating, Friday night dinners or prepping a vegan lunch, the Original Guacamole is sure to satisfy your cravings and delight your guests. Made with the freshest ingredients from real Hass Avocados to jalapeno peppers, this convenient snack or appetizer is perfect for your lunch menu, parties, packed lunch, vegan dinner, or whatever else you might crave. The Dallas Cowboys Original Guacamole pairs wonderfully with chips, sandwhiches, tacos, and snacks. You can even turn it into your own version of avocado toast or use as dip for carrots and other vegetables. Game day snacking just got better.', 'Our “classic original” guacamole is made with hand scooped avocados and the perfect blend of spices. Enjoy with chips or on your favorite sandwich. ¡Yo Quiero! and the Dallas Cowboys partnered up to bring easy snacks, easy lunches, and easy dinners to life. Whether you\'re planning for tailgating, Friday night dinners or prepping a vegan lunch, the Original Guacamole is sure to satisfy your cravings and delight your guests. Made with the freshest ingredients from real Hass Avocados to jalapeno peppers, this convenient snack or appetizer is perfect for your lunch menu, parties, packed lunch, vegan dinner, or whatever else you might crave. The Dallas Cowboys Original Guacamole pairs wonderfully with chips, sandwhiches, tacos, and snacks. You can even turn it into your own version of avocado toast or use as dip for carrots and other vegetables. Game day snacking just got better.', 'Yo Quiero', 'https://i5.walmartimages.com/asr/c93540a4-0821-4545-83b4-711c39ee08b9.411a9b938c74963319b7a36f8b9dcbdd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c93540a4-0821-4545-83b4-711c39ee08b9.411a9b938c74963319b7a36f8b9dcbdd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c93540a4-0821-4545-83b4-711c39ee08b9.411a9b938c74963319b7a36f8b9dcbdd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (267284788, 'Bowery Green Leaf Salad Mix - Locally Grown with No Pesticides, 4.5oz', 2.98, '851536007311', 'short description is not available', 'Bowery Green Leaf Salad Mix - Locally Grown with No Pesticides, 4.5oz', 'Bowery Farming', 'https://i5.walmartimages.com/asr/7c3d1614-1f9f-4ffd-ac4c-b57c59bd2c67_1.29acb43684083ca02dd28d7b2e25008c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c3d1614-1f9f-4ffd-ac4c-b57c59bd2c67_1.29acb43684083ca02dd28d7b2e25008c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c3d1614-1f9f-4ffd-ac4c-b57c59bd2c67_1.29acb43684083ca02dd28d7b2e25008c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (267417001, 'Peeled Natural Tamarind, El Gustazo', 7.98, '610395789000', 'Our peeled natural Tamarind is a versatile and flavorful ingredient perfect for a variety of culinary creations. This tangy, sweet, and sour fruit is hand-selected and carefully peeled to ensure the highest quality product. Use it to add a burst of flavor to sauces, marinades, chutneys, and more. It’s also a popular addition in desserts and beverages. Each bag contains perfectly ripe and soft tamarind that’s ready to use. Discover the incredible taste and benefits of this tropical fruit today!', 'Field packed Unbranded El Gustavo Peeled Natural Tamarind. This is a tangy, sweet, and sour fruit that will add a burst of flavor to any meal! Each package is filled with ripe tamarind that is ready to use! Find this in your local stores!', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/015cbb91-f3fb-4268-bb69-29d3a70a87e7.e34ceda3de6875580726d2e000e71fbd.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/015cbb91-f3fb-4268-bb69-29d3a70a87e7.e34ceda3de6875580726d2e000e71fbd.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/015cbb91-f3fb-4268-bb69-29d3a70a87e7.e34ceda3de6875580726d2e000e71fbd.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (267732198, 'Produce Unbranded Cucumber Snacking Cocktail', 2.78, 'deleted_057836168374', 'short description is not available', 'Produce Unbranded Cucumber Snacking Cocktail', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (268154018, 'Fresh Pear Bulk, per Pound Tote', 1.47, '000000044257', 'Indulge in nature\'s bounty with our Fresh Pear Bulk, available per Pound in a handy Tote. These pears are meticulously handpicked from the finest orchards, ensuring you receive nothing but the best. This diverse selection includes various varieties, each one boasting its own unique flavor profile. Whether you prefer the sweet, juicy crunch of the Bartlett, the subtly spicy Bosc, or the buttery smooth Anjou, our Fresh Pear Bulk has it all. Every pear is carefully inspected for quality, ripeness, and freshness before being packaged. The tote packaging not only ensures the safety and integrity of the pears but also makes it convenient for you to carry and store. Perfect for home use, parties, or even as a healthy snack at work. Enjoy these pears on their own, sliced into salads, baked into desserts, or used in cooking - the possibilities are endless. Indulge in the scrumptious taste of our fresh pears and experience the true flavor of nature. Buy our Fresh Pear Bulk per Pound Tote today and add a dash of wholesome goodness to your daily diet.', 'Fresh Pear Bulk, per Pound Tote Sweet, crisp, and juicy Excellent snacking pear Make a creamy smoothie or a nutritious juice blend Add to your salad for extra crunch and flavor Adds flavor to a variety of recipes Make pear butter or poached pears Make sweet desserts like pear cobbler, pear crisp or pear tarts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0039e8fe-9fd3-45e9-a4e3-ba5a49d3d9a4.a2f2806080b5f6e94ea11458020db16e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0039e8fe-9fd3-45e9-a4e3-ba5a49d3d9a4.a2f2806080b5f6e94ea11458020db16e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0039e8fe-9fd3-45e9-a4e3-ba5a49d3d9a4.a2f2806080b5f6e94ea11458020db16e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (268297825, 'Fieldpack Unbranded Turnip Greens', 1.14, 'deleted_659389000318', 'short description is not available', 'Fieldpack Unbranded Turnip Greens', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (268313129, 'Services Reduced Program Dept 94', 0.01, '251861000009', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (269299076, 'Fresh Green Seedless Grapes', 1.98, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (269323363, 'Fresh Poblano Peppers, 16 oz bag', 2.64, '711069541174', 'Enjoy the fresh and delicious flavor of Poblano Peppers. Poblano peppers are known for their mild heat and rich flavor. Best of all this versatile pepper can be used in a myriad of recipes. Use them to make delicious Mexican-inspired recipes like chile relleno. Stuff some with sausage, rice, and spices to make a hearty, healthy and delicious dinner. Pan roast some with your favorite cheese and herbs for a yummy side, add them to your hearty chili recipes or turn some into a wonderful autumn soup. Any way you slice, dice, or cook them, Poblano Peppers are a refreshing, healthy addition to any meal. Also know as Chile Poblano, Mild Greeb Chili, Mild Green Pepper and Bhavnagri Mirch around the world.', 'Poblano Peppers, 16 oz: Includes 1 pound of poblano peppers Known for their mild heat and rich flavor Versatile pepper can be used in a myriad of recipes Use them to make delicious Mexican-inspired recipes like chile relleno Stuff some with sausage, rice, and spices to make a hearty, healthy and delicious dinner', 'Fresh Produce', 'https://i5.walmartimages.com/asr/fa7312e7-f5c6-4762-8003-2b958a10a9ad.ff6d8a61a9e33f4261fc327524c66242.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa7312e7-f5c6-4762-8003-2b958a10a9ad.ff6d8a61a9e33f4261fc327524c66242.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa7312e7-f5c6-4762-8003-2b958a10a9ad.ff6d8a61a9e33f4261fc327524c66242.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (269332781, 'Bulk Grapefruit', 1.18, 'deleted_814683010412', 'short description is not available', 'Bulk Grapefruit', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (270308434, 'Green Pepper 3-pack', 1.98, '795631229868', 'short description is not available', 'Green Pepper 3-pack', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (270884033, 'Fresh Muscadine Black Grapes, Whole, 1 lb Tray', 3.88, '033383250762', 'Enjoy the sweet taste of these Fresh Muscadine Black Grapes. Native to the southern United States, these muscadine grapes have a thick, tough skin and a sweet, juicy interior. These large, round grapes come in various shades of purple to bronze and are known for their unique musky whole flavor. Rich in antioxidants and vitamins, muscadine grapes are enjoyed fresh, as well as in jams, jellies, and wines. With a sweet flavor, they\'re great for snacking and can be used in salads, smoothies, and desserts, making them a perfect addition to any meal. Bring home some Fresh Muscadine Black Grapes today.', 'Fresh Muscadine Black Grapes, Whole, 1 lb Tray Tasty, nutritious fruit ideal for snacking or adding to recipes Muscadine grapes have a high concentration of antioxidants These grapes provide dietary fiber, supporting digestive health, cholesterol regulation, and weight maintenance With a sweet flavor, they\'re great for snacking and can be used in salads, smoothies, and desserts, making them a perfect addition to any meal Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/29385b13-e2e5-4c88-b8ad-f7ed872349fc.7229afd5a49d7875b8a066e250ab31e4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/29385b13-e2e5-4c88-b8ad-f7ed872349fc.7229afd5a49d7875b8a066e250ab31e4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/29385b13-e2e5-4c88-b8ad-f7ed872349fc.7229afd5a49d7875b8a066e250ab31e4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (271432121, 'Services Reduced Program Dept 94', 0.03, '251703000006', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (271634435, 'Organic Arugula - Living Herb', 2.48, '768573031400', 'short description is not available', 'Organic Arugula - Living Herb', 'Unbranded', 'https://i5.walmartimages.com/asr/e35c7336-e185-48b4-935a-28b372cb6d97_1.81ecd1bb6614a625597132c5024e64f0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e35c7336-e185-48b4-935a-28b372cb6d97_1.81ecd1bb6614a625597132c5024e64f0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e35c7336-e185-48b4-935a-28b372cb6d97_1.81ecd1bb6614a625597132c5024e64f0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (272362595, 'Fresh Green Seedless Grapes', 1.88, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (272617979, 'Tasteful Selections Ruby Red Organic Potatoes bag 3lb', 6.51, '826088489304', 'Ruby sensation organic potatoes. Light fresh flavor with creamy flesh and tender skin. Seasoning suggestion. Tasteful Selections®, the absolute leader and pioneer in the category of best-quality potatoes, offers an expanded, year-round organics program. More varieties, more pack sizes, same great taste and quality. Our three-pound bags are available in Honey Gold®, Ruby Sensation® and the new offering, Tasteful Selections organic russet potato. copy right tasteful selections', 'Red potato Organics Great taste and quality Light fresh flavor Source of potassium NON GMO Low Cal', 'Tasteful Selections', 'https://i5.walmartimages.com/asr/ca970f29-8584-425d-90ce-3555396a3397.c4ef21fe750d05c89fe772c9166b14c1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ca970f29-8584-425d-90ce-3555396a3397.c4ef21fe750d05c89fe772c9166b14c1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ca970f29-8584-425d-90ce-3555396a3397.c4ef21fe750d05c89fe772c9166b14c1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (272937652, 'Red Potatoes, 5 Lb.', 5.47, '071430510124', 'Red Potatoes, 5 Lb.', 'Red Potatoes 5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (272999622, 'Pineapple Chunks 32 oz Tray', 14.58, '045009891235', '32oz container of cut pineapple', 'Pineapple Chunks 32 Oz', 'Unbranded', 'https://i5.walmartimages.com/asr/59f111dc-0547-43d0-9f8e-4137658ef5d1.edd9ddbdc051957bc05734c089b240b7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59f111dc-0547-43d0-9f8e-4137658ef5d1.edd9ddbdc051957bc05734c089b240b7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59f111dc-0547-43d0-9f8e-4137658ef5d1.edd9ddbdc051957bc05734c089b240b7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (273252178, '90pc Pto Rst 10# Wa', 408.6, '405531146126', 'short description is not available', '90pc Pto Rst 10# Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (274751027, 'Red Bell Pepper, each', 1.38, 'deleted_699058046889', 'short description is not available', 'Mucci Pepper Red 11lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/2204b55a-26bb-4379-86b2-cc9c2d77bf80_1.dfc7792ed8d7b08d3d7613aea359f09e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2204b55a-26bb-4379-86b2-cc9c2d77bf80_1.dfc7792ed8d7b08d3d7613aea359f09e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2204b55a-26bb-4379-86b2-cc9c2d77bf80_1.dfc7792ed8d7b08d3d7613aea359f09e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (275160088, 'Fruta Deli Kiwi Clamshell 2lb', 3.97, '', 'short description is not available', 'Fruta Deli Kiwi Clamshell 2lb', 'Unbranded', 'https://i5.walmartimages.com/asr/638e209c-f390-4048-a369-77e5bb79673b.83f07cfe6e9edad7fb12a4bfc8f8b2bb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/638e209c-f390-4048-a369-77e5bb79673b.83f07cfe6e9edad7fb12a4bfc8f8b2bb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/638e209c-f390-4048-a369-77e5bb79673b.83f07cfe6e9edad7fb12a4bfc8f8b2bb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (275543198, 'Paula Red Apples 5 Lb Bag', 4.92, '080153541575', 'short description is not available', 'Paula Red Apples 5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (275832533, 'Freshness Guaranteed Whole White Mushrooms 16oz', 3.74, 'deleted_084348675038', 'short description is not available', 'Freshness Guaranteed Whole White Mushrooms 16oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (276026355, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094232569', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (276178794, 'Cebolla Pearl White 12/8oz', 4.04, '823215005734', 'short description is not available', 'Cebolla Pearl White 12/8oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/c9b61bfb-0788-4b67-a25b-7ded13154b88.bfa6a827a198890c45ab3f3cb300dd56.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c9b61bfb-0788-4b67-a25b-7ded13154b88.bfa6a827a198890c45ab3f3cb300dd56.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c9b61bfb-0788-4b67-a25b-7ded13154b88.bfa6a827a198890c45ab3f3cb300dd56.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (276370805, 'Fresh Green Seedless Grapes', 3.3, 'deleted_814563011171', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (276700169, 'Marketside Organic Pink Apples 2 Lb Bag', 3.98, 'deleted_011110189998', 'short description is not available', 'Marketside Organic Pink Apples 2 Lb Bag', 'Marketside', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (276823423, 'Freshness Guaranteed Fresh Green Seedless Grapes', 2.98, '', 'short description is not available', 'Freshness Guaranteed Fresh Green Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (277010990, 'Slofoodgroup Dried Porcini Mushrooms Gourmet Boletus Edulis Grade-a - 2oz', 12.95, '810023052678', 'Found growing naturally in the wild hidden amongst the forest under bushes and pines, Porcini mushrooms are beloved by chefs, cooks, and food lovers alike. The Porcini is a versatile mushroom that is used in soups, stews, stocks, sauces, pastas, rice, you name it. The prized boletus edulis fungi is used in recipes the world over from Italy, France, Spain, and all throughout Asia. The meaty umami-ness of Porcini makes these mushrooms a must have for any mushroom lover. What do Porcini taste like? Often described as meaty, earthy, woody and umami porcini are a favorite in many cuisines. Try for yourself and see what everyone is talking about and enjoy the rich, chewy, nutty and earth flavor profile that makes these mushrooms so darn good. BPA free stand up pouch. In each 100g serving of these Dried Porcini Mushrooms, you\'re treated to a burst of nutritional goodness. With just 370 calories, they\'re low in energy while delivering a solid 25g of protein, making them an excellent source for plant-based protein intake. Carbohydrates come in at 68g, including 9g of beneficial fiber, helping to maintain healthy digestion. The total fat content is 3g, with minimal saturated fat at 0.6g, and there\'s no cholesterol or sodium to worry about. Impressively, these mushrooms offer a substantial 3,700mg of potassium, essential for various bodily functions, along with 100mg of calcium and 3mg of iron, contributing to overall health. Truly a nutritional powerhouse, adding both flavor and wellness to your culinary endeavors. Not only do these mushrooms enhance the taste, but they also bring a wealth of nutrition to your meals. With a low-calorie count, high protein content, and a notable presence of essential minerals like potassium, calcium, and iron, these porcini mushrooms are not just a flavorful choice, but also a wholesome one. Experience the culinary magic of Slofoodgroup\'s Dried Porcini Mushrooms, a must-have for any food enthusiast looking to elevate their dishes with the finest gourmet ingredients.', '2oz Grade A Dried Porcini Mushrooms Our dried porcini are grade A sliced, dried naturally and uniform in thickness. Using Porcini or any dried mushrooms in cooking is really quite easy. Simply rehydrate the mushrooms in warm water until just tender and cook as you would normally with fresh mushrooms. Porcini Mushrooms can add umami flavor to your risottos, stews, stroganoff and more.', 'Slofoodgroup', 'https://i5.walmartimages.com/asr/7ed03fc4-8e0c-430c-b15b-a0bdc4ac6d14.63d8db524900cae3eb7f13831ab9622c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7ed03fc4-8e0c-430c-b15b-a0bdc4ac6d14.63d8db524900cae3eb7f13831ab9622c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7ed03fc4-8e0c-430c-b15b-a0bdc4ac6d14.63d8db524900cae3eb7f13831ab9622c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (277086752, 'Sunset Kaboom! Black Jalapenos, 8 oz', 1, '057836000322', 'Inspired by Flavor®', 'Chef Gourmet Inspired', 'Fresh Produce', 'https://i5.walmartimages.com/asr/71b4287a-021f-4b13-8cfd-ecc217303594.6c3d89ca83c041946baa7251df27e03e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71b4287a-021f-4b13-8cfd-ecc217303594.6c3d89ca83c041946baa7251df27e03e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71b4287a-021f-4b13-8cfd-ecc217303594.6c3d89ca83c041946baa7251df27e03e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (277270957, 'Watermelon Seedless', 4.48, '400094373415', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (277446521, '75pc Orange Navel 8#', 459, '405880650756', 'short description is not available', '75pc Orange Navel 8#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (277610654, '180pc Apple Gala 3#', 561.6, '405665850463', 'short description is not available', '180pc Apple Gala 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (277761735, 'Peeled Apple Slices 5/2 Oz', 3.58, '077745250601', 'short description is not available', 'Peeled Apple Slices 5/2 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (277774859, '192pc On Swt 3# Pe', 756.48, '405534641024', 'short description is not available', '192pc On Swt 3# Pe', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (278226445, '200pc Pto Rst 5# Ef', 654, '405547375572', 'short description is not available', '200pc Pto Rst 5# Ef', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (279576546, 'Fieldpack Unbranded Anaheim Peppers', 2.58, 'deleted_810083650197', 'short description is not available', 'Fieldpack Unbranded Anaheim Peppers', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (280565512, 'Org Avo 4ct Bag', 3.76, 'deleted_845857001097', 'short description is not available', 'Org Avo 4ct Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/29d89ba2-e74e-4c89-923c-caf76f81077f.6db6c3f3b04e20b57e685262469d365a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/29d89ba2-e74e-4c89-923c-caf76f81077f.6db6c3f3b04e20b57e685262469d365a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/29d89ba2-e74e-4c89-923c-caf76f81077f.6db6c3f3b04e20b57e685262469d365a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (280991117, 'Large Avocado 3 Count Bag', 4.48, 'deleted_136651097325', 'short description is not available', 'Large Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (281122693, 'Red Globe Seeded Grapes, Bag', 2.48, '', 'short description is not available', 'Red Globe Seeded Grapes, Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (281195208, 'Green Bell Pepper', 0.76, '095829807169', 'short description is not available', 'Green Bell Pepper', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/acc4e0b0-3a75-4d28-9510-abec0362c30c.7df5d073559cf7e400de787628aa13fb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/acc4e0b0-3a75-4d28-9510-abec0362c30c.7df5d073559cf7e400de787628aa13fb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/acc4e0b0-3a75-4d28-9510-abec0362c30c.7df5d073559cf7e400de787628aa13fb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (281268926, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094673935', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (281401094, 'Freshness Guaranteed Fruit Trio Blend Bowl', 7.97, '263036000004', 'Enjoy a healthy snack with an assortment of refreshing fruits in this Berry Blend. Arranged in a transparent tray with a lid. Tender and sweet, these different fruits provide you with many essential nutrients you need every day, along with a blend of different flavors. The pre-cut fruits also make it a convenient option for snacking. For a special treat, use them to make a delicious yogurt parfait or a tasty fruit salad. Keep refrigerated until ready to enjoy. Add some fresh fruit to your daily menu today with this Berry Blend.', 'Freshness Guaranteed Fruit Trio Blend Bowl', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (281885264, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094358238', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (282536137, 'Taylor Farms Club Salad with Chicken & Bacon, 5.4 oz', 2.97, '030223035114', 'This Taylor Farms Club Salad with Chicken and Bacon is a fresh all-in-one meal that you can take on the go. This salad has a crispy lettuce blend, roasted white chicken meat, cheddar cheese, bacon, and blue cheese dressing. Some of the ingredients are packaged separately for maximum freshness. Everything is included for a delicious and healthy lunch, even the fork. With 14 grams of protein, this salad is made without synthetic colors or high fructose corn syrup. Keep refrigerated until ready to enjoy. Have a hearty, no-fuss meal with this Taylor Farms Club Salad with Chicken and Bacon.', 'Taylor Farms Club Salad with Chicken & Bacon, 5.4 oz: Crispy lettuce blend, roasted white chicken meat, cheddar cheese, bacon, and blue cheese dressing 1 serving per container Reclosable container to maintain freshness 380 calories per serving 14 grams of protein No synthetic colors or high fructose corn syrup Fork included Keep refrigerated', 'Taylor Farms', 'https://i5.walmartimages.com/asr/864447ce-3ecf-4ca0-b3f4-80c059e995d0.147027174e30f3c76adc317c25d48ba1.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/864447ce-3ecf-4ca0-b3f4-80c059e995d0.147027174e30f3c76adc317c25d48ba1.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/864447ce-3ecf-4ca0-b3f4-80c059e995d0.147027174e30f3c76adc317c25d48ba1.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (283428374, '200pc Pto Idaho 5#', 588, '405551518866', 'short description is not available', '200pc Pto Idaho 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (283723347, 'Yellow Flesh Peaches, per Pound', 1.63, '400094362143', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (283893431, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094859018', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (284198111, 'Yellow Flesh Peaches, per Pound', 1.58, '400094710050', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (284199528, '75pc Orange Navel 8#', 778.5, '400094963241', 'short description is not available', '75pc Orange Navel 8#', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (284554432, 'Quince, 4 ct', 5.98, '851362002061', 'short description is not available', 'Quince 4ct', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2f28f64b-c661-4275-ad4c-90ce93d54c5c_3.5337055eaf672a68adb0860e2d54ac25.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f28f64b-c661-4275-ad4c-90ce93d54c5c_3.5337055eaf672a68adb0860e2d54ac25.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f28f64b-c661-4275-ad4c-90ce93d54c5c_3.5337055eaf672a68adb0860e2d54ac25.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (285109998, '200pc Pto Idaho 5#', 794, '405551613226', 'short description is not available', '200pc Pto Idaho 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (285548673, 'Fresh Sumo Orange Each', 1.98, '000000036320', 'Fresh Sumo Citrus® is an enormously delicious mandarin originally from Japan. Distinguished for its Top Knot® and bumpy skin, this incredibly sweet, seedless hybrid is considered the ultimate citrus experience. Through passion and ambitious growing standards, Sumo Citrus has delivered its legendary taste to fans for over a decade.', 'Incredibly sweet Easy-to-peel No mess Enormous Naturally seedless Kid friendly Great for on-the-go snacking', 'Fresh Produce', 'https://i5.walmartimages.com/asr/115f27b2-52bb-4e94-b14e-807deb2a2b18.bb01b540795339fef4fd20b8d92760cc.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/115f27b2-52bb-4e94-b14e-807deb2a2b18.bb01b540795339fef4fd20b8d92760cc.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/115f27b2-52bb-4e94-b14e-807deb2a2b18.bb01b540795339fef4fd20b8d92760cc.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (285982241, 'Yellow Flesh Peaches, per Pound', 1.58, '400094233122', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (286503734, 'Jalapeno Peppers Bulk', 1.32, 'deleted_812181022210', 'short description is not available', 'Jalapeno Peppers Bulk', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (286717416, 'That\'s Tasty Organic Spring Mix 4.5oz', 2.18, '768573710145', 'short description is not available', 'That\'s Tasty Organic Spring Mix 4.5oz', 'That\'s Tasty', 'https://i5.walmartimages.com/asr/db6992a8-9726-47df-94b4-eb3849e7451e.30b4b97353c8efd63333923436cebc67.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/db6992a8-9726-47df-94b4-eb3849e7451e.30b4b97353c8efd63333923436cebc67.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/db6992a8-9726-47df-94b4-eb3849e7451e.30b4b97353c8efd63333923436cebc67.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (286846442, 'Crunch Pak Fresh Sweet Peeled Apple Slices, 24 oz Resealable Bag', 5.97, '732313001725', 'Savor the sweet taste of Crunch Pak Fresh Sweet Peeled Apple Slices. These perfectly peeled and sliced apples are the ultimate quick, easy, and healthy treat. Serve with a dollop of peanut butter and enjoy as a healthy snack that both kids and adults will love. Chop the apples up and add them to a salad with walnut, mixed greens, and a poppy seed vinaigrette for a crunchy delicious salad that you can enjoy for lunch or dinner. Add it to your favorite smoothie or juice blend for a morning pick me up to get your day started right. Throw some in a bag in with your lunch for a healthy side, take with you as you go travel or pack a couple of bags and take on a picnic with your family. Only 80 calories per serving and no added sugars. Enjoy the convenience and taste of Crunch Pak Fresh Peeled Sweet Apple Slices.', 'Crunch Pak Fresh Peeled Apple Slices Perfect on-the-go healthy snack Good source of vitamin C Equals 2.25 lbs of whole apples 80 calories per serving Family Size No added sugars', 'Crunch Pak', 'https://i5.walmartimages.com/asr/dfa419aa-fbcb-4bda-be03-06981403c391.e5d13a45fb9eb81fda2f2f73e9ad43ac.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dfa419aa-fbcb-4bda-be03-06981403c391.e5d13a45fb9eb81fda2f2f73e9ad43ac.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dfa419aa-fbcb-4bda-be03-06981403c391.e5d13a45fb9eb81fda2f2f73e9ad43ac.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (286974795, 'Fresh Tejocote Fruit, 1 lb Clamshell', 3.98, '861863000374', 'Fresh Tejocote Fruit brings vibrant, seasonal flavor to your kitchen with small golden fruits that offer a naturally sweet tart taste perfect for a wide range of recipes. These firm, aromatic fruits are widely used in traditional Latin cooking, especially for simmering in syrup, preparing homemade jams, or adding depth to festive fruit punch during the holiday season. Their mild sweetness, bright aroma, and versatile texture make them a great ingredient for both sweet and savory dishes. Conveniently packaged in a one pound clamshell, Fresh Tejocote Fruit is easy to store, simple to prep, and ready to inspire your next culinary creation.', 'Fresh Tejocote Fruit, 1 lb Clamshell Small golden fruits with a naturally sweet tart flavor Great for syrups, jams, fruit punch, and seasonal dishes Versatile texture suitable for sweet and savory recipes Convenient 1 lb clamshell for easy storage and use Also known as Mexican hawthorn and manzanita', 'Unbranded', 'https://i5.walmartimages.com/asr/577c3547-e431-4b18-9426-664684c9548f.9b07b6240ac718672265af6b14431240.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/577c3547-e431-4b18-9426-664684c9548f.9b07b6240ac718672265af6b14431240.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/577c3547-e431-4b18-9426-664684c9548f.9b07b6240ac718672265af6b14431240.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (287933596, 'Fresh Red Seedless Grapes', 1.84, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (288517283, '75pc Orange Navel 8#', 597.75, '400094592649', 'short description is not available', '75pc Orange Navel 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (288529694, 'Fresh Pineapple, Each', 3.57, '051497137458', 'Enjoy a burst of tropical flavor with this Fresh Pineapple. This pineapple can be a satisfying afternoon snack, or you can use it in a variety of recipes. For breakfast, use this pineapple to make a rich and creamy smoothie or serve it alongside your pancakes, sausage, and eggs. Slice it up and use to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. For dessert, you could make a crowd-pleasing pineapple upside down cake or a comforting pineapple crisp. However you choose to use it, this Fresh Pineapple will add flavor to any meal or beverage.', 'Fresh Pineapple To make juices Add flavor to meals', 'Unbranded', 'https://i5.walmartimages.com/asr/0ca9811e-fe6d-4410-880a-e7a82901e4ac.20a195a0038bb3075d8bc23a7b477e03.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ca9811e-fe6d-4410-880a-e7a82901e4ac.20a195a0038bb3075d8bc23a7b477e03.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ca9811e-fe6d-4410-880a-e7a82901e4ac.20a195a0038bb3075d8bc23a7b477e03.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (288610949, 'Fresh Grape Tomato, 10 oz Package', 2.48, 'deleted_038259117002', 'Fresh grape tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Grape Tomatoes are the perfect choice.', 'Grape Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (288802883, 'Fresh Korean Pears, 3 Count, Sweet', 7.44, '851511007039', 'Looking for fresh produce that is delicious and healthy? Try our Korean pears! These beautiful fruits are grown using organic ingredients, which means they are free from harmful pesticides and chemicals. Each pear is carefully hand-picked and packed whole, ensuring that you receive only the best quality. With their sweet taste and juicy flesh, these pears are the perfect addition to any meal or snack. Order yours today and taste the difference!', 'Looking for fresh produce that is delicious and healthy? Try our Korean pears! These beautiful fruits are grown using organic ingredients, which means they are free from harmful pesticides and chemicals. Each pear is carefully hand-picked and packed whole, ensuring that you receive only the best quality. With their sweet taste and juicy flesh, these pears are the perfect addition to any meal or snack. Order yours today and taste the difference! Find these in your local store!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/08ee0c5c-699a-4636-9c5e-ec496e556f30.db76790d55b8e320b767ed0fb9092179.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/08ee0c5c-699a-4636-9c5e-ec496e556f30.db76790d55b8e320b767ed0fb9092179.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/08ee0c5c-699a-4636-9c5e-ec496e556f30.db76790d55b8e320b767ed0fb9092179.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (288816722, 'Seeded Red Grapes, 2 lb clamshell', 5.76, 'deleted_405504786595', 'short description is not available', 'Red Seeded Grapes, 1lb', '', 'https://i5.walmartimages.com/asr/7236f72a-079e-486a-9ca3-f905a00f6317_1.cee7f10b4d62ca9683e11658ac7d83cb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7236f72a-079e-486a-9ca3-f905a00f6317_1.cee7f10b4d62ca9683e11658ac7d83cb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7236f72a-079e-486a-9ca3-f905a00f6317_1.cee7f10b4d62ca9683e11658ac7d83cb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (288832177, 'Sweet Spark Melon Demo', 0.01, '074641300287', 'short description is not available', 'Sweet Spark Melon Demo', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (289162604, '125pc Pto Rst Jmb 8#', 802.5, '400094045398', 'short description is not available', '125pc Pto Rst Jmb 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (289212253, 'GoVerden Classic Guacamole 12oz', 4.43, '850002858037', 'GoVerden Classic Guacamole 12oz is all natural and non-GMO certified. So, no artificial ingredients, no preservatives... nothing added that you wouldn\'t use at home. Our love and care for avocados is evident in every bite, taking special care to the selection, harvesting, ripening, and handling of each avocado. Try it today, it guactually goes with everything. Nachos? Hamburgers? Chips and Guac? Go natural, go for more, GoVerden.', 'GoVerden Classic Guacamole 12oz is as creamy and chunky as you want it to be. All natural ingredients and non-GMO certified. Ready to eat. Keep it refrigerated.', 'GoVerden', 'https://i5.walmartimages.com/asr/beec75a0-b4ba-47af-856c-cdaa7344be5f.c4841f3e441b74ce12a0eb9288b21725.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/beec75a0-b4ba-47af-856c-cdaa7344be5f.c4841f3e441b74ce12a0eb9288b21725.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/beec75a0-b4ba-47af-856c-cdaa7344be5f.c4841f3e441b74ce12a0eb9288b21725.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (289425324, 'Mann\'s Veggie Ranch Snack Tray, 16.5oz', 7.97, '716519020575', 'Veggie snack tray comes with rach dip perfect for serving in a famliy or friends reunion. This is a great way to get your daily dose of vegetables. They are washed and ready to eat, featuring all of your favorite vegetables. Great for snacking and entertaining all year.', 'Mann\'s Fresh Veggie Ranch Snack Tray, 16.5ozContains: Carrots Sticks Celery Broccoli Ranch Dip 16.oz', 'Mann\'s', 'https://i5.walmartimages.com/asr/2ed7b115-6bff-44d6-97a0-255bb9149c00.86105b817b114e575c42658935fa4eaa.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2ed7b115-6bff-44d6-97a0-255bb9149c00.86105b817b114e575c42658935fa4eaa.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2ed7b115-6bff-44d6-97a0-255bb9149c00.86105b817b114e575c42658935fa4eaa.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (289952741, 'Green Leaf Lettuce Filets', 2.97, 'deleted_605806122132', 'short description is not available', 'Green Leaf Lettuce Filets', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ce407a5e-71f3-4ea9-825a-d5728857b48a.f6134c153f6c19b0c97f8a9fd0cd5ddf.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ce407a5e-71f3-4ea9-825a-d5728857b48a.f6134c153f6c19b0c97f8a9fd0cd5ddf.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ce407a5e-71f3-4ea9-825a-d5728857b48a.f6134c153f6c19b0c97f8a9fd0cd5ddf.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (290087483, 'Fieldpack Unbranded Mixed Bell Pepper 3 Pack', 2.98, 'deleted_727908738803', 'short description is not available', 'Fieldpack Unbranded Mixed Bell Pepper 3 Pack', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (290125736, 'THE LITTLE POTATO PAPAS LITTLE TRIOS 1360 G', 5.48, '629307042041', 'short description is not available', 'Potatoes, Fresh Creamer, Terrific Trio, Holiday Blend, Party Size Cheerful color blend, harmonious flavor. Easy to prepare. 8 cups vegetable per bag. We\'re thankful to be invited to your table. A family-based company since 1996, we honor the special time that food helps provide at the table together. I hope you\'ll enjoy serving our Holiday Blend to your family and friends as much as we do - simple to prepare, yet elegant on the table. - Angela Santiago Co-Founder and CEO. Pre-washed. No Peeling. Enter for a chance to win $3,333 (win 1 of 3 prizes of $3,333 cash. See reverse for details) (No purchase necessary. Purchasing does not improve your chances of winning. The Terrific Trio sweepstakes is open to legal residents of the 48 contiguous U.S. D.C, and Canada, who are the age of 18 or older. Void in AK, HI, and where prohibited by law. Sweepstakes begins at 12:00:01 am ET on 10/05/21 and ends at 11:59:59 pm ET on 01/26/21. To enter online, For entry periods and official rules, see terrifictriosweepstakes.com The total ARV of all prizes for US residents is: $9,999 USD. The total ARV of all prizes for Canadian residents is $9,999 CAN. The odds of winning depend on the number of eligible entries received per entry period. Sponsor: The Little Potato Company USA, Inc., 801 Little Potato Way, Deforest, WI 53532 and The Little Potato Company Ltd. 11749-180 Street, Edmonton, AB T5S 2H6) Terrific Trio Sweepstakes.', 'The Little Potato Company', 'https://i5.walmartimages.com/asr/592d278e-0124-4833-81d7-9e9252585903.eb3c3645b7469999ceac510299410e40.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/592d278e-0124-4833-81d7-9e9252585903.eb3c3645b7469999ceac510299410e40.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/592d278e-0124-4833-81d7-9e9252585903.eb3c3645b7469999ceac510299410e40.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (290260484, 'Mann\'s Veggie Hummus Snack Tray, 16.5oz', 7.48, '716519014758', 'Veggie snack tray comes with hummus perfect for serving in a famliy or friends reunion. This is a great way to get your daily dose of vegetables. They are washed and ready to eat, featuring all of your favorite vegetables. Great for snacking and entertaining all year.', 'Mann\'s Fresh Veggie Hummus Snack Tray 16.5oz Carrots Celery Broccoli Hummus Sticks Dips 16.5oz', 'Mann\'s', 'https://i5.walmartimages.com/asr/463c906d-dc5a-4153-b5f4-71d9ed905a32.0db9dbba42f314268e99e6f58cc86681.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/463c906d-dc5a-4153-b5f4-71d9ed905a32.0db9dbba42f314268e99e6f58cc86681.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/463c906d-dc5a-4153-b5f4-71d9ed905a32.0db9dbba42f314268e99e6f58cc86681.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (290550246, 'Honeycrisp Apples 2.5 Lb Bag', 6.47, '879329007249', '', '', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (290656622, 'Shrink Cap | Fawn Green w/Midnight Black Grapes (100/Pack)', 19.95, '776982330908', 'Elevate Your Wine Experience with Our European Crafted Shrink Caps Enhance Bottle Presentation and Ensure Freshness with Our Shrink Caps! Our Premium Shrink Caps are the perfect addition to any wine bottle, combining elegance with functionality. These caps, expertly crafted in Europe, not only enhance the visual appeal of your bottles but also play a crucial role in maintaining the cork\'s integrity. Our shrink caps are ideal for winemakers, wine enthusiasts, or those who love to gift homemade wine. They are a simple yet effective way to elevate your wine\'s presentation and ensure freshness. Key Features: High-Quality Material:Manufactured in Europe, guaranteeing premium quality and durability. Universal Fit:Designed to fit 375ml, 750ml, and 1500ml wine bottles perfectly. Easy Tear-Off Design:Facilitates a smooth bottle-opening experience. Precise Dimensions:Measuring 30.5mm x 55mm for a flawless fit. Elevated Presentation:Adds a sophisticated touch to any wine bottle. Usage Guide: Slide the Cap:Place the shrink cap over the neck of the wine bottle. Apply Heat:Use a heat gun or steam to shrink the cap around the bottleneck securely. Tear & Pour:Enjoy the easy tear-off design for quick access to your wine. FAQs: Q:Can these shrink caps be used for beverages other than wine?A:They are versatile for any bottled beverage with compatible dimensions. Q:How resistant are these caps to external factors like moisture?A:Crafted with high-quality materials, they resist moisture and other external elements effectively. Q:Are special tools required for application?A:A heat gun or steam source is needed to secure the cap\'s shrinking. Q:Do these caps leave any residue upon removal?A:No, they are designed for clean and residue-free removal.', 'High-Quality Corks and Stoppers for Wine Bottles – Designed to provide a secure seal, preserving the freshness and flavor of your wine with every use. Perfect for Home and Professional Winemakers – Whether for DIY projects or commercial bottling, our corks and stoppers ensure reliable performance and a professional finish. Durable and Easy to Use – Made from premium materials, our wine corks and stoppers are easy to insert and remove, making them ideal for sealing and storing your homemade beverages.', 'ABC Cork', 'https://i5.walmartimages.com/asr/e24691a7-6680-425d-a61a-7f7761d42eed.a900168bf15b590b176370a362d07209.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e24691a7-6680-425d-a61a-7f7761d42eed.a900168bf15b590b176370a362d07209.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e24691a7-6680-425d-a61a-7f7761d42eed.a900168bf15b590b176370a362d07209.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (290660074, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094843314', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (290711372, 'Fresh Red Sweet Bell Peppers', 1.36, 'deleted_826920000056', 'Our vine-ripened red bell peppers, are produced under the best growing conditions. Vibrant in color with a consistent uniform shape and firmness, these peppers are picked and processed with the stem attached, allowing them to continue to absorb moisture and ripen for several days.', 'Red Bell Pepper', 'Red Sun Farms', 'https://i5.walmartimages.com/asr/3ccf0fd3-ed09-4328-b5f5-56930c68660e.c2f7040a91a5a92c5a642e3c4c39408e.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3ccf0fd3-ed09-4328-b5f5-56930c68660e.c2f7040a91a5a92c5a642e3c4c39408e.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3ccf0fd3-ed09-4328-b5f5-56930c68660e.c2f7040a91a5a92c5a642e3c4c39408e.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (291209105, 'Fresh California Grown Red Grapes', 1.98, '', 'short description is not available', 'Fresh California Grown Red Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/7cb6d44e-c980-49be-80e2-6a16bf916a46_2.e224342fd4723f77fae1c279872cd756.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7cb6d44e-c980-49be-80e2-6a16bf916a46_2.e224342fd4723f77fae1c279872cd756.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7cb6d44e-c980-49be-80e2-6a16bf916a46_2.e224342fd4723f77fae1c279872cd756.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (291347031, 'Fresh Dark Sweet Cherries, 1 Lb.', 8.73, 'deleted_860003000601', 'Fresh Dark Sweet Cherries, 1 Lb.', 'Fresh Dark Sweet Cherries', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (291770874, 'Malanga Root Per Pound', 3.27, '', 'short description is not available', 'Malanga Root Per Pound', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (292229235, 'Fieldpack Unbranded 8ct Chocolate Dipped Strawberry', 12.48, '869510000388', 'short description is not available', 'Fieldpack Unbranded 8ct Chocolate Dipped Strawberry', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (292720335, 'Fresh Organic Bartlett Pears, 2lb Bag - Sweet & Juicy', 4.12, 'deleted_818544022873', 'Crisp, sweet & refreshingly juicy—our Organic Bartlett Pears, 2 lb bag brings tree-ripened flavor straight to your kitchen. Grown without synthetic pesticides or GMOs, each pear offers delicate floral notes, a buttery-smooth bite, and plenty of vitamin C and fiber. Perfect for snacking, tossing into salads, or baking into cozy crumbles—just rinse, slice, and enjoy nature’s candy in every bite.', 'Organic Bartlett Pears in a 2 lb Bag, Fresh Condition Hand-Selected for Quality; Pre-Portioned for Convenience Classic Bartlett Juiciness with Delicate Floral Notes Grown Without Synthetic Pesticides or GMOs Rich in Vitamin C and Dietary Fiber Ideal for Snacking, Salads, or Baked Desserts', 'Produce', 'https://i5.walmartimages.com/asr/8903a0a2-c63c-4fd1-85cf-1f796d7eb3da.36d112cdc03c34a0e00025c966f46a14.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8903a0a2-c63c-4fd1-85cf-1f796d7eb3da.36d112cdc03c34a0e00025c966f46a14.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8903a0a2-c63c-4fd1-85cf-1f796d7eb3da.36d112cdc03c34a0e00025c966f46a14.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (292835452, 'Autumn Glory Fresh Apples, Each', 2.22, '000000036016', 'Indulge in the crisp sweetness of Autumn Glory Apples, the perfect Fresh autumn treat! These apples are grown in the Pacific Northwest where the unique climate and soil create the perfect environment for the apples to thrive. Bursting with juicy, caramel flavor, these apples are perfect for snacking, baking or as an addition to your favorite fall recipes. Grab a bag today and savor the taste of the season!', 'Autumn Glory apples are a distinct variety with a unique flavor profile that sets them apart from other apples. Autumn Glory apples are high in dietary fiber and contain antioxidants, making them a healthy snacking choice. The 2lb bag size is convenient for families and individuals looking for a longer-lasting supply of fresh apples .Autumn Glory apples are harvested at their peak ripeness and packed immediately for maximum freshness, ensuring a delicious and crisp eating experience.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/42fad949-7cf9-43ee-b5be-3ea67cb987fe.72abc25b01aa7824a1a69229b82f0015.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42fad949-7cf9-43ee-b5be-3ea67cb987fe.72abc25b01aa7824a1a69229b82f0015.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42fad949-7cf9-43ee-b5be-3ea67cb987fe.72abc25b01aa7824a1a69229b82f0015.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (293160234, '200pc Pto Rst 5# Ptd', 594, '405507964716', 'short description is not available', '200pc Pto Rst 5# Ptd', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (293818040, 'Fresh Grape Tomato, 10 oz Package', 23.92, 'deleted_751666771505', 'Fresh grape tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Grape Tomatoes are the perfect choice.', 'Grape Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (294366981, 'Fresh Red Seedless Grapes', 1.84, 'deleted_881006000702', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (294912972, 'Kale, one bunch', 0.98, 'deleted_885435999750', 'Kale', 'The attractive, ruffly-edged and richly-colored leaves of kale make it an excellent garnish. It can also add a rich and festive quality to salads. When used raw as a salad green, kale has a slightly sweet taste. Young leaves work best in salads. When cooked, kale can be a little bitter, but is excellent when sauteed with a little butter, lemon and crumbled bacon.', 'Ratto Bros.', 'https://i5.walmartimages.com/asr/a0903561-f005-4be1-ba96-0df4d8b67f36.a5e7cf31c3966b1fc0449a24bd4ac4e4.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a0903561-f005-4be1-ba96-0df4d8b67f36.a5e7cf31c3966b1fc0449a24bd4ac4e4.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a0903561-f005-4be1-ba96-0df4d8b67f36.a5e7cf31c3966b1fc0449a24bd4ac4e4.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (295586673, 'Grown Yellow Peaches, per Pound', 1.58, '405505064838', 'Grown Yellow Peaches, per Pound', 'Fresh Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (295752540, '60pc Apl Atmn Glory', 236.4, '405724879176', 'short description is not available', '60pc Apl Atmn Glory', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (295906333, 'Queen Victoria Organic Celery Stalk', 1.76, 'deleted_060556120805', 'Organic celery stalk', 'Queen Victoria Organic Celery Stalk', 'Queen Victoria', 'https://i5.walmartimages.com/asr/cb71ef31-5436-4e94-aa5e-ff4ddd010116.f2812b09685a11f9a446349ee1b7960e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb71ef31-5436-4e94-aa5e-ff4ddd010116.f2812b09685a11f9a446349ee1b7960e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb71ef31-5436-4e94-aa5e-ff4ddd010116.f2812b09685a11f9a446349ee1b7960e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (296353326, 'Services Reduced Program Dept 94', 0.01, '251689000007', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (296459011, 'White Sweet Potatoes 2 Lb Bag', 2.78, '740121570043', 'short description is not available', 'White Sweet Potatoes 2 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (296546006, 'Taylor Farms Cheddar Ranch Grilled Chicken Chopped Salad Kit, 15.25 oz.', 5.28, '681131276559', 'Our Taylor Farms Cheddar Ranch Grilled Chicken Chopped Salad Kit includes everything you need to prepare a delicious, easy meal in less than 3 minutes. Every bite is packed with flavor thanks to this dream team of crisp veggies combined with grilled chicken, shredded cheddar cheese, crispy uncured bacon and a creamy ranch dressing to top it all off! With 8 grams of protein and 4.5 servings per bag, that’s 36 grams of protein in one convenient kit!', 'Taylor Farms Cheddar Ranch Grilled Chicken Chopped Salad, 15.25 oz. 36 grams of protein per bag Dressings and toppings included ready in less than 3 minutes Full entree salad', 'Taylor Farms', 'https://i5.walmartimages.com/asr/61b2daec-4921-4b95-8026-a7e7e42216a9_1.34c20d14144b2440897e723e63120a69.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/61b2daec-4921-4b95-8026-a7e7e42216a9_1.34c20d14144b2440897e723e63120a69.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/61b2daec-4921-4b95-8026-a7e7e42216a9_1.34c20d14144b2440897e723e63120a69.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (297013641, 'Freshness Guaranteed Fresh Green Seedless Grapes', 1.64, '', 'short description is not available', 'Freshness Guaranteed Fresh Green Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (297067674, 'California Grown Peaches, per Pound', 1.58, '400094950296', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (297414240, '300pc Bumpy Pumpkins', 594, '405954930258', 'short description is not available', '300pc Bumpy Pumpkins', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (297539613, 'Celery Sticks', 2.94, 'deleted_052867149507', 'short description is not available', 'Celery Sticks', 'Fresh Produce', 'https://i5.walmartimages.com/asr/20fda9d5-2ca2-4988-b8f2-f9f9b6b0da9e.375983a0f372263bce29699d6353534c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20fda9d5-2ca2-4988-b8f2-f9f9b6b0da9e.375983a0f372263bce29699d6353534c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20fda9d5-2ca2-4988-b8f2-f9f9b6b0da9e.375983a0f372263bce29699d6353534c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (298169339, 'Services Reduced Program Dept 94', 0.01, '251676000003', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (298268888, 'Aprium, 1 lb Pack', 4.88, '847081000532', 'short description is not available', 'Fresh California Grown Apriums 16oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (298500215, 'Satsumas, 5 Lb.', 6.97, '000195003015', 'Satsumas, 5 Lb.', 'Satsuma 5# Box', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (298759923, 'California Grown Peaches, per Pound', 1.58, '400094272343', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (299053128, 'Fresh Driscoll\'s Strawberries, 15 oz Heart-Shaped Container', 7.97, '715756200320', 'The sweet, juicy flavor of Fresh Strawberries make them a refreshing and delicious treat. The heart-shaped clamshell makes the perfect gift for special occasions. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. They contain essential vitamins and nutrients like, vitamin C, dietary fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh Strawberries today and savor the delectable flavor.', 'Served in a Heart-Shaped Container Prior to serving gently wash the fruit and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'Driscoll\'s', 'https://i5.walmartimages.com/asr/1e9bd70c-17fe-4ec1-b0d8-125caca67bc1.7a4b44a2e7f752bc9d40e4e6172e7527.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1e9bd70c-17fe-4ec1-b0d8-125caca67bc1.7a4b44a2e7f752bc9d40e4e6172e7527.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1e9bd70c-17fe-4ec1-b0d8-125caca67bc1.7a4b44a2e7f752bc9d40e4e6172e7527.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (299394301, 'Fresh Tomato on the Vine, Bag', 1.98, 'deleted_684924020056', 'Keep your recipes simple and classic with fresh tomatoes on the vine. With their vibrant red color, firm and juicy flesh, and unmistakably delicious flavor, this fresh produce item is sure to impress more than just your taste buds. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. The list is endless! Plus, they come right to your kitchen still on the vine that they grew on, meaning that their mouthwatering taste and freshness will be long-lasting for your culinary convenience. Stock up on Walmart\'s Tomatoes On The Vine and keep your dishes looking great and tasting equally as excellent.', 'Tomato on the Vine, Bag: Wholesome, versatile, and delicious Ideal ingredient for a variety of dishes Make a zesty tomato sauce to go along with your favorite pasta Enjoy on their own as a nutritious snack Make a flavorful salsa or add some pop to your guacamole', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (299846524, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094858875', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (300123577, 'Fresh Black Seedless Grapes', 2.08, '', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/a9d04025-42f4-48d8-a01a-434e1f62e773_2.c8dd77bf8f29c84ab0ccfacd2bc0e004.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a9d04025-42f4-48d8-a01a-434e1f62e773_2.c8dd77bf8f29c84ab0ccfacd2bc0e004.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a9d04025-42f4-48d8-a01a-434e1f62e773_2.c8dd77bf8f29c84ab0ccfacd2bc0e004.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (300639831, 'Big Green Organic Food- Organic Millet Macaroni, 8.8 oz', 5.99, '678452142779', 'Big Green Organic Food- Organic Millet Macaroni, 8.8 oz. Millet is one of two grains which is considered lectin-free. According to Steven Gundry, MD, who is credited with the development of the lectin-free diet, lectins disrupt cell communication and increase inflammation, causing poor gut health that leads to a host of ills, including digestive problems (bloating, gas, diarrhea), and weight gain, per Dr. Gundry\'s website.', 'Single Ingredient Macaroni Produced using 100% millet flour and no salts or artificial ingredients added. Certified Organic', 'Big Green Organic', 'https://i5.walmartimages.com/asr/e132b60b-63f8-4a16-9a4d-f6f09edc6810.6b51d842e999a87b8e2a3f6a5469c337.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e132b60b-63f8-4a16-9a4d-f6f09edc6810.6b51d842e999a87b8e2a3f6a5469c337.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e132b60b-63f8-4a16-9a4d-f6f09edc6810.6b51d842e999a87b8e2a3f6a5469c337.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (300737024, 'Organic Micro Kale', 1.98, '768573417570', 'short description is not available', 'Organic Micro Kale', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (301124266, 'Yellos 2ct White Grapefruit', 2.72, '848163004653', 'short description is not available', 'Yellos 2ct White Grapefruit', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1d45113c-0a69-4410-b815-444acbdc54d5.968e904d396bb056a7ca3df45eb3a256.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d45113c-0a69-4410-b815-444acbdc54d5.968e904d396bb056a7ca3df45eb3a256.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d45113c-0a69-4410-b815-444acbdc54d5.968e904d396bb056a7ca3df45eb3a256.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (301870520, 'Fresh Blood Oranges, 1 lb Bag', 3.98, '000000043816', 'Blood Oranges', 'Great source of vitamin C, Use to add zest and flavor to your meals and beverages, Enjoy on their own or in a variety of recipes Great source of vitamin C, Use to add zest and flavor to your meals and beverages, Enjoy on their own or in a variety of recipes Great source of vitamin C, Use to add zest and flavor to your meals and beverages, Enjoy on their own or in a variety of recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1ec1e29c-2e43-4706-b045-d017d995fc81.a4661c23345b52faee9ce8bedefe7b06.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1ec1e29c-2e43-4706-b045-d017d995fc81.a4661c23345b52faee9ce8bedefe7b06.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1ec1e29c-2e43-4706-b045-d017d995fc81.a4661c23345b52faee9ce8bedefe7b06.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (302234817, 'Stir Fry Mushrooms, 4 oz', 3.48, '084348273043', 'Experience the fresh taste of Stir Fry Mushrooms. This convenient mix of mushrooms features a blend of sliced mushrooms including shiitake, baby bella, white, and portabella. Pre-sliced, the hearty, full-bodied taste of this mushroom blend makes them an excellent addition to beef, wild game, and vegetable dishes. Or add this hearty blend to broths, soups, stews, pizzas, or pasta sauces for a pleasing flavor and texture. Plus, mushrooms are a natural source of the antioxidant selenium, making them an excellent addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try Stir Fry Mushrooms.', 'Stir Fry Mushrooms, 4 oz: 4-ounce package of sliced mushrooms Blend of sliced mushrooms including shiitake, baby bella, white, and portabella Naturally fat-free Cholesterol-free Low in calories, carbs and sodium Fresh and all natural Best if kept refrigerated Wash before use Natural source of the antioxidant selenium Excellent addition to beef, wild game and vegetable dishes', 'Unbranded', 'https://i5.walmartimages.com/asr/d2f44286-90b8-46ea-a3b7-ad6366b02c1f.78a3c8dc89f092447c8a9b68eb933704.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d2f44286-90b8-46ea-a3b7-ad6366b02c1f.78a3c8dc89f092447c8a9b68eb933704.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d2f44286-90b8-46ea-a3b7-ad6366b02c1f.78a3c8dc89f092447c8a9b68eb933704.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (302642339, 'Fresh Candy Dream Grapes, 1 Lb', 3.98, '854957001289', 'short description is not available', 'Fresh Candy Dream Grapes, 1 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (302728619, 'Peach Pie Donut Peach', 3.68, '813187010317', 'short description is not available', 'Peach Pie Donut Peach', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ec9062fe-a556-49d2-895f-ee4ea3ba7410.3620454ae412399e02bd262f8cc3b7da.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec9062fe-a556-49d2-895f-ee4ea3ba7410.3620454ae412399e02bd262f8cc3b7da.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec9062fe-a556-49d2-895f-ee4ea3ba7410.3620454ae412399e02bd262f8cc3b7da.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (303239650, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094418291', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (303278953, 'Great Value Potato Salad, American Style, 5.4 oz', 1.48, '078742237978', 'Great Value American Style Potato Salad is made with traditional tangy russel potatoes, red bell peppers, green bell peppers, carrots, shallots, celery and a touch of mustard. This American classic is packed with mouthwatering flavors your whole family will enjoy. It is perfect for dozens of occasions whether it be a summer barbecue or a family picnic at the park. Serve it with juicy meatloaf and a garden fresh salad or simply enjoy on its own. It\'s great for health conscious individuals as it contains no trans-fat and cholesterol and is made with no artificial flavors. Boil, mix and serve in minutes to enjoy delicious American Style Potato Salad. Great Value products provide families with affordable, high quality grocery and household consumable options. With our wide range of product categories spanning grocery and household consumables, we offer you a variety of products for your family\'s needs. Our products are conveniently available online and in Walmart stores nationwide, allowing you to stock up and save money at the same time. Stovetop Instructions: in a large pot, bring 6 cups water to a boil. Add sliced potatoes and vegetable blend; boil for 15-17 minutes. Drain. Use a colander to rinse under cold water until potatoes are cold. Drain for 2-3 minutes until completely free from water. Add drained potatoes to a large mixing bowl; add the seasoning blend and mix until well blended. Refrigerate for 1 hour and mix before serving.', 'Great Value American Style Potato Sala: Traditional tangy russel potatoes and a touch of mustard No artificial flavors Made with real potatoes Net weight 5.4 oz', 'Great Value', 'https://i5.walmartimages.com/asr/966c6d02-9214-4417-a1d2-37ec48636044_4.6fe960675003be6ff9e38d58dfa9a7c7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/966c6d02-9214-4417-a1d2-37ec48636044_4.6fe960675003be6ff9e38d58dfa9a7c7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/966c6d02-9214-4417-a1d2-37ec48636044_4.6fe960675003be6ff9e38d58dfa9a7c7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (303353879, 'Hot House Cucumber', 1.18, 'deleted_826920000179', 'short description is not available', 'Hot House Cucumber', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (304224213, 'Fresh Peruvian Grown Red Grapes', 30, '', 'short description is not available', 'Fresh Peruvian Grown Red Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/045d4529-cf49-4439-bf9e-b75c1932deed_2.13295e53b94b5672b3854e20f37908b9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/045d4529-cf49-4439-bf9e-b75c1932deed_2.13295e53b94b5672b3854e20f37908b9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/045d4529-cf49-4439-bf9e-b75c1932deed_2.13295e53b94b5672b3854e20f37908b9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (304855330, 'Fresh Graprefruit, Each', 2.97, '000000042796', 'Grapefruit is the perfect balance between tart and sweet. The balance between tart and sweet is great for both savory and sweet dishes any time of day. Enjoy half of a grapefruit sprinkled with sugar with some eggs in the morning for a light, sweet breakfast. Slice it up and put in a salad with spinach, avocado, and red onion topped with a mustard and balsamic vinegar dressing for lunch or dinner. Make delicious grapefruit bars that showcase the sweet and tartness of this versatile fruit. For an adult recipe juice the grapefruit and pair with some simple syrup and alcohol for a refreshing cocktail. This fruit is the perfect addition to a healthy diet as it is a great source of vitamin C and vitamin A. With such versatility, Grapefruit will become a pantry staple in your home.', 'Great for both savory and sweet dishes Enjoy it for breakfast, lunch, dinner, or dessert Enjoy half a fresh grapefruit sprinkled with sugar in the morning, slice it up and put it in salad for lunch or dinner, or make grapefruit bars Great source of vitamin C and vitamin A', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9b886c2a-7fc2-4dbd-98fe-99c8e48e6944.f2698681c6f777003cfd13d7c6086d09.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b886c2a-7fc2-4dbd-98fe-99c8e48e6944.f2698681c6f777003cfd13d7c6086d09.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b886c2a-7fc2-4dbd-98fe-99c8e48e6944.f2698681c6f777003cfd13d7c6086d09.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (305458076, 'Apricot, 1 lb Pack', 3.98, 'deleted_896460002797', 'Fresh California Grown Apricots are a treat for the entire family. With a wonderfully sweet and smooth flavor, these apricots are a great snack at any time of the day. For breakfast, you could slice them and put them in your oatmeal or use them to make a satisfying yogurt parfait. You can also incorporate them into a variety of recipes. Use them to make a delectable apricot crisp or apricot cobbler and serve warm topped with ice cream. You can even use them to make a nutritious smoothie or a tasty adult beverage. However you choose to enjoy them, these apricots will satisfy everyone\'s sweet tooth. Enjoy the sweet and refreshing taste of Fresh California Grown Apricots.', 'Fresh California Grown Apricots, 16 oz: Wonderfully smooth and sweet flavor Great snack at any time of the day Use to make a delicious yogurt parfait Make a decadent apricot crisp and top with your favorite ice cream Wonderful addition to smoothies', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4b1fd233-b92f-4557-8c16-d9de02eafde2.cb4e49d4db2c636f20058c32dc26a658.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4b1fd233-b92f-4557-8c16-d9de02eafde2.cb4e49d4db2c636f20058c32dc26a658.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4b1fd233-b92f-4557-8c16-d9de02eafde2.cb4e49d4db2c636f20058c32dc26a658.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (306142909, '200pc Pto Rst 5# Wa', 554, '405529426087', 'short description is not available', '200pc Pto Rst 5# Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (306169918, 'Microwave in Bag Yellow Potatoes, 12 Oz.', 2.77, '854419002168', 'Microwave in Bag Yellow Potatoes, 12 Oz.', 'Microwave In Bag Yellow Potatoes 12 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (306312437, 'Ivory Bell Bumpy Pumpkins', 2.48, '850781007510', 'short description is not available', 'Ivory Bell Bumpy Pumpkins', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (306357731, 'Freshness Guaranteed Pineapple Rings', 4.58, '681131036924', 'short description is not available', 'Freshness Guaranteed Pineapple Rings', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (306500611, 'Fresh Black Seedless Grapes', 1.88, 'deleted_014668760206', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (307114818, 'Fresh Nectarines, 2 lb Bag', 3.97, '095829210860', 'Fresh nectarines are a juicy and flavorful fruit with a smooth skin that ranges in color from pale yellow to vibrant orange-red. These stone fruits have a sweet and tangy taste, similar to peaches but with a slightly firmer texture. With their refreshing and aromatic qualities, fresh nectarines are perfect for enjoying as a healthy snack, adding a burst of flavor to summer salads, or using in a variety of culinary creations. Whether eaten on their own or incorporated into recipes, fresh nectarines are a delicious and nutritious choice for fruit lovers.', 'In terms of nutrition, fresh nectarines are a great choice. They are low in calories and fat, making them a guilt-free indulgence. Additionally, they are an excellent source of vitamins A and C, which are important for maintaining healthy skin, boosting the immune system, and promoting overall well-being. Nectarines also provide dietary fiber, which aids digestion and helps keep you feeling full and satisfied. Whether you\'re looking for a healthy snack, a burst of flavor in your salad, or a versatile ingredient for your culinary creations, fresh nectarines are a fantastic choice. Their juicy sweetness and vibrant color make them a true summer treat that will leave you craving more. So go ahead, savor the taste of these luscious fruits and experience the joy they bring to your palate.', 'Welch\'s', 'https://i5.walmartimages.com/asr/be4ba06a-2659-4db4-99e2-da039bfd1997.2db0b58f2a22bf66bb9e9eae0f74cb30.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/be4ba06a-2659-4db4-99e2-da039bfd1997.2db0b58f2a22bf66bb9e9eae0f74cb30.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/be4ba06a-2659-4db4-99e2-da039bfd1997.2db0b58f2a22bf66bb9e9eae0f74cb30.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (307142371, 'Ollieroo Olympic Barbell Rack Bar Storage, Weight Bar Holder, Barbell Storage, Horizontal Barbell Wall Mount Bar Plate Storage Rack, Holds 6 Barbells, Holds 6 Bars', 4.34, '643126071983', 'Our fresh produce pineapple is a must-try for anyone who loves sweet, juicy fruits! Grown with organic ingredients, this tropical fruit is bursting with flavor and health benefits. Perfect for snacking, adding to smoothies, or grilling for a delicious twist on dessert. Our pineapples are harvested at peak ripeness and ready to be enjoyed. Don\'t settle for anything less than the best - try our organic pineapple today!', '- Freshly picked from the farm, our pineapple is a delicious addition to any meal or snack - With its naturally sweet flavor, our pineapple is the perfect choice for a healthy and flavorful treat Made with only the best organic ingredients, our pineapple is a fresh produce option you can feel good about Whether eaten on its own or used in a recipe, our pineapple is guaranteed to add a burst of tropical flavor to any dish Find this in your local Stores!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/95803a67-5ca1-4e3b-b86f-529b0d4b3f53.a18ad378a3602c9368be70dce594a803.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/95803a67-5ca1-4e3b-b86f-529b0d4b3f53.a18ad378a3602c9368be70dce594a803.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/95803a67-5ca1-4e3b-b86f-529b0d4b3f53.a18ad378a3602c9368be70dce594a803.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (307465078, 'Red Bell Pepper, each', 1.38, 'deleted_626074040034', 'short description is not available', 'Red Bell Pepper', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/2204b55a-26bb-4379-86b2-cc9c2d77bf80_1.dfc7792ed8d7b08d3d7613aea359f09e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2204b55a-26bb-4379-86b2-cc9c2d77bf80_1.dfc7792ed8d7b08d3d7613aea359f09e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2204b55a-26bb-4379-86b2-cc9c2d77bf80_1.dfc7792ed8d7b08d3d7613aea359f09e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (307582080, 'Marketside Organic Zucchini', 1.34, 'deleted_681131091053', 'short description is not available', 'Marketside Organic Zucchini', 'Marketside', 'https://i5.walmartimages.com/asr/d032c4b8-a1b1-42eb-874d-ed853b58340f_1.ba31804ca36fdc082ccec6ddff0dbe2f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d032c4b8-a1b1-42eb-874d-ed853b58340f_1.ba31804ca36fdc082ccec6ddff0dbe2f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d032c4b8-a1b1-42eb-874d-ed853b58340f_1.ba31804ca36fdc082ccec6ddff0dbe2f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (307766043, 'Watermelon Seedless', 4.48, '400094985007', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (307878856, '170pc Pto Ykn/red 5#', 887.4, '400094044971', 'short description is not available', '170pc Pto Ykn/red 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (308680092, 'Ogp Red Cherry Samples', 0.01, '405836139342', 'short description is not available', 'Ogp Red Cherry Samples', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (308680116, 'Slicer Tomato', 1.98, '405794256686', 'short description is not available', 'Slicer Tomato', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (309339459, 'York Apples 5 Lb Bag', 4.92, '033383076478', 'short description is not available', 'York Apples 5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (309548261, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_400094646182', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (309656313, '90pc On Vid 4# Ga Bf', 309.6, '400094369036', 'short description is not available', '90pc On Vid 4# Ga Bf', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (309762096, 'Fresh Rockit, Crisp Sweet Miniature Apples, 3lb Tub', 9.18, '888289403510', 'Experience the perfect combination of sweetness and crispness with our Fresh Rockit Miniature Apples. Naturally grown to be miniature, these apples are rich in flavor and high in energy. Ideal for snacking, baking, and adding a burst of taste to salads or charcuterie boards. Enjoy the benefits of consuming fewer calories with just two apples totaling 70 calories. Packaged sustainably in 80% rPET containers that can be recycled, it\'s a great choice for conscious consumers who value freshness and environmental responsibility. Available while stocks last.', 'Sweet, crisp and juicy with every bite Conveniently sized for on-the-go snacking Perfect as a healthy treat or seasonal baking ingredient Excellent source of fiber and vitamin C Two apples = 70 calories 80% rPET packaging that can be upcycled or recycled Adds flavor to a variety of recipes Fresh and ready-to-eat food condition Includes Rockit plant variety for a unique taste', 'Rock It', 'https://i5.walmartimages.com/asr/de6d6d44-507a-43e4-9bd9-d86286473870.4d6dbcb5c200885859982510d4314077.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/de6d6d44-507a-43e4-9bd9-d86286473870.4d6dbcb5c200885859982510d4314077.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/de6d6d44-507a-43e4-9bd9-d86286473870.4d6dbcb5c200885859982510d4314077.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (310071420, 'Sunset One Sweet Tomatoes, 16 oz Flavor Bowl Package, Fresh', 3.5, '057836022577', 'SUNSET One Sweet Tomatoes are 16 ounces of premium cherry snacking tomatoes! Garden inspired flavor perfect for snacking, lunch, or dinner. Try them in salads, pastas, omelets, flatbreads, and more. Mellow juiciness, and the ideal crunch, these tomatoes are perfectly balanced with just the right amount of acidity. Hothouse grown to ensure consistent quality and freshness. Certified non-GMO tomatoes grown without pesticides or herbicides. Store at room temperature for optimal flavor, and wash before enjoying. Plastic football shaped bowl is fun for parties. Enjoy SUNSET One Sweet Tomatoes Flavor Bowl for every game.', 'SUNSET fresh One Sweet cherry snacking tomatoes Mellow juiciness, and the ideal crunch Perfectly balanced with just the right amount of acidity Garden inspired flavor, perfect for snacking, lunch, or dinner Try them in salads, pastas, dips, flatbreads, and more Wash and enjoy Available all-year-long Non-GMO certified Hothouse grown to ensure consistent quality and freshness No pesticides or herbicides 16 oz. plastic footballed shaped bowl is run for parties Store at room temperature for optimal flavor', 'SUNSET', 'https://i5.walmartimages.com/asr/314139fe-54ff-4a08-9f54-0fc154897ac2.89b8253dde0e95a6bc6f2b4ccef83306.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/314139fe-54ff-4a08-9f54-0fc154897ac2.89b8253dde0e95a6bc6f2b4ccef83306.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/314139fe-54ff-4a08-9f54-0fc154897ac2.89b8253dde0e95a6bc6f2b4ccef83306.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (310567004, 'Revol Greens Organic Romaine Cunch Salad, 4.0 oz Clam Shell, Fresh', 2.98, '850024486034', 'Revol Greens® Organic Romaine Crunch is a blend of crisp romaine and green leaf lettuce. All Revol Greens® lettuce is grown inside a greenhouse and harvested daily, 365 days a year. Our regional greenhouse locations allow us to reach nearly all our customers within 24-48 hours of harvest, so that our greens arrive incredibly fresh and at peak nutritional value.', 'USDA Organic Certified Grown in a protected greenhouse environment Sustainably grown with 90% less water than field grown lettuce', 'Revol Greens', 'https://i5.walmartimages.com/asr/e10ae26f-429e-442d-b866-7bbe37395175.b32ed21a59ee4ecf88902690e51ce8a4.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e10ae26f-429e-442d-b866-7bbe37395175.b32ed21a59ee4ecf88902690e51ce8a4.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e10ae26f-429e-442d-b866-7bbe37395175.b32ed21a59ee4ecf88902690e51ce8a4.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (310655948, 'Organic Green Leaf, 1 Each', 1.96, '000651967011', 'Organic Green Leaf', 'Organic Green Leaf', 'Ocean Mist Farms', 'https://i5.walmartimages.com/asr/cc406b35-c39d-4e2c-859c-806386eb4c49_1.559f673d818e2673ca38b2825651e114.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc406b35-c39d-4e2c-859c-806386eb4c49_1.559f673d818e2673ca38b2825651e114.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc406b35-c39d-4e2c-859c-806386eb4c49_1.559f673d818e2673ca38b2825651e114.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (310765960, 'Fresh Grape Tomato, 9 oz Cup', 3.1, '626074674512', 'Bring the fresh, delicious taste of Grape Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this convenient cup of Grape Tomatoes.', 'Grape Tomato, 9 oz Cup: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient cup Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/dea2ab29-f27f-4316-b259-b0d076509043.c2aa675524913f14104f23b65651d6ab.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dea2ab29-f27f-4316-b259-b0d076509043.c2aa675524913f14104f23b65651d6ab.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dea2ab29-f27f-4316-b259-b0d076509043.c2aa675524913f14104f23b65651d6ab.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (310803459, 'Red Potatoes 5 Lb Bag', 5.77, 'deleted_826088510107', 'short description is not available', 'Red Potatoes 5 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (310952772, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094275511', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (311089372, 'Gala Apples 3 Lb Bag', 3.37, 'deleted_087434007416', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (312079145, 'Fresh Grape Tomato, 10 oz Package', 2.78, '811857021625', 'Fresh grape tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Grape Tomatoes are the perfect choice.', 'Grape Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (312360048, 'Bowery Farming Bowery Salad Spring Mix 4oz', 2.98, '851536007519', 'short description is not available', 'Bowery Farming Bowery Salad Spring Mix 4oz', 'Bowery Farming', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (312399109, '90pc Pto Rst 10# Rpe', 537.3, '405531363417', 'short description is not available', '90pc Pto Rst 10# Rpe', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (312402314, 'Fresh Green Beans', 1.68, '073064200846', 'short description is not available', 'Fresh Green Beans', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/8fff6584-fd94-448c-b7c9-ac53d7d60a54_3.5a5c9ad547e83fcfacd478358f73518a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8fff6584-fd94-448c-b7c9-ac53d7d60a54_3.5a5c9ad547e83fcfacd478358f73518a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8fff6584-fd94-448c-b7c9-ac53d7d60a54_3.5a5c9ad547e83fcfacd478358f73518a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (313382466, 'Mutsu Apples 3 Lb Bag', 4.47, '033383068527', 'short description is not available', 'Mutsu Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (313490509, 'Fresh Peruvian Grown Black Grapes', 4.46, '', 'short description is not available', 'Fresh Peruvian Grown Black Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (314344585, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094422700', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (315271701, 'Russet Potatoes 5 Lb Bag', 3.84, 'deleted_826088530105', 'short description is not available', 'Russet Potatoes 5 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (315288799, 'Freshness Guaranteed Fresh Black Seedless Grapes', 2.98, 'deleted_841139100137', 'short description is not available', 'Freshness Guaranteed Fresh Black Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (315379233, 'BELLAFINA Mini Bell Pepper, 1lb', 4.97, '750455000413', 'Enhance your meals with the delicious flavor of Fresh Color Bell Peppers. Dice these colorful bell peppers and put them in a hearty chili, slice them and add to a deli sandwich, saute them with onions and serve on a hoagie roll with a bratwurst, or stir-fry with thinly sliced steak and serve with rice. A hollowed-out bell pepper can be filled with sausage, mushrooms, and rice to create a delicious stuffed pepper that will have the family asking for seconds. With so many ways to prepare them, Fresh Color Bell Peppers are an excellent fresh produce vegetable to have on hand.', 'Dice them and put them in chili Add to a deli sandwich Slice and serve with your favorite dip Loaded with vitamin C High in vitamin A Wash before eating', 'Bailey Farms', 'https://i5.walmartimages.com/asr/06d77c4c-2eae-4375-87c5-2f262e050366.fa84056ae53fb5bf1fb5d1cb63625fe0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/06d77c4c-2eae-4375-87c5-2f262e050366.fa84056ae53fb5bf1fb5d1cb63625fe0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/06d77c4c-2eae-4375-87c5-2f262e050366.fa84056ae53fb5bf1fb5d1cb63625fe0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (315626899, 'Cucumber Salad/pickling Bagged', 3.68, '859660051682', 'short description is not available', 'Cucumber Salad/pickling Bagged', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (316072301, '90pc Pto Rst 10# Wd', 399.6, '405531027883', 'short description is not available', '90pc Pto Rst 10# Wd', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (316094207, 'Walmart Produce Cantaloupe Berry Medley 10 Oz', 2.98, '826766254255', 'short description is not available', 'Walmart Produce Cantaloupe Berry Medley 10 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (316613830, 'Saturn Peach, 2 lb Carton', 3.98, '847081000242', 'short description is not available', 'Saturn Peach, 2 lb Carton', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ec9062fe-a556-49d2-895f-ee4ea3ba7410.3620454ae412399e02bd262f8cc3b7da.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec9062fe-a556-49d2-895f-ee4ea3ba7410.3620454ae412399e02bd262f8cc3b7da.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec9062fe-a556-49d2-895f-ee4ea3ba7410.3620454ae412399e02bd262f8cc3b7da.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (316834212, 'Fieldpack Unbranded Fresh Strawberries 2#', 4.74, 'deleted_885443200305', 'BEACH SIDE PRDC SNGL FRT STRWB MLDD TRY', 'BEACH SIDE PRDC SNGL FRT STRWB MLDD TRY FRESH FRUIT', 'Fresh Produce', 'https://i5.walmartimages.com/asr/19e5eec4-4ff0-4dc6-97d0-ae0d16d8f2b1.a0b683f83258e19335d29f622b44b8c3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19e5eec4-4ff0-4dc6-97d0-ae0d16d8f2b1.a0b683f83258e19335d29f622b44b8c3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19e5eec4-4ff0-4dc6-97d0-ae0d16d8f2b1.a0b683f83258e19335d29f622b44b8c3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (317205480, '120pc Grapefruit 5#', 717.6, '405785573266', 'short description is not available', '120pc Grapefruit 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (317348334, 'Acorn Squash', 1.18, '667859047503', 'Acorn Squash', 'Acorn Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/daf77412-3612-43bc-bfaf-5ef228abae6d.834dcfdb96f9856e465e5718fe558dd3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/daf77412-3612-43bc-bfaf-5ef228abae6d.834dcfdb96f9856e465e5718fe558dd3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/daf77412-3612-43bc-bfaf-5ef228abae6d.834dcfdb96f9856e465e5718fe558dd3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (317386581, 'Fresh Cherubs Grape Tomatoes, 24 oz Package', 5.38, '751666776050', 'Bring the fresh, delicious taste of NatureSweet Cherubs Grape Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Cherubs Grape Tomatoes. Fair Trade Certified tomatoes are the best way to have a positive impact on the lives of farmers, workers, and their communities. Through fair wages, enhanced health and safety on the job, and Community Development Funds that workers invest to solve their most pressing needs, every fair trade purchase you make has an impact. And you get to enjoy great quality tomatoes while making a difference!', 'Great for Snacking Great for Salads Fair Trade Certified We build them good homes, we protect and nurture them, and the struggle is worth it when the outcome is so fresh and sweet Our associates give our tomatoes the best chance for success Tomatoes raised right', 'NatureSweet', 'https://i5.walmartimages.com/asr/d14b0ded-6657-45bd-b5dd-25f25b815d02.b514981226b2bf924f4f2fe8629d6002.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d14b0ded-6657-45bd-b5dd-25f25b815d02.b514981226b2bf924f4f2fe8629d6002.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d14b0ded-6657-45bd-b5dd-25f25b815d02.b514981226b2bf924f4f2fe8629d6002.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (317953932, 'Services Reduced Program Dept 94', 0.01, '251680000006', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (318134528, 'Yellow Flesh Peaches, per Pound', 1.58, '400094345726', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (318460628, 'Fresh Sweet Twister Peppers, 12 Ounce Bag', 3.98, '057836000179', 'Enjoy the satisfying crunch and flavor of Sweet Twister Peppers. Slice them up and roast for a sweeter, smoky flavor that goes well with your choice of protein. For an appetizer, cut the peppers in half and stuff with a mixture of ground sausage and cream cheese topped with a sprinkle of shredded cheese. You can also eat them on their own for a satisfying crunch or dipped in some ranch for a hint of savory flavors. They\'re an excellent source for vitamin C, low in calories, have no fat or cholesterol, making them perfect as part of a healthy diet. Simply wash the the fresh produce before use and keep refrigerated. Savor the sweet taste of this 12-ounce bag of Sweet Twister Peppers.', 'Fresh Sweet Twister Peppers, 12 Ounce Bag Sweet, crunchy mini bell pepper Roast, bake, or enjoy alone Great for stuffing, sauteing, or dipping in dressing Excellent source for vitamin C, low in calories, have no fat or cholesterol USDA certified organic fresh produce', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e0a44938-aee5-48ea-94d8-6ebec8f467bb_2.cb7ef34fd51165845f91c979202ff17d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e0a44938-aee5-48ea-94d8-6ebec8f467bb_2.cb7ef34fd51165845f91c979202ff17d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e0a44938-aee5-48ea-94d8-6ebec8f467bb_2.cb7ef34fd51165845f91c979202ff17d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (318627578, 'Freshness Guaranteed Fresh Black Seedless Grapes', 2.28, '', 'short description is not available', 'Freshness Guaranteed Fresh Black Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (318662748, 'Ruby Frost Apple, Each', 2.67, '000000034432', 'short description is not available', 'Produce Unbranded Ruby Frost Apple Each', 'Unbranded', 'https://i5.walmartimages.com/asr/76236378-0a6b-4079-9814-d54bbc1acc2c.a90342d4fd27fbb80bd09d14da092858.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/76236378-0a6b-4079-9814-d54bbc1acc2c.a90342d4fd27fbb80bd09d14da092858.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/76236378-0a6b-4079-9814-d54bbc1acc2c.a90342d4fd27fbb80bd09d14da092858.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (319424649, 'Watermelon Seedless', 4.98, '400094407448', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (319609531, 'Fresh Green Seedless Grapes', 1.98, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (319961814, 'Fresh Cut Bell Peppers & Onions', 2.98, '262512000002', 'short description is not available', 'Fresh Cut Bell Peppers & Onions', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (320006487, 'Halo 2ct Sample', 0.01, '072240434785', 'short description is not available', 'Halo 2ct Sample', 'WONDERFUL', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (320507482, 'Green Giant Red Creamer Potato, 1.5 Lb.', 3.77, 'deleted_605806003691', 'Green Giant Red Creamer Potato, 1.5 Lb.', 'Red Green Giant Creamer Potato 1.5 Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (321054346, 'Freshness Guaranteed Fresh Green Seedless Grapes', 1.78, 'deleted_681131377270', 'short description is not available', 'Freshness Guaranteed Fresh Green Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (321240297, 'Jimmy\'s Sea Salt Caramel Dip 16 Oz', 3.98, '086824228202', 'short description is not available', 'Jimmy\'s Sea Salt Caramel Dip 16 Oz', 'Jimmy\'s', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (321375149, 'Purple Eggplant', 1.42, '819800010177', 'Eggplant', 'Purple Eggplant', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/f7399661-3d47-4ba7-9792-249286158ea9.78955c98fbb1a2424cdf601e5bd2431a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f7399661-3d47-4ba7-9792-249286158ea9.78955c98fbb1a2424cdf601e5bd2431a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f7399661-3d47-4ba7-9792-249286158ea9.78955c98fbb1a2424cdf601e5bd2431a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (321667740, 'Pink Cripps Apples 3 Lb Bag', 3.42, '847473005817', 'short description is not available', 'Pink Cripps Apples 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (322557892, 'Gala Apples 3 Lb Bag', 3.37, 'deleted_879329007386', '', '', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (322626189, 'Services Reduced Program Dept 94', 0.01, '251741000006', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (322648027, '300pc Bumpy Pumpkins', 954, '405973284301', 'short description is not available', '300pc Bumpy Pumpkins', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (323104668, '1# Kale Greens', 2.94, 'deleted_060556140124', 'Fresh chopped and thoroughly washed kale 1lb bag', '1# Kale Greens', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a383830b-138b-4bb8-afd5-b3e34264dd75.e8b511b2979eaaa9c49fba11861dbfd6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a383830b-138b-4bb8-afd5-b3e34264dd75.e8b511b2979eaaa9c49fba11861dbfd6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a383830b-138b-4bb8-afd5-b3e34264dd75.e8b511b2979eaaa9c49fba11861dbfd6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (323410338, 'Fieldpack Marketside Organic Cauliflower', 2.96, 'deleted_405978093311', 'short description is not available', 'Fieldpack Marketside Organic Cauliflower', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (323513652, 'Gold Delicious Apples, 3lb Bag', 2.97, 'deleted_080153340208', 'short description is not available', 'Gold Delicious Apples, 3lb Bag', '', 'https://i5.walmartimages.com/asr/18a3ca48-62f6-42c5-9637-b04394ded669_1.5a234bb1d7bd5799a31dfe59ee4e8532.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18a3ca48-62f6-42c5-9637-b04394ded669_1.5a234bb1d7bd5799a31dfe59ee4e8532.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18a3ca48-62f6-42c5-9637-b04394ded669_1.5a234bb1d7bd5799a31dfe59ee4e8532.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (324079516, 'Freshness Guaranteed Berry Trio', 4.28, '263031000009', 'short description is not available', 'Freshness Guaranteed Berry Trio', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (324927090, '240pc On Ylw 3# Sp', 465.6, '400094915783', 'short description is not available', '240pc On Ylw 3# Sp', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (325522837, 'California Grown Peaches, per Pound', 1.58, '400094859155', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (326095954, '200pc Pto Rst 5# Co', 654, '405519742661', 'short description is not available', '200pc Pto Rst 5# Co', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (326470327, 'Red Delicious Apples 5 Lb Bag', 4.98, 'deleted_859125002556', 'short description is not available', 'Red Delicious Apples 5 Lb Bag', 'Mountainland', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (326994732, 'Little Potato Company Dynamic Duo Medley Baby Potatoes, 1.5 lb Bag', 3.48, 'deleted_629307122545', 'Epitomizing balance on a plate, Dynamic Duo offers the perfect sized helping of both red and yellow Creamer varietals. Each bag packs a charming color combination to double the fun and delight at mealtime. The potatoes play beautifully together, delivering silky smooth textures and subtle, harmonious flavors. Dynamic Duo is highly receptive to different seasonings, cuisines and cooking methods, and can be easily adapted to any potato recipe. With excellent color retention, these Creamers are a wonderful culinary pair and hold great presentation.', 'Dynamic Duo Fresh Creamer Potatoes, 1.5 lbs bag', 'The Little Potato Company', 'https://i5.walmartimages.com/asr/133a02d7-7806-41b6-b929-729d8d491757.353b204493f82fafc78eaf3795ce1617.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/133a02d7-7806-41b6-b929-729d8d491757.353b204493f82fafc78eaf3795ce1617.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/133a02d7-7806-41b6-b929-729d8d491757.353b204493f82fafc78eaf3795ce1617.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (327119133, 'Marketside Organic Granny Smith Apples 2 Lb Bag', 5.97, 'deleted_883391003825', 'short description is not available', 'Marketside Organic Granny Smith Apples 2 Lb Bag', 'Marketside', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (327591319, 'Dried Ancho Chile 8 oz', 4.58, '712810008052', 'Packaged Ancho Chili Dried 8oz', 'Dried Ancho Chile 8 Oz', 'Miravalle', 'https://i5.walmartimages.com/asr/e007a34b-422c-4f6f-8b2f-714fc54060ad_1.f9df5dba2a2916de4917960c75f496d5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e007a34b-422c-4f6f-8b2f-714fc54060ad_1.f9df5dba2a2916de4917960c75f496d5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e007a34b-422c-4f6f-8b2f-714fc54060ad_1.f9df5dba2a2916de4917960c75f496d5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (328023329, 'Fieldpack Unbranded Mini Cucumbers 16 Oz', 1.97, '021130984367', 'short description is not available', 'Fieldpack Unbranded Mini Cucumbers 16 Oz', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (328684044, 'Fresh Medley Tomato, 10 oz Package', 3.98, '885773044037', 'Bring the fresh, delicious taste of Medley Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Medley Tomatoes.', 'Medley Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (328705329, 'MO QUA SQUASH', 1.94, 'deleted_045255264128', 'short description is not available', 'Mo Qua Squash', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (329474972, 'Fresh California Grown Red Grapes', 1.36, '014668760145', 'short description is not available', 'Fresh California Grown Red Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (330549107, 'Gala Apples Bulk', 1.67, '', 'short description is not available', 'Gala Apples Bulk', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (331591487, 'Yellow Flesh Peaches, per Pound', 1.58, '400094357538', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (331907043, 'Lemon Juice Squeeze 4.5oz Each', 0.98, '787359252013', 'short description is not available', 'Lemon Juice Squeeze 4.5oz Each', 'Fresh Gourmet', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (332067591, 'Bowery Farming Bowery Salad Kale Mix 4oz', 2.98, '851536007557', 'short description is not available', 'Bowery Farming Bowery Salad Kale Mix 4oz', 'Bowery Farming', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (332379433, '180pc Apl Granny 3#', 822.6, '405667988898', 'short description is not available', '180pc Apl Granny 3#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (332486501, 'Organic Sweet Potatoes Whole Fresh, 3 lb Bag', 5.28, 'deleted_617620000091', 'Create something wholesome and delicious with these Organic Sweet Potatoes. Sometimes referred to as yams, these versatile fresh produce vegetables can be used multiple ways: to make savory sides or sweet treats. Try them roasted or baked for a tasty addition to any dish. You could also use them to make seasoned sweet potato fries or a flavorful hummus dip for your next party. If you want to satisfy your sweet tooth, try them in a traditional sweet potato casserole or use them to make sweet potato and brown sugar ice cream. The mouthwatering possibilities are endless with this hearty vegetable. Add something amazing to your meals with this three-pound bag of Organic Sweet Potatoes.', 'Wholesome, versatile, and delicious Ideal ingredient for a variety of dishes Make seasoned sweet potato fries or a flavorful hummus dip Use them for a sweet potato casserole or sweet potato and brown sugar ice cream USDA organic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cc735c8e-c879-4d23-9106-fc368083ca5b.2782af171e4e55af086ddb970f2fbe0d.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc735c8e-c879-4d23-9106-fc368083ca5b.2782af171e4e55af086ddb970f2fbe0d.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc735c8e-c879-4d23-9106-fc368083ca5b.2782af171e4e55af086ddb970f2fbe0d.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (332530153, 'Watermelon Seedless', 4.98, '400094400371', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (332962405, 'Freshness Guaranteed Mango 16 Oz', 6.97, 'deleted_681131036542', 'short description is not available', 'Freshness Guaranteed Mango 16 Oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (333211449, 'Whole Cello Carrots 1 Lb Bag', 0.82, 'deleted_864098000003', 'short description is not available', 'Whole Cello Carrots 1 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (333706752, 'Yellow Flesh Peaches, per Pound', 1.58, '400094791806', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (334060795, 'Fresh Grown Black Grapes 1lb', 2.98, '', 'short description is not available', 'Fresh Grown Black Grapes 1lb', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (335478602, 'Spring Mix Salad, 4 Oz.', 2.98, '405642700408', 'Spring Mix Salad, 4 Oz.', 'Sald Spring Mix 4 Oz.', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (335616654, 'Chocomaker Natural Display', 3.98, '879826015952', 'short description is not available', 'Chocomaker Natural Display', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/5ebaa98d-2ab6-4649-a190-d5d8b834cada.9fcc775b3248055d2df68ecc31b8de85.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5ebaa98d-2ab6-4649-a190-d5d8b834cada.9fcc775b3248055d2df68ecc31b8de85.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5ebaa98d-2ab6-4649-a190-d5d8b834cada.9fcc775b3248055d2df68ecc31b8de85.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (335843834, 'Freshness Guaranteed Red Grapes Small, 0.5-1 lbs', 3.31, '262816000005', 'Freshness Guaranteed Red Grapes in a small plastic container ready to be opened and shared.', 'Freshness Guaranteed Red Grapes Small', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (336420149, 'Fresh Organic Gala Apples, 2 lb Bag', 4.36, '847473003790', 'Treat yourself to the delicious, crisp taste of Organic Gala Apples. Enjoy one with breakfast or lunch or as a fresh snack any time of day. Best of all, these delicious apples hold up well when cooked and can be used in both savory and sweet dishes. They can be used for baking, snacking, salads, pairing, or made into a delicious sauce that pairs perfectly with pork. Try incorporating them into soups and compotes or using to make yummy jam or juice. Use them to create apple crisp, pie, and strudel for a sweet treat. You can even pair them with sharp cheeses and crackers to create a stunning appetizer cheese board to share with guests. The possibilities are endless with Organic Gala Apples.', 'Organic Gala Apples, 2 lb Bag: Includes 2 pounds of crisp apples USDA organic Pair them with sharp cheeses and crackers for a stunning appetizer board Can be enjoyed fresh or cooked into both savory and sweet dishes Meets or exceeds U.S. Extra Fancy Minimum diameter: 2.25\"', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bea96770-c117-4fe8-9d65-070240d40b8c.806bfdc237bdaab49588c964a266e615.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bea96770-c117-4fe8-9d65-070240d40b8c.806bfdc237bdaab49588c964a266e615.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bea96770-c117-4fe8-9d65-070240d40b8c.806bfdc237bdaab49588c964a266e615.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (336773042, 'Fresh Organic Envy Apples, Each', 2.96, '000000936163', 'Envy is the ultimate apple experience with its extraordinary texture and crunch, balanced sweetness and beautiful golden red colors, Envy apples can be enjoyed anywhere, anytime! Best served fresh or paired with cheese boards, sandwiches, mocktails and more. Envy is an invitation to enjoy a small moment to savor and raise your expectations of what an apple can be. Bite & believe!', 'Beautifully balanced sweetness Uplifting fresh aroma Delightfully satisfying crunch Slices naturally stay white longer', 'Fresh Produce', 'https://i5.walmartimages.com/asr/49997c35-c16a-410e-85ee-ffedd7385f29.67d777ec4e44b5ecbba8d3aada282ee5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/49997c35-c16a-410e-85ee-ffedd7385f29.67d777ec4e44b5ecbba8d3aada282ee5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/49997c35-c16a-410e-85ee-ffedd7385f29.67d777ec4e44b5ecbba8d3aada282ee5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (337004274, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.68, '400094011126', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (337101534, 'Produce Unbranded Avocado 5 Ct Bag', 2.98, '761010098769', 'short description is not available', 'Produce Unbranded Avocado 5 Ct Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (337735413, 'Fresh Cherry Tomato, 10 oz Package', 3.28, '751666104754', 'Bring the fresh, delicious taste of Cherry Tomatoes into your home. Because of their notable flavor and thicker skin, they are a versatile tomato that\'s great for grilling, sauteing, roasting, or baking. Their small size also makes them a quick and simple addition to a fresh salad as well as an excellent finger food for whenever you\'re in the mood for a light snack. Packed with nutrients, cherry tomatoes are a deliciously healthy ingredient that adds both vibrant color and mouthwatering flavor to any recipe. For the best flavor and freshness, store these tomatoes at room temperature on your kitchen counter. Make your next meal a marvelous one with these fresh Cherry Tomatoes.', 'Cherry Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3789d7c1-d802-413a-8d4b-edfd908fc357.8cdcf5028266c80a66dae0dd627b6868.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3789d7c1-d802-413a-8d4b-edfd908fc357.8cdcf5028266c80a66dae0dd627b6868.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3789d7c1-d802-413a-8d4b-edfd908fc357.8cdcf5028266c80a66dae0dd627b6868.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (337792129, 'Expert Gardener 4Pk Cherry Tomato', 3.48, '008462306098', 'Expert Gardener cherry tomatoes are a perfect addition to any garden! Plant Tomatoes in your spring garden and enjoy them during the growing season. Plant themin full sun.', 'Bell PepperÃÃÃÃÂ', 'Expert Gardener', 'https://i5.walmartimages.com/asr/e751a678-642b-4dad-a6ed-486dd139a4f0.f22ea29443dc5fcecee534f7eaeaa60c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e751a678-642b-4dad-a6ed-486dd139a4f0.f22ea29443dc5fcecee534f7eaeaa60c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e751a678-642b-4dad-a6ed-486dd139a4f0.f22ea29443dc5fcecee534f7eaeaa60c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (338588000, 'Fresh Organic Clementines, 2 lb Bag', 3.98, '014668410019', 'Enjoy the juicy goodness of citrus when you eat a Fresh Organic Clementine. Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Among the smallest fruits in the orange family, clementines have a pleasing sweet-tart flavor and are typically seedless. Generally a winter fruit, clementines are now available year-round in most markets. Clementines are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the mandarins hang out in a bowl on your counter or table to breathe. Compact and portable, clementines are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious Fresh Organic Clementines on hand for an easy, healthy treat.', 'Delicious, sweet, juicy fresh citrus Pleasing sweet-tart flavor Easy to peel and segment Excellent source of vitamin C, potassium, and folic acid For maximum flavor, do not refrigerate Typically seedless USDA organic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/19ae05d6-ea3b-4ac0-ae57-7166e37dca18_3.b04fb12f9b7fd7a78a5bb358420c6ad2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19ae05d6-ea3b-4ac0-ae57-7166e37dca18_3.b04fb12f9b7fd7a78a5bb358420c6ad2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19ae05d6-ea3b-4ac0-ae57-7166e37dca18_3.b04fb12f9b7fd7a78a5bb358420c6ad2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (339066125, 'Watermelon Seedless', 4.48, '405504835996', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (339109644, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094624159', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (339378466, '200pc Pto Ykn/red 5#', 1044, '405536422188', 'short description is not available', '200pc Pto Ykn/red 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (339810351, 'Medley Tomato, 10 oz Package', 4.48, 'deleted_057836020788', 'Bring the fresh, delicious taste of fresh Medley Tomatoes to your kitchen. These tomatoes are greenhouse grown and non-GMO giving them sweet, juicy flavor in every bite. These multi-colored tomatoes come in hues of orange, red, and yellow, which adds a nice bit of vibrant color to your meals. Use them to top salads at lunch or dinner, mix them into pasta salads, or add them to omelets for a fresh bite. They are bite sized, which makes them easy to enjoy as a snack, if desired. With a delicious, juicy flavor, be sure to make Medley Tomatoes part of your purchase today!', 'Medley Tomato, 10 oz Package: Sweet, juicy flavor in every bite Greenhouse grown and non-GMO Use them to top salads at lunch or dinner, mix them into pasta salads, or add them to omelets Perfect size to enjoy as a snack Adds vibrant colors to your meals Comes in hues of orange, red, and yellow', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (339900074, 'Fresh Slicing Tomato, 2 Pack', 2.48, '005783662001', 'Bring the fresh, delicious taste of Slicing Tomatoes into your home. These tomatoes deliver sweet and juicy flavor with each bite and are an ideal ingredient in a variety of recipes. They would make a tasty, garden-inspired addition to salads, burgers, gourmet sandwiches, and so much more. They are picked at peak freshness and specially bred for deep red color, intense flavor, and higher lycopene content than standard tomatoes. Whether you slice or dice them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with these fresh Slicing Tomatoes.', 'Slicing Tomato, 2 Pack: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, burgers, gourmet sandwiches, and more Add to party trays or school lunches Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e648291f-0ccf-4ef5-a8f8-7fbe8d8686bb.192e42a5f946db220a42352ce18ef6f8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e648291f-0ccf-4ef5-a8f8-7fbe8d8686bb.192e42a5f946db220a42352ce18ef6f8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e648291f-0ccf-4ef5-a8f8-7fbe8d8686bb.192e42a5f946db220a42352ce18ef6f8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (340219237, 'Expert Gardens 4 PK Cherry Tomato Red (4 pack) Grower pot', 3.48, '743425203556', 'short description is not available', 'EG 4PK CHERRY TOMATO', 'Expert Gardener', 'https://i5.walmartimages.com/asr/9b086723-80a0-4041-bc36-a62c1472cfee.01414c90a49f30451c300371d9479452.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b086723-80a0-4041-bc36-a62c1472cfee.01414c90a49f30451c300371d9479452.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b086723-80a0-4041-bc36-a62c1472cfee.01414c90a49f30451c300371d9479452.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (340253747, 'Consalo Family Farms Fresh Blueberries, 6 Oz', 2.98, 'deleted_813618020502', 'Fresh Blueberries. Enjoy them for breakfast, lunch, dinner, or dessert. Use them make a lemon, blueberry galette, bake them into delicious blueberry muffins, or a sweet and savory pizza topped with blueberries and bacon, or reduce them for a sauce to use on grilled chicken or cheesecake. They contain essential vitamins and nutrients like, vitamin C, vitamin K, antioxidants, and manganese making them perfect for a healthy diet. Prior to serving simply gently wash them with cool water and enjoy the fresh taste. Refrigerate the berries to keep them fresh and ready for use. Pick up Fresh Blueberries today and savor the delectable flavor.', 'Best when enjoyed at room temperature Light, refreshing taste Healthy sweet treat Prior to serving gently wash them with cool water Refrigerate your berries in the original container to maintain freshness, they should approximately last 3-5 days after purchase Keep dry for optimal freshness', 'Consalo Family Farms', 'https://i5.walmartimages.com/asr/2ab1b06d-47d5-4ff0-9658-eaf18c978f30_1.8099d7b50c1d9e0d4faaf910ed9b22db.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2ab1b06d-47d5-4ff0-9658-eaf18c978f30_1.8099d7b50c1d9e0d4faaf910ed9b22db.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2ab1b06d-47d5-4ff0-9658-eaf18c978f30_1.8099d7b50c1d9e0d4faaf910ed9b22db.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (340870665, 'Fresh Red Banana, Each', 1.58, '000000042369', 'Our fresh bananas are made with organic ingredients and are the perfect healthy snack! These sweet and delicious fruits are filled with essential vitamins and minerals that provide energy and help maintain a balanced diet. Enjoy them as a quick on-the-go snack or add them to smoothies and desserts for a delicious treat. Trust us, you won\'t be disappointed!', 'Selected and stored full fresh, Sourced with high quality standards. Recommended to wash before consuming. Delicious on their own as a healthy snack or as part of a recipe. Fresh and whole banana. Made with Organic Ingredients, Sweet Flavor. Also known as Red Dacca banana, Cuban Red Banana, Jamaican Red banana around the world.', 'Del Monte', 'https://i5.walmartimages.com/asr/055c13d0-d50a-4ead-8ddb-d0cea1daac99_3.2be929e955e855643720e31f437cb819.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/055c13d0-d50a-4ead-8ddb-d0cea1daac99_3.2be929e955e855643720e31f437cb819.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/055c13d0-d50a-4ead-8ddb-d0cea1daac99_3.2be929e955e855643720e31f437cb819.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (341377451, '200pc Pto Red 5# Mf', 794, '405536848728', 'short description is not available', '200pc Pto Red 5# Mf', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (341387079, 'Fresh Cocktail Medley Tomato, 1 lb Package', 3.98, '816239013489', 'Bring the fresh, delicious taste of Cocktail Medley Tomatoes on the Vine to your kitchen. These vibrant tomatoes are greenhouse grown and non-GMO giving them sweet, juicy flavor in every bite. They come in a variety of multi-colored hues, including orange, red and yellow, which adds a nice bit of vibrant color to your meals. Use them to top salads at lunch or dinner, mix them into a roasted tomato risotto, or add them to your morning omelet for a fresh, garden-inspired taste. They are small and bite sized, which makes them easy to enjoy as a healthy snack, if desired. Get creative in the kitchen with Cocktail Medley Tomatoes on the Vine.', 'Cocktail Medley Tomatoes on the Vine: Sweet, juicy flavor with each bite Greenhouse grown Ideal for salads, pasta salads, flatbreads, omelets, and many other delicious recipes Multicolored: orange, red and yellow Bite sized; perfect for snacking Non-GMO Project Verified Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/48b45c07-a61c-41af-9ab2-5807a35a9a86.96ea107793cb1f6081f4103786cecb29.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/48b45c07-a61c-41af-9ab2-5807a35a9a86.96ea107793cb1f6081f4103786cecb29.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/48b45c07-a61c-41af-9ab2-5807a35a9a86.96ea107793cb1f6081f4103786cecb29.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (341759435, 'Baker Farms Organic Collard Greens, 10oz, Bagged, Fresh', 3.97, '813098020382', 'Baker Farms Organic Collard Greens, 10 oz: Tripled Washed Chopped Fresh Bagged', 'Baker Farms Organic Collard Greens, 10 oz: Tripled Washed Chopped Fresh', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f620ec83-e20c-414b-89bb-8bf197d966da.fa452889e78319f3f9b35f6a0f5088af.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f620ec83-e20c-414b-89bb-8bf197d966da.fa452889e78319f3f9b35f6a0f5088af.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f620ec83-e20c-414b-89bb-8bf197d966da.fa452889e78319f3f9b35f6a0f5088af.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (341982081, 'Tasteful Selections Fingerling Sunset Potato Bag 24 oz', 4.68, '826088740139', 'A medley of our delicious fingerling potatoes, ranging from buttery to nutty. Something for everyone, Sunset Fingerlings™ bring a medley of our delicious fingerling potatoes to your table. Serve your guests a bouquet of flavors and textures, ranging from buttery to nutty. Sunset Fingerlings are available in a variety of packaging types and sizes. Copy Right Tasteful Selection', 'Tasteful Selections Fingerling Sunset Gusset Bag', 'Tasteful Selections', 'https://i5.walmartimages.com/asr/e32b47ad-111e-45c2-8e9c-1e8bc23186ca.ce2c0f494d4ddc8f10e69d7057da4501.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e32b47ad-111e-45c2-8e9c-1e8bc23186ca.ce2c0f494d4ddc8f10e69d7057da4501.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e32b47ad-111e-45c2-8e9c-1e8bc23186ca.ce2c0f494d4ddc8f10e69d7057da4501.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (342422471, 'Freshness Guaranteed Whole Portabella Caps 6oz', 2.58, 'deleted_084348676028', 'short description is not available', 'Freshness Guaranteed Whole Portabella Caps 6oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (342695748, 'Yellow Onions, 3 Lb.', 1.94, '400094182628', 'Yellow Onions, 3 Lb.', 'Yellow Onions 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (342932021, 'Crunch Pak Peeled Apple Slices, 2oz Count', 3.98, '732313001312', 'Convenient format of 6 individual 2oz packs (6ct / 2oz). Designed as a grab-and-go snack pack with pre-sliced fresh apples for convenience and immediate consumption. Ideal for school snacks, office, or keeping in the refrigerator ready to eat. Ingredients: Apples, calcium ascorbate (a blend of calcium and vitamin C to maintain freshness and color). Suitable for vegans. Ready to eat, no washing or cutting required. Perfect format for easy and healthy snacking, especially for kids or when you’re on the go. Provides fresh fruit conveniently, helping to include apples as a daily snack.', 'Crunch Pak Peeled Apple Slices, 2 oz, 6 Count Perfect for breakfast, lunch, dinner, and dessert, Fresh Produce\', and \'No Added Sugar\' Chop them up and add to a salad, add them to a smoothie or juice blend, or serve with peanut butter Individual bags make them perfect for snacking Throw a bag in with your lunch for a healthy side, take with you as you go out door, or pack a couple of bags and take on a picnic with your family', 'Fresh Produce', 'https://i5.walmartimages.com/asr/686c1f5f-861a-4248-8e31-02e4c5176c40.e2e2cbff168ded0855bb2952aa19beb4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/686c1f5f-861a-4248-8e31-02e4c5176c40.e2e2cbff168ded0855bb2952aa19beb4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/686c1f5f-861a-4248-8e31-02e4c5176c40.e2e2cbff168ded0855bb2952aa19beb4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (343737604, 'Sunset Organic Tomatoes on-The-Vine, 1lb Package, Fresh', 2.46, '057836921009', 'SUNSET Organic Tomatoes On-the-Vine are 1 lb of 4 flavorful and fresh tomatoes! Perfect for salads, sandwiches, and burgers. Hand-picked and packed on-the-vine, these tomatoes have flavor and aroma as fresh as grandma\'s garden. Hothouse grown to ensure consistent quality and freshness. Certified organic and non-GMO tomatoes. Store at room temperature for optimal flavor, and wash before enjoying. Enjoy SUNSET Organics Tomatoes On-the-Vines all year long.', 'SUNSET fresh Organic Tomatoes On-the-Vine, grown in a certified organic environment Hand-picked and packed on-the-vine, enjoy the garden fresh flavor and aroma Perfect for salads, sandwiches, burgers, and more Wash and enjoy Available all-year-long Non-GMO certified Hothouse grown to ensure consistent quality and freshness Store at room temperature for optimal flavor', 'SUNSET', 'https://i5.walmartimages.com/asr/2984816e-95ce-4e04-845b-89dd5340baaa.6326a68f2f2c9fd2eaa5192fa80ad56e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2984816e-95ce-4e04-845b-89dd5340baaa.6326a68f2f2c9fd2eaa5192fa80ad56e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2984816e-95ce-4e04-845b-89dd5340baaa.6326a68f2f2c9fd2eaa5192fa80ad56e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (343863604, '180pc Apple Mac 3#', 709.2, '405667988638', 'short description is not available', '180pc Apple Mac 3#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (344032065, 'Yellow Flesh Peaches, per Pound', 1.58, '400094763957', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (344246387, 'Fresh Kiku Apple, Each', 1.67, '847473004582', 'Grown with care and picked at the peak of ripeness, our Red Apples are sure to satisfy your cravings. With their sweet and juicy taste, they make for a perfect snack any time of the day. Graced with a classic, vibrant red color, these apples are full of nutrients such as fiber, vitamin C, and antioxidants. Get your daily dose of health and deliciousness with our Red Apples.', 'The Kiku Fresh Apple is a premium apple variety known for its exceptional sweetness, juiciness, and crisp texture. Each apple is medium to large in size, with a round shape and a bright, reddish-orange color. The flesh of the Kiku apple is firm and dense, with a creamy white color that resists browning when cut. The flavor is a perfect balance of sweetness and tartness, with hints of honey and cinnamon. These apples are ideal for snacking, baking, and cooking, and are a great source of fiber, vitamin C, and antioxidants. Whether eaten fresh or used in your favorite recipe, the Kiku apple is a delicious and healthy choice for any apple lover.', 'Unbranded', 'https://i5.walmartimages.com/asr/b0bfd0e9-7888-4463-85d1-fd74defbb5d8.b6aa27465cb48e21debff2c4b1a8c2f2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b0bfd0e9-7888-4463-85d1-fd74defbb5d8.b6aa27465cb48e21debff2c4b1a8c2f2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b0bfd0e9-7888-4463-85d1-fd74defbb5d8.b6aa27465cb48e21debff2c4b1a8c2f2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (344288928, 'Fresh Cut Wrapped Squash, Each', 0.77, '405874800709', 'Add some fresh flavor to your meal with Squash. This versatile vegetable can be used in a variety of dishes to create delicious and decadent meals. Roast the whole squash for a simple and flavorful side dish, chop it into cubes and put it in the slow cooker with chicken breast, kidney beans, and spices, or make noodles for a gluten-free pasta alternative. For a sweet treat turn the squash into a rich and spicy pie, perfect for the holiday season. With so many uses, this vegetable will become a pantry staple. Create tasty and flavorful meals with Squash', 'Versatile ingredient Roast the whole squash for the perfect side dish or chop into cubes, put into a slow cooker, and mix with chicken breast, beans, and spices for a flavorful dish Use it to create a sweet and decadent pie Make butternut squash noodles for a gluten free pasta alternative Will become a pantry staple', 'Unbranded', 'https://i5.walmartimages.com/asr/b47fe6e6-c49f-4d09-b116-3f98189cac58.4483800345a33f2526ceeee1f5a31453.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b47fe6e6-c49f-4d09-b116-3f98189cac58.4483800345a33f2526ceeee1f5a31453.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b47fe6e6-c49f-4d09-b116-3f98189cac58.4483800345a33f2526ceeee1f5a31453.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (344574482, 'Cece’s® Veggie Co. Organic Summer Squash Grillerz', 4.98, '852287006592', 'At Cece’s® Veggie Co., we believe in simple nutrition. Grillerz are a hot new twist on your favorite grilling fare- 100% organic veggies, crinkle-cut to the ideal size and thickness for flame-kissed flavor. Finished with savory herb butter, Grillerz can be paired with dip for healthy finger food snacking or served as a tasty accompaniment to your favorite protein. Your daily dose of veggies is just a hot rack away! Less prep. Less mess. More veggies. More fun', 'Grillerz are 100% Organic Zucchini and Yellow Squash, crinkle-cut to the ideal size and thickness for flame-kissed flavor. Ready to go from the package straight to the grill, Grillerz will add a healthy sizzle to your summer gatherings!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f95fdc42-8414-4f4d-a893-70bb84303a6e.42d523cfe30c2adb3e7ef0c0f0182b75.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f95fdc42-8414-4f4d-a893-70bb84303a6e.42d523cfe30c2adb3e7ef0c0f0182b75.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f95fdc42-8414-4f4d-a893-70bb84303a6e.42d523cfe30c2adb3e7ef0c0f0182b75.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (344581238, 'Jackfruit', 2.48, '000000034548', 'short description is not available', 'Jackfruit', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5935b9ad-25d5-4ac8-a41a-d2ec94efdcb5.4b5e993f70ac444e7761782badefb8ad.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5935b9ad-25d5-4ac8-a41a-d2ec94efdcb5.4b5e993f70ac444e7761782badefb8ad.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5935b9ad-25d5-4ac8-a41a-d2ec94efdcb5.4b5e993f70ac444e7761782badefb8ad.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (344728564, 'Marketside Fresh Cauliflower Florets, 12 oz', 2.47, '681131221740', 'Mealtime just got easier with Marketside Cauliflower Florets. You and your dinner guests will love the fresh flavor of these washed and ready-to-eat florets. Each bag contains four 1-cup servings that can be cooked in minutes on the stovetop or in the microwave. Eat them straight from the bag, serve them steamed with a touch of butter and a dash of salt and pepper, or add them to a vegetable soup or casserole. You can even whirl these florets in the food processor to make a low-carb, gluten-free rice alternative. Marketside Cauliflower Florets are bound to be a family favorite! Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Steams right in the bag Keep refrigerated Washed and ready to eat 20 calories per serving 4 servings per bag', 'Marketside', 'https://i5.walmartimages.com/asr/0c6b8a74-e546-4804-bf83-2b35c98aa1b2.5265d9b1455c737239360c6e19cedbbd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0c6b8a74-e546-4804-bf83-2b35c98aa1b2.5265d9b1455c737239360c6e19cedbbd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0c6b8a74-e546-4804-bf83-2b35c98aa1b2.5265d9b1455c737239360c6e19cedbbd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (344741006, 'General Fs Produce Rack Square Basket', 0.01, '405672296063', 'short description is not available', 'General Fs Produce Rack Square Basket', 'General', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (345616932, 'Fresh Green Seedless Grapes', 3.27, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (345710050, 'Fresh Beefsteak Tomatoes, 4 Count', 1.88, '811717030033', 'Create something wholesome and delicious with 3pk tomatoes. These fresh tomatoes are the perfect ingredient for a variety of tasty dishes. Use them to make a decadent tomato sauce for a pasta dish; try slicing them up and pairing with mozzarella cheese, basil and balsamic vinegar; or simply enjoy them on their own as a nutritious snack. They would make a comforting and appetizing tomato soup and a flavorful salsa. You could also slice them up and use them to top burgers and pizza or use them to make a delicious grilled cheese and tomato sandwich. However you choose to use them, these tomatoes will add flavor and taste to any meal. Be sure to add these fresh tomatoes to your Walmart purhase today.', 'Slicing Tomatoes, 4 Count Pack of 4 fresh, whole slicing tomatoes Firm and thick-skinned Large size is perfect for slicing up and garnishing sandwiches and burgers Classic tomato flavor lends itself to a wide variety of recipes Delicious base for making salsas, soups, sauces, and more', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0bb92ae5-d721-4661-a582-2774bec1369b.cbfff5fef192c1e3c3d9b1851c3eca88.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0bb92ae5-d721-4661-a582-2774bec1369b.cbfff5fef192c1e3c3d9b1851c3eca88.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0bb92ae5-d721-4661-a582-2774bec1369b.cbfff5fef192c1e3c3d9b1851c3eca88.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (346589706, 'Fresh Red Seedless Grapes', 1.84, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (346775804, 'Delaio Delallo Provolini Antipasti', 4.67, '072368394237', 'An Italian-inspired antipasto featuring bite-sized cubes of provolone, button mushrooms, black and green Manzanilla olives and sweet red peppers. DeLallo Provolini Antipasti is a brilliant Italian-inspired mix of savory black and green Manzanilla olives, creamy bite-sized cubes of provolone, tender button mushrooms and sweet red peppers in a light marinade. - Well-rounded antipasto medley featuring cubes of provolone cheese. - Features tart and briny black and green olives. - Pitted for DELAIO convenient snacking, entertaining and cooking. - Ready-to-serve antipasto and gourmet ingredient.', '7oz Container Well-rounded antipasto medley featuring cubes of provolone cheese Perfect for entertaining', 'DELAIO', 'https://i5.walmartimages.com/asr/d892d428-a1ea-4c17-b42d-6391c0d6bfea.4190a5cff211da3b8a437b38f9e53fa8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d892d428-a1ea-4c17-b42d-6391c0d6bfea.4190a5cff211da3b8a437b38f9e53fa8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d892d428-a1ea-4c17-b42d-6391c0d6bfea.4190a5cff211da3b8a437b38f9e53fa8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (346912188, 'AVO BAG 40 10/4 MXMP', 3.28, 'deleted_761010147627', 'AVO BAG 40 10/4 MXMP', 'Large Avocado 4 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (346925976, 'Fresh Organic Lady Alice Apple, 2 Lb Bag', 2.5, '804305001256', 'The Organic Lady Alice Apple 2 Lb Bag is a delightful and healthful choice for apple enthusiasts. These apples are organically grown, ensuring they are free from harmful pesticides and chemicals. Each bag contains approximately 8 to 10 apples, offering a perfect snack or addition to any meal. The Lady Alice apple variety is known for its crisp texture and sweet-tart flavor, making it a favorite among apple lovers. With its beautiful red and yellow skin, this apple is not only delicious but also visually appealing. Enjoy the natural goodness and freshness of Organic Lady Alice Apples in this convenient 2 lb bag.', 'Organic Lady Alice Apple 2 Lb Bag The Lady Alice apples in this 2 lb bag are organically grown, ensuring that they are free from harmful pesticides and chemicals. You can enjoy these apples with peace of mind, knowing that they have been produced in an environmentally friendly and sustainable manner. Crisp Texture and Sweet-Tart Flavor: Lady Alice apples are known for their delightful combination of a crisp texture and a sweet-tart flavor. Each bite is a refreshing and satisfying experience, making these apples a favorite among apple enthusiasts. Whether eaten on their own or used in various recipes, these apples are sure to please your taste buds.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b3358f48-ae9c-4136-95ec-b22a32990f45.80007481161d6bb9c080a8104b2e3b3c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3358f48-ae9c-4136-95ec-b22a32990f45.80007481161d6bb9c080a8104b2e3b3c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3358f48-ae9c-4136-95ec-b22a32990f45.80007481161d6bb9c080a8104b2e3b3c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (347162430, 'Dole California Chopped Dates 8 oz (Pack of 2)', 14.99, '783399664212', 'Feel revitalized with the fresh taste of sun-ripened Dole all-natural fruit. Rich in nutrients, fruit gives you healthy energy so you feel refreshed and ready to shine. They are grown under the California sun. Dole dates are picked at the peak of ripeness for maximum sweetness and flavor. They\'re delicious, 100% natural, and contain more nutritious antioxidants than many other common fruits! For more than 100 years, Dole has been committed to our environment, our employees and the communities in which we operate.', 'California Chopped Dates', 'Dole', 'https://i5.walmartimages.com/asr/45dceb04-af06-4668-8713-c30d927b6e48.2740a43480d2cff8dfa1ccc6866961ff.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/45dceb04-af06-4668-8713-c30d927b6e48.2740a43480d2cff8dfa1ccc6866961ff.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/45dceb04-af06-4668-8713-c30d927b6e48.2740a43480d2cff8dfa1ccc6866961ff.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (347284488, 'GRAPE TOMATOES', 1.97, '824660200132', 'GRAPE TOMATOES', '', '', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (347458336, '180pc Grapefruit 3#', 896.4, '405743308343', 'short description is not available', '180pc Grapefruit 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (347767616, '2# Bag Lemons', 3.92, 'deleted_072240753541', 'short description is not available', '2# Bag Lemons', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (348086663, 'Fresh Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094357699', 'Fresh Grown Yellow Nectarines, 1 Lb.', 'Fresh Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (348791995, 'Fresh Whole Daikon', 2.84, 'deleted_037842024307', 'Introducing our crisp and refreshing Daikon, a staple in Asian cuisine. This slender and elongated radish boasts a mild and slightly sweet flavor, making it a versatile ingredient in salads, stir-fries, and pickles. Packed with fiber, antioxidants, and essential nutrients, it supports a healthy and balanced diet. Elevate your culinary experience with this vibrant and nutritious addition to your kitchen.', 'Selected and stored fresh,Sourced with high quality standards,Recommended to wash before consuming,Delicious on their own as a healthy snack or as part of a recipe', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/ea38345a-ae5b-4f67-9af8-98061283e53e.a7e5bc0ea55eb7c76df65aced9da5500.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea38345a-ae5b-4f67-9af8-98061283e53e.a7e5bc0ea55eb7c76df65aced9da5500.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea38345a-ae5b-4f67-9af8-98061283e53e.a7e5bc0ea55eb7c76df65aced9da5500.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (349305148, 'Fresh Premium Grape Tomato, 1.5 lb Package', 4.98, '057836021495', 'Premium Grape Tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily complements your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Premium Grape Tomatoes are the perfect choice.', 'Premium Grape Tomato, 24 oz Wholesome, versatile, and delicious Greenhouse grown for a sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and snacking Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/41c02210-fe4f-45ab-8926-d9c9725e9e3c.a829a05a0264881ece358da94679204e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/41c02210-fe4f-45ab-8926-d9c9725e9e3c.a829a05a0264881ece358da94679204e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/41c02210-fe4f-45ab-8926-d9c9725e9e3c.a829a05a0264881ece358da94679204e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (349351812, 'Fresh Bosc Pears, Each', 1.21, '804305044130', 'Savor the sweet taste of Fresh Bosc Pears. Bosc Pears are juicy with a honey-sweet flavor that makes them great for breakfast, lunch, dinner, and dessert. Chop the pears up and add them to muffins with walnuts and vanilla for a sweet treat that\'s great for breakfast to get your morning started on a high note. Slice them up and top a pizza with prosciutto, goat cheese, and arugula for a mouthwatering meal perfect for family dinner or dinner party. You could even cut the pear in half and cook it in a skillet with butter, brown sugar, and vanilla for a decadent dessert. Enjoy tasty meals any time of day with Bosc Pears.', 'Fresh Bosc Pear, Each with a honey-sweet flavor Great for breakfast, lunch, dinner, and dessert Chop them up and add to muffins with walnuts and vanilla, slice and add to pizza with prosciutto, goat cheese, and arugula, or cut in half and cook in a skillet with butter, brown sugar, and vanilla Versatile ingredient perfect for both savory and sweet dishes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d888a776-9b9f-4137-b2ec-b685e82ac033.705c44014f935231537c862a7a551e92.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d888a776-9b9f-4137-b2ec-b685e82ac033.705c44014f935231537c862a7a551e92.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d888a776-9b9f-4137-b2ec-b685e82ac033.705c44014f935231537c862a7a551e92.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (349371197, 'Misionero Vegetables Garden Life Fresh Lettuce Wraps, 7 oz', 3.12, '818431000083', 'These super sweet and super crunchy Garden Life Lettuce Wraps are great for quick and easy meals from burgers to salads and more! A naturally bred proprietary seed variety, we took the best attributes of romaine and iceberg and married them up to produce this great tasting mouthwatering lettuce. There are no additives or preservatives - just great tasting lettuce. Bring home some Garden Life Lettuce Wraps today.', 'Lettuce Wraps Naturally cross bred romaine and iceberg lettuces Triple washed No additives, no preservatives - Just great tasting lettuce Great for quick and easy meals from burgers to salads and more A naturally bred proprietary seed variety, we took best attributes of romaine and iceberg and married them up to produce this great tasting mouthwatering lettuce For recipes and additional information, visit us at: www.misionero.com. Grown in the USA. Product of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ac4dac59-82d6-49a7-adeb-92c528de0292.319110dfa655b49db7d97150f70b75e7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac4dac59-82d6-49a7-adeb-92c528de0292.319110dfa655b49db7d97150f70b75e7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac4dac59-82d6-49a7-adeb-92c528de0292.319110dfa655b49db7d97150f70b75e7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (349397941, 'Crunch Pak Dipperz Snack with Baby Carrots & Everything Bagel Ranch', 1.47, '732313000858', 'This Crunch Pak Dipperz Snack with Baby Carrots and Everything Bagel Ranch is a great option for a quick snack or for packing in lunches. This snack tray comes in a convenient package that makes it an ideal option to take with you to work or to school. With only 130 calories per serving, it would also make a tasty after-school snack for the kids. Check out all the other Crunch Pak Snacks to find your favorite. Keep refrigerated until ready to enjoy. Pick up a Crunch Pak Dipperz Snack with Baby Carrots and Everything Bagel Ranch today.', 'Great option for a quick snack or for packing in lunches Snack pack with baby carrots and everything bagel ranch Good source of vitamin C 130 calories per serving Keep refrigerated', 'Crunch Pak', 'https://i5.walmartimages.com/asr/e9333e15-f6b2-40cf-86ce-5fc6a30f10f3.352023491f46ac1f3283c1354b48dbb1.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9333e15-f6b2-40cf-86ce-5fc6a30f10f3.352023491f46ac1f3283c1354b48dbb1.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9333e15-f6b2-40cf-86ce-5fc6a30f10f3.352023491f46ac1f3283c1354b48dbb1.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (349708630, 'Fieldpack Unbranded Pasilla Pepper', 2.98, '000000047012', 'Discover the bold, smoky flavor of our Fresh Pasilla Peppers, a versatile ingredient that adds depth and warmth to your favorite dishes. These dark green, mildly spicy peppers are ideal for roasting, grilling, or sautéing and are perfect for making authentic Mexican cuisine or adding a kick to your everyday meals. Locally sourced and hand-picked for quality, our Pasilla Peppers provide a unique, delicious taste that will elevate your culinary creations.', 'Field pack Unbranded Pasilla Pepper Discover the bold, smoky flavor of our Fresh Pasilla Peppers, a versatile ingredient that adds depth and warmth to your favorite dishes. These dark green, mildly spicy peppers are ideal for roasting, grilling, or sautéing and are perfect for making authentic Mexican cuisine or adding a kick to your everyday meals. Locally sourced and hand-picked for quality, our Pasilla Peppers provide a unique, delicious taste that will elevate your culinary creations.', 'Fieldpack Unbranded', 'https://i5.walmartimages.com/asr/e829a10e-d4ee-40cc-a857-51afe6150665.642f7f87b3261b35bf055a983194a74a.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e829a10e-d4ee-40cc-a857-51afe6150665.642f7f87b3261b35bf055a983194a74a.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e829a10e-d4ee-40cc-a857-51afe6150665.642f7f87b3261b35bf055a983194a74a.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (349763385, 'Fresh Organic Grape Tomatoes, 10 oz Package', 2.96, '751666567054', 'Organic Medley Tomatoes are an exciting summer treat, and they\'re the perfect size for skewers, salads and roasting. These bite-sized medley tomatoes look and taste great. Medley tomatoes are a low-calorie treat that are also low in sodium and are a good source of fiber. Whether you are snacking or adding them to your favorite dish. their uses are almost limitless. Try these grape tomatoes with feta cheese, fresh dill and a drizzle of olive oil for a light and delicious Mediterranean treat. Or make a caprese salad with medley tomatoes, fresh basil, fresh mozzarella and balsamic vinegar. With 10-ounces of tomatoes in each package, you\'ll have plenty to make mouthwatering meals. Use your imagination to create delicious dishes with Organic Medley Tomatoes.', 'Organic Medley Tomatoes, 10 oz Package: Perfect size for skewers, salads and roasting Low-calorie, low in sodium, and a good source of fiber Pair with feta cheese, fresh dill, and a drizzle of olive oil for a Mediterranean dish Certified organic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c12abd1f-2dcc-48ec-8f2f-7ae68c5c7191.f5ee8743ba711fe48df16e3eadf72686.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c12abd1f-2dcc-48ec-8f2f-7ae68c5c7191.f5ee8743ba711fe48df16e3eadf72686.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c12abd1f-2dcc-48ec-8f2f-7ae68c5c7191.f5ee8743ba711fe48df16e3eadf72686.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (350018260, 'Marketside Fresh Halved Brussels Sprouts, 12 oz', 3.47, '681131221764', 'Marketside Halved Brussels Sprouts are packed fresh, washed and ready to eat for your convenience. These brussels sprouts are loaded with nutrients and have a great fresh taste. They are halved and packaged in a convenient microwave safe bag that allows you to steam them in just three minutes. Enjoy them as a wholesome side or use them in all your favorite recipes. They are also delicious roasted, grilled, sauteed, or steamed and will add a great pop of color to your meals. For a quick and easy addition to any dish, bring home Marketside Halved Brussels Sprouts today! Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Washed and ready to eat 4 servings per container Steams in the microwave in minutes Great as a healthy side or snack', 'Marketside', 'https://i5.walmartimages.com/asr/397fe05c-e020-4294-bcad-29f9c82b6c5f.6384d688bbaf2ee63db5fd4981416dd4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/397fe05c-e020-4294-bcad-29f9c82b6c5f.6384d688bbaf2ee63db5fd4981416dd4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/397fe05c-e020-4294-bcad-29f9c82b6c5f.6384d688bbaf2ee63db5fd4981416dd4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (350034574, '2# Bag Lemons', 3.98, 'deleted_095829500060', 'short description is not available', '2# Bag Lemons', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (350435409, 'Red Mangoes, 1 Each', 0.94, 'deleted_852186003074', 'Red Mangoes, 1 Each', 'Red Mango', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/f8adb81c-19bf-41a0-aca9-1217ee2c7f2e_3.43999e25157d81ead4a6abbe648372c9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f8adb81c-19bf-41a0-aca9-1217ee2c7f2e_3.43999e25157d81ead4a6abbe648372c9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f8adb81c-19bf-41a0-aca9-1217ee2c7f2e_3.43999e25157d81ead4a6abbe648372c9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (351030106, 'Fresh Whole Cocktail Tomato, 1 lb Package', 2.98, 'deleted_751666611054', 'Holding the ideal balance of sweetness and acidity, it\'s easy to see why Fresh Whole Cocktail Tomatoes are called the tomato lover\'s tomato. Cocktail tomatoes are small, making them an ideal choice for appetizers to pair with your everyday meals and for when you\'re entertaining guests. You can combine these tasty little tomatoes with fresh mozzarella and basil drizzled with olive oil or slice them up and add them to a freshly tossed salad. If you\'re feeling something classic, you can always cut one up to add that fresh tomato taste to a sandwich or dice up a few to make a delightful pizza topping. Be sure to add Fresh Whole Cocktail Tomatoes to your inventory of ingredients today.', 'Fresh Whole Cocktail Tomato, 1 lb Package The tomato lover\'s tomato Small size is great for salads and appetizers Ideal ingredient for a variety of dishes Greenhouse-grown and vine-ripened Pesticide and herbicide free 16-ounce package of cocktail tomatoes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e9cd5b61-4764-440a-824f-27c48ab73adb.9d45497f656a74cee90bea61ec675494.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9cd5b61-4764-440a-824f-27c48ab73adb.9d45497f656a74cee90bea61ec675494.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9cd5b61-4764-440a-824f-27c48ab73adb.9d45497f656a74cee90bea61ec675494.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (351417573, 'Services Reduced Program Dept 94', 0.01, '251867000003', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (351517604, 'Premium Bananas', 0.49, 'deleted_405821601458', 'short description is not available', 'Premium Bananas', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (351559598, 'Papaya 10 Division 1', 2.88, '405748433460', 'short description is not available', 'Papaya 10 Division 1', 'Unbranded', 'https://i5.walmartimages.com/asr/e8bc1b1b-4c9c-4b8e-a3d5-8ef4f8987e7c.7636cfde4b6ebb43dfde1a7080789890.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e8bc1b1b-4c9c-4b8e-a3d5-8ef4f8987e7c.7636cfde4b6ebb43dfde1a7080789890.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e8bc1b1b-4c9c-4b8e-a3d5-8ef4f8987e7c.7636cfde4b6ebb43dfde1a7080789890.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (352170206, 'Watermelon Seedless', 4.48, '400094762332', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (352180620, 'Fresh California Grown Red Grapes', 1.98, '', 'short description is not available', 'Fresh California Grown Red Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/108723d1-993f-4ef0-bc2c-b7817704a2a6_2.8a970b8f226b10dd5bc3df912d153cf4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/108723d1-993f-4ef0-bc2c-b7817704a2a6_2.8a970b8f226b10dd5bc3df912d153cf4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/108723d1-993f-4ef0-bc2c-b7817704a2a6_2.8a970b8f226b10dd5bc3df912d153cf4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (352180642, '75pc Orange Navel 8#', 589.5, '405870771393', 'short description is not available', '75pc Orange Navel 8#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (352694932, 'Freshness Guaranteed Fuji Apples 3 Lb Bag', 3.97, '', 'short description is not available', 'Freshness Guaranteed Fuji Apples 3 Lb Bag', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (352788914, 'Mirepoix 8oz', 2.58, 'deleted_074641015495', 'short description is not available', 'Mirepoix 8oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3fe0c5d7-2bef-451d-812d-f016d6fa60e4.7ff6269d46efb7b706ba96a4d974f075.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3fe0c5d7-2bef-451d-812d-f016d6fa60e4.7ff6269d46efb7b706ba96a4d974f075.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3fe0c5d7-2bef-451d-812d-f016d6fa60e4.7ff6269d46efb7b706ba96a4d974f075.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (353450930, 'Green Bell Pepper', 0.76, '', 'Green Bell Pepper', 'Green Bell Pepper', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/acc4e0b0-3a75-4d28-9510-abec0362c30c.7df5d073559cf7e400de787628aa13fb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/acc4e0b0-3a75-4d28-9510-abec0362c30c.7df5d073559cf7e400de787628aa13fb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/acc4e0b0-3a75-4d28-9510-abec0362c30c.7df5d073559cf7e400de787628aa13fb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (353738144, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094516089', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (353767624, 'Dallas Cowboys On-The-Go Guacamole Dip Mini Cups, Gluten-Free, 6 Ct', 4.98, '810041599247', 'Our Original Guacamole is now available in an easy-to-grab cup that is perfect to pack for school lunches, snacking on the go, or topping your tacos, big veggie salads, turkey burgers, and everything in between! ¡Yo Quiero! and the Dallas Cowboys partnered up to bring easy snacks, easy lunches, and easy dinners to life. Whether you\'re planning for tailgating, Friday night dinners or prepping a vegan lunch, the Original Guacamole Mini Cups are sure to satisfy your cravings and delight your guests. Made with the freshest ingredients from real Hass Avocados to jalapeno peppers, this convenient snack or appetizer is perfect for your lunch menu, parties, packed lunch, vegan dinner, or whatever else you might crave. ¡Yo Quiero! Original Guacamole Mini Cups pair wonderfully with chips, sandwhiches, tacos, salads, burgers, and more. You can even turn it into your own version of avocado toast or a dip on the go for vegetables such as carrots. Game day snacking just got better.', 'Our Original Guacamole is now available in an easy-to-grab cup that is perfect to pack for school lunches, snacking on the go, or topping your tacos, big veggie salads, turkey burgers, and everything in between! ¡Yo Quiero! and the Dallas Cowboys partnered up to bring easy snacks, easy lunches, and easy dinners to life. Whether you\'re planning for tailgating, Friday night dinners or prepping a vegan lunch, the Original Guacamole Mini Cups are sure to satisfy your cravings and delight your guests. Made with the freshest ingredients from real Hass Avocados to jalapeno peppers, this convenient snack or appetizer is perfect for your lunch menu, parties, packed lunch, vegan dinner, or whatever else you might crave. ¡Yo Quiero! Original Guacamole Mini Cups pair wonderfully with chips, sandwhiches, tacos, salads, burgers, and more. You can even turn it into your own version of avocado toast or a dip on the go for vegetables such as carrots. Game day snacking just got better.', 'Yo Quiero', 'https://i5.walmartimages.com/asr/0bf6cfa6-28a4-4c27-9d95-5d4f3aa33508.ca2207f73ba74078dce12ece7099164f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0bf6cfa6-28a4-4c27-9d95-5d4f3aa33508.ca2207f73ba74078dce12ece7099164f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0bf6cfa6-28a4-4c27-9d95-5d4f3aa33508.ca2207f73ba74078dce12ece7099164f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (354020550, '200pc Pto Ykn/red 5#', 1296, '405539015516', 'short description is not available', '200pc Pto Ykn/red 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (354144489, '200pc Pto Ykn 5# Bw', 694, '405508922272', 'short description is not available', '200pc Pto Ykn 5# Bw', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (354298074, '150pc Pto Ykn 5# Or', 745.5, '405516946352', 'short description is not available', '150pc Pto Ykn 5# Or', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (354454525, 'Services Reduced Program Dept 94', 0.01, '251744000003', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (354621290, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094342435', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (354639124, 'Services Reduced Program Dept 94', 0.01, '251707000002', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (354841357, 'Black Seedless Grapes, 2 lb clamshell', 3.96, '899734002165', 'short description is not available', 'GRAPE BLK SDLS 2# WK', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1d25614b-ac42-4438-b5a7-6e7529e58cc2_1.ec8c5f229a0e0e3375476f38bb7d34c7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d25614b-ac42-4438-b5a7-6e7529e58cc2_1.ec8c5f229a0e0e3375476f38bb7d34c7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d25614b-ac42-4438-b5a7-6e7529e58cc2_1.ec8c5f229a0e0e3375476f38bb7d34c7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (354906466, 'Bowery Farming Baby Butter Lettuce, 4 oz Clam Shell, Fresh Salad Lettuce', 2.98, '851536007175', 'How can something so leafy be so buttery? Well, this baby butter lettuce is a case in point. Sweet, smooth, and oh-so-buttery, it’ll go with pretty much anything. Every Bowery leaf is grown and handled with care, without pesticides. Bowery\'s smart farms use less water and create less waste on less land. All Bowery salad produce is freshly harvested, picked at peak freshness 365 days a year, and available on shelf in just a few days.', 'Produce grown smarter for better flavor: less wasteful, more tasteful. Vertically Grown Fresher Longer Zero-Pesticide Greens No Need to Wash Bowery Farming Lettuce Salad Greens', 'Bowery Farming', 'https://i5.walmartimages.com/asr/f3a8b494-f2c7-4180-84ea-7e2817a106b5.30965535893bdbe31f6f83255ab65bab.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f3a8b494-f2c7-4180-84ea-7e2817a106b5.30965535893bdbe31f6f83255ab65bab.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f3a8b494-f2c7-4180-84ea-7e2817a106b5.30965535893bdbe31f6f83255ab65bab.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (355262059, 'Freshness Guaranteed Pineapple Chunks 10 Oz', 3.48, 'deleted_681131036573', 'short description is not available', 'Freshness Guaranteed Pineapple Chunks 10 Oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (355562127, 'Green Giant Fresh Brussels Sprouts & Asparagus, 16 oz', 3.98, '605806000546', 'Green Giant™ Fresh Halved Brussels Sprouts & Asparagus.Great for roasting, sauteing & more!Washed & ready to eat!Gluten free.Per serving:25 Calories.0g Sat fat, 0% DV.15mg Sodium, 1% DV.2g Sugars.Net Wt 16 oz (1 lb) 454 g. Perishable keep refrigerated.', 'Brussels Sprouts & Asparagus, Halved Great for roasting, sauteing & more! Per Serving: 25 calories; 0 g sat fat (0% DV); 15 mg sodium (1% DV); 2 g sugars. Gluten free. Non GMO. Washed & ready to eat! Find delicious recipes: GreenGiantFresh.com. Questions or comments? 1-800-998-9996. Follow us on: Facebook and Twitter. Facebook. Twitter. Box Tops for Education. Recycle.', 'Green Giant', 'https://i5.walmartimages.com/asr/d6bf88f8-b4eb-4c41-9466-a8a9bf9cd671_1.f19491bea1713226d52afa97c6479974.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d6bf88f8-b4eb-4c41-9466-a8a9bf9cd671_1.f19491bea1713226d52afa97c6479974.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d6bf88f8-b4eb-4c41-9466-a8a9bf9cd671_1.f19491bea1713226d52afa97c6479974.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (356079112, 'Orange Cherry Tomato, 12 oz Package', 2.98, '689259004085', 'Bring the fresh, delicious taste of Orange Cherry Tomatoes into your home. Because of their notable flavor and thicker skin, they are a versatile tomato that\'s great for grilling, sauteing, roasting, or baking. Their small size also makes them a quick and simple addition to a fresh salad as well as an excellent finger food for whenever you\'re in the mood for a light snack. Packed with nutrients, orange cherry tomatoes are a deliciously healthy ingredient that adds both vibrant color and mouthwatering flavor to any recipe. For the best flavor and freshness, store these tomatoes at room temperature on your kitchen counter. Make your next meal a marvelous one with these fresh Orange Cherry Tomatoes.', 'Orange Cherry Tomato, 12 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1b00a5d0-81db-4899-a159-9eff72f6dea9.6ba2b4e416def4f2b57223a96d10c4a4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1b00a5d0-81db-4899-a159-9eff72f6dea9.6ba2b4e416def4f2b57223a96d10c4a4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1b00a5d0-81db-4899-a159-9eff72f6dea9.6ba2b4e416def4f2b57223a96d10c4a4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (356250509, 'Fresh Produce, Whole Bok Choy Shanghai, 1 Bundle', 2.77, '000000031639', 'Introducing our Whole Refrigerated Bok Choy, a versatile and nutritious addition to your meals. Handpicked at the peak of freshness, these vibrant green leaves and crisp stalks are packed with vitamins and minerals. Our 1bundle package of Whole Refrigerated Bok Choy ensures you have an abundant supply of the freshest and most tender bok choy to enhance stir-fries, soups, and salads. Elevate your culinary creations with this flavorful and healthy ingredient.', 'Fresh Produce, Whole Bok Choy Shanghai, 1 Bundle Handpicked at the peak of freshness, these vibrant green leaves and crisp stalks are packed with vitamins and minerals. Our 1 bundle package of Whole Refrigerated Bok Choy ensures you have an abundant supply of the freshest and most tender bok choy to enhance stir-fries, soups, and salads. Elevate your culinary creations with this flavorful and healthy ingredient. Also known as col china Shanghai, Shànghǎi qīng, chingensai and sanghai cheonggyeongchae around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8e4305e5-1b2a-4e12-950d-edfa8ec063ab_1.be56e34ceed0c92cefb51ece6b283f7d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8e4305e5-1b2a-4e12-950d-edfa8ec063ab_1.be56e34ceed0c92cefb51ece6b283f7d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8e4305e5-1b2a-4e12-950d-edfa8ec063ab_1.be56e34ceed0c92cefb51ece6b283f7d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (356341844, 'Bako Sweet Organic Orange Skin Sweet Potatoes, 14 Oz', 4.47, '819614010400', 'Grown from the sweet spot of California, our Organic Orange Sweet Potatoes are the sweetest you have ever tasted. This organic sweet potato is orange on the outside and orange on the inside, delivering a sweet and earthy flavor. Sweet potatoes are a superfood and can be enjoyed in many ways, making it easy to feed your family the best.', 'Ready to enjoy Loaded with Vitamin A Good source of fiber Nutritious Superfood Triple Washed Non-GMO', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0af934a7-0b0c-4755-9d90-44d2eb8f3d20.98c0ca38c26345a40f0d5c131e758bca.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0af934a7-0b0c-4755-9d90-44d2eb8f3d20.98c0ca38c26345a40f0d5c131e758bca.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0af934a7-0b0c-4755-9d90-44d2eb8f3d20.98c0ca38c26345a40f0d5c131e758bca.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (356354152, 'Fresh Radish White Daikon', 2.97, '000000045988', 'Add the spicy taste of a Fresh white daikon radish to your next stir fry or salad. Also known as winter radish or Oriental radish, this white root vegetable has a mild flavor and is used in a variety of food dishes. Some cultures pickle it while others grate it and mix it with soy sauce and citrus juice to create a condiment. This white radish has a mild flavor after being boiled and is an excellent addition to soups and stews.', 'Also known as Winter Radish Mild Flavor Great pickled or grated Excellent addition to soups and stews', 'Fresh Produce', 'https://i5.walmartimages.com/asr/29c52535-d2ab-4909-b4f8-c5e1dc0999b2_1.dc4e700cc293daa7e0fe599d0fb2cc77.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/29c52535-d2ab-4909-b4f8-c5e1dc0999b2_1.dc4e700cc293daa7e0fe599d0fb2cc77.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/29c52535-d2ab-4909-b4f8-c5e1dc0999b2_1.dc4e700cc293daa7e0fe599d0fb2cc77.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (358175290, 'French Green Beans 8 Oz', 3.28, 'deleted_854026006344', 'short description is not available', 'French Green Beans 8 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (358748543, 'Sweet Potatoes 3 Lb Bag', 2.84, '785580100301', 'short description is not available', 'Sweet Potatoes 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (358830021, 'ORGANIC GRAPE TOMATO', 2.68, '033383001302', 'ORGANIC GRAPE TOMATO', '', '', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (358852261, 'Ogp Red Cherry Samples', 0.01, '405836139335', 'short description is not available', 'Ogp Red Cherry Samples', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2a68e6fb-204f-4598-862d-d1b2ad5be91d.b760cfee608cfcbc638a54ff5f800025.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2a68e6fb-204f-4598-862d-d1b2ad5be91d.b760cfee608cfcbc638a54ff5f800025.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2a68e6fb-204f-4598-862d-d1b2ad5be91d.b760cfee608cfcbc638a54ff5f800025.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (359183113, 'Fresh Grape Tomato, 4 oz Cup', 3.48, '751666418950', 'Add color and flavor to your next meal with Grape Tomatoes. Similar to larger Roma tomatoes, grape tomatoes have a lower water content than cherry tomatoes, making them meatier, more flavorful, and even a little tidier with every bite. They are hardier and less fragile than a traditional tomato as well, so there\'s no need to worry about bruising either. Perfectly bite-sized, grape tomatoes are not only a simple and delicious addition to salads and pasta, but also serve as a quick and convenient snack all on their own. Plus, grape tomatoes have a longer shelf-life, which means it\'s perfectly fine to keep them in storage for several days at a time. All you have to do is grab and enjoy to experience the class tomato taste of Grape tomatoes.', 'Fresh Grape Tomatoes, 3 Pack: Lower water content and longer shelf-life than cherry tomatoes Hardier and more resistant to bruising than traditional tomatoes Conveniently bite-sized Quick and excellent addition to salads and snack trays Best stored at room temperature out of sunlight', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2ff3c060-1f0b-42fb-9dda-6a55cd8a6195.9b473449043488ad84406f3495c0bdaa.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2ff3c060-1f0b-42fb-9dda-6a55cd8a6195.9b473449043488ad84406f3495c0bdaa.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2ff3c060-1f0b-42fb-9dda-6a55cd8a6195.9b473449043488ad84406f3495c0bdaa.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (359815064, 'Gourmet212 Oven Roasted Cherry Tomatoes 8.11oz (6 Pack), Glass, Jarred', 74.95, '191822007084', 'Have you tried semi dried cherry tomatoes? If your answer is no, you should try our product to not to miss out. Sun dried tomatoes are highly recommended just as semi dried tomatoes if it is not the season of fresh tomatoes, however, oven semi dried tomatoes are closer to natural tomato taste than sun dried tomatoes. The semi dried tomatoes are juicier and lighter in color and are also sliced. They are then put in high quality ovens for 6-7 hours with low temperatures. Dehydrated slowly, semi dried tomatoes preserve their taste in flavored oil for long time without any additives. This product is packed with so high quality that keeps fresh for one year on the shelf without oxygen exposure. Some reasons to buy our semi dried cherry tomatoes: It is Halal Certified It is Kosher Certified It?s made with seasonal tomatoes It?s the perfect product for any meat or chicken dish It?s a delicious ingredient for antipasti, pizza, salad, sandwich and pasta Ingredients: sun dried tomatoes (57%), canola oil, salt, sugar, vinegar, garlic powder, spices, acidity regulator (citric acid), antioxidant (ascorbic acid) If you like cherry tomatoes, you shouldn?t miss this product.', 'Gourmet212 Oven Roasted Cherry Tomatoes 8.11 oz (6 Pack), Stuffed, Airtight Glass Jar The semi-dried tomatoes are juicier and lighter in color. They are put in high-quality ovens for 6-7 hours with low temperatures. Dehydrated slowly, semi-dried tomatoes preserve their taste in flavored oil for a long time without any additives. It is Halal and Kosher Certified. Ingredients: sun-dried tomatoes (57%), canola oil, salt, sugar, vinegar, garlic powder, spices, acidity regulator (citric acid), antioxidant (ascorbic acid).', 'Gourmet212', 'https://i5.walmartimages.com/asr/770067a7-88a3-4f16-b19a-de30287ed2d0.35f332d483fde4ae40a3b344022d8220.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/770067a7-88a3-4f16-b19a-de30287ed2d0.35f332d483fde4ae40a3b344022d8220.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/770067a7-88a3-4f16-b19a-de30287ed2d0.35f332d483fde4ae40a3b344022d8220.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (360380923, 'Marketside Sugar Snap Peas with Ranch Dip, 3.25 oz, 4 Count', 4.98, '030223026846', 'Marketside Sugar Snap Peas with Ranch Dip is a fun and healthy way to snack. This container comes with four individually wrapped packages of sugar snap peas with creamy ranch dressing for dipping. It\'s perfect for snacking at the office, home, school or even on-the-go. With 140 calories per serving, this duo is great for health-conscious individuals. Add a healthy crunch to your break time with Marketside Sugar Snap Peas with Ranch Dressing. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Sugar Snap Peas with Ranch Dip, 3.25 oz, 4 Count: 4 individually wrapped packages Crunchy sugar snap peas with creamy ranch dip Ideal for packing in a lunch Healthy pre-portioned snack Keep refrigerated', 'Marketside', 'https://i5.walmartimages.com/asr/1fd4ce6e-3e57-4b50-9371-2ee02d838e39_1.1de48aa4bbb772ed1954e34e32cffa86.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1fd4ce6e-3e57-4b50-9371-2ee02d838e39_1.1de48aa4bbb772ed1954e34e32cffa86.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1fd4ce6e-3e57-4b50-9371-2ee02d838e39_1.1de48aa4bbb772ed1954e34e32cffa86.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (360427766, '2# RED ONIONS', 2.58, '039186601015', '2# RED ONIONS', 'ALSUM RED ONN WHL BAG FRESH VEGETABLE AND HERB', 'Alsum', 'https://i5.walmartimages.com/asr/f3f3e895-4270-4239-9054-3aba1b21fbbb.5319a5ab6eb42948ee84db536f8f0c4c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f3f3e895-4270-4239-9054-3aba1b21fbbb.5319a5ab6eb42948ee84db536f8f0c4c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f3f3e895-4270-4239-9054-3aba1b21fbbb.5319a5ab6eb42948ee84db536f8f0c4c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (360477573, '200pc Pto Ykn/red 5#', 945, '405503439737', 'short description is not available', '200pc Pto Ykn/red 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (360634988, 'Fresh Red Seedless Grapes', 2.48, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (361278697, 'Granny Smith Apples 3 Lb Bag', 3.94, '818290020147', 'short description is not available', 'Granny Smith Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (361667051, 'Fresh Grown Plums', 1.98, 'deleted_683953040424', 'short description is not available', 'Fresh Grown Plums', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/f373b4d7-d6fb-4799-a25b-0c4a27b6bfac.ebab1bcedce8e090685ee94e19fc2bd9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f373b4d7-d6fb-4799-a25b-0c4a27b6bfac.ebab1bcedce8e090685ee94e19fc2bd9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f373b4d7-d6fb-4799-a25b-0c4a27b6bfac.ebab1bcedce8e090685ee94e19fc2bd9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (361933568, '200pc Pto Rst 5# Sch', 554, '405507557505', 'short description is not available', '200pc Pto Rst 5# Sch', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (362358681, 'Fieldpack Unbranded Fresh Red Seedless Grapes', 2.37, '', 'short description is not available', 'Fieldpack Unbranded Fresh Red Seedless Grapes', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (362775813, '120pc Apple Gala 5#', 600, '400094578575', 'short description is not available', '120pc Apple Gala 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (363061411, 'Bako Sweet Organic White Skin Sweet Potatoes, 14 Oz', 2.99, '819614010424', 'Grown from the sweet spot of California, these Organic O’Henry White Sweet Potatoes are white on the outside and white on the inside. These O’Henry white sweet potatoes are smooth and dry with a medium firmness. They are mildly sweet with a nutty and earthy flavor. Sweet potatoes are a superfood and can be enjoyed in many ways, making it easy to feed your family the best.', 'Ready to enjoy Loaded with Vitamin A Good source of fiber Nutritious Superfood Triple Washed Non-GMO', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ffcbea13-23c3-4b01-905a-fded016d7841.02953e5613303ac53d0a7352bd00da61.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ffcbea13-23c3-4b01-905a-fded016d7841.02953e5613303ac53d0a7352bd00da61.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ffcbea13-23c3-4b01-905a-fded016d7841.02953e5613303ac53d0a7352bd00da61.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (363076952, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094358023', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (363506348, '240pc On Ylw 3# Nv', 465.6, '405555351179', 'short description is not available', '240pc On Ylw 3# Nv', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (363734492, 'Garland Organic Peeled Garlic 6oz cloves bag', 3.97, '718940002120', 'Came in convenient zip bag. Ready to use. Garland Organic Peeled Garlic makes your everyday cooking more enjoyable. Garlands peeled garlic is carefully prepared with fresh garlic peeled for an authentic flavor. It is enriched with olive oil to give it a smooth and creamy texture, and a touch of lemon juice for freshness. Have the quality you can count on and the traceability that comes with it. Full transparency from farm to table.', 'Garlic is also known for its health benefits Including ability to boost the immune system Reduce inflammation make into pure Rub in and season any meat or even meal Ready to use Rich in antioxidants Non GMO', 'Garland Food', 'https://i5.walmartimages.com/asr/958c3da6-7c58-4434-946a-d58e262eb793.2548f79d11ec34b037a31c3d341f305b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/958c3da6-7c58-4434-946a-d58e262eb793.2548f79d11ec34b037a31c3d341f305b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/958c3da6-7c58-4434-946a-d58e262eb793.2548f79d11ec34b037a31c3d341f305b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (363800188, 'Fresh Red Delicious Apples, 5 lb Bag', 6.68, '818679004263', 'Treat yourself to the delicious, sweet taste of Freshness Guaranteed Red Delicious Apples. These apples are known for their classic sweet flavor with mild acidity and creamy white flesh with low acidity. Crisp and juicy, these apples have higher levels of antioxidants due to the rich, deep red skin. Enjoy one with breakfast or lunch or as a fresh snack any time of day. An excellent snacking or juicing apple, the Red Delicious is an excellent addition to green, fruit, and chopped salads, or an unexpected twist to sandwiches, quesadillas, or burgers. You can even pair them with sharp cheeses and crackers to create a stunning appetizer cheese board to share with guests. The possibilities are endless with Freshness Guaranteed Red Delicious Apples. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Red Delicious Apples, 5 lb Bag: Sweet, crisp, and juicy Creamy white flesh with low acidity Excellent snacking apple Higher antioxidants due to the rich, deep red skin Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp, and apple pie Make a creamy smoothie or a nutritious juice blend Perfect as a healthy treat or seasonal baking ingredient Great for packing in lunches Make a creamy smoothie or a nutritious juice blend Adds flavor to a variety of recipes', 'Marketside', 'https://i5.walmartimages.com/asr/f0a69ccc-0684-4ae7-8567-04f2578e4149.94fe00d1a454a9a6092fbd102baead59.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f0a69ccc-0684-4ae7-8567-04f2578e4149.94fe00d1a454a9a6092fbd102baead59.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f0a69ccc-0684-4ae7-8567-04f2578e4149.94fe00d1a454a9a6092fbd102baead59.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (363807299, 'Fresh Whole Grape Tomato, 10 oz Bag', 2.98, '684924010392', 'Take your favorite tomato dishes to the next level with Fresh Whole Grape Tomatoes. They are an exciting summer treat, and they\'re the perfect size for skewers, salads and roasting. These bite-sized grape tomatoes look and taste great. Grape tomatoes are a low-calorie treat that are also low in sodium and are a good source of fiber. Whether you are snacking or adding them to your favorite dish. their uses are almost limitless. Try these grape tomatoes with feta cheese, fresh dill, and a drizzle of olive oil for a light and delicious Mediterranean treat. Or make a caprese salad with grape tomatoes, fresh basil, fresh mozzarella, and balsamic vinegar. With 10-ounces of tomatoes in each package, you\'ll have plenty to make mouthwatering meals. Use your imagination to create delicious dishes with Fresh Whole Grape Tomatoes.', 'Fresh Whole Grape Tomatoes, 10 oz Package Perfect size for skewers, salads and roasting Low-calorie, low in sodium, and a good source of fiber Pair with feta cheese, fresh dill, and a drizzle of olive oil for a Mediterranean dish Make a caprese salad with grape tomatoes, fresh basil, fresh mozzarella, and balsamic vinegar Certified organic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (363931949, 'California Grown Peaches, per Pound', 1.58, '400094135976', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (365037085, 'California Chile Pod', 5.97, '794660150266', 'short description is not available', 'California Chile Pod', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (366136650, 'California Grown Peaches, per Pound', 1.58, '400094275306', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (366245373, 'Plenty Greens Mizuna Mix Salad, 4.5 oz Clam Shell, Fresh', 2.48, '810567030507', 'short description is not available', 'Plenty Mizuna Mix Salad 4oz', 'PLENTY', 'https://i5.walmartimages.com/asr/86cd5600-4a1c-4341-932a-9873ca6e1d28.1f39abdfab55a8f94020d8a57e709fd4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/86cd5600-4a1c-4341-932a-9873ca6e1d28.1f39abdfab55a8f94020d8a57e709fd4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/86cd5600-4a1c-4341-932a-9873ca6e1d28.1f39abdfab55a8f94020d8a57e709fd4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (366347376, 'Organic Way Shatavari Powder (Asparagus Racemosus) Herbal Tea- Organic & Kosher Certified | Raw, Vegan, Non GMO & Gluten Free | USDA Certified | Origin - India (1/4 lbs / 4 oz)', 23.07, '781584828579', 'Organic Way Shatavari Powder (Asparagus Racemosus) Herbal Tea- Organic & Kosher Certified | Raw, Vegan, Non GMO & Gluten Free | USDA Certified | Origin - India (1/4 lbs / 4 oz) Shatavari, scientifically known as Asparagus racemosus, is an herb in Ayurvedic medicine that is a complete health tonic that boosts energy and overall health. This amazing herb supports many bodily functions so it’s a must have in any natural health regime. At Organic Way we go above and beyond to provide products that are authentic and potent. We source high quality, organically grown herbs from around the world and process them in the USA to meet the American market needs. Our commitment to quality is reflected in the fact that all our products are USDA and Kosher certified so you can be sure they are safe to consume. Trust Organic Way for your wellness journey, you know you’re getting the best.', 'Authentic Ayurvedic Tradition: Our Shatavari herbal supplement is a tribute to the time-honored practices of Ayurveda, where Shatavari has been cherished for centuries for its profound benefits. Ethical and Eco-Friendly: We are committed to sustainability and ethical practices. By choosing our organic Shatavari powder, you support responsible farming and the preservation of traditional herbal knowledge. Rejuvenating and Nourishing: Embrace the rejuvenating power of Shatavari as it aids in revitalizing the body and promoting a natural sense of vitality and energy. Resealable Packaging: Our product is packaged in a resealable bag, preserving the shatavari powder freshness and aroma. Enjoy the convenience of portioning out what you need and sealing the rest for later. Satisfaction Guarantee: We are confident with the quality of our product which is why we offer a satisfaction guarantee. This means that if you are not satisfied (although this is highly unlikely to happen), we will give you back your money with no questions asked.', 'Organic Way', 'https://i5.walmartimages.com/asr/77713827-15b8-40e9-b358-c830006abeb7.b5a9d0364326d8d1c40e36f12793becd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77713827-15b8-40e9-b358-c830006abeb7.b5a9d0364326d8d1c40e36f12793becd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77713827-15b8-40e9-b358-c830006abeb7.b5a9d0364326d8d1c40e36f12793becd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (366779633, 'Fresh Jazz Apples, 3 lb Bag', 4.76, '006602200084', 'Bring home the amazing taste of Freshness Guaranteed Jazz Apples. Tantalizingly crisp, these apples have a fruity-sweet tartness with dense flesh. The mild lemon-citrus undertones invigorate your taste buds like sweet lemonade. These are excellent snacking apples, but you can also use them in a variety of recipes. For breakfast, use these apples to make a rich and creamy yogurt parfait or a nutritious juice blend. Slice these apples and use them to add flavor to a lunchtime salad or spread peanut butter on them for a protein-filled snack. Jazz Apples can also be used in many tasty desserts like apple cobbler, apple crisp, and apple pie. Get creative in the kitchen and make your great-granny\'s homemade apple butter or cinnamon applesauce. However you choose to use them, Freshness Guaranteed Jazz Apples add flavor to any meal. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Jazz Apples, 3 lb Bag: Sweet, crisp & juicy Mild lemon-citrus undertones Excellent snacking apple Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp & apple pie Sweet, crisp & juicy Mild lemon-citrus undertones Excellent snacking apple Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp & apple pie Sweet, crisp & juicy Mild lemon-citrus undertones Excellent snacking apple Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp & apple pie Make a creamy smoothie or a nutritious juice blend Perfect as a healthy treat or seasonal baking ingredient Great for packing in lunches Make a creamy smoothie or a nutritious juice blend Adds flavor to a variety of recipes', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/ec343e65-963d-4f6d-9da8-6fc7bc5cbb7e.22657c5ab1909715610a8f5bb0e5553f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec343e65-963d-4f6d-9da8-6fc7bc5cbb7e.22657c5ab1909715610a8f5bb0e5553f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec343e65-963d-4f6d-9da8-6fc7bc5cbb7e.22657c5ab1909715610a8f5bb0e5553f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (366820616, '256pc On Ylw 3# Tf', 496.64, '405566876210', 'short description is not available', '256pc On Ylw 3# Tf', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (368259372, 'California Grown Peaches, per Pound', 1.58, '400094272831', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (369732855, '192pc On Swt 3# Bf', 756.48, '405532624760', 'short description is not available', '192pc On Swt 3# Bf', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (369896680, 'Butternut Squash', 1.18, '850003165011', 'short description is not available', 'Butternut Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (370087167, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094225943', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (370180308, 'Freshness Guaranteed Watermelon 38 Oz', 9.97, 'deleted_681131036917', 'short description is not available', 'Freshness Guaranteed Watermelon 38 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (370637319, 'Taylor Farms® Garden Salad 12oz Bag', 5.48, '030223011262', 'Taylor Farms Garden Salad is the next best thing to having your own backyard garden, full of fresh and nutritious veggies to eat at any time. With iceberg lettuce, carrot, and red cabbage, we have your salad basics ready to go when you are. So forget pulling weeds and let Taylor Farms Garden Salad do the work.', 'Classic Salads Includes Iceberg Lettuce, Red Cabbage & Carrots', 'Taylor Farms', 'https://i5.walmartimages.com/asr/7c02c7b6-48ec-4cc5-96d0-9316664e6b3c.a47f6739be49ea6a195388509b5836d1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c02c7b6-48ec-4cc5-96d0-9316664e6b3c.a47f6739be49ea6a195388509b5836d1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c02c7b6-48ec-4cc5-96d0-9316664e6b3c.a47f6739be49ea6a195388509b5836d1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (370914671, 'Green Bell Pepper', 0.92, 'deleted_863533000080', 'short description is not available', 'Green Bell Pepper', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (371613414, 'Granny Smith Apples 3 Lb Bag', 60, 'deleted_333830015310', '', '', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (372107328, 'California Grown Peaches, per Pound', 1.58, '400094429303', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (372635590, 'Pomegranate 3ct Bag', 2.92, '851362002085', 'short description is not available', 'Pomegranate 3ct Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (372813467, 'Green Seedless Grapes, 2 lb', 3.56, 'deleted_014668760114', 'short description is not available', 'Green Seedless Grapes, 2 lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (373016572, 'Freshness Guaranteed Cantaloupe Medium', 4.27, '262824000004', 'Discover the sweet and juicy flavor of Freshness Guaranteed Cantaloupe, a delicious and refreshing fruit that\'s perfect for any occasion. Our Cantaloups are carefully selected to ensure the highest quality and freshness. Whether you\'re adding it to a fruit salad or enjoying it as a healthy snack, Cantaloup is the perfect choice for anyone who loves the taste of fresh, natural fruit. Order now and experience the irresistible flavor of Cantaloup for yourself!', 'Freshness Guaranteed Cantaloupe Medium Contains Cantaloupe Packed in a secure plastic bowl with lid Portable and convenient Provides many essential nutrients', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (373238289, 'Fresh Limes, 1 lb Bag', 2.48, '729062142724', 'Add zest and flavor to your meals and beverages with these Marketside Organic Limes. Limes are a key ingredient in many recipes, from homemade salsa to chicken dishes. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use them when baking cakes, cookies, and tarts. These limes are sold in a one-pound bag, so you\'ll have plenty for all your culinary creations. Enjoy the refreshing, tart flavor of Marketside Organic Limes.Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Limes, 1 each: Juicy and fresh, packed with vitamin C Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies and tarts Refreshing, tart flavor', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f072f9e2-a6a0-4eaa-af29-7c2a03f7a91a.106bb77212a805ddc392bdd73180acd9.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f072f9e2-a6a0-4eaa-af29-7c2a03f7a91a.106bb77212a805ddc392bdd73180acd9.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f072f9e2-a6a0-4eaa-af29-7c2a03f7a91a.106bb77212a805ddc392bdd73180acd9.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (373294615, 'Fresh Fieldpack Unbranded Japanese Eggplant', 3.48, '000000046015', 'Savor the unique flavor and texture of our Fresh Whole Japanese Eggplant, a versatile and delectable addition to your culinary adventures. These slender, glossy purple eggplants boast a delicate, mildly sweet taste, and a tender, creamy texture when cooked. Ideal for a variety of dishes, from traditional Japanese cuisine to modern fusion recipes, our Japanese Eggplant can be grilled, roasted, or stir-fried to perfection. Elevate your meals with the exceptional taste and versatility of our exquisite Japanese Eggplant.', 'Fieldpack Unbranded Japanese Eggplant Savor the unique flavor and texture of our Fresh Whole Japanese Eggplant, a versatile and delectable addition to your culinary adventures. These slender, glossy purple eggplants boast a delicate, mildly sweet taste, and a tender, creamy texture when cooked. Ideal for a variety of dishes, from traditional Japanese cuisine to modern fusion recipes, our Japanese Eggplant can be grilled, roasted, or stir-fried to perfection. Elevate your meals with the exceptional taste and versatility of our exquisite Japanese Eggplant.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7cdc4c15-cec9-40f7-95f3-92171c36cf31.f7fb6b8fb72fbf416a1eb47bfbec9f3d.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7cdc4c15-cec9-40f7-95f3-92171c36cf31.f7fb6b8fb72fbf416a1eb47bfbec9f3d.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7cdc4c15-cec9-40f7-95f3-92171c36cf31.f7fb6b8fb72fbf416a1eb47bfbec9f3d.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (373349665, 'Fieldpack Unbranded Collard Greens', 2.88, 'deleted_659389000301', 'short description is not available', 'Fieldpack Unbranded Collard Greens', 'FIELDPACK UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (374006257, 'Crunch Pak Fresh Sweet Apple Slices, Family Size, 14 oz Resealable Bag', 3.97, '732313001701', 'Savor the fresh sweet taste of Crunch Pak Sweet Apple Slices. These perfectly sweet, sliced apples are the ultimate quick, easy, and healthy treat. Serve with a dollop of peanut butter and enjoy as a healthy snack that both kids and adults will love. Chop the apples up and add them to a salad with walnut, mixed greens, and a poppy seed vinaigrette for a crunchy delicious salad that you can enjoy for lunch or dinner. Add it to your favorite smoothie or juice blend for a morning pick me up to get your day started right. Throw some in a bag in with your lunch for a healthy side, take with you as you go travel or pack a couple of bags and take on a picnic with your family. Enjoy the convenience and taste of Crunch Pak Sweet Apple Slices in a Resealable Bag. Only 80 calories per serving. No added sugars.', 'Crunch Pak Fresh Sweet Apple Slices Perfect on-the-go healthy snack Good source of vitamin C Equals 1.3 lbs of whole apples 80 calories per serving No added sugars Conveniently Sliced', 'Crunch Pak', 'https://i5.walmartimages.com/asr/31107388-55e1-4f11-ab07-1b8d71532953.ed1d75cd1d8bcedda1fb600b03234061.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/31107388-55e1-4f11-ab07-1b8d71532953.ed1d75cd1d8bcedda1fb600b03234061.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/31107388-55e1-4f11-ab07-1b8d71532953.ed1d75cd1d8bcedda1fb600b03234061.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (374134157, 'Fresh Red Seedless Grapes', 2.88, 'deleted_810232031006', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (374733287, 'Orange Bell Pepper', 1.48, 'deleted_850010807027', 'short description is not available', 'Orange Bell Pepper', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (374758099, 'Fresh Green Seedless Grapes 32oz', 3.48, 'deleted_813526013030', 'short description is not available', 'Fresh Green Seedless Grapes 32oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (374791412, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094696477', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (374906078, 'Spaghetti Squash', 1.18, '814563016558', 'short description is not available', 'Spaghetti Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/a92f2211-55c1-46af-8bbe-27fb4c96cc13_2.c5a1e54ea0d4625f5368e032ffe9c091.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a92f2211-55c1-46af-8bbe-27fb4c96cc13_2.c5a1e54ea0d4625f5368e032ffe9c091.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a92f2211-55c1-46af-8bbe-27fb4c96cc13_2.c5a1e54ea0d4625f5368e032ffe9c091.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (375150384, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094208793', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (375455604, 'Fieldpack Unbranded Fresh Strawberries 1#', 3.27, '400094992715', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (375482396, 'Services Reduced Program Dept 94', 0.03, '251999000001', 'short description is not available', 'Services Reduced Program Dept 94', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (376807222, '256pc On Ylw 3# Nv', 496.64, '405564999324', 'short description is not available', '256pc On Ylw 3# Nv', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (378097295, 'Fresh Red Seedless Grapes', 1.99, 'deleted_786066002010', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (378691364, '220pc On Vid 3# Bf', 721.6, '405540721888', 'short description is not available', '220pc On Vid 3# Bf', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (378931643, 'Sunset® Lolli Bombs® Tomatoes 12oz', 3.98, 'deleted_699058241802', 'Sunset® Lolli Bombs® Tomatoes 12oz', 'On the Vine', 'Sunsets', 'https://i5.walmartimages.com/asr/71dfe590-2d7b-4f86-8d17-4cf8fd13e6fb.43f98f988ce6c7013929357a01b5db90.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71dfe590-2d7b-4f86-8d17-4cf8fd13e6fb.43f98f988ce6c7013929357a01b5db90.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71dfe590-2d7b-4f86-8d17-4cf8fd13e6fb.43f98f988ce6c7013929357a01b5db90.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (378975500, 'AVO BAG 10/4 40 MXGF', 3.28, 'deleted_850758006584', 'Avocados aren’t just great-tasting fresh produce, but they are a nutrient-dense food enjoyed around the world. Because of the creamy texture and mild flavor of Hass avocados, they are a versatile ingredient that can be used in many different types of recipes and dishes. Not only are our jumbo avocado a great ingredient to use in numerous ways, but it is also a healthy food that contributes unsaturated “good” fats and almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9. Jumbo ripe avocados will have dark green to nearly black skin color, a bumpy skin texture and should yield to gentle pressure without leaving indentations or feeling mushy. Avocados with a slightly bumpy texture should be ripe in 1 to 2 days. They will also be somewhat firm and have a dark green and black speckled color. You’ll be ready to enjoy tasty avocados on their own or as part of a salad, fresh guacamole, taco, burrito or avocado toast. The possibilities are deliciously endless.', 'Large Avocado 4 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (379562771, 'Mini Cucumbers 16 Oz', 2.23, '033383001449', 'short description is not available', 'Mini Cucumbers 16 Oz', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (380396374, 'Sweet Potatoes Whole Fresh, 3 lb Bag', 4.88, 'deleted_819614010059', 'Create something wholesome and delicious with these Sweet Potatoes. Sometimes referred to as yams, these versatile vegetables can be used multiple ways: to make savory sides or sweet treats. Try them roasted or baked for a tasty addition to any dish. You could also use them to make seasoned sweet potato fries or a flavorful hummus dip for your next party. If you want to satisfy your sweet tooth, try them in a traditional sweet potato casserole or use them to make sweet potato and brown sugar ice cream. The mouthwatering possibilities are endless with this hearty fresh produce vegetable. Add something amazing to your meals with this three-pound bag of Sweet Potatoes.', 'Sweet Potatoes Whole Fresh, 3 lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d6ffc4ab-e36b-43d4-886c-5e5e022d32a6_2.9eb8a55e9bbca5ef2220ed8d9562a9fe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d6ffc4ab-e36b-43d4-886c-5e5e022d32a6_2.9eb8a55e9bbca5ef2220ed8d9562a9fe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d6ffc4ab-e36b-43d4-886c-5e5e022d32a6_2.9eb8a55e9bbca5ef2220ed8d9562a9fe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (380524066, 'Tasteful Selection Organic Honey Gold Potatoes 3 lb', 5.97, '826088479305', 'Plastic bag. Tasteful Selections®, the absolute leader and pioneer in the category of best-quality, bite-size baby potatoes, offers an expanded, year-round organics program. More varieties, more pack sizes, same great taste and quality. Our three-pound bags are available in Fresh Honey Gold®, Ruby Sensation® and the new offering, Tasteful Selections organic russet potato. Find this at your local Walmart, cook as you would like.', 'Organic 80 Calories 2grams Fresh and Whole Protein Source of potassium NON GMO', 'Tasteful Selections', 'https://i5.walmartimages.com/asr/19507099-3645-48ee-b9d5-48f8d314c124.1bf1156d4b3f5fb5f80c187cd3270ea4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19507099-3645-48ee-b9d5-48f8d314c124.1bf1156d4b3f5fb5f80c187cd3270ea4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19507099-3645-48ee-b9d5-48f8d314c124.1bf1156d4b3f5fb5f80c187cd3270ea4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (381105260, 'Fresh Black Seedless Grapes, Bag (2.25 lbs/Bag Est.)', 4.23, '895397001187', 'Treat yourself to the delicious, juicy flavor of Fresh Black Seedless Grapes. These grapes are bursting with flavor and are completely seedless, so you can easily enjoy a handful as a fresh snack any time of day. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Fresh Black Seedless Grapes.', 'Fresh Black Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/eb0a9b77-42c5-48ca-9571-779cd360ffa2.49484d60f95a009eb2be78d40af6694a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eb0a9b77-42c5-48ca-9571-779cd360ffa2.49484d60f95a009eb2be78d40af6694a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eb0a9b77-42c5-48ca-9571-779cd360ffa2.49484d60f95a009eb2be78d40af6694a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (381125064, 'Garlic Bulb Per Each', 4.98, 'deleted_070969003305', 'short description is not available', 'Garlic Bulb Per Each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1485c5d3-d9ec-4653-94da-8efb197f6aa8.43926b1e056c8ed3d5682ffbe6f050c2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1485c5d3-d9ec-4653-94da-8efb197f6aa8.43926b1e056c8ed3d5682ffbe6f050c2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1485c5d3-d9ec-4653-94da-8efb197f6aa8.43926b1e056c8ed3d5682ffbe6f050c2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (381290351, 'Athena Cantaloupe', 3.28, 'deleted_850212002152', 'short description is not available', 'Athena Cantaloupe', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (381973379, 'Sunripe Yellow Grape Tomatoes, 10.0 OZ', 2.19, '033383655970', 'Sunripe Yellow Grape Tomatoes. Sun Ripe® Yellow Grape Tomatoes. Following the Sun. Leading in Quality®. I US dry pint (10 oz). www.sunripeproduce.com.', 'Sunripe Yellow Grape Tomatoes, 10.0 OZ', 'Sunripe', 'https://i5.walmartimages.com/asr/998a195b-4b1f-4ee5-bbec-64c6881bbd4e_1.1115da65814ea65a26219bf17e1e5ffe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/998a195b-4b1f-4ee5-bbec-64c6881bbd4e_1.1115da65814ea65a26219bf17e1e5ffe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/998a195b-4b1f-4ee5-bbec-64c6881bbd4e_1.1115da65814ea65a26219bf17e1e5ffe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (383005295, 'Freshness Guaranteed Sliced Brown Mushrooms 16oz', 4.24, 'deleted_699058820113', 'short description is not available', 'Freshness Guaranteed Sliced Brown Mushrooms 16oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (383156618, 'Organic Gummyberries Grapes, 1 Lb', 3.48, 'deleted_816426012790', 'short description is not available', 'Organic Gummyberries Grapes, 1 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (383769191, 'Chopped Red/yellow/green Bell Peppers', 2.58, '705393300231', 'short description is not available', 'Chopped Red/yellow/green Bell Peppers', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (384075474, 'Golden Russet Potatoes 10 Lb Bag', 3.77, '021130530564', 'short description is not available', 'Golden Russet Potatoes 10 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (384271244, 'Premium Bananas', 0.49, 'deleted_405821600871', 'short description is not available', 'Premium Bananas', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (384392993, 'Services Reduced Program Dept 94', 0.01, '260615000004', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', 'https://i5.walmartimages.com/asr/06992888-0679-4f54-a914-97768c43ac40.278cc0fe5237173d372d79524379274d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/06992888-0679-4f54-a914-97768c43ac40.278cc0fe5237173d372d79524379274d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/06992888-0679-4f54-a914-97768c43ac40.278cc0fe5237173d372d79524379274d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (384521299, 'Fresh Kiwi Puerto Rico, Each', 0.57, '405980551571', 'Kiwi, or kiwifruit, is a small fruit native to China with a unique tart-sweet flavor and a vibrant green flesh covered by a fuzzy brown skin. It is highly nutritious, packed with essential nutrients like vitamins C and E, potassium, and dietary fiber. Kiwi is often enjoyed raw, in salads, smoothies, or desserts. Its high vitamin C content surpasses the daily recommended intake, and it also contains beneficial antioxidants and serotonin.', 'Fresh kiwi, also known as kiwifruit or Chinese gooseberry, is a small, fuzzy, brown-skinned fruit native to China but now primarily grown in New Zealand, Italy, and California (Genus Epithet). Its vibrant green flesh offers a unique tart-sweet flavor and is encased by a thin, edible skin. Kiwi is highly nutritious and is often enjoyed raw in salads, smoothies, or simply scooped straight from the skin. Taste and Culinary Uses: Kiwi has a distinctive tart-sweet flavor, often described as a mix of strawberries, melons, and bananas. Its bright green flesh and black seeds make it visually appealing, and it can be used in salads, desserts, smoothies, or served with yogurt. Kiwi can also be used as a tenderizer for meats due to its high content of the enzyme actinidin. Health Benefits: Kiwi is packed with essential nutrients such as vitamins C and E, potassium, and dietary fiber. It is particularly known for its high vitamin C content, with just one kiwi providing more than the daily recommended intake. Kiwi also contains antioxidants and serotonin, which can improve sleep quality. Cultivation and Harvest: Kiwi plants are vine-grown, often requiring trellising for support. They thrive in temperate climates with plenty of sunshine and well-drained soil. Kiwi fruit is typically harvested before it is fully ripe, as it continues to ripen after being picked. The fruit is ready to eat when it yields to gentle pressure, similar to a ripe peach.', 'Unbranded', 'https://i5.walmartimages.com/asr/da37e01a-625d-449f-b01b-ec9cac9ae320.d0a65591ed49fbd83843a2b9434eb2c1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/da37e01a-625d-449f-b01b-ec9cac9ae320.d0a65591ed49fbd83843a2b9434eb2c1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/da37e01a-625d-449f-b01b-ec9cac9ae320.d0a65591ed49fbd83843a2b9434eb2c1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (385190443, 'Fresh Organic Limes, 1 lb Bag', 2.98, 'deleted_744430275514', 'Add zest and flavor to your meals and beverages with these Marketside Organic Limes. Limes are a key ingredient in many recipes, from homemade salsa to chicken dishes. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use them when baking cakes, cookies, and tarts. These limes are sold in a one-pound bag, so you\'ll have plenty for all your culinary creations. Enjoy the refreshing, tart flavor of Marketside Organic Limes.Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Fresh and juicy limes USDA organic Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies, and tarts Refreshing, tart flavor', 'Fresh Produce', 'https://i5.walmartimages.com/asr/99fcff31-ba31-463d-b48e-a1a4bae790e6.5f21184a1be56cc76c91d42deb49313d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/99fcff31-ba31-463d-b48e-a1a4bae790e6.5f21184a1be56cc76c91d42deb49313d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/99fcff31-ba31-463d-b48e-a1a4bae790e6.5f21184a1be56cc76c91d42deb49313d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (385678898, '170pc Pie Pumpkin', 445.4, '405954196524', 'short description is not available', '170pc Pie Pumpkin', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (385888497, 'Freshness Guaranteed Pineapple Chunks 16oz', 4.97, 'deleted_681131036580', 'short description is not available', 'Freshness Guaranteed Pineapple Chunks 16oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (385893392, 'Organic Potato Tray Kit Zesty Southwest', 4.96, '097419041182', 'Organic Southwest Fresh Potato Kit, 1 Each', 'Organic Potato Tray Kit Southwest Fresh', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b376c185-2447-4e18-9ec2-50f2ccbf426b_1.b2489a7a009459ee493fcbafe89c8319.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b376c185-2447-4e18-9ec2-50f2ccbf426b_1.b2489a7a009459ee493fcbafe89c8319.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b376c185-2447-4e18-9ec2-50f2ccbf426b_1.b2489a7a009459ee493fcbafe89c8319.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (386140135, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094987520', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (386164726, 'Sailing, Dried Black Fungus, 5 Pound', 17.7, '023452800424', 'Black/White Fungus Strip', 'Sailing, Dried Black Fungus, 5 Pound', 'Sailing', 'https://i5.walmartimages.com/asr/83b30129-4b86-43f2-9241-e786c26654c9_1.7db764965ada69394050bb8ad22a1b8f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/83b30129-4b86-43f2-9241-e786c26654c9_1.7db764965ada69394050bb8ad22a1b8f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/83b30129-4b86-43f2-9241-e786c26654c9_1.7db764965ada69394050bb8ad22a1b8f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (386250869, 'Fresh Washington Grown Ruby Cherries, 12 Oz.', 5.98, '888289403169', 'Fresh Washington Grown Ruby Cherries, 12 Oz.', 'Fresh Washington Grown Ruby Cherries', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (386341349, 'Fresh Cotton Candy Grapes, 1 lb Package', 3.48, '814563010716', 'Fresh Cotton Candy Grapes are a delightful and unique natural treat, offering a mouthwatering cotton candy flavor in every bite. These specially grown grapes perfectly capture the essence of the classic fairground treat, providing a sweet and satisfying experience that will surprise and delight both children and adults alike. Enjoy the whimsical taste sensation of cotton candy grapes - a fun, healthy, and deliciously indulgent snack that brings joy to your taste buds.', 'Fresh Produce Cotton Candy Green Grapes Grapes Candy Variety Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/17dc95aa-4c36-43cc-8ba9-620d5e40fa7a.9c91b646b33a734d6401d5caeae395dd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/17dc95aa-4c36-43cc-8ba9-620d5e40fa7a.9c91b646b33a734d6401d5caeae395dd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/17dc95aa-4c36-43cc-8ba9-620d5e40fa7a.9c91b646b33a734d6401d5caeae395dd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (386372690, 'Services Reduced Program Dept 94', 0.01, '251996000004', 'short description is not available', 'Services Reduced Program Dept 94', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (386513758, 'Freshness Guaranteed Whole Brown Mushrooms 8oz', 2.28, 'deleted_084348675649', 'short description is not available', 'Freshness Guaranteed Whole Brown Mushrooms 8oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (386600698, 'Ogp Apple Cosmic Crisp Sample', 0.03, '405929726329', 'short description is not available', 'Ogp Apple Cosmic Crisp Sample', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ec4ef448-98bc-4f90-b1ea-f1175ca8896c.e377c23707f42b1c057eef7a5f650a15.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec4ef448-98bc-4f90-b1ea-f1175ca8896c.e377c23707f42b1c057eef7a5f650a15.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec4ef448-98bc-4f90-b1ea-f1175ca8896c.e377c23707f42b1c057eef7a5f650a15.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (386603598, 'Organic Peach, 2 lb Bag', 5.66, 'deleted_788814322050', 'Fresh Organic Peaches 2lb Bag', 'Fresh Organic Peaches 2lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (386660935, '150pc On Vid 4# Ga', 591, '405504068950', 'short description is not available', '150pc On Vid 4# Ga', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (386973081, 'California Grown Peaches, per Pound', 1.58, '400094834503', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (387515724, 'Avo Mex HA LB 8/4 32 1', 3.48, 'deleted_887214001470', 'Bag of 4 Avocados', 'Large Avocado 4 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (387924353, 'Organic Yellow Squash', 2.96, '741243003020', 'Organic Yellow Squash is an extremely versatile vegetable that is a must-have for every cook. This yellow squash is USDA certified organic, so you know you are getting a wholesome vegetable. You can prepare the squash in many different ways. Saute it with butter and serve with your choice of protein, like pork chops or grilled chicken breast. You can slice it and fry it up Southern-style, or you can incorporate it into a casserole for a little comfort food. For a sweet treat use the squash to bake a decadent lemon and yellow squash muffins, you can through in some blueberries for a fresh addition. The culinary possibilities are endless with Organic Yellow Squash.', 'Organic Yellow Squash', 'Wholesum', 'https://i5.walmartimages.com/asr/95621439-ba87-4d86-949f-9439f6d1cd94.4ae5136ff13cc71e137af2c9fab4192d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/95621439-ba87-4d86-949f-9439f6d1cd94.4ae5136ff13cc71e137af2c9fab4192d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/95621439-ba87-4d86-949f-9439f6d1cd94.4ae5136ff13cc71e137af2c9fab4192d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (388072498, '840pc Pomegranate', 1663.2, '405719819156', 'short description is not available', '840pc Pomegranate', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (388472287, 'Earthbound Farms Fresh Organic Vegetable Medley Blend, 9 oz', 3.98, '032601952754', 'What\'s better than organic vegetables? Earthbound Farms Organic Vegetable Medley, a medley of three organic vegetables! All washed, prepped, and ready to eat, this organic medley contains fresh broccoli florets, fresh cauliflower florets, and fresh baby carrots. The nine-ounce package contains about three servings. Each three-ounce serving is only 30 calories and gives you two grams of fiber and two grams of protein. To serve, use this versatile mix as the single easiest way to lay out your own vegetable tray the next time you\'re expecting company, or simply eat it right out of the bag with your favorite dip. This combination is also great in colorful stir fry recipes. Toss into a hot pan or wok with oil and your favorite tangy stir fry sauce, and serve over rice. Or, for a cheesier side dish, try baking the Earthbound Farms Organic Vegetable Medley with a white sauce or cheese sauce and feel great about the dish you\'re serving up tonight.', 'Earthbound Farms Fresh Organic Vegetable Medley Blend in a 9-ounce bag Ready to eat on the go Recipe-ready vegetables Washed and ready to enjoy Fresh organic snack Make your own veggie tray', 'Earthbound Farm', 'https://i5.walmartimages.com/asr/a65f2c68-5a88-4ada-8f12-1184306f59a3.5bbb011cd33a5d92a64c58e37cb40ad8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a65f2c68-5a88-4ada-8f12-1184306f59a3.5bbb011cd33a5d92a64c58e37cb40ad8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a65f2c68-5a88-4ada-8f12-1184306f59a3.5bbb011cd33a5d92a64c58e37cb40ad8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (388605463, 'Yellow Flesh Peaches, per Pound', 1.58, '400094385937', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (388803367, 'Fresh Medley Tomato, 10 oz Package', 3.48, 'deleted_669058801245', 'Bring the fresh, delicious taste of Medley Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Medley Tomatoes.', 'Medley Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (389113239, 'Easy Creations, Garlic Parsley Parmesan Potato Tray', 1.97, '847597010476', 'Easy Creations, Garlic Parsley Parmesan Potato Tray', 'Garlic Parsley Parmesan Potato Tray Microwavable and ready in 7 min! Freshly packed Idaho potatoes Seasoning Packet included', 'Fresh Produce', 'https://i5.walmartimages.com/asr/19bb8c75-a634-4a65-b5fd-98f30fbf3c30.41d7ac64864949078a1b662803764c33.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19bb8c75-a634-4a65-b5fd-98f30fbf3c30.41d7ac64864949078a1b662803764c33.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19bb8c75-a634-4a65-b5fd-98f30fbf3c30.41d7ac64864949078a1b662803764c33.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (389166848, 'Med Apcc 5pk', 3.98, '732313001558', 'short description is not available', 'Med Apcc 5pk', 'Unbranded', 'https://i5.walmartimages.com/asr/83c2d36a-644f-445f-a816-6004e1e0b527.3828cc236370c7339f87d713a2cbead4.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/83c2d36a-644f-445f-a816-6004e1e0b527.3828cc236370c7339f87d713a2cbead4.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/83c2d36a-644f-445f-a816-6004e1e0b527.3828cc236370c7339f87d713a2cbead4.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (390010898, 'ORG AVO 10/3 60 PE', 3.23, 'deleted_761010112823', 'ORG AVO 10/3 60 PE', 'ORG AVO 10/3 60 PE', 'Mission Produce', 'https://i5.walmartimages.com/asr/82973198-5372-4345-a074-3a84defb8890.d0d7ad4ce1446c8fa17099765a91aef5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/82973198-5372-4345-a074-3a84defb8890.d0d7ad4ce1446c8fa17099765a91aef5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/82973198-5372-4345-a074-3a84defb8890.d0d7ad4ce1446c8fa17099765a91aef5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (390125991, 'SWEET MINI PEPPERS', 2.88, 'deleted_689259003453', 'Whether you’re looking for a healthy and simple on-the-go snack, or a fresh new ingredient to brighten up an appetizer, Mini Sweet Peppers are a nutritious and delicious option you are sure to enjoy. These vibrant, snack-size Peppers are easy to add to school lunches, appetizers, salads, and so much more. It takes so little time to prepare Mini Sweet Peppers for snacking or serving that they will easily become your favorite fresh ingredient! Their crisp bite, sweet flavor, and satisfying crunch will always hit the spot (even for the pickiest eaters). Although Mini Sweet Peppers are on the smaller end of the Sweet Pepper family, they are still a great source of essential nutrients including vitamin C. And we can’t forget about where they come from: greenhouse-grown in a controlled environment, Mini Sweet Peppers are given the utmost care before being picked, packed, and shipped to your local Walmart store', 'Sweet Mini Peppers', 'Produce Unbranded', 'https://i5.walmartimages.com/asr/8157ba8c-67d0-44fc-acd4-e1d3ce9e4c38.9ff81bf52c35fd82f0039571bdd6db5f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8157ba8c-67d0-44fc-acd4-e1d3ce9e4c38.9ff81bf52c35fd82f0039571bdd6db5f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8157ba8c-67d0-44fc-acd4-e1d3ce9e4c38.9ff81bf52c35fd82f0039571bdd6db5f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (390408133, 'Walmart Produce Seasonal Fruit Salad Blend 10 Oz', 2.98, '826766254262', 'short description is not available', 'Walmart Produce Seasonal Fruit Salad Blend 10 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (390701600, 'Diced Yellow Onions', 2, 'deleted_705393300224', 'short description is not available', 'Diced Yellow Onions', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (390793983, 'Services Reduced Program Dept 94', 0.01, '251866000004', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (391165890, 'Fresh Dark Sweet Oregon Cherries, Half Pint', 2.98, '850023002136', 'Fresh Dark Sweet Oregon Cherries, Half Pint', 'Fresh Dark Sweet Oregon Cherries', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (391524014, 'Watermelon Seedless', 4.48, '405504859862', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (391727075, 'Watermelon Seedless', 5.48, 'deleted_851354002321', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (392853789, 'Revol Greens Romaine Crunch Salad, 4.0 oz Clam Shell, Fresh', 2.98, '865638000439', 'Revol Greens® Romaine Crunch is a blend of crisp romaine and green leaf lettuces. All Revol Greens® lettuce is grown inside a greenhouse and harvested daily, 365 days a year. Our regional greenhouse locations allow us to reach nearly all our customers within 24-48 hours of harvest, so that our greens arrive incredibly fresh and at peak nutritional value. Find this at your local Walmart.', 'Locally grown in a protected greenhouse environment Sustainably grown with 90% less water than field grown lettuce Non-GMO', 'Revol Greens', 'https://i5.walmartimages.com/asr/da1b3545-0363-44c6-bf67-a6488d8c89c3.b5fbe5956680888d78074502d5df6cbd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/da1b3545-0363-44c6-bf67-a6488d8c89c3.b5fbe5956680888d78074502d5df6cbd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/da1b3545-0363-44c6-bf67-a6488d8c89c3.b5fbe5956680888d78074502d5df6cbd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (392866102, 'Pink Apples, Each', 1.68, '', 'short description is not available', 'Pink Apples, Each', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (393028407, 'Corn Bulk', 0.5, 'deleted_860001826838', 'short description is not available', 'Corn Bulk', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (393109916, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, '400094459997', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (393611135, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094467015', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (393863679, 'Walmart Produce Pineapple Blueberry 16 Oz', 4.48, '826766252121', 'short description is not available', 'Walmart Produce Pineapple Blueberry 16 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (394081986, 'Services Reduced Program Dept 94', 0.03, '251992000008', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (395005783, 'Large Avocado 3 Count Bag', 4.48, 'deleted_636442400025', 'short description is not available', 'Large Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (395044591, 'Sunset You Make Me Spicy Arrabbiata Pasta Kit, 1.5 lb Package', 4.98, '057836840010', 'Eco flavor bowl™', 'Cook time 11 minutes Serves 2 Hot! Tomatoes, pasta, spices & infused oil Chef Gourmet Inspired', 'Fresh Produce', 'https://i5.walmartimages.com/asr/792b4d6e-b17e-41e2-aebc-75bc51b56faa.6d563efdde32f3a8dc410677e323a582.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/792b4d6e-b17e-41e2-aebc-75bc51b56faa.6d563efdde32f3a8dc410677e323a582.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/792b4d6e-b17e-41e2-aebc-75bc51b56faa.6d563efdde32f3a8dc410677e323a582.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (395175198, 'Granny Smith Apples 3 Lb Bag', 3.88, '', 'short description is not available', 'Granny Smith Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (395538498, 'Marketside Fresh Cut Pineapple, 10 oz Tray', 3.72, '681131180429', 'Experience a burst of tropical flavors with these Marketside Pineapple Chunks. The pre-cut chunks of ripe pineapple are juicy and sweet to taste and are packed in its own juice. Carry them with you and eat them straight out of the tray any time you want, at home or on-the-go. You can also use them to top desserts and ice creams, in a fruit salad or blend them with milk to make milkshakes. Add some fresh fruit to your daily menu today with these Marketside Pineapple Chunks. Marketside provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Marketside item.', 'Marketside Pineapple 10 oz Comes in a re-closable container to help maintain freshness Great for breakfast, lunch, dessert, or when you want a snack No preservatives, artificial colors or artificial flavors Convenient and portable Share with friends and family or keep for yourself Make a fruit bowl topped with whipped cream or a yogurt parfait Enjoy on their own or in a variety of recipes', 'Marketside', 'https://i5.walmartimages.com/asr/d370fb9e-85ea-41f2-9521-ea0457694fde.606024c46189cc90a16e547c839ca17a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d370fb9e-85ea-41f2-9521-ea0457694fde.606024c46189cc90a16e547c839ca17a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d370fb9e-85ea-41f2-9521-ea0457694fde.606024c46189cc90a16e547c839ca17a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (396023615, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094693469', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (396378609, 'Red Bell Pepper, each', 1.38, 'deleted_856745008043', 'Enhance your meals with the delicious flavor of Red Bell Peppers. This vegetable contains essential vitamins such as A and C, and minerals including calcium and magnesium. Red bell pepper, also known as red capsicum, has a crisp flavor that enhances a variety of recipes. Dice bell peppers and put them in a hearty chili, slice them and add to a deli sandwich, saute them with onions and serve on a hoagie roll with a bratwurst, or stir-fry with thinly-sliced steak and serve with rice. A hollowed-out red bell pepper can be filled with sausage, mushrooms and rice to create a delicious stuffed pepper that will have the family asking for seconds. Lunches and dinners are more scrumptious when fresh red peppers are part of the meal. They also taste delicious raw alongside other vegetables. Add your favorite dip for a healthy, crunchy crudite. Cooked or uncooked, Red Bell Peppers are an excellent item to have on hand.', 'Red Bell Pepper, 1 each: Naturally low in calories Exceptionally rich in vitamin C and other antioxidants Delicious cooked or uncooked Create delicious recipes with fresh red peppers', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/3e7798c2-b396-47ca-af17-78dfa3ce2b4a_2.013ab2925acb792bc065227f97aac0da.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3e7798c2-b396-47ca-af17-78dfa3ce2b4a_2.013ab2925acb792bc065227f97aac0da.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3e7798c2-b396-47ca-af17-78dfa3ce2b4a_2.013ab2925acb792bc065227f97aac0da.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (396556953, 'Fresh Opal Apples, 2 lb Bag', 3.97, '885880029637', 'These sunny fruits are like no other! Opal® apples are beautifully bright yellow with a distinctively crunchy texture and a sweet, tangy flavor. Sweet, crisp, and naturally non-browning, Opal® apples won\'t brown after cutting making them snack time heroes by staying fresh all day long. Opal® apples are also known as the apple that gives back, as they sponsor the Youth Make a Difference initiative to address food issues in communities across the U.S. Taste the difference and make a difference with your purchase of Opal® apples.', 'Crisp and Sweet Naturally Non-Browning Non-GMO Certified Bright Golden Color', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4fd38e8b-b132-437c-9033-fb23bdafd879.e8761603ae728940f2bcd989fa0c04e8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4fd38e8b-b132-437c-9033-fb23bdafd879.e8761603ae728940f2bcd989fa0c04e8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4fd38e8b-b132-437c-9033-fb23bdafd879.e8761603ae728940f2bcd989fa0c04e8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (396771743, 'Organic Yellow Squash 2pk', 2.96, 'deleted_810083650296', 'short description is not available', 'Organic Yellow Squash 2pk', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (396803200, 'Fresh Purple Cauliflower, Each', 8.47, '405779412335', 'Fresh Colorful Cauliflower - a vibrant twist on the classic white variety. With the same great taste, this cauliflower offers an extra antioxidant boost from its purple pigment. Add a pop of color to your plate effortlessly with this nutritious and delicious option. Brighten up your meals and enjoy the benefits of a colorful and nutritious addition to your diet. Try our Colorful Cauliflower today and elevate your culinary experience.', 'Protein, carbohydrates Ample Vitamin C antioxidant contains fiber', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (396955945, 'Orange Cara Cara', 1.37, '405997197786', 'short description is not available', 'Orange Cara Cara', 'Unbranded', 'https://i5.walmartimages.com/asr/d07d095b-7b4e-4417-a16f-419371845419.ca8d3d6fc5075f1203613e3b19f50f69.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d07d095b-7b4e-4417-a16f-419371845419.ca8d3d6fc5075f1203613e3b19f50f69.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d07d095b-7b4e-4417-a16f-419371845419.ca8d3d6fc5075f1203613e3b19f50f69.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (397097321, '100pc Pto Rst 10# Bw', 494, '405522651080', 'short description is not available', '100pc Pto Rst 10# Bw', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (397430273, 'White Beech Mushroom, 2.5 Oz.', 3.98, 'deleted_070475659669', 'White Beech Mushroom, 2.5 Oz.', '2.5 Oz White Beech Mushroom', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (397537342, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094226964', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (397638417, 'Fresh Black Seedless Grapes', 1.64, '', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (397643767, '200pc Pto Ykn/red Co', 824, '405501527962', 'short description is not available', '200pc Pto Ykn/red Co', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (398088540, 'Freshness Guaranteed Fresh Black Seedless Grapes', 1.88, '', 'short description is not available', 'Freshness Guaranteed Fresh Black Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (398400923, 'Russet Potatoes 10 Lb Bag', 4.94, 'deleted_045009241269', 'short description is not available', 'Russet Potatoes 10 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (398496442, 'Freshness Guaranteed Kiwi Pineapple Grape Strawberry Blend, 16 oz', 5.98, '681131355124', 'Enjoy the sweet, tropical flavor of Freshness Guaranteed Kiwi Pineapple Grape Strawberry Blend. These precut fruits are great for breakfast, lunch, dessert, or when you want a snack. A delicious blend of pineapple, strawberries, kiwis, and grapes this container of fruit is the perfect mix of both sweet and tart . You can eat the fruit right out of the container or infuse them with water and mint for a refreshing drink. With 16-ounces in each container, this fruit is great for sharing with friends and family or keep it for yourself. It comes in a reclosable container to help maintain freshness. Bring home Freshness Guaranteed Pineapple Chunks today for a refreshing, healthy treat. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Spark Fresh item.', 'Freshness Guaranteed Kiwi Pine Grape Strawberry Blend, 16 oz: Sweet and tart treat Great for breakfast, lunch, dessert, or when you want a snack delicious blend of pineapple, strawberries, kiwis, and grapes Enjoy right out of the container or infuse with water and mint Share with friends and family or keep for yourself Comes in a reclosable container to help maintain freshness', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8de7bcb1-53b7-4790-9cc3-8f6cddbb2358.351f8dccfb1da06990642573ef857cb8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8de7bcb1-53b7-4790-9cc3-8f6cddbb2358.351f8dccfb1da06990642573ef857cb8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8de7bcb1-53b7-4790-9cc3-8f6cddbb2358.351f8dccfb1da06990642573ef857cb8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (398550220, 'Manzana Lil Empire Manzana Smitten 2lbs', 3.37, '847473005510', 'Smitten® apples have a dense, crunchy texture and sweet-tart flavor suited for a wide array of fresh and cooked preparations.', 'Apples 2-3/8 inch min. dia. Once bitten, forever smitten. Be Ready to Fall in Love: Great taste; sweet and juicy; crisp and crunchy. From our orchards with love. - Xoxo. Coated with food grade vegetable and/or shellac based wax to maintain freshness. Meets or exceeds US extra fancy. www.cmiorchards.com. www.smittenapple.com. Twitter: (at)smittenapple. Product of USA.', 'Lil Empire', 'https://i5.walmartimages.com/asr/f56d0396-cf99-4c92-84c6-3af64b72c4ea.112831b09c059141ff3a41237e0ba879.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f56d0396-cf99-4c92-84c6-3af64b72c4ea.112831b09c059141ff3a41237e0ba879.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f56d0396-cf99-4c92-84c6-3af64b72c4ea.112831b09c059141ff3a41237e0ba879.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (398982868, 'Yellow Flesh Peaches, per Pound', 1.58, '400094782996', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (399274441, 'Yellow Flesh Peaches, per Pound', 1.58, '400094347782', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (399353122, 'Seasonal Fruit Medley 14 Oz', 4.68, '795631805024', 'short description is not available', 'Seasonal Fruit Medley 14 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (399528184, 'Sweet Corn Mais Sucre', 3.97, 'deleted_073150170664', 'short description is not available', 'Sweet Corn Mais Sucre', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/0af42011-b20a-4738-92e3-c04b0ceb061e.2e1583e8a8a1bd9998d2a099047f52fe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0af42011-b20a-4738-92e3-c04b0ceb061e.2e1583e8a8a1bd9998d2a099047f52fe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0af42011-b20a-4738-92e3-c04b0ceb061e.2e1583e8a8a1bd9998d2a099047f52fe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (399765699, '192pc On Vid 3# Sh', 788, '405540187967', 'short description is not available', '192pc On Vid 3# Sh', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (400143235, 'Sweet Potatoes 3 Lb Bag', 2.58, '811857021106', 'short description is not available', 'Sweet Potatoes 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (400156750, 'Orange Bell Pepper', 1.78, '400094225356', 'short description is not available', 'Orange Bell Pepper', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (400191967, 'Tomato Magic Ground Tomatoes No. 10 Can - Pack From Fresh Tomatoes - NOT From Concentrate - 6 LB 10 OZ (3.01 kg) - Case of 6 Cans', 107.94, '765552706069', 'This time tested product adds a touch of magic to \"la cucina Italiana\" of all regions. Made from fresh-picked peeled ground tomatoes in puree, Tomato Magic is the chef\'s choice for use in many regional favorites. Stanislaus Food Products is proud to unconditionally guarantee the quality of all our products - every day, can after can, year after year. Since our beginnings in 1942, we at Stanislaus Food Products have prided ourselves on packing the very best quality tomato products available. Down through the years, every employee in our company has maintained an unwavering commitment to quality, in the belief that quality products attract quality customers. We have not been disappointed. Thank you for your knowing enough to buy the very best!', 'Tomato Magic Ground Tomatoes No. 10 Can - 6 LB 10 OZ (3.01 kg) - Case of 6 Cans Package Size: # 10 Can Type: Ground Tomatoes Gluten Free Packed from fresh tomatoes and not from concentrate.', 'Stanislaus Imports', 'https://i5.walmartimages.com/asr/c2b41053-40b5-427c-87c7-0c5e8eaa1f2f_1.41b3607ce85e9c77f53820c90af59fd8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c2b41053-40b5-427c-87c7-0c5e8eaa1f2f_1.41b3607ce85e9c77f53820c90af59fd8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c2b41053-40b5-427c-87c7-0c5e8eaa1f2f_1.41b3607ce85e9c77f53820c90af59fd8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (400312721, 'Fieldpack Unbranded 448pc Berry Big Strw', 2007.04, '405953115366', 'short description is not available', 'Fieldpack Unbranded 448pc Berry Big Strw', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (400470855, 'Nm Hatch Chili Hot 10# Sold By Box Only', 16, '824206001858', 'short description is not available', 'Nm Hatch Chili Hot 10# Sold By Box Only', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (401446405, 'Watermelon Seedless', 4.98, 'deleted_896315001265', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (401615335, 'Fresh Organic Black Grapes 32oz', 4.96, 'deleted_813552010270', 'short description is not available', 'Fresh Organic Black Grapes 32oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (401638324, 'Fresh Dark Sweet Cherries, per Pound', 3.97, '405651484627', 'Fresh Dark Sweet Cherries, per Pound', 'Fresh Dark Sweet Cherries', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (402006970, 'Fresh Sliced Mushrooms, 16 oz', 3.28, '021706160973', 'Experience the fresh taste of our Sliced White Mushrooms. If you\'re looking for a traditional mushroom with a mild earthy taste, white mushrooms are just what you need. They\'ve remained the most popular mushroom for several decades, and although all mushrooms are versatile, white mushrooms are the most versatile of them all. Pre-cleaned and pre-sliced, they are the perfect finishing touch for adding to salads, pizzas and so much more. They are free of fat and cholesterol and are low in calories and sodium. Plus, mushrooms are a natural source of the antioxidant selenium, making them an excellent addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try out our Sliced White Mushrooms.', '16-ounce package of sliced white mushrooms Naturally fat free Cholesterol free Low in calories, carbs and sodium Fresh and all natural Pre-cleaned Natural source of the antioxidant selenium Great for salads, pizzas and much more', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/3cd37e98-1f78-47d7-a560-284a7d73cbce.d36eccfe8295989dde04d7cfb7c4801b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3cd37e98-1f78-47d7-a560-284a7d73cbce.d36eccfe8295989dde04d7cfb7c4801b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3cd37e98-1f78-47d7-a560-284a7d73cbce.d36eccfe8295989dde04d7cfb7c4801b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (402095407, 'Golden Delicious Apples 5 Lb Bag', 5.29, '847473005893', 'short description is not available', 'Golden Delicious Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (402657010, 'Organic Fuji Apples 3lbs', 5.98, '887434012089', 'Organic Fuji Apple 3LB CTN', 'Organic Fuji Apples 3lb CTN - PRODUCE', 'VTUWYM', 'https://i5.walmartimages.com/asr/8d718fad-439f-421a-b3e0-992b6903d98c.5034674707798b94f90703e930bca963.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8d718fad-439f-421a-b3e0-992b6903d98c.5034674707798b94f90703e930bca963.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8d718fad-439f-421a-b3e0-992b6903d98c.5034674707798b94f90703e930bca963.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (402934225, 'Organic Nectatrines, 2 lbs Bag', 3.96, 'deleted_683953001432', '2# Clamshell', 'NECT ORG 2# WA SNAP', '', 'https://i5.walmartimages.com/asr/c738a243-b560-4b4b-8e74-eca46e6867f0_1.c01d50aef1d518b90b44d6feed9cc6a1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c738a243-b560-4b4b-8e74-eca46e6867f0_1.c01d50aef1d518b90b44d6feed9cc6a1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c738a243-b560-4b4b-8e74-eca46e6867f0_1.c01d50aef1d518b90b44d6feed9cc6a1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (403176292, 'Organic Granny Smith Apples 3Lb Ctn', 4.97, '887434012096', 'Organic Granny Smith Apples 3Lb Ctn', 'Organic Granny Smith Apples 3Lb Ctn', 'STARR RANCH', 'https://i5.walmartimages.com/asr/bb550973-9bbb-48d1-b51d-4e699b07325b.dd8ca37a60769bd0c2de961aff53da18.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bb550973-9bbb-48d1-b51d-4e699b07325b.dd8ca37a60769bd0c2de961aff53da18.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bb550973-9bbb-48d1-b51d-4e699b07325b.dd8ca37a60769bd0c2de961aff53da18.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (403314241, 'Organic Red Leaf, 1 Each Ocean Mist', 1.96, '000651967028', 'Organic Red Leaf Ocean Mist Farms', 'Organic Red Leaf Bunch Ocean Mist Farms', 'Ocean Mist Farms', 'https://i5.walmartimages.com/asr/1a67574a-a1aa-4d82-be7a-cd000d83a708_1.1441345079af98def3bd23114d6de57d.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a67574a-a1aa-4d82-be7a-cd000d83a708_1.1441345079af98def3bd23114d6de57d.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a67574a-a1aa-4d82-be7a-cd000d83a708_1.1441345079af98def3bd23114d6de57d.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (405454976, 'Premium Bananas', 0.49, 'deleted_405821601120', 'short description is not available', 'Premium Bananas', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (405812593, 'Marketside Org Cauliflower Florets 12oz', 3.77, 'deleted_803944307040', 'Organic Cauliflower Florets 12oz', 'Organic Cauliflower Florets 12oz', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (406472125, 'Pure Green Farms Baby Green Leaf Lettuce Salad, 4 oz Clam Shell, Fresh', 2.98, '850014580025', 'Our hydroponic Baby Green Leaf lettuce is a crispy baby green lettuce with brilliant flavor', 'Keep Refridgerated, Greenhouse Grown in the USA, Pesticide Free', 'Pure Green Farms', 'https://i5.walmartimages.com/asr/51085631-985b-4466-a0b4-273c0abc5ac2.52b3261d631456549d7bdf498992945e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/51085631-985b-4466-a0b4-273c0abc5ac2.52b3261d631456549d7bdf498992945e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/51085631-985b-4466-a0b4-273c0abc5ac2.52b3261d631456549d7bdf498992945e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (406492972, 'Fresh Green Seedless Grapes', 1.78, 'deleted_816426012516', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (406513048, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, '400094471753', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (406804369, '100PC PTO RST 10# FF', 494, '097419020019', 'short description is not available', '100PC PTO RST 10# FF', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (407156730, 'Yellow Flesh Peaches, per Pound', 1.58, '400094280515', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (407273198, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094639191', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (407279898, 'Organic Whole Brown Mushrooms 8oz', 2.96, 'deleted_631661999848', 'short description is not available', 'Organic Whole Brown Mushrooms 8oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (407404556, 'Santa Fe Salad Bowl, 6.25 Oz.', 2.98, '024562006324', 'Santa Fe Salad Bowl, 6.25 Oz.', 'Salad Bowl Santa Fe', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (407828257, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094280652', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (408053397, 'Fresh Premium Grape Tomato, 4 oz Package', 0.01, '751666772458', 'Bring the fresh, delicious taste of Premium Grape Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Premium Grape Tomatoes.', 'Premium Grape Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8c3423a6-d5f1-4e00-926a-41f316288808.89ce7b3f27c9a70b987d7c19edc72f1a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8c3423a6-d5f1-4e00-926a-41f316288808.89ce7b3f27c9a70b987d7c19edc72f1a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8c3423a6-d5f1-4e00-926a-41f316288808.89ce7b3f27c9a70b987d7c19edc72f1a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (408384428, 'Fresh Samba Papaya, Each', 1.14, '858335003285', 'Fresh Samba Papaya is a delightful variety of the tropical fruit, known for its sweetness and vibrant color. This variety is native to South America but has gained popularity across the globe due to its unique flavor and health benefits. The fruit is oval-shaped and has a rich, orange hue when ripe. Its flesh is juicy, sweet, and loaded with a wealth of health-enhancing nutrients. The taste is often compared to melons, but with a more exotic, tropical twist. The texture is incredibly soft and buttery, melting in your mouth with every bite. The fruit\'s black seeds are edible but have a bitter flavor, so they are usually removed before eating. Samba Papayas are a powerhouse of nutrients. They are rich in vitamin C, vitamin A, folate, and dietary fiber. The fruit is also an excellent source of antioxidants which help to combat free radicals in the body. Additionally, Samba Papayas contain a unique enzyme called papain, known for its digestive benefits and ability to break down proteins. Samba Papaya trees are usually grown in tropical and subtropical climates, requiring ample sunlight and well-drained soil. The trees start bearing fruit within a year of planting and can be harvested year-round. The fruits are picked when they show hints of changing from green to yellow, as they continue to ripen even after being picked.', 'Fresh Samba Papaya, Each Known for its sweetness and vibrant color Juicy, sweet, and loaded with a wealth of health-enhancing nutrients Rich in vitamin C, vitamin A, folate, and dietary fiber Taste is often compared to melons, but with a more exotic, tropical twist Also known as Hawaiian Papaya, Solo Papaya, and Samba Papaya', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1502c948-f96e-4266-a437-43fd24410d85.66080b9b6b123c13cda48a40e4ef49cd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1502c948-f96e-4266-a437-43fd24410d85.66080b9b6b123c13cda48a40e4ef49cd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1502c948-f96e-4266-a437-43fd24410d85.66080b9b6b123c13cda48a40e4ef49cd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (408435428, 'Fresh Tangerine, Each', 1.86, '405717637660', 'Enjoy the juicy goodness of citrus when you eat a Fresh Tangerine. Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Among the smallest fruits in the orange family, tangerines have a pleasing sweet-tart flavor and are typically seedless. Generally a winter fruit, tangerines are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the tangerines hang out in a bowl on your counter or table to breathe. Compact and portable, tangerines are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious Fresh Tangerines on hand for an easy, healthy treat.', 'Delicious, sweet, juicy citrus Pleasing sweet-tart flavor Easy to peel and segment Excellent source of vitamin C, potassium, and folic acid For maximum flavor, do not refrigerate Typically seedless Enjoy by the each.', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/e1b8f441-4bf5-41f8-a70f-351a43586ba3.a21ce8e0a5c89e75f4ffcb40bb0c2144.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e1b8f441-4bf5-41f8-a70f-351a43586ba3.a21ce8e0a5c89e75f4ffcb40bb0c2144.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e1b8f441-4bf5-41f8-a70f-351a43586ba3.a21ce8e0a5c89e75f4ffcb40bb0c2144.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (408486369, 'Winesap Apples, Each', 1.47, '000000041928', 'short description is not available', 'Winesap Apples, Each', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (408545255, '1# Bag Limes', 2.48, '033074800115', 'short description is not available', '1# Bag Limes', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (409058232, '125pc Pto Rst Jmb 8#', 802.5, '405521539624', 'short description is not available', '125pc Pto Rst Jmb 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (409437225, 'Fresh Navel Oranges, 8 lb Bag', 8.94, 'deleted_845963110089', 'Enjoy the juicy goodness of these Large Bagged Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, these Large Bagged Oranges will add flavor to any meal or beverage.', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast Adds flavor to a variety or recipes Use as a garnish for your favorite cocktail Make sweet desserts like ambrosia, orange bars, and orange pie', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9620d207-bf74-4dc0-a4d6-c3a4cfba9673.6b99ac0a6eb8d3ac87c83df2e7b72d6f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9620d207-bf74-4dc0-a4d6-c3a4cfba9673.6b99ac0a6eb8d3ac87c83df2e7b72d6f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9620d207-bf74-4dc0-a4d6-c3a4cfba9673.6b99ac0a6eb8d3ac87c83df2e7b72d6f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (409650864, '180pc Apple Fuji 3#', 894.6, '405668325869', 'short description is not available', '180pc Apple Fuji 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (410113226, 'Grape Tomato Montesino - Naturally Grown - 4.5\" Pot', 5.99, '810018063832', 'Montesino is a ‘Santa’ type grape tomato for production in open field and unheated greenhouses. Sweet, tasty fruits with medium to early maturity. Strong plant habit that easily sets high yields of fruit. Mini-plum shaped fruits.', '60-65 days, 1.5 \" long and 1 \" wide Flavor is rich and delicious Very disease resistant and easy to grow Great in salads and for salsas and sauces', 'Hirt\'s Gardens', 'https://i5.walmartimages.com/asr/7faa7505-e21b-4258-9e1d-d67d3c9dbf38.d9bf009e91deda28311ee46c5ff3c395.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7faa7505-e21b-4258-9e1d-d67d3c9dbf38.d9bf009e91deda28311ee46c5ff3c395.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7faa7505-e21b-4258-9e1d-d67d3c9dbf38.d9bf009e91deda28311ee46c5ff3c395.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (410196416, 'Fresh Red Seedless Grapes', 3.12, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (410524857, 'Seedless Cucumber', 1.18, 'deleted_673992045931', 'short description is not available', 'Seedless Cucumber', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (410839305, 'Microwave in Bag Yellow Potatoes, 1 Each', 2.94, '834344001320', 'Microwave in Bag Yellow Potatoes, 1 Each', '1 Lb. Microwave In Bag Yellow Potatoes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (410857279, 'Grape Tomato', 2.48, '853693005056', 'Grape Tomato', '', 'MYRICK', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (411238286, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094032671', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (411321047, 'Fresh Red Seedless Grapes', 1.98, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (411358147, 'Fresh Organic Roma Tomatoes, 1 lb Bag', 2.46, '885773045195', 'Bring the fresh, delicious taste of Organic Roma Tomatoes into your home. These tomatoes deliver rich and juicy flavor with each bite and are an ideal ingredient in a variety of recipes. Use them to make a tasty homemade pasta sauce, a comforting tomato soup, or fresh salsa. You could also use them to make a delicious pesto or bruschetta that you can serve at your next dinner party. Whether you slice or dice them, these organic tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with these fresh Organic Roma Tomatoes.', 'Wholesome, versatile, and delicious Rich, juicy flavor in each bite Ideal ingredient for a variety of dishes Use to make pasta sauce, tomato soup, or fresh salsa Make a tasty pesto or bruschetta to serve at your next dinner party USDA organic Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e5cd9099-5b09-4cec-bf7b-2d63171f2a34.5f61dc1fc2b1fa276fbdc2e1158994a3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5cd9099-5b09-4cec-bf7b-2d63171f2a34.5f61dc1fc2b1fa276fbdc2e1158994a3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5cd9099-5b09-4cec-bf7b-2d63171f2a34.5f61dc1fc2b1fa276fbdc2e1158994a3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (411848671, 'White Sweet Potatoes 2 Lb Bag', 2.98, '832298009515', 'short description is not available', 'White Sweet Potatoes 2 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (411996850, 'Fresh Blueberries, 5 lb Box', 11.98, '033383220260', 'Fresh Blueberries, 5 lb Box', 'Fieldpack Unbranded Fresh Blueberries 5lb Box', 'Fresh Produce', 'https://i5.walmartimages.com/asr/090b380e-757e-4c5d-ba58-14573049dbfb.4b6eafd423c998cb6fd847da1ab4fe3d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/090b380e-757e-4c5d-ba58-14573049dbfb.4b6eafd423c998cb6fd847da1ab4fe3d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/090b380e-757e-4c5d-ba58-14573049dbfb.4b6eafd423c998cb6fd847da1ab4fe3d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (412362563, 'Fresh Marquis Grapes', 2.98, '708174107005', 'short description is not available', 'Fresh Marquis Grapes', 'Spiech Farms', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (412509991, 'Marketside Organic Spring Mix Salad Blend, 16 oz Clam Shell (Fresh)', 5.74, '681131354769', 'Marketside Organic Spring Mix has a smooth, tender texture and great fresh taste that is loaded with nutrients. This spring mix is packed fresh, washed and ready to eat for your convenience. Use it to create your very own personalized salad tossed with your favorite vegetables, protein, nuts and dressing. Use it as a topping on sandwiches and pizzas or simply enjoy it as a healthy side. This USDA certified organic spring mix is great for health-conscious individuals, as it offers nutritional benefits such as being a rich source of dietary fiber, calcium, iron and vitamins A and C. It comes inside a resealable plastic container, keeping your spinach fresh after every use. Enjoy fresh from the farm taste with Marketside Organic Spring Mix. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Wholesome mix of baby lettuce blend and baby greens Washed and ready to eat USDA certified organic 20 calories per serving 5 servings per package Fresh vegetables in a plastic clam shell', 'Marketside', 'https://i5.walmartimages.com/asr/0ea5856a-e3b5-40b6-aa7b-432937d3e72f.1f2505be130c56b95dd620d1c9d89fb6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ea5856a-e3b5-40b6-aa7b-432937d3e72f.1f2505be130c56b95dd620d1c9d89fb6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ea5856a-e3b5-40b6-aa7b-432937d3e72f.1f2505be130c56b95dd620d1c9d89fb6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (412710770, 'Seasonal Berries - Summer 10 Oz', 7.24, '045009891181', 'short description is not available', 'Seasonal Berries - Summer 10 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/921de6bc-ffbb-455f-beb9-dd7d3e4c7be4.9a66bd15ae7bc4810e435ec1e3a18f50.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/921de6bc-ffbb-455f-beb9-dd7d3e4c7be4.9a66bd15ae7bc4810e435ec1e3a18f50.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/921de6bc-ffbb-455f-beb9-dd7d3e4c7be4.9a66bd15ae7bc4810e435ec1e3a18f50.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (412743682, 'Fresh Blueberries, 6 oz', 3.97, 'deleted_042808346096', 'Fresh Blueberries, 6 oz', 'Fresh Blueberries 6oz Freshly picked and hand-selected blueberries 6oz package filled with plump and juicy berries Bursting with sweet and tangy flavors, perfect for snacking or adding to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/268303f5-fc97-42aa-918a-196ae1788a89.42916db89075095356dab1ee956330ea.jpeg?odnHeight=100&odnWidth=100&odnBg=FFFFFF', 'https://i5.walmartimages.com/asr/268303f5-fc97-42aa-918a-196ae1788a89.42916db89075095356dab1ee956330ea.jpeg?odnHeight=180&odnWidth=180&odnBg=FFFFFF', 'https://i5.walmartimages.com/asr/268303f5-fc97-42aa-918a-196ae1788a89.42916db89075095356dab1ee956330ea.jpeg?odnHeight=450&odnWidth=450&odnBg=FFFFFF'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (413305472, '140pc Pto Ykn/red 5#', 730.8, '405503124527', 'short description is not available', '140pc Pto Ykn/red 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (413369420, '240pc On Tx1015 3#', 787.2, '405536709333', 'short description is not available', '240pc On Tx1015 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (413661513, 'Eastern Cantaloupe Bag', 3.28, 'deleted_605951042002', 'short description is not available', 'Eastern Cantaloupe Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (413803952, 'Fresh Rome Apple, Puerto Rico, Each', 1.97, '000000041713', 'Grown with care and picked at the peak of ripeness, our Red Fresh Apples are sure to satisfy your cravings. With their sweet and juicy taste, they make for a perfect snack any time of the day. Graced with a classic, vibrant red color, these apples are full of nutrients such as fiber, vitamin C, and antioxidants. Get your daily dose of health and deliciousness with our Red Apples.', 'Item Type: Brand: TE-CO Manufacturer Part Number: 41706', 'Fresh Produce', 'https://i5.walmartimages.com/asr/35f25653-a516-4b84-ab14-8a2d841e769d.0b1c00c02cb3d9d05f80101cd38db764.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35f25653-a516-4b84-ab14-8a2d841e769d.0b1c00c02cb3d9d05f80101cd38db764.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35f25653-a516-4b84-ab14-8a2d841e769d.0b1c00c02cb3d9d05f80101cd38db764.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (413927900, '160pc On Vid 4# Ger', 630.4, '405525303511', 'short description is not available', '160pc On Vid 4# Ger', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (414154651, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094272763', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (414192259, '728pc Pomegranate', 1441.44, '405770834136', 'short description is not available', '728pc Pomegranate', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (414472968, '180pc Apple Fuji 3#', 678.6, '405665856274', 'short description is not available', '180pc Apple Fuji 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (414745820, 'Fresh Green Seedless Grapes', 2.52, 'deleted_014668790012', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (415124332, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094274743', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (415323591, '200pc Pto Ykn/red 5#', 824, '405582473677', 'short description is not available', '200pc Pto Ykn/red 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (415478552, 'Fresh Peeled White Onions, 1 lb Bag', 1.18, '000000046701', 'Add flavor to your next meal with these Fresh, Whole White Onions. For breakfast, you could dice them and add to an omelet loaded with cheese, ham, and mushrooms. You can dice these onions and add them to a fresh garden salad for a satisfying crunch or sprinkle them on top of your fish tacos. White onions also make delicious golden onion rings to serve alongside juicy hamburgers and hot dogs at your next backyard barbecue. You can keep these onions at room temperature until ready to use. Stock your pantry with several Fresh, Whole, White Onions.', 'Fresh whole white onions Ideal ingredient in a variety of recipes Can be sauteed and put in your favorite foods for added flavor Use to top sandwiches, hamburgers, and hot dogs Fresh onions can be stored in a cabinet or pantry and are easy to prepare', 'Fresh Produce', 'https://i5.walmartimages.com/asr/430eda9e-19b9-4b3b-963c-2e0d76fdabf8_1.0ff3b246327cf0c310ea1a16ea11e02c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/430eda9e-19b9-4b3b-963c-2e0d76fdabf8_1.0ff3b246327cf0c310ea1a16ea11e02c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/430eda9e-19b9-4b3b-963c-2e0d76fdabf8_1.0ff3b246327cf0c310ea1a16ea11e02c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (415654166, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094583395', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (415830579, 'Fieldpack Unbranded Fresh Organic Strawberries 1#', 7.5, '899062002578', 'short description is not available', 'Fieldpack Unbranded Fresh Organic Strawberries 1#', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/0329119a-00fe-4230-ab22-f502477e7cf7.99ba422098369d428c1b8794656a36f6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0329119a-00fe-4230-ab22-f502477e7cf7.99ba422098369d428c1b8794656a36f6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0329119a-00fe-4230-ab22-f502477e7cf7.99ba422098369d428c1b8794656a36f6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (416128436, 'Cocktail Tomatoes, 10 oz', 2.98, '057836020641', 'Sunset® Campari® Tomatoes.', 'Sunset® Campari® Tomatoes. Inspired chef. The tomato lover?s Tomato®. Greenhouse Grown. Product of Mexico. 454 g 1 Lb.', 'Sunsets', 'https://i5.walmartimages.com/asr/e4170a50-863c-486a-b727-fe05a2385164_1.9bb1ced03fd9a1dacf026b5cd1261fdb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4170a50-863c-486a-b727-fe05a2385164_1.9bb1ced03fd9a1dacf026b5cd1261fdb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4170a50-863c-486a-b727-fe05a2385164_1.9bb1ced03fd9a1dacf026b5cd1261fdb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (416191938, 'Marketside Ruby Grapefruit Segments, No Sugar Added, 7 oz', 1.68, 'deleted_681131161381', 'Marketside Ruby Grapefruit Segments are peeled and soaked in water and sweetened with monk fruit and stevia extract. This tasty citrus fruit is perfect for fruit cocktails, salsas, desserts, salads and can also be used as a garnish for meat and vegetable dishes. Enjoy them chilled for a refreshing snack that you can enjoy any time of the day. They have only 45 calories per serving and have no added sugars. They offer a nutritional benefit as they are a low calorie source of vitamin C. These segments come in a ready-to-eat container making it easy to enjoy your favorite fruit on the go. Enjoy a healthy and delicious snack with the wholesome taste of Marketside Ruby Grapefruit Segments. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Ruby Grapefruit Segments, No Sugar Added, 7 oz Ruby grapefruit segments soaked in water and sweetened with monk fruit and stevia extract Serve chilled for a refreshing snack High in vitamin C Ready-to-eat', 'Marketside', 'https://i5.walmartimages.com/asr/b4214c6f-5b1d-49ce-b7da-0b21f65b7153.f24396c4b39f6345c33e2db0e8f4460f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b4214c6f-5b1d-49ce-b7da-0b21f65b7153.f24396c4b39f6345c33e2db0e8f4460f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b4214c6f-5b1d-49ce-b7da-0b21f65b7153.f24396c4b39f6345c33e2db0e8f4460f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (416673056, '160pc Pto Red 3#', 694, '405671536771', 'short description is not available', '160pc Pto Red 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (416791890, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094380550', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (416805653, 'Yellow Flesh Peaches, per Pound', 1.58, '400094662243', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (416974854, 'Fresh Kiwi Puerto Rico, Each', 4.68, '405699466128', 'Kiwi, or kiwifruit, is a small fruit native to China with a unique tart-sweet flavor and a vibrant green flesh covered by a fuzzy brown skin. It is highly nutritious, packed with essential nutrients like vitamins C and E, potassium, and dietary fiber. Kiwi is often enjoyed raw, in salads, smoothies, or desserts. Its high vitamin C content surpasses the daily recommended intake, and it also contains beneficial antioxidants and serotonin.', 'The kiwi, also known as kiwifruit or Chinese gooseberry, is a small, fuzzy, brown-skinned fruit native to China but now primarily grown in New Zealand, Italy, and California. Its vibrant green flesh offers a unique tart-sweet flavor and is encased by a thin, edible skin. Kiwi is highly nutritious and is often enjoyed raw in salads, smoothies, or simply scooped straight from the skin.• Taste and Culinary Uses: Kiwi has a distinctive tart-sweet flavor, often described as a mix of strawberries, melons, and bananas. Its bright green flesh and black seeds make it visually appealing, and it can be used in salads, desserts, smoothies, or served with yogurt. Kiwi can also be used as a tenderizer for meats due to its high content of the enzyme actinidin.• Health Benefits: Kiwi is packed with essential nutrients such as vitamins C and E, potassium, and dietary fiber. It is particularly known for its high vitamin C content, with just one kiwi providing more than the daily recommended intake. Kiwi also contains antioxidants and serotonin, which can improve sleep quality.• Cultivation and Harvest: Kiwi plants are vine-grown, often requiring trellising for support. They thrive in temperate climates with plenty of sunshine and well-drained soil. Kiwi fruit is typically harvested before it is fully ripe, as it continues to ripen after being picked. The fruit is ready to eat when it yields to gentle pressure, similar to a ripe peach.', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/7015d197-f527-4e1f-93c7-fe5261625da2_1.db3520db33d6509cbf440d3f3b8a08ba.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7015d197-f527-4e1f-93c7-fe5261625da2_1.db3520db33d6509cbf440d3f3b8a08ba.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7015d197-f527-4e1f-93c7-fe5261625da2_1.db3520db33d6509cbf440d3f3b8a08ba.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (416978641, 'Organic Tuscan Kale 5oz', 2.27, '688962002241', 'Organic Tuscan Kale', 'Organic Tuscan Kale 5oz', 'Unbranded', 'https://i5.walmartimages.com/asr/29aa1d97-89d6-4abc-a655-46e176ef47d2_1.163dec358020426d69c02e0257a55b44.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/29aa1d97-89d6-4abc-a655-46e176ef47d2_1.163dec358020426d69c02e0257a55b44.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/29aa1d97-89d6-4abc-a655-46e176ef47d2_1.163dec358020426d69c02e0257a55b44.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (417074465, 'California Grown Peaches, per Pound', 1.58, '400094210338', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (417135988, 'Fresh Green Beans', 1.68, '077512040664', 'short description is not available', 'Fresh Green Beans', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/8ca64c2c-fb96-447c-8c35-3c791f4a4b7d_3.30716b9d3fce72b9a4927f672f7ba385.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ca64c2c-fb96-447c-8c35-3c791f4a4b7d_3.30716b9d3fce72b9a4927f672f7ba385.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ca64c2c-fb96-447c-8c35-3c791f4a4b7d_3.30716b9d3fce72b9a4927f672f7ba385.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (417867770, 'Gourmet Demi Long Shallots Mesh Bag, 1 Lb.', 2.47, '', 'Gourmet Demi Long Shallots Mesh Bag, 1 Lb.', 'Gourmet Demi Long Shallots 1 Lb Mesh Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/44d51be9-b2df-4d41-b7fd-95282101391b_4.586c4b8e324afb5e1d65a7a5ba8d96e3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44d51be9-b2df-4d41-b7fd-95282101391b_4.586c4b8e324afb5e1d65a7a5ba8d96e3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44d51be9-b2df-4d41-b7fd-95282101391b_4.586c4b8e324afb5e1d65a7a5ba8d96e3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (418590455, '300pc Clementine 3#', 1434, '405669143783', 'short description is not available', '300pc Clementine 3#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (419395056, 'Services Reduced Program Dept 94', 0.01, '251705000004', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (419806077, 'Yellow Flesh Peaches, per Pound', 1.58, '400094343487', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (420346289, 'Fresh Green Seedless Grapes', 2.98, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (421017933, 'Freshness Guaranteed Tropical Mixture', 5.68, '681131003612', 'short description is not available', 'Freshness Guaranteed Tropical Mixture', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (421204708, 'Yellow Flesh Peaches, per Pound', 1.58, '400094227459', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (421259493, 'Brussels Sprouts, 12 Oz.', 2.48, '605806122354', 'Brussles Sprouts, Bag 12 OZ Steams in pack. Per Serving: 35 calories; 0 g sat fat (0% DV); 20 mg sodium (1% DV); 2 g sugars; vitamin C (120% DV); vitamin K (190% DV). Find Delicious Recipes: GreenGiantFresh.com. Questions or comments? 1-800-998-9996. Follow us on: Facebook and Twitter. Facebook. Twitter. Find delicious recipes, helpful tips & more: Scan code with app; greengiantfresh.com/value-added. Product of USA. Perishable. Keep refrigerated. Microwave in Bag Directions: 1. Pierce bag with fork. 2. Place bag on microwavable plate. 3. Microwave on high for 2-3 minutes. For softer texture, add up to 1 minute. Let sit for 1 minute. Caution: Contents and bag hot! 4. Open bag, pour contents into serving dish and enjoy. Because microwaves vary, cook times are approximate. Saute Directions: 1. Cut 12 oz Brussels Sprouts in half. 2. Heat 2 tbsp olive oil in a skillet on medium-high. Add Brussels Sprouts, 1/2 tsp salt and 1/4 tsp pepper; toss to coat. 3. Pan roast for 8-10 minutes or until nicely browned and tender. 4. Serve and enjoy. Oven-Roast Directions: 1. In a bowl, toss to coat 12 oz Brussels Sprouts, halved, in 2 tbsp olive oil, 1/2 tsp salt, 1/4 tsp pepper. 2. Place on a baking sheet. 3. Roast at 400 degrees F for 25-35 minutes or until nicely browned and tender. 4. Serve and enjoy. Serving Suggestions: Roast according to recipe above adding 2 oz diced pancetta until golden brown. Sprinkle with grated parmesan cheese and serve. Shred (thinly sliced) Brussels Sprouts for a salad or slaw. Make a crunchy topping for cooked meats and side dishes. Lightly toss thinly sliced Brussels Sprouts with olive oil, a pinch of salt and pepper, or your favorite seasonings. Bake at 450 degrees F stirring often until crispy, about 10-15 minutes. 12 oz (340 g) Salinas, CA 93901 800-998-9996 2013 Growers Marketing, LLC', 'Brussels SproutsSteams in pack. Per Serving: 35 calories; 0 g sat fat (0% DV); 20 mg sodium (1% DV); 2 g sugars; vitamin C (120% DV); vitamin K (190% DV). Find Delicious Recipes: GreenGiantFresh.com. Questions or comments? 1-800-998-9996. Follow us on: Facebook and Twitter. Facebook. Twitter. Find delicious recipes, helpful tips & more: Scan code with app; greengiantfresh.com/value-added. Product of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/db46c4f4-45f3-44d0-adab-1a2f475f13bc.bd54e0f5870b1c8483dd6dcec7f211d0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/db46c4f4-45f3-44d0-adab-1a2f475f13bc.bd54e0f5870b1c8483dd6dcec7f211d0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/db46c4f4-45f3-44d0-adab-1a2f475f13bc.bd54e0f5870b1c8483dd6dcec7f211d0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (421620406, 'Fieldpack Unbranded Mini Cucumbers 16 Oz', 1.97, 'deleted_057836168350', 'short description is not available', 'Fieldpack Unbranded Mini Cucumbers 16 Oz', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (422142647, 'Fresh Marketside Organic Limes, 1 lb Bag', 2.98, 'deleted_717524510433', 'Add zest and flavor to your meals and beverages with these Marketside Organic Limes. Limes are a key ingredient in many recipes, from homemade salsa to chicken dishes. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use them when baking cakes, cookies, and tarts. These limes are sold in a one-pound bag, so you\'ll have plenty for all your culinary creations. Enjoy the refreshing, tart flavor of Marketside Organic Limes. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Fresh and juicy limes USDA organic Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies, and tarts Refreshing, tart flavor', 'Marketside', 'https://i5.walmartimages.com/asr/22e42896-bb82-4660-aebf-44f1cd17a699.f8504daafa30bc557b332dd2ac348435.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/22e42896-bb82-4660-aebf-44f1cd17a699.f8504daafa30bc557b332dd2ac348435.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/22e42896-bb82-4660-aebf-44f1cd17a699.f8504daafa30bc557b332dd2ac348435.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (422290813, 'Red Delicious Apples Bulk', 1.36, 'deleted_023157040163', 'short description is not available', 'Red Delicious Apples Bulk', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/f672c83f-f0e7-4a72-9bbf-4610f131157a_1.be773648faef50deabe98fff5de19d47.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f672c83f-f0e7-4a72-9bbf-4610f131157a_1.be773648faef50deabe98fff5de19d47.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f672c83f-f0e7-4a72-9bbf-4610f131157a_1.be773648faef50deabe98fff5de19d47.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (422540238, 'Cocktail Cucumbers', 2.48, 'deleted_699058073090', 'CuteCumber Poppers are a convenient one-bite snack that are crunchy and refreshing. These mini cocktail cucumbers are great for dipping and snacking at parties. Geared towards any age, this versatile product is ideal for kids lunches or desk snacks!', 'Cucumbers, Snack-Sized, CuteCumber Poppers The one-bite snack. No cutting or chopping required. muccifarms.com. Facebook. Twitter. Pinterest. Instagram / Muccinfarms. Product of Canada. Greenhouse grown.', 'Mucci Farms', 'https://i5.walmartimages.com/asr/abd2c2ae-5b84-4986-b780-d13bc0625c56.ed0c5744342dac4e82e7a12edc480494.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/abd2c2ae-5b84-4986-b780-d13bc0625c56.ed0c5744342dac4e82e7a12edc480494.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/abd2c2ae-5b84-4986-b780-d13bc0625c56.ed0c5744342dac4e82e7a12edc480494.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (423141841, 'Services Reduced Program Dept 94', 0.01, '251989000004', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (423321970, 'Organic Sweet Corn 2/count', 3.48, '810071020452', 'short description is not available', 'Organic Sweet Corn 2/count', 'Branche', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (423459629, 'Fresh Grown Plums', 1.98, '845792040427', 'short description is not available', 'Fresh Grown Plums', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/65b4b243-ab07-4e3d-8076-8111fad5268d.c978aa241a9b85ab53b69b9928bf96dc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/65b4b243-ab07-4e3d-8076-8111fad5268d.c978aa241a9b85ab53b69b9928bf96dc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/65b4b243-ab07-4e3d-8076-8111fad5268d.c978aa241a9b85ab53b69b9928bf96dc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (423782197, 'Fresh Red Seedless Grapes', 1.74, 'deleted_814563011270', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (423932400, 'Haralson Apples 5 Lb Bag', 4.92, '033383044316', 'short description is not available', 'Haralson Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (423948971, 'Fresh Papaya De Puerto Rico, Each', 2.98, '000000045513', 'The sweet, juicy flavor of Fresh Papaya De Puerto Rico makes them a refreshing and delicious treat. When ripe, this whole fruit has a butter-like texture with a sweet flavor like cantaloupe and can be eaten raw, without skin or seeds. Papaya can be prepared in a variety of ways; you can mix them with grapefruit and avocado for a bright summer salad, add them to a zesty salsa for some sweetness, freeze them and turn them into refreshing popsicle spears, or bake them in the oven with a melted brown sugar mixture. Pick up Fresh Papaya De Puerto Rico today and savor the delectable flavor.', 'Fresh Papaya De Puerto Rico, Each Creamy, butter-like flavor when ripe Rich in vitamins A, C, fiber, and antioxidants Fairly sweet flavor like cantaloupe and mango Great addition to smoothies, salads, salsa, and more Delicious and nutritious whole fruit', 'Hypermart', 'https://i5.walmartimages.com/asr/2b05f1c5-8e47-45e9-93ba-8267394f3cd5.3dab1a0daf11e1c714ebf3d365d813c1.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2b05f1c5-8e47-45e9-93ba-8267394f3cd5.3dab1a0daf11e1c714ebf3d365d813c1.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2b05f1c5-8e47-45e9-93ba-8267394f3cd5.3dab1a0daf11e1c714ebf3d365d813c1.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (424026006, 'Yellow Flesh Peaches, per Pound', 1.58, '400094138083', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (424154547, 'Watermelon Seeded', 8.12, 'deleted_850212002022', 'short description is not available', 'Watermelon Seeded', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (424746703, 'Freshness Guaranteed Pineapple Small', 4.67, '262818000003', 'Experience a burst of tropical flavors with these Freshness Guaranteed Pineapple Chunks. The pre-cut slices of ripe pineapple are juicy and sweet to taste and are packed in its own juice. Carry them with you and eat them straight out of the tray any time you want, at home or on-the-go. You can also use them to top desserts and ice creams, in a fruit salad or blend them with milk to make milkshakes. Pineapples are known to have a number of nutrients, and they are especially rich in vitamin C. Add some fresh fruits to your daily menu today with these Freshness Guaranteed Pineapple Chunks.Freshness Guaranteed provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Pineapple Small', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (424859894, 'Mother Earth Products Freeze Dried Corn, 1 Full Quart Mylar Bag', 14.2, '850636008570', 'Mother Earth Products Freeze Dried Super Sweet Corn: a healthy & convenient addition to every area of your life without the headache: emergency preparedness, snacking, long and short term storage, traveling, everyday cooking, hiking, backpacking, spicing up your recipes, etc. use it now or later. Mother Earth Products Freeze Dried Corn are made with real, Non-GMO Corn, no additives or preservatives, & is kosher - a guilt-free, robust food that makes eating tasty & rewarding, without the hassle of weekly trips to the store or the worry of spoiling. It?s so delicious you won?t store it away and hope you never have to use it. Taste the Goodness of Mother Earth Products', '100% sweet corn; long term storage; short term storage; pantry; portable; convenient; nothing added; emergency preparedness; great flavor; easy to cook with; can eat straight from container without reconstituting', 'Mother Earth Products', 'https://i5.walmartimages.com/asr/a5cf54cd-7b8a-48df-9a12-b7fd54c3100b.eaa96fc7247e464639824312f7049547.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a5cf54cd-7b8a-48df-9a12-b7fd54c3100b.eaa96fc7247e464639824312f7049547.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a5cf54cd-7b8a-48df-9a12-b7fd54c3100b.eaa96fc7247e464639824312f7049547.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (424866340, '200pc Pto Ykn/red 5#', 824, '405536312656', 'short description is not available', '200pc Pto Ykn/red 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (424904010, 'Sweet Tamarinds, 1 lb Package', 4.97, '037842000110', 'Sweet Tamarinds can be eaten completely raw. It has a long brown, hard shell on the outside. Inside this shell lies the fruit itself which is quite sticky and sweet. Ripened tamarinds can be used in desserts and the fruit can also be dried up in the sun and ground into a delicious spice that you can sprinkle into your food while cooking.', 'Selected and stored fresh Sourced with high quality standards Delicious on their own as a healthy snack or as part of a recipe Also known as Tamarindo and Imli around the world', 'Unbranded', 'https://i5.walmartimages.com/asr/2066f2d6-b632-477b-97cb-1054a712b50b.4b01468ce3faf911ddc2d002e98fd82b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2066f2d6-b632-477b-97cb-1054a712b50b.4b01468ce3faf911ddc2d002e98fd82b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2066f2d6-b632-477b-97cb-1054a712b50b.4b01468ce3faf911ddc2d002e98fd82b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (425018735, 'Freshness Guaranteed Sliced White Mushrooms 16oz', 3.84, 'deleted_699058820076', 'short description is not available', 'Freshness Guaranteed Sliced White Mushrooms 16oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (425185942, 'Green Bell Pepper', 0.98, 'deleted_852713002501', 'short description is not available', 'Green Bell Pepper', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (425411469, 'Microwave in Bag Red Potatoes, 1 Lb.', 2.48, 'deleted_033383004587', 'Microwave in Bag Red Potatoes, 1 Lb.', 'Microwave In Bag Red Potatoes 1 Lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/97d5db19-f91d-4fc9-920b-cdd66ddf3754.3c1dcee39214b9658a07c22c33758a8e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/97d5db19-f91d-4fc9-920b-cdd66ddf3754.3c1dcee39214b9658a07c22c33758a8e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/97d5db19-f91d-4fc9-920b-cdd66ddf3754.3c1dcee39214b9658a07c22c33758a8e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (425894904, 'Services Reduced Program Dept 94', 0.01, '251710000006', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (426845523, 'Ruby Tango Red Mandarin Oranges, 12 Oz.', 2.98, '092148142261', 'Ruby Tango Red Mandarin Oranges, 12 Oz.', 'Ruby Tango Red Mandarins 12 Oz', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (426992388, '75pc Orange Navel 8#', 597.75, '400094962336', 'short description is not available', '75pc Orange Navel 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (427058826, 'Expert Gardener 3.25 gal Avocado Live Tree', 39.97, '758333801527', '3.25G AVOCADO TREE', 'Expert Gardener 3.25 gal Avocado Live Tree Live avocado tree in a 3.25-gallon container Ideal for home gardening and landscaping Provides fresh avocados for your culinary needs Requires full sun and well-drained soil for optimal growth Suitable for indoor or outdoor planting', 'Expert Gardener', 'https://i5.walmartimages.com/asr/bc8ad615-1753-4efb-8221-ae5dc3c7f45d.806b94ca9ed1c6b82c96196a7892ed29.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc8ad615-1753-4efb-8221-ae5dc3c7f45d.806b94ca9ed1c6b82c96196a7892ed29.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc8ad615-1753-4efb-8221-ae5dc3c7f45d.806b94ca9ed1c6b82c96196a7892ed29.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (427647035, 'Fresh Organic Collard Greens, 5 oz', 2.47, '028764001705', 'Savor the goodness of nature with our Fresh Organic Collard Greens, a nutrient-rich and versatile leafy green that brings a hearty and flavorful addition to your meals. Grown without any synthetic pesticides or fertilizers, these vibrant, deep green leaves are not only delicious but also packed with essential vitamins and minerals. Perfect for braising, sautéing, or adding to soups and stews, our Fresh Organic Collard Greens offer a robust taste and tender texture that complements a wide array of dishes. Embrace the wholesomeness of our Fresh Organic Collard Greens and elevate your culinary creations with the power of nature.', 'Fieldpack Unbranded Org Collard 5oz Savor the goodness of nature with our Fresh Organic Collard Greens, a nutrient-rich and versatile leafy green that brings a hearty and flavorful addition to your meals. Grown without any synthetic pesticides or fertilizers, these vibrant, deep green leaves are not only delicious but also packed with essential vitamins and minerals. Perfect for braising, sautéing, or adding to soups and stews, our Fresh Organic Collard Greens offer a robust taste and tender texture that complements a wide array of dishes. Embrace the wholesomeness of our Fresh Organic Collard Greens and elevate your culinary creations with the power of nature.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4ac8bb86-32c0-4d19-bd9d-cd68f09faf91_1.2aee799f294a23a1a4960bc76e9c56e5.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ac8bb86-32c0-4d19-bd9d-cd68f09faf91_1.2aee799f294a23a1a4960bc76e9c56e5.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ac8bb86-32c0-4d19-bd9d-cd68f09faf91_1.2aee799f294a23a1a4960bc76e9c56e5.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (427800718, 'BELMONT: Garlic Paste, 8 fo', 11.97, '859174003795', '\" BELMONT: Garlic Paste, 8 fo \"', 'Garlic Paste Questions or Comments: 1-888-780-9290. www.belmontfoodsperu.com. Product of Peru.', 'Belmont Bruins', 'https://i5.walmartimages.com/asr/1399d865-b4a1-4d26-bfcd-e1f41b0cb171.a3decaebfc3ded27d6d0131fcd5ad0ce.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1399d865-b4a1-4d26-bfcd-e1f41b0cb171.a3decaebfc3ded27d6d0131fcd5ad0ce.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1399d865-b4a1-4d26-bfcd-e1f41b0cb171.a3decaebfc3ded27d6d0131fcd5ad0ce.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (428387648, 'Fresh Organic Plums, 2 lb Bag', 5.97, '681131161534', 'Discover the delightful sweetness of Fresh Organic Plums. Enjoy them on their own as a sweet snack or use them in a variety of recipes. For breakfast, you could slice them to put into your oatmeal or use them to make a delicious yogurt parfait. You can also use these organic plums in several baking recipes including a comforting crisp topped with ice cream, a tasty upside-down cake, or a scrumptious tart. You can even use them to make a jam or a smooth sorbet. However you choose to use them, their sweet flavor will bring a smile to everyone\'s face. Treat the family to the irresistible taste of Fresh Organic Plums.', 'Fresh Organic Plums, 2 lb Bag Sweet and juicy organic plums Enjoy on their own as a satisfying snack Use in a variety of baking recipes Make a tasty jam or a smooth sorbet Ideal snack to take to work or on a road trip No GMO ingredients No prohibited synthetic ingredients No prohibited chemical pesticides', 'Fresh Produce', 'https://i5.walmartimages.com/asr/68381398-a29e-47e7-bfa7-f6f7175e9d84.0a0467f436aedbae0665d2a145e7a875.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68381398-a29e-47e7-bfa7-f6f7175e9d84.0a0467f436aedbae0665d2a145e7a875.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68381398-a29e-47e7-bfa7-f6f7175e9d84.0a0467f436aedbae0665d2a145e7a875.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (428847289, 'Yellow Flesh Peaches, per Pound', 1.58, '400094987599', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (428961530, 'Gills Onions Gills Celery & Onions, 7 oz', 2.88, '643550000429', 'Celery & Onions, Fresh Diced 7 oz (198 g) 7 oz. stuffing mix. Quality. Convenience. Grower Direct. Product of USA. Keep refrigerated. 7 oz (198 g) Oxnard, CA 93030', 'Celery & Onions, Fresh Diced 7 oz. stuffing mix. Quality. Convenience. Grower Direct. Product of USA.', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (429124591, 'Fresh Black Seedless Grapes', 2.78, 'deleted_000000034975', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (429881625, 'Carbsmart Yellow Potatoes, 5 Lb.', 3.88, '605806003790', 'Carbsmart Yellow Potatoes, 5 Lb.', 'Carbsmart Yellow Potatoes 5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (430493004, '52lb Apple Sugarbee', 118.04, '405877046760', 'short description is not available', '52lb Apple Sugarbee', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (430797610, 'Ciruelas 2#', 5.37, '881006023107', 'short description is not available', 'Ciruelas 2#', 'Unbranded', 'https://i5.walmartimages.com/asr/0a5dffd1-b77e-49e3-8ee6-ebc37c949452.f3202fa20364886dfa607ce9223cfb47.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a5dffd1-b77e-49e3-8ee6-ebc37c949452.f3202fa20364886dfa607ce9223cfb47.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a5dffd1-b77e-49e3-8ee6-ebc37c949452.f3202fa20364886dfa607ce9223cfb47.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (430906516, 'Robinson Fresh Anaheim Peppers, 1 Pound Bag', 2.68, '883616005054', 'Discover the Anaheim pepper, a culinary delight! With its narrow, round-tipped shape and vibrant pale to glossy green color, this pepper measures approximately 6-8 inches in length. Named after its birthplace, Anaheim, California, it is cherished for its sweet and mild flavor. Elevate your dishes with the irresistible taste of the Anaheim pepper - a true culinary gem. Find this Whole and Fresh pepper at Walmart.', 'Anaheim’s may be used as a slightly hotter pepper substitute for bell peppers. > For a more mild, smoky flavor, roast before using. For a fresh, hot flavor, consume raw. If used in Latin American recipes, pair with cilantro, lime, mole sauce, beans, tomatillos and tomatoes. For Asian dishes, pair with coconut milk, fish sauce, ginger, limes, peanuts, sesame oil and soy sauce. To store, refrigerate in its original packaging for up to one week. Wash well before using. Peppers are a great way to add flavor into one\'s diet and lessen the need to add salt. Anaheim’s may be used as a slightly hotter pepper substitute for bell peppers. > For a more mild, smoky flavor, roast before using. For a fresh, hot flavor, consume raw. If used in Latin American recipes, pair with cilantro, lime, mole sauce, beans, tomatillos and tomatoes. For Asian dishes, pair with coconut milk, fish sauce, ginger, limes, peanuts, sesame oil and soy sauce. To store, refrigerate in its original packaging for up to one week. Wash well before using. Enjoy the crisp fresh flavor. Wash before eating', 'Robinson Fresh', 'https://i5.walmartimages.com/asr/12beb1a4-4e51-49b2-a646-ab31e9370691.3a8257fe3a3f62914e2b5df63d313a52.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/12beb1a4-4e51-49b2-a646-ab31e9370691.3a8257fe3a3f62914e2b5df63d313a52.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/12beb1a4-4e51-49b2-a646-ab31e9370691.3a8257fe3a3f62914e2b5df63d313a52.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (431005487, 'Freshness Guaranteed Granny Smith Apples 3 Lb Bag', 4.12, 'deleted_847081000280', 'short description is not available', 'Freshness Guaranteed Granny Smith Apples 3 Lb Bag', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (431691571, 'Aprium, 1.5 lb Carton', 5.38, '847081000419', 'Any fan of plums or apricots should experience the hybrid taste of Apriums. Combining all your favorite parts of an apricot with a healthy touch of plum, apriums are small and juicy with a velvety exterior, firm texture, and sweet taste that makes them excellent for creating a variety of homemade goods. Chutneys, desserts, and fruity garnishes are all perfect recipes to test out the aprium\'s unique flavor profile, and you can simply swap them for apricots in any of your current favorites. For a quick snack on the go, apriums are also enjoyable when eaten raw, just like any apricot or plum. Expand your stone fruit experience and be sure to try out Apriums.', 'Apriums, 1.5 lbs, 9 Count: 9-pack of fresh apriums Hybrid stone fruit created from a mixture of apricots and plums Firm texture with smooth skin and slight fuzz Sweet taste Can be substituted in recipes in the place of apricots Enjoyable in homemade bakes or when eaten raw', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6f47b32f-e4f8-4f49-823a-be261b540d7d.61ee9f038b819d848a9cbf5af23fa022.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6f47b32f-e4f8-4f49-823a-be261b540d7d.61ee9f038b819d848a9cbf5af23fa022.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6f47b32f-e4f8-4f49-823a-be261b540d7d.61ee9f038b819d848a9cbf5af23fa022.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (431817661, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '405519740056', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (431946908, 'Lady Alice Fresh Apples, Each', 2.97, '804305036043', 'Lady Alice Apples are a premium variety of fresh apples known for their sweet and tangy flavor. These apples are firm and juicy with a unique texture that is perfect for snacking, baking, and cooking. They have a beautiful deep red color with yellow speckles that make them an elegant choice for fruit bowls and centerpieces. Lady Alice Apples are available seasonally and make a great addition to any fall recipe or festive occasion. Order now to enjoy the delicious taste of this exquisite fruit.', 'Lady Alice Apples are a premium apple variety known for their unique flavor, firm texture, and beautiful appearance. Each apple is medium to large in size, with a round shape and a striking orange-red color that fades into yellow-green at the stem. The flesh of the Lady Alice apple is firm and crisp, with a juicy and sweet flavor that has notes of honey and vanilla. This apple variety is perfect for snacking, but also holds up well in cooking and baking, maintaining its shape and flavor. Lady Alice Apples are a good source of fiber, vitamin C, and antioxidants, and can be enjoyed as a healthy and flavorful addition to any meal. With their distinctive taste and appearance, Lady Alice apples are a premium choice for apple lovers and foodies alike.', 'Lady Alice', 'https://i5.walmartimages.com/asr/7a837d0e-c919-42d4-a8a4-ce24412eff56.5f1b91e333e15f50cfc86bd6da505af9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7a837d0e-c919-42d4-a8a4-ce24412eff56.5f1b91e333e15f50cfc86bd6da505af9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7a837d0e-c919-42d4-a8a4-ce24412eff56.5f1b91e333e15f50cfc86bd6da505af9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (432303686, '120pc Apple Gala 5#', 600, '405539759410', 'short description is not available', '120pc Apl Gala 5# Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (432310290, '54lb Apl Kanzi Bulk', 79.38, '405787526215', 'short description is not available', '54lb Apl Kanzi Bulk', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (432797637, 'Yukon Potatoes, 5 Lb.', 3.96, 'deleted_882645010008', 'Yukon Potatoes, 5 Lb.', 'Yukon Potatoes 5 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (433001810, 'Grapefruit Gift Carton', 9.88, '852453002328', 'short description is not available', 'Grapefruit Gift Carton', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (433450924, 'Fresh Gala Apples, 3 lb. Bag', 3.97, '855857005179', 'Savor the sweet taste of Gala Apples. Gala apples are sweet and mild with a subtle floral aroma making them perfect for breakfast, lunch, dinner, and dessert. Perfect for snacking, they have a creamy white flesh with low acidity. Chop the apples up and add them to a salad with walnut, mixed greens, and a poppy seed vinaigrette for a crunchy delicious salad that you can enjoy for lunch or dinner. Add it to your favorite smoothie or juice blend for a morning pick me up to get your day started right. Serve with a dollop of peanut butter and enjoy as a healthy snack that both kids and adults will love. Enjoy the delicious taste of Gala Apples.', 'Sweet and mild with a subtle floral aroma Perfect for breakfast, lunch, dinner, and dessert Chop them up and add to a salad, add them to a smoothie or juice blend, or serve with peanut butter Perfect for snacking They have a creamy white flesh with low acidity', 'Unbranded', 'https://i5.walmartimages.com/asr/af429a77-d9b3-492c-bdce-a37a1352127d.cb79424e07c374f20a2a09991c28b4bd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af429a77-d9b3-492c-bdce-a37a1352127d.cb79424e07c374f20a2a09991c28b4bd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af429a77-d9b3-492c-bdce-a37a1352127d.cb79424e07c374f20a2a09991c28b4bd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (433455201, 'Freshness Guaranteed Fresh Green Seedless Grapes', 2.2, '', 'short description is not available', 'Freshness Guaranteed Fresh Green Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (433865151, 'Navel Oranges, 3 lb Bag', 3.94, 'deleted_033383110011', 'Fresh Oranges are a good addition to a healthy diet along with other fruit. They\'re oval with thick, easy-to-remove peel and segments that separate cleanly. Oranges are a fruit that contains vitamin C and other nutrients that can be eaten as is or juiced for a smooth beverage at breakfast. It is suitable for use in all kinds of sweet and savory dishes, from cakes to weeknight chicken dinners. Citric acid fruits like oranges can be stored at room temperature for several days or in the refrigerator for up to two weeks. Available in a 4 lb package.', 'Oranges, 4 lb: A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/fc1cfe6a-5af9-475b-8e91-069089a6deef_1.09eeca82e9774dd2cde2f764ccd30d35.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fc1cfe6a-5af9-475b-8e91-069089a6deef_1.09eeca82e9774dd2cde2f764ccd30d35.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fc1cfe6a-5af9-475b-8e91-069089a6deef_1.09eeca82e9774dd2cde2f764ccd30d35.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (434197061, '160pc On Vid 4# Cci', 656, '405512873461', 'short description is not available', '160pc On Vid 4# Cci', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (434942988, '180pc Apple Pink 3#', 714.6, '405739090634', 'short description is not available', '180pc Apple Pink 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (435135877, 'Freshness Guaranteed Fresh Green Seedless Grapes', 2.08, 'deleted_855625004014', 'short description is not available', 'Freshness Guaranteed Fresh Green Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (435224016, 'Fresh Cherry on the Vine Tomato, 12 oz Package', 3.98, 'deleted_684924011290', 'Fresh Cherry on the Vine Tomatoes are the perfect cooking tomato. Because of their notable flavor and thicker skin, they are a versatile tomato option that\'s fit for grilling, sauteing, roasting, or baking. Their small size also makes them a quick and simple addition to a fresh salad as well as an excellent finger food for whenever you\'re in the mood for a light snack. Packed with nutrients, cherry on the vine tomatoes are a deliciously healthy ingredient that adds both vibrant color and mouthwatering flavor to any recipe. For the best flavor and freshness, store these tomatoes at room temperature on your kitchen counter. Make your next meal a marvelous one with Cherry on the vine Tomatoes from Walmart.', 'Cherry on the Vine Tomato, 12 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/58f7fda5-2b5f-4b97-8ebb-30cf97ee6cf9.f29785bf74753d7ebddfe7b674383158.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58f7fda5-2b5f-4b97-8ebb-30cf97ee6cf9.f29785bf74753d7ebddfe7b674383158.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58f7fda5-2b5f-4b97-8ebb-30cf97ee6cf9.f29785bf74753d7ebddfe7b674383158.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (435230929, '24oz Cut Watermelon', 3.88, '400094910924', 'short description is not available', '24oz Cut Watermelon', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (435383167, 'Tri Pepper Diced 7oz', 2.58, '030223023227', 'short description is not available', 'Tri Pepper Diced 7oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (435493842, 'Fresh Green Seedless Grapes', 1.78, 'deleted_816426013636', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (435615245, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094274606', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (435804145, 'Watermelon Seedless', 4.98, '400094575932', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (436044616, 'Fresh Washington Skylar Rae Cherries', 5.98, '847473007507', 'short description is not available', 'Fresh Washington Skylar Rae Cherries', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (436273424, 'Red Globe Seeded Grapes, Bag', 22, '', 'short description is not available', 'Red Globe Seeded Grapes, Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (436668745, 'Pineapple 12 Oz', 3.24, '717524513656', 'short description is not available', 'Pineapple 12 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (436975604, 'Fresh Organic Cranberries, 12 oz', 2.76, '071207000025', 'Fresh Organic Cranberries, 12 oz', 'Fresh Organic Cranberries, 12 oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a73bc0c6-aa53-4b69-bf19-5f85839b5fed.492a04229ba4448ae3173712f0462ebd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a73bc0c6-aa53-4b69-bf19-5f85839b5fed.492a04229ba4448ae3173712f0462ebd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a73bc0c6-aa53-4b69-bf19-5f85839b5fed.492a04229ba4448ae3173712f0462ebd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (437207793, '100pc Pto Russet 10#', 494, '405862216024', 'short description is not available', '100pc Pto Russet 10#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (437223400, 'Ready Pac Costa Brava Salad Blend, 7 Oz.', 3.74, '400094556382', 'Ready Pac Costa Brava Salad Blend, 7 Oz.', 'Ready Pac Costa Brava Salad Blend 7 Oz', 'Ready Pac Foods', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (437337866, 'Ogp Red Cherry Samples', 0.01, '405836139328', 'short description is not available', 'Ogp Red Cherry Samples', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (437442565, 'Earthbound Farms Fresh Organic Cauliflower Florets, 9 oz, Fresh', 3.98, '032601952792', 'Enjoy Organic Cauliflower Florets from Earthbound Farms -- versatile, healthy, and satisfyingly crunchy. Pre-washed, cut, and ready to serve or eat, these packaged veggies can be enjoyed right out of the package with a nice dip or be added to your favorite recipe. This nine-ounce package of Earthbound Farms Organic Cauliflower Florets contains about three servings. With only 25 calories and loads of nutrients per one cup serving, you can have a healthy side dish on the table in no time. Each serving gives you six percent of your daily recommended intake of potassium, and they even have two grams of protein and two grams of fiber! To serve these Organic Cauliflower Florets from Earthbound Farms, simply place them raw on a vegetable tray with assorted fresh vegetables and your favorite dip. They look great next to carrots, red pepper, and broccoli. To cook cauliflower, try roasting them on a sheet pan with other firm vegetables like sweet potato, carrots, mushrooms, and broccoli. Simply toss them with olive oil or coconut oil first, then roast for about 20 minutes at 400 to 425 degrees.', 'Earthbound Farms Fresh Organic Cauliflower Florets are versatile, healthy, and satisfyingly crunchy Ready to eat on the go Fresh organic snack Recipe-ready vegetables Washed and ready to enjoy 9-ounce package has about 3 servings', 'Earthbound Farm', 'https://i5.walmartimages.com/asr/5496099c-2115-474a-89dd-f3035cb8c020.8d16b16d5c69a6abbd8496165177fa90.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5496099c-2115-474a-89dd-f3035cb8c020.8d16b16d5c69a6abbd8496165177fa90.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5496099c-2115-474a-89dd-f3035cb8c020.8d16b16d5c69a6abbd8496165177fa90.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (437666389, 'Snack Fresh Orange Wedges 4.7 Oz', 0.98, '074641010131', 'short description is not available', 'Snack Fresh Orange Wedges 4.7 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (437708856, 'Vegetable Tray with Meat And Cheese 35 oz, Fresh', 11.97, '709351302787', 'The PRODUCE UNBRANDED Vegetable Tray with Meat and Cheese is a versatile and delicious option for those looking for a convenient and healthy appetizer or snack. This 35 oz. (2.19 lbs) tray offers an assortment of fresh vegetables, meats, and cheeses to cater to a range of tastes and preferences. The Vegetable Tray with Meat and Cheese is perfect for parties, picnics, or as a quick and healthy snack for the whole family. To maintain the freshness and quality of the ingredients, store the tray in the refrigerator and consume within a few days of purchase. Once opened, it is best to cover the tray with plastic wrap or transfer the remaining items to an airtight container to keep them fresh.', 'Vegetable Tray With Meat And Cheese 35oz The Vegetable Plastic Tray with Meat and Cheese is perfect for parties, picnics, or as a quick and healthy snack for the whole family. To maintain the freshness and quality of the ingredients, store the tray in the refrigerator and consume within a few days of purchase. Once opened, it is best to cover the tray with plastic wrap or transfer the remaining items to an airtight container to keep them fresh.', 'Unbranded', 'https://i5.walmartimages.com/asr/f2a02344-708b-4b63-b72c-ac363d3ffe16_3.172bd0ab1da3f6b5312b42384251e32a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f2a02344-708b-4b63-b72c-ac363d3ffe16_3.172bd0ab1da3f6b5312b42384251e32a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f2a02344-708b-4b63-b72c-ac363d3ffe16_3.172bd0ab1da3f6b5312b42384251e32a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (437884243, 'Navel Oranges, 4 lb Bag', 4.96, 'deleted_845963016268', 'Fresh Oranges are a good addition to a healthy diet along with other fruit. They\'re oval with thick, easy-to-remove peel and segments that separate cleanly. Oranges are a fruit that contains vitamin C and other nutrients that can be eaten as is or juiced for a smooth beverage at breakfast. It is suitable for use in all kinds of sweet and savory dishes, from cakes to weeknight chicken dinners. Citric acid fruits like oranges can be stored at room temperature for several days or in the refrigerator for up to two weeks. Available in a 4 lb package.', 'Oranges, 4 lb: A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/5fa99ca0-ae7b-4030-ae4e-8ac4e1621eb3_1.d784bf085b7b2b98c065fded42d727f1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5fa99ca0-ae7b-4030-ae4e-8ac4e1621eb3_1.d784bf085b7b2b98c065fded42d727f1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5fa99ca0-ae7b-4030-ae4e-8ac4e1621eb3_1.d784bf085b7b2b98c065fded42d727f1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (437958795, 'Fresh Jammers Thomcord Grapes, Bag', 2.98, '799424381009', 'Concord grapes have a jammy aroma and punchy flavor with a mild, sweet taste. Concord grapes are especially beautiful and dramatic-looking with their powdery royal-blue coloring.', 'Fresh Jammers Thomcord Grapes, Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (438578009, 'Coleslaw, 16 Oz.', 1.77, '400094397275', 'Coleslaw, 16 Oz.', 'Coleslaw', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (438635115, 'Fresh Red Seedless Grapes', 1.98, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (439015220, 'Freshness Guaranteed Sliced Portabella Mushroom Caps 6oz', 3.14, 'deleted_699058820137', 'short description is not available', 'Freshness Guaranteed Sliced Portabella Mushroom Caps 6oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (439401504, 'Organic Micro Arugula', 1.98, '768573417556', 'You’ll love this leafy green for its spicy and peppery bite! Microgreens are baby greens only 7-14 days old. Why do we harvest them so young? When they are harvested that young, all of the flavor potential of that plant is condensed into the young microgreen. This means you get a TON of flavor in the smallest tiny green! Talk about bang for your buck!', 'Organic Micro Arugula', 'Fresh Produce', 'https://i5.walmartimages.com/asr/68a3a815-9107-45f7-b526-cbaf6605ddca_2.a427ea017a809781d085e623f03a9731.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68a3a815-9107-45f7-b526-cbaf6605ddca_2.a427ea017a809781d085e623f03a9731.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68a3a815-9107-45f7-b526-cbaf6605ddca_2.a427ea017a809781d085e623f03a9731.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (439930244, 'Fresh California Grown Nectarines, 1 Lb.', 1.78, 'deleted_400094220481', 'Fresh California Grown Nectarines, 1 Lb.', 'Fresh California Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (440599899, 'Deser Pride Watermelon', 3.97, '817050014372', 'short description is not available', 'Deser Pride Watermelon', 'Deser Pride', 'https://i5.walmartimages.com/asr/8ccc32bf-c3e2-46c8-83e7-428c3c7f4114.f5e95016450bfdc2cd3c51fc422c711e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ccc32bf-c3e2-46c8-83e7-428c3c7f4114.f5e95016450bfdc2cd3c51fc422c711e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ccc32bf-c3e2-46c8-83e7-428c3c7f4114.f5e95016450bfdc2cd3c51fc422c711e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (440660197, 'Sweet Potatoes 5 Lb Bag', 5.98, '', 'short description is not available', 'Sweet Potatoes 5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (440731033, 'Mann\'s Family Favorites Snow Peas', 2.47, '045388512400', 'Mann\'s® Family Favorites Snow Peas.Three generations, EST. 1939.This delicious, snackable treat comes washed and ready to eat! Keep refrigerated.Washed and ready to eat.Perishable.', 'Snow Peas Fresh. Steams in pack. Per Serving: 35 calories; 0 g sat fat (0% DV); 0 mg sodium (0% DV); 3 g sugars; vitamin C (90% DV); vitamin K (25% DV). Questions or Comments? 1-800-998-9996. Follow Us On: Facebook and Twitter. Product of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8e1c3a44-0940-474f-bcec-a20cfdea858e.882b9448457bda75e1ca2052ef2b3cec.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8e1c3a44-0940-474f-bcec-a20cfdea858e.882b9448457bda75e1ca2052ef2b3cec.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8e1c3a44-0940-474f-bcec-a20cfdea858e.882b9448457bda75e1ca2052ef2b3cec.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (440891999, 'Large Avocado 4 Count Bag', 4.48, 'deleted_845857001066', 'short description is not available', 'Large Avocado 4 Count Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (441248059, '125pc Pto Rst Jmb 8#', 802.5, '405518966884', 'short description is not available', '125pc Pto Rst Jmb 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (441516239, 'Butter Lettuce, each', 2.94, '865755000213', 'Butter lettuce, with its tender texture and vibrant green or rich reddish-purple hue, is a versatile addition to your culinary creations. Its scrumptious leaves are perfect for crafting delicate lettuce wraps, refreshing salads, or adding a layer of crispness to sandwiches. Elevate your meals with the delightful taste of butter lettuce and enjoy a healthy and visually stunning ingredient in your dishes.', 'Explora Greens Butter Lettuce EXCELLENT SOURCE OF VITAMIN K GOOD SOURCE OF FOLATE AND VITAMIN A LUTEIN AND ZEAXANTHIN', 'Explora Greens', 'https://i5.walmartimages.com/asr/39d236dd-2db6-43f7-a7d3-2dd44f5adafa.783a95e64a8466cbb438cbf6cef047d6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39d236dd-2db6-43f7-a7d3-2dd44f5adafa.783a95e64a8466cbb438cbf6cef047d6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39d236dd-2db6-43f7-a7d3-2dd44f5adafa.783a95e64a8466cbb438cbf6cef047d6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (442067920, 'Fresh Roma Tomato, 2 lb Bag', 1.28, '086009105205', 'With Roma Tomatoes, it\'s easy to make a wholesome, delicious meal. Roma tomatoes are an ideal ingredient for whipping up a variety of wonderful dishes. You can use them to create a zesty tomato sauce for stirring into a homemade pasta dish, crush them up to make a delightful Roma tomato bruschetta, or simply enjoy them on their own as a nutritious snack or as a party platter option for dipping in your favorite vegetable dipping sauce. If you\'re feeling a classic tomato dish, Roma tomatoes can even lend themselves in making a comforting and appetizing tomato soup or a flavorful salsa. No matter how you choose to use them, these tomatoes will add stunning flavor to any meal. Just find the recipe and experience the tasty results for yourself! Elevate your recipes and add fresh Roma Tomatoes to your Walmart produce purchase today.', 'Roma Tomatoes, 2 lb Bag: Wholesome and delicious Ideal ingredient for a variety of dishes Flavor in each bite Perfect for making zesty tomato sauces Enjoyable as a nutritious snack Excellent for homemade salsa', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2f860752-38f8-43a5-96b7-afda3b890630.59821395b55a4259f90cc71edfa15258.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f860752-38f8-43a5-96b7-afda3b890630.59821395b55a4259f90cc71edfa15258.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f860752-38f8-43a5-96b7-afda3b890630.59821395b55a4259f90cc71edfa15258.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (442907373, 'Fresh Mandarin, 2lb', 4.88, 'deleted_096704001412', 'Sweet, seedless and easy to peel. Mandarins are the coveted leader of the citrus category high in Vitamin C, and an immunity boosting superfood.', 'High in Vitamin C Immunity Boosting System Sweet and Seedless Easy to peel', 'Fresh Produce', 'https://i5.walmartimages.com/asr/902bc979-ecc0-4f60-a0a1-6ae0261ae72f.35376657f9a2746540c9b6ad2ec84bfb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/902bc979-ecc0-4f60-a0a1-6ae0261ae72f.35376657f9a2746540c9b6ad2ec84bfb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/902bc979-ecc0-4f60-a0a1-6ae0261ae72f.35376657f9a2746540c9b6ad2ec84bfb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (443695685, 'Fresh Feijoas - Sweet Tropical Fruits', 1.5, '000000042659', 'Feijoas, or pineapple guavas, are fresh fruits with a sweet, tangy flavor profile reminiscent of pineapple, guava, and mint. As fresh fruits, they can be enjoyed directly or incorporated into a variety of culinary creations like smoothies, desserts, and chutneys. Grown in South America\'s tropical climate, these fruits are not just delicious but also high in vitamin C and fiber. Their jelly-like center adds a unique texture, making them a tasty and nutritious addition to any meal or snack.', 'Fresh fruit known as Feijoas or pineapple guavas. Sweet, tangy flavor with hints of pineapple, guava, and mint. High in vitamin C and dietary fiber. Perfect for fresh eating, smoothies, baking, and making chutneys. Grown in tropical climates of South America. Notable for their jelly-like center and fragrant aroma.', 'Hypermart', 'https://i5.walmartimages.com/asr/c8141e4b-6adf-4051-9c69-6f652dffbb7b.c25e60a929a74812e66604e7fb0e3184.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8141e4b-6adf-4051-9c69-6f652dffbb7b.c25e60a929a74812e66604e7fb0e3184.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8141e4b-6adf-4051-9c69-6f652dffbb7b.c25e60a929a74812e66604e7fb0e3184.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (443840508, 'Fresh Pineberries, 10 oz Container', 4.72, '769197000094', 'The sweet, juicy flavor of Fresh Pineberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. These juicy berries have a tropical pineapple flavor with the texture and feel of strawberries making them an irresistible treat. Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful salad, or puree them to make a delicious cocktail. They contain essential vitamins and nutrients like vitamin C and dietary fiber, making them perfect for a healthy diet. Prior to serving simply gently wash them and remove the leafy caps, then enjoy the fresh taste. Refrigerate the berries in original clam shell tray to keep them fresh and ready for use. Pick up Fresh Pineberries today and savor the delectable flavor.', 'Fresh Pineberries, 10 oz Light, refreshing pineapple taste Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail Prior to serving gently wash them and remove leafy cap Refrigerate your strawberries in the original clam shell container to maintain freshness Keep dry for optimal freshness', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3734fbb9-ba73-40a0-82f0-1e87b883e489.33d535fdf245abdf14bbc31347b64ed7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3734fbb9-ba73-40a0-82f0-1e87b883e489.33d535fdf245abdf14bbc31347b64ed7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3734fbb9-ba73-40a0-82f0-1e87b883e489.33d535fdf245abdf14bbc31347b64ed7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (443892488, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_400094718506', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (444522162, 'Yellow Flesh Peaches, per Pound', 1.58, '405528783952', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (445255635, 'Welch\'s Bi-Color Fresh Seedless Grapes, 2 lb Package', 6.97, '095829210198', 'Treat yourself to the delicious, juicy flavor of Fresh Bicolor Grapes. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the fresh taste of Fresh Red Seedless Grapes.', 'Fresh Bicolor Grapes Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/53cd4e2b-8636-48c5-8466-b248c3042f58.41044e74e6bc2553e4cde6f1ed9614c1.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/53cd4e2b-8636-48c5-8466-b248c3042f58.41044e74e6bc2553e4cde6f1ed9614c1.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/53cd4e2b-8636-48c5-8466-b248c3042f58.41044e74e6bc2553e4cde6f1ed9614c1.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (445368978, 'Gourmet Demi Long Shallots 1 Lb Mesh Bag', 2.47, '', 'short description is not available', 'Gourmet Demi Long Shallots 1 Lb Mesh Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (445516436, '(4 pack) (4 Pack) Gefen Organic Vacuum Pack Beets, 17.6 Oz', 29.56, '710069011014', 'Salad ready', 'Gefen Organic Vacuum Pack Beets, 17.6 Oz', 'Gefen', 'https://i5.walmartimages.com/asr/0a9405f5-63eb-4849-9de2-debcc156ac9f_1.c00291e6af5df99f138f828e0ef756a8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a9405f5-63eb-4849-9de2-debcc156ac9f_1.c00291e6af5df99f138f828e0ef756a8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a9405f5-63eb-4849-9de2-debcc156ac9f_1.c00291e6af5df99f138f828e0ef756a8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (445641092, 'Fieldpack Unbranded Fresh Strawberries 2#', 5.86, 'deleted_066022003634', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 2#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/19e5eec4-4ff0-4dc6-97d0-ae0d16d8f2b1.a0b683f83258e19335d29f622b44b8c3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19e5eec4-4ff0-4dc6-97d0-ae0d16d8f2b1.a0b683f83258e19335d29f622b44b8c3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19e5eec4-4ff0-4dc6-97d0-ae0d16d8f2b1.a0b683f83258e19335d29f622b44b8c3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (445780415, 'Chopped Green Onions', 2.88, 'deleted_705393300200', 'short description is not available', 'Chopped Green Onions', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (445940901, '1# Bag Keylimes', 2.98, 'deleted_095829600555', 'short description is not available', '1# Bag Keylimes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (446115932, 'Homeboy Hatch Chile Guacamole', 3.34, '855420002635', 'Homeboy provides much more than flavor for your chips. It fuels transformation for thousands of former gang members on a journey to recovery through Homeboy Industries.Father Greg Boyle, \"G\", founded Homeboy Industries 27 years ago to provide hope, training, and support to formerly gang-involved and recently incarcerated men and women, allowing them to redirect their lives and become contribution members of our community. With every purchase you join a virtuous circle helping men and women develop the strength and skills to change for the better. We heal families. We create thriving communities. We provide the Strength to Change. Thank you for being a part of the Strength to Change at Homeboy Industries. Enjoy our Homeboy Hatch Chilies Guacamole!', 'Homeboy Hatch Chile Guacamole,', 'Homeboy', 'https://i5.walmartimages.com/asr/894a35d5-70e7-470b-ac4e-84215d48abd8_4.b42f3116ade51d9ae9b1c12174a6de1f.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/894a35d5-70e7-470b-ac4e-84215d48abd8_4.b42f3116ade51d9ae9b1c12174a6de1f.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/894a35d5-70e7-470b-ac4e-84215d48abd8_4.b42f3116ade51d9ae9b1c12174a6de1f.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (446441158, 'Small Bagged Oranges', 3.98, 'deleted_725422110501', 'short description is not available', 'Small Bagged Oranges', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (446628572, 'Lupitas Tamarindo 7oz', 7.11, '788269098531', 'Tamarind', 'Lupitas Tamarindo 7oz', 'Lupitas', 'https://i5.walmartimages.com/asr/0ac473d6-77c7-45cd-b62e-a74c900dc01c.bb399b0f2411895ce266126f2ce5dc6b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ac473d6-77c7-45cd-b62e-a74c900dc01c.bb399b0f2411895ce266126f2ce5dc6b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ac473d6-77c7-45cd-b62e-a74c900dc01c.bb399b0f2411895ce266126f2ce5dc6b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (446747641, 'Cabo Fresh Squeeze Mild Guacamole, 12oz', 7.67, '811892028801', 'Cabo Fresh Guacamole avocado are made with the highest standards of excellence. Stays green for up to 14 days with our airlock technology. Squeeze fresh guacamole on your favorite nachos, quesadillas, tacos and more. Yucatan guacamole is chunky, chip-breaking guacamole made with 95% avocado. Simply put, we’re the best tasting, most authentic guacamole you can buy.', 'Guacamole Squeeze, 12 oz Pouch Squeeze it on a burger, sandwich, or toast, or swap it for mayo in an upgraded version of chicken salad. A bold new way to enjoy your guac! Avocados are 100% non-GMO;', 'Cabo Fresh', 'https://i5.walmartimages.com/asr/3faf19a7-0942-4454-864d-2ada2ada409f_4.9ca443592cb63f89b2a225bba1059284.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3faf19a7-0942-4454-864d-2ada2ada409f_4.9ca443592cb63f89b2a225bba1059284.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3faf19a7-0942-4454-864d-2ada2ada409f_4.9ca443592cb63f89b2a225bba1059284.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (446897881, 'Red Potatoes 5 Lb Bag', 5.77, 'deleted_826088510114', 'short description is not available', 'Red Potatoes 5 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (446914379, 'Fresh Green Seedless Grapes, 2 Lb', 5.47, 'deleted_885282001958', 'short description is not available', 'Fresh Green Seedless Grapes, 2 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (447001384, 'Avo Mex HA LB 9/4 36 1', 3.48, 'deleted_887214000213', 'Bag of 4 Avocados', 'Large Avocado 4 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (447093133, 'Cupid Grape Hybrid Tomato Plant - 3.5\" Pot - Beats Other Grape Tomatoes in Taste - Indoors/Out', 4.99, '811332037370', 'TOMATO: Tomatoes are rich in vitamins and antioxidants, and the seeds are high in fiber. The green parts are mildly poisonous, which is not surprising, as tomatoes are closely related to both nightshade and tobacco. The tomato was originally believed to be poisonous when introduced into Europe, and was used solely as an ornamental plant during the 16th and 17th centuries. The first traces of its use as a food date back to the first half of the 18th century. Tomatoes are now a tasty ingredient in many dishes, and are used fresh, canned, stewed or even sun-dried. Tip-top tomato taste! Our exclusive grape tomato sets a high standard. Consistently the top choice in our summer taste tests, ‘Cupid\' maintains a higher sugar content than any other grape tomato—and the sweetness doesn\'t fade in late summer. The elongated, shiny red 1\" globes produce in abundance on the vigorous vines. One of the best tomatoes to grow indoors in a sunny window.', '1 ounce fruit. Midseason High sugar content Indeterminate- Grow indoors or out Easy to grow. Very productive.', 'Hirt\'s Gardens', 'https://i5.walmartimages.com/asr/ea0d66f9-8d0b-4d3d-b039-73fdac800662_1.5175d2155acbd5fd9bee6671d80890ae.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea0d66f9-8d0b-4d3d-b039-73fdac800662_1.5175d2155acbd5fd9bee6671d80890ae.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea0d66f9-8d0b-4d3d-b039-73fdac800662_1.5175d2155acbd5fd9bee6671d80890ae.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (447097252, 'Sweet Potatoes, 5 lb, Bag', 4.48, '617620000114', 'These versatile vegetables can be used to make savory sides or sweet treats. Try them roasted, baked, or grilled for a tasty addition to any dish or try them in a traditional sweet potato pie for a sweet dessert. The mouthwatering possibilities are endless with this hearty vegetable. Add something amazing to your meals with sweet potatoes!', 'Sweet Potatoes 5 lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8933bd9d-2b42-4ec1-ac71-b19adb06b70f.c15c7aa37ba358dc3951cdd13016a888.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8933bd9d-2b42-4ec1-ac71-b19adb06b70f.c15c7aa37ba358dc3951cdd13016a888.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8933bd9d-2b42-4ec1-ac71-b19adb06b70f.c15c7aa37ba358dc3951cdd13016a888.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (447146911, 'Yellow Grape Tomato, 10 oz Package', 4.28, 'deleted_689259000483', 'A unique spin on the time-tested grape tomato, these colorful cousins of the grape tomato boast unique citrusy, floral notes. Refreshingly vibrant and versatile, you can enjoy it for snacking, salads, grilling, roasting or sautéing. Try this tomato roasted in a chunky sauce, grilled on kabobs, or chopped into a zesty salsa.', 'Orange Grape Tomatoes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (447446580, 'Fresh Organic Mini Cucumbers', 2.98, 'deleted_816426013131', 'Enjoy the crisp, delicious flavor of Fresh Organic Mini Cucumbers. You can use this tasty vegetable in a variety of recipes. Use these cucumbers to make healthy treats such as a cucumber salad with tomatoes and onions in a vinaigrette dressing; mix diced cucumbers with Greek yogurt, lemon, dill, and garlic for a refreshing tzatziki sauce for gyros or veggies; add to a crisp, fresh veggie salad; or thinly slice and add to a vinegar brine for quick pickles. Any way you slice, dice, or spiralize them, Fresh Organic Mini Cucumbers are a refreshing, healthy addition to any meal.', 'These fresh organic mini cucumbers are crisp and delicious Use in a variety of recipes or enjoy on its own Make a cucumber salad with tomatoes and onions in a vinaigrette dressing Thinly slice and add to a vinegar brine for quick pickles', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9728c1de-d9aa-4f3a-8c5c-14a9dbed5173.1017666711f6bd17872dad2b6c42b851.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9728c1de-d9aa-4f3a-8c5c-14a9dbed5173.1017666711f6bd17872dad2b6c42b851.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9728c1de-d9aa-4f3a-8c5c-14a9dbed5173.1017666711f6bd17872dad2b6c42b851.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (447882834, 'Tasteful Selections Sunburst Blend Organic Bite Size Potatoes, 24oz Mesh Bag', 4.88, '826088523107', 'Experience the delicious blend of creamy textures and tender skins with our organic Sunburst Blend Potatoes. These bite-size wonders are a delightful fusion of honey gold and red potatoes, offering a flavorful and healthy addition to your meals. Conveniently packaged in a 24oz mesh bag, these fresh vegetables are perfect for quick and easy storage. Add a nutritious touch to your diet with these versatile potatoes that deliver a satisfying culinary experience. Ideal for steaming, roasting, or mashing, they are a healthy food choice, brought to you fresh and ready-to-cook.', 'Creamy textures and tender skins for the ultimate flavor fusion Includes a mix of honey gold and red potatoes Organic and fresh from farm to table Convenient bite-size potatoes for easy cooking Packaged in a 24oz mesh bag for freshness and storage ease Ideal for a variety of cooking methods and meal options, ensuring a healthy food choice', 'Tasteful Selections', 'https://i5.walmartimages.com/asr/83f1f162-ff87-4376-9ad9-fafd711f4050.861b4395a4ef2d4cd2b8c265d1b2d64c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/83f1f162-ff87-4376-9ad9-fafd711f4050.861b4395a4ef2d4cd2b8c265d1b2d64c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/83f1f162-ff87-4376-9ad9-fafd711f4050.861b4395a4ef2d4cd2b8c265d1b2d64c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (448046001, '180pc Pto Idaho 10#', 1074.6, '405500007885', 'short description is not available', '180pc Pto Idaho 10#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (448620955, 'Walmart Produce Red Apple Slices 5/2 Oz', 3.58, '717524720290', 'short description is not available', 'Walmart Produce Red Apple Slices 5/2 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (448827481, 'Medium Avocado 5 Count Bag', 3.28, '', 'short description is not available', 'Medium Avocado 5 Count Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (448898165, 'Org Bell Green Pepper', 3.97, 'deleted_823874000187', 'Organic Green Bell Peppers are an extremely versatile vegetable that is a must-have for every cook. Naturally low in calories, bell peppers are exceptionally rich in vitamin C and other antioxidants, and our green bell peppers are certified organic by the U.S. Department of Agriculture. You can choose to eat them raw and dip them in ranch, or you can incorporate them into a variety of recipes. Dice them and put them in a hearty chili, slice them and add to a deli sandwich, saute them with onions and serve on a hoagie roll with a bratwurst, or stir-fry with thinly-sliced steak and serve with rice. A hollowed-out green bell pepper can be filled with sausage, mushrooms and rice to create a delicious stuffed pepper that will have the family asking for seconds. The culinary possibilities are endless with Organic Green Bell Peppers.', 'Organic Green Bell Peppers, 2 Pack: 2-pack of organic bell peppers Naturally low in calories Exceptionally rich in vitamin C and other antioxidants Create delicious recipes with these organic bell peppers', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/f5a05d30-e54c-4fd3-951a-25a0e67e2047_1.2ff1b683c796a3f03a79077fbb3c6e2d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f5a05d30-e54c-4fd3-951a-25a0e67e2047_1.2ff1b683c796a3f03a79077fbb3c6e2d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f5a05d30-e54c-4fd3-951a-25a0e67e2047_1.2ff1b683c796a3f03a79077fbb3c6e2d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (449076457, 'Services Reduced Program Dept 94', 0.01, '251686000000', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (449292174, '180pc Apple Gala 3#', 561.6, '405665854485', 'short description is not available', '180pc Apple Gala 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (449339781, 'Fresh Slicing Tomato, 2 Pack', 2.98, 'deleted_679508011032', 'Bring the fresh, delicious taste of Slicing Tomatoes into your home. These tomatoes deliver sweet and juicy flavor with each bite and are an ideal ingredient in a variety of recipes. They would make a tasty, garden-inspired addition to salads, burgers, gourmet sandwiches, and so much more. They are picked at peak freshness and specially bred for deep red color, intense flavor, and higher lycopene content than standard tomatoes. Whether you slice or dice them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with these fresh Slicing Tomatoes.', 'Slicing Tomato, 2 Pack: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, burgers, gourmet sandwiches, and more Add to party trays or school lunches Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e648291f-0ccf-4ef5-a8f8-7fbe8d8686bb.192e42a5f946db220a42352ce18ef6f8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e648291f-0ccf-4ef5-a8f8-7fbe8d8686bb.192e42a5f946db220a42352ce18ef6f8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e648291f-0ccf-4ef5-a8f8-7fbe8d8686bb.192e42a5f946db220a42352ce18ef6f8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (449447343, 'Fresh Buttercup Squash, Each', 5.27, '000000047586', 'Add rich flavor and color to your meals with fresh Buttercup Squash. If you like pumpkin, then you\'re sure to love the sweet taste of buttercup squash. Try using it to make a comforting soup that will warm you up when it\'s cold outside, or try it cubed and roasted with your favorite spices for a satisfying side dish. You can also use this versatile winter squash to make something sweet. Try stuffing it with pecans, apples, cinnamon, brown sugar, and butter for a delicious dessert. Be sure to save the seeds because you can roast them just like you would pumpkin seeds for a tasty snack. Create your next culinary masterpiece with fresh Buttercup Squash.', 'Buttercup Squash, 1 Each: Sweet winter squash Great to use in a comforting soup to warm you up Roast with your favorite spices for a tasty side dish Stuff with apples, cinnamon and brown sugar for a delicious dessert Great source of beta-carotene Good source of vitamins and minerals', 'Fresh Produce', 'https://i5.walmartimages.com/asr/279ce8b7-8c67-4e67-a186-fcf706ffe185.a5e85714fa59323777c20c5c7d3aec4f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/279ce8b7-8c67-4e67-a186-fcf706ffe185.a5e85714fa59323777c20c5c7d3aec4f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/279ce8b7-8c67-4e67-a186-fcf706ffe185.a5e85714fa59323777c20c5c7d3aec4f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (449532894, 'Fresh Yellow Nectarines, 1 Lb.', 3.98, '405508575751', 'Fresh Yellow Nectarines, 1 Lb.', 'Fresh Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (449561554, 'Colored Bell Pepper 2pk', 3.4, '699058000232', 'short description is not available', 'Colored Bell Pepper 2pk', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (449806182, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094949450', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (449811321, 'Red Globe Seeded Grapes, Bag', 22, '', 'short description is not available', 'Red Globe Seeded Grapes, Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (449822160, 'Freshness Guaranteed Watermelon Bowl', 4.97, '263035000005', 'Experience a burst of summertime goodness with this delicious Freshness Guaranteed Watermelon. This pre-cut ripe watermelon is juicy, sweet, and refreshing to the taste. In addition, watermelons are a great natural source of vitamins A and C. Carry them with you and eat them straight out of the tray any time you want, at home, or on-the-go. Pair them with a tasty salad or sandwich for a nutritious and delicious lunch. You can also use them as a naturally sweet ingredient in a fruit salad. Add some fresh fruit to your daily menu with this Freshness Guaranteed Watermelon.Freshness Guaranteed provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Watermelon, 16 oz: Pre-cut watermelon chunks Convenient take-and-go packaging Good source of vitamins A and C No preservatives, artificial colors or artificial flavors Perfect for your next backyard cookout Net weight: 16 oz Sweet and Juicy', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (449832336, 'Fresh Dark Sweet Washington Cherries, per Pound', 3.98, '400094426340', 'Fresh Dark Sweet Washington Cherries, per Pound', 'Fresh Dark Sweet Washington Cherries', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (450422835, 'Medley Tomato, 10 oz Package', 4.97, '689259001558', 'Bring the fresh, delicious taste of Medley Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Medley Tomatoes.', 'Medley Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (450527821, 'California Grown Peaches, per Pound', 1.58, '400094950227', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (451054153, 'Snow Peas 8oz', 3.98, 'deleted_033383703022', 'short description is not available', 'Snow Peas 8oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (451248079, 'Freshly Diced Red Onions', 2.58, '705393300217', 'short description is not available', 'Freshly Diced Red Onions', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (451641787, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094005866', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (451757652, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094454480', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (452294672, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094470565', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (452617375, 'Yellow Flesh Peaches, per Pound', 1.58, '400094804452', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (452744396, 'Fresh Color Bell Peppers, 3 Count', 3.24, 'deleted_033383701776', 'Enhance your meals with the delicious flavor of Fresh Color Bell Peppers (Tricolor Pimiento Morron). Dice these colorful bell peppers and put them in a hearty chili, slice them and add to a deli sandwich, saute them with onions and serve on a hoagie roll with a bratwurst, or stir-fry with thinly sliced steak and serve with rice. A hollowed-out bell pepper can be filled with sausage, mushrooms, and rice to create a delicious stuffed pepper that will have the family asking for seconds. With so many ways to prepare them, Fresh Color Bell Peppers are an excellent fresh produce vegetable to have on hand.', 'Fresh Color Bell Peppers are an excellent addition to any meal Dice them and put them in chili Add to a deli sandwich Slice and serve with your favorite dip Loaded with vitamin C High in vitamin A Wash before eating', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/5a48f422-798a-445d-b93f-0e7542635607.5b6279bf203b58e61293db96e9b6bee9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a48f422-798a-445d-b93f-0e7542635607.5b6279bf203b58e61293db96e9b6bee9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a48f422-798a-445d-b93f-0e7542635607.5b6279bf203b58e61293db96e9b6bee9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (452944178, 'Diced Yellow Onions', 2.58, '782796022342', 'short description is not available', 'Diced Yellow Onions', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (452966017, '200pc Pto Red 3# Lm', 868, '405555987248', 'short description is not available', '200pc Pto Red 3# Lm', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (453028786, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '405500014654', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (453426276, 'Fresh California Grown Nectarines, 1 Lb.', 1.78, '400094810224', 'Fresh California Grown Nectarines, 1 Lb.', 'Fresh California Grown Yellow Nectarines', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (453791517, 'Fresh Envy Apples 2lb Bag', 3.94, '066022003283', 'Experience the delicious taste of Fresh Envy Apples, known for their crisp texture and balanced sweetness. Featuring a beautiful golden red color, these apples are perfect for snacking or pairing with your favorite cheeses and sandwiches. Simple and easy to enjoy any time, Envy apples stay fresh and white longer, making them ideal for mocktails or adding brightness to any dish. Discover the ultimate apple experience with Envy.', 'Plant variety: Envy Beautifully balanced sweetness Uplifting fresh aroma Delightfully satisfying crunch Naturally stays white longer when sliced Perfect for snacking or pairing in recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f5e256c4-63a6-4d2b-a5a8-6204b2b01a48.d57fde364e7c19d2aa658c4194e4631c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f5e256c4-63a6-4d2b-a5a8-6204b2b01a48.d57fde364e7c19d2aa658c4194e4631c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f5e256c4-63a6-4d2b-a5a8-6204b2b01a48.d57fde364e7c19d2aa658c4194e4631c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (453801512, 'Fortune Brand Dried Black Fungus, Shredded, 4 Oz, 50 Ct', 68.97, '022652206944', 'DRIED BLACK FUNGUS SHREDDED', 'Fortune Brand Dried Black Fungus, Shredded, 4 Oz, 50 Ct', 'FORTUNE BRAND', 'https://i5.walmartimages.com/asr/0fb9bf30-1866-43a2-9b89-8e7aa7504fcc.34347583015ab406cbabb7672fcb2854.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0fb9bf30-1866-43a2-9b89-8e7aa7504fcc.34347583015ab406cbabb7672fcb2854.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0fb9bf30-1866-43a2-9b89-8e7aa7504fcc.34347583015ab406cbabb7672fcb2854.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (454351185, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, '400094473085', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (454746658, 'Fresh Cassava , Pound', 0.88, 'deleted_405878099840', 'Create something delicious with this fresh Yuca (Cassava). Yuca, also known as Cassava, is a tuber cultivated throughout Latin America and Asia. Its flesh is hard, dense and white like a coconut, and has a hard, waxy bark-like covering. Yuca has a starchy, slightly sweet flavor, and must be cooked before eating. They may be prepared in a variety of ways, such as mashed, baked, boiled, fried, and more. Use it to make crispy fries, a comforting stew, or even a sweet cake. It\'s also naturally gluten-free, cholesterol-free, and fat-free. Make your next culinary masterpiece with Yuca (Cassava).', 'Naturally gluten-free, cholesterol-free, and fat-free Rich in vitamin C and vitamin B Mash with garlic and butter or add to soups and stews Fresh and whole Peel and cook before eating (do not eat raw) Versatile and delicious', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/6fe438f2-111f-4431-a3a2-8b0111ee4356.74ff54b4b426043928320ff9a2a1f6d7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6fe438f2-111f-4431-a3a2-8b0111ee4356.74ff54b4b426043928320ff9a2a1f6d7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6fe438f2-111f-4431-a3a2-8b0111ee4356.74ff54b4b426043928320ff9a2a1f6d7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (455270189, 'Yellow Flesh Peaches, per Pound', 1.58, '400094987803', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (455677475, 'Bowery Farming Bowery Salad Spinach Mix 10oz', 3.98, '851536007601', 'short description is not available', 'Bowery Farming Bowery Salad Spinach Mix 10oz', 'Bowery Farming', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (456230450, 'Manzana Granny Smith de Estados Unidos, 1 Lb.', 1.77, '203284000005', 'Manzana Granny Smith de Estados Unidos, 1 Lb.', 'Manzana Granny Smith Estados Unidos', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (456442029, 'Leeks', 2.98, 'deleted_885435999651', 'Leeks', 'A mild-flavored member of the onion family, Leeks are excellent in stir-fry, soup and provide an exotic substitute—in increased quantities—in recipes that call for traditional onions. Leeks are distinguished by long, sturdy green stems with a thick white root end.', 'Ratto Bros.', 'https://i5.walmartimages.com/asr/1f883782-196f-4091-a1e6-8175f4c4ba1f.b402c6b7fc938d968e1bfc0b165f9603.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1f883782-196f-4091-a1e6-8175f4c4ba1f.b402c6b7fc938d968e1bfc0b165f9603.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1f883782-196f-4091-a1e6-8175f4c4ba1f.b402c6b7fc938d968e1bfc0b165f9603.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (456527059, '225pc Pto Rst Jmb 8#', 1444.5, '405518791226', 'short description is not available', '225pc Pto Rst Jmb 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (456838850, 'Dark Sweet Cherries, Half Pint', 2.98, '813200013646', 'Dark Sweet Cherries, Half Pint', 'Dark Sweet Cherries 1/2 Dry Pint', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (457186108, 'Walmart Produce Melon Trio 10 Oz', 2.48, '717524415387', 'short description is not available', 'Walmart Produce Melon Trio 10 Oz', 'WALMART PRODUCE', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (457191372, 'Fieldpack Unbranded Poblano Peppers', 0.68, '812181022128', 'short description is not available', 'Fieldpack Unbranded Poblano Peppers', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (458425784, 'Fresh Green Seedless Grapes', 3.27, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (458484271, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094554357', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (458511849, 'Fresh Apple Red, Each, Sweet', 4.47, '', 'Grown with care and picked at the peak of ripeness, our Red Fresh Apples are sure to satisfy your cravings. With their sweet and juicy taste, they make for a perfect snack any time of the day. Graced with a classic, vibrant red color, these apples are full of nutrients such as fiber, vitamin C, and antioxidants. Get your daily dose of health and deliciousness with our Red Apples.', 'Sweet, crisp, and juicy Creamy white flesh with low acidity Excellent snacking apple Higher antioxidants due to the rich, deep red skin Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp, and apple pie', 'Unbranded', 'https://i5.walmartimages.com/asr/ada31246-1c45-4c41-aec7-e2d607500bdf.38553668d16b287cd56e935e3f043740.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ada31246-1c45-4c41-aec7-e2d607500bdf.38553668d16b287cd56e935e3f043740.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ada31246-1c45-4c41-aec7-e2d607500bdf.38553668d16b287cd56e935e3f043740.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (459276880, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094032237', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (459862052, 'Hass Avocados, each', 1.18, '', 'Avocados aren’t just great-tasting fresh produce items, but they are a nutrient-dense fruit that can be enjoyed throughout the year. Hass avocados are a versatile ingredient with a creamy texture and mild flavor that can be used in many different types of recipes and dishes that are perfect for enjoying at barbecues and outdoor gatherings with friends and family during the summer. Enjoy avocados in countless ways that will make those barbecues and gatherings with family and friends even more exciting. Use avocados in flavorful recipes that everybody can share and enjoy while being together outside. Try avocados in individual Mexican food items like tacos or burritos, as part of appetizers like avocado crostini, or in a fresh guacamole or avocado dip so everybody can dip tortilla chips into something delicious. The possibilities are deliciously endless if you need additional food options for barbecues. Not only is a avocado a great ingredient to use in numerous ways, but it is also a healthy food that contributes unsaturated “good” fats and almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9. A ripe avocado will have a dark green to nearly black skin color, a bumpy skin texture and should yield to gentle pressure without leaving indentations or feeling mushy. Avocados with a slightly bumpy texture should be ripe in 1 to 2 days. They will also be somewhat firm and have a dark green and black speckled color. Once you’ve selected the perfect bag of avocados, you’ll be ready to enjoy all kinds of different healthy foods and recipes for the next time you’re enjoying an outdoor gathering with friends and families.', '● One Hass Avocado ● Fresh fruit with a creamy texture and mild flavor ● Fresh avocados are great for using in tacos, burritos, appetizers, avocado dip and fresh guacamole so that you have delicious food to share and enjoy during Cinco De Mayo ● A cholesterol free fruit that contains almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9 ● Small hass avocados are the lowest sugar fruit and provide unsaturated “good fats” that help absorb Vitamin A, Vitamin D, Vitamin K and Vitamin E ● Small ripe avocados will have dark green to nearly black skin color, a bumpy texture and should yield to gentle pressure without leaving indentations', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0b27dfbf-7446-495a-9169-7a4870dca6e4.8dc71e65fc81b403186e3f7bc997aa63.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0b27dfbf-7446-495a-9169-7a4870dca6e4.8dc71e65fc81b403186e3f7bc997aa63.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0b27dfbf-7446-495a-9169-7a4870dca6e4.8dc71e65fc81b403186e3f7bc997aa63.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (460156026, 'Mango', 0.58, '', 'short description is not available', 'Mango', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c79e38a2-f6d9-470d-887e-6559f7094755.803178daa4572c5d577be070187651e4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c79e38a2-f6d9-470d-887e-6559f7094755.803178daa4572c5d577be070187651e4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c79e38a2-f6d9-470d-887e-6559f7094755.803178daa4572c5d577be070187651e4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (460255490, 'Sweet Onions, each', 0.66, 'deleted_811289020043', 'short description is not available', 'Bulk Sweet Onions', 'Fresh Produce', 'https://i5.walmartimages.com/asr/20e2cec5-74da-4481-ba2f-437a37f574a0_1.58a77675997b6e7da785398e536c8c1a.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20e2cec5-74da-4481-ba2f-437a37f574a0_1.58a77675997b6e7da785398e536c8c1a.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20e2cec5-74da-4481-ba2f-437a37f574a0_1.58a77675997b6e7da785398e536c8c1a.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (460314643, 'Aurora Natural Products Australian Naked Ginger, 11 Oz.', 11.49, '655852005521', 'Aurora Natural Products - Australian Naked Ginger', 'Aurora Natural Products Australian Naked Ginger, 11 Oz.', 'Aurora GB', 'https://i5.walmartimages.com/asr/a2eccccf-3397-4f44-81cb-6572f4f13e3e.b09664a49caa6515ddf5103860072647.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a2eccccf-3397-4f44-81cb-6572f4f13e3e.b09664a49caa6515ddf5103860072647.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a2eccccf-3397-4f44-81cb-6572f4f13e3e.b09664a49caa6515ddf5103860072647.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (460584856, '240pc On Swt 3# Ds', 787.2, '405542362560', 'short description is not available', '240pc On Swt 3# Ds', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (460694475, 'Fresh Kiwi, 32 oz, Package', 4.48, '898249002387', 'Treat yourself to the delicious and refreshing taste of kiwi. Kiwi are known for their sweet, tangy, and soft flesh and nutritional benefits. They are packed with vitamin C, fiber, and antioxidants. They\'re also fat-free and have a low glycemic index. Enjoy a fresh kiwi with your breakfast to start your day off on the right foot or bring one to work and treat yourself to a scrumptious healthy snack at the office. You can also serve them up in a big fresh fruit salad with all your favorite fruits like strawberries, apples, blueberries and more. They\'re even perfect for topping pies, tres leches cakes, tarts and more for dessert. The possibilities are endless when you bring home Kiwi', 'Delicious sweet and tangy kiwi fruit Packed with Vitamin C, fiber and antioxidants with a scrumptious fruit taste Enjoy a fresh kiwi with your breakfast to start your day off on the right foot Bring one to work and treat yourself to a scrumptious healthy snack at the office Great for school lunches Perfect for topping desserts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e0d53c8e-9ea9-49b6-8ac7-ddaba6c0a43d_1.abad639a10a36369a7aa5033dbebf8a0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e0d53c8e-9ea9-49b6-8ac7-ddaba6c0a43d_1.abad639a10a36369a7aa5033dbebf8a0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e0d53c8e-9ea9-49b6-8ac7-ddaba6c0a43d_1.abad639a10a36369a7aa5033dbebf8a0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (460830555, 'Bulk Collard Greens', 0.98, 'deleted_405810350824', 'short description is not available', 'Bulk Collard Greens', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (461781980, 'California Grown Peaches, per Pound', 1.58, '400094390207', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (461908556, 'Diced Nopalitos 12.5oz', 2.38, '812181022265', 'short description is not available', 'Diced Nopalitos 12.5oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (462350881, '125pc Pto Rst Jmb 8#', 802.5, '405518789902', 'short description is not available', '125pc Pto Rst Jmb 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (462475047, 'Watermelon Seedless', 4.48, '400094920671', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (462487970, 'Spinach & Lettuce', 3.48, '860001516463', 'Tender and crispy. Elevate your everyday salad with the perfect blend of our sweet baby spinach and crispy lettuce.', 'Pesticide-free, local, ultra fresh', 'Fresh Produce', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (462558926, 'Freshness Guaranteed Fresh Black Seedless Grapes', 2.48, 'deleted_816426012493', 'short description is not available', 'Freshness Guaranteed Fresh Black Seedless Grapes', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (462568163, 'All Purpose Potatoes, 3 Lb.', 3.48, '405505674884', 'All Purpose Potatoes, 3 Lb.', 'All Purpose Potatoes 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (462629488, 'Crunch Pak Family Sized Tart Apple Slice Bag 32oz', 4.98, '732313001107', 'A Healthy Crunch Pak Family Sized 32oz Bag of Tart Sliced Apples. Provides an optimal choice in your favorite recipes, on-the-go, between meals, lunchtime, or anytime during the day snack! Pick your family treat up today!', 'Crunch Pak Family Sized 32oz Bag of Tart Sliced Apples 80 Calories per serving Excellent Souce of Vitamin C', 'Fresh Produce', 'https://i5.walmartimages.com/asr/15dd1510-d970-42a1-afe6-40ea9a6dbed4.2df9c9888c9b52b7498fe2a687af0bbe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/15dd1510-d970-42a1-afe6-40ea9a6dbed4.2df9c9888c9b52b7498fe2a687af0bbe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/15dd1510-d970-42a1-afe6-40ea9a6dbed4.2df9c9888c9b52b7498fe2a687af0bbe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (463253675, '10oz Spinach For Demo', 0.01, '040094397433', 'short description is not available', '10oz Spinach For Demo', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (463335835, 'Marketside Peas/ranch 4pk', 4.98, '681131305426', 'short description is not available', 'Marketside Peas/ranch 4pk', 'Marketside', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (463552742, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.98, 'deleted_400094240076', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (463813432, 'Rapini Fresh Produce Vegetable', 2.84, 'deleted_000651881065', 'Rapini Fresh Produce Vegetable', 'Rapini cooking vegetable - Fresh Produce', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (463826240, 'Watermelon Seedless', 4.98, '400094221600', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (464196364, 'Reichel Foods Sweet Apples with Gummy Rings, 2.2 oz', 1.28, '649632001667', 'short description is not available', 'Reichel Foods Sweet Apples with Gummy Rings, 2.2 oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/fa10d7cf-a748-4ca1-b0da-8f013d9278f7_1.50ad17f005c3baf8563c22d44c44f47c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa10d7cf-a748-4ca1-b0da-8f013d9278f7_1.50ad17f005c3baf8563c22d44c44f47c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa10d7cf-a748-4ca1-b0da-8f013d9278f7_1.50ad17f005c3baf8563c22d44c44f47c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (464233878, '2# Salad Cucumber', 2.98, 'deleted_605949000021', 'short description is not available', '2# Salad Cucumber', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (464315522, 'Fresh Sliced Baby Bella Mushrooms, 8 oz package', 2.38, 'deleted_021706200105', 'Experience the fresh taste of our Sliced Baby Bella Mushrooms. Baby bella mushrooms look similar in size and shape to white mushrooms, but they\'re hardier and provide a deeper earthy taste. They are just like the large portabella mushrooms you know and love but have been harvested just a few days before becoming large enough to fit a burger. This means they have that same firm, meaty texture you love about portabella caps, just in a tasty bite-size form. Pre-cleaned and pre-sliced, their hearty, full-bodied taste makes them an excellent addition to beef, wild game, and vegetable dishes. Plus, mushrooms are a natural source of the antioxidant selenium, making them an excellent addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try out our Sliced Baby Bella Mushrooms. Comes in a Light Tray.', 'Fresh Sliced Baby Bella Mushrooms, 8 oz tray: 8-ounce package of sliced baby bella mushrooms Naturally fat free Cholesterol free Low in calories, carbs and sodium Fresh and all natural Pre-cleaned Natural source of the antioxidant selenium Excellent addition to beef, wild game and vegetable dishes', 'Utah', 'https://i5.walmartimages.com/asr/700c52ac-1020-459e-936d-0fe6004ff6c3.8edf7423c90239a7d4e004acb8f50c64.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/700c52ac-1020-459e-936d-0fe6004ff6c3.8edf7423c90239a7d4e004acb8f50c64.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/700c52ac-1020-459e-936d-0fe6004ff6c3.8edf7423c90239a7d4e004acb8f50c64.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (465093022, 'Fresh Whole White Onion 2lb, Bag', 3.27, '819255020950', 'Add flavor to your next meal with Fresh White Onions ( Cebolla Blanca). For breakfast, you could dice them and add to an omelet loaded with cheese, ham, and mushrooms. You can dice these onions and add them to a fresh garden salad for a satisfying crunch or sprinkle them on top of your fish tacos. White onions also make delicious golden onion rings to serve alongside juicy hamburgers and hot dogs at your next backyard barbecue. You can keep these onions at room temperature until ready to use. Stock your pantry with this three-pound bag of Fresh White Onions', 'Fresh whole white onions, 2-lb bag Ideal ingredient in a variety of recipes Can be sauteed and put in your favorite foods for added flavor Use to top sandwiches, hamburgers, and hot dogs Fresh onions can be stored in a cabinet or pantry and are easy to prepare', 'Unbranded', 'https://i5.walmartimages.com/asr/22e70759-b86f-4a5b-bfc9-304ecbe7bd55.f44d867bf1a837b6d1885ffe46040bee.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/22e70759-b86f-4a5b-bfc9-304ecbe7bd55.f44d867bf1a837b6d1885ffe46040bee.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/22e70759-b86f-4a5b-bfc9-304ecbe7bd55.f44d867bf1a837b6d1885ffe46040bee.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (465229924, 'Organic Lemons, each', 4.74, '000000940535', 'Produce', 'Selected and stored fresh,Sourced with high quality standards,Recommended to wash before consuming,Delicious on their own as a healthy snack or as part of a recipe', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4dd93938-8b09-4b95-8c3b-4974abd2be27.25e9e4090dcf1959eab88597e83ee1cf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4dd93938-8b09-4b95-8c3b-4974abd2be27.25e9e4090dcf1959eab88597e83ee1cf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4dd93938-8b09-4b95-8c3b-4974abd2be27.25e9e4090dcf1959eab88597e83ee1cf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (465368073, 'California Grown Peaches, per Pound', 1.58, '400094525944', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (465841657, 'Aerofarms Arugula Microgreens Salad, 2 oz Clam Shell, Fresh', 3.98, '815063021240', 'Peppery and bright, AeroFarms arugula microgreens add a bold spice to any dish. Our Micro Arugula falls in the light green and yellow portions of the AeroFarms FlavorSpectrum™, representing an intensely peppery profile with light vegetal notes. Microgreens can contain considerably higher levels of vitamins and carotenoids—about 5X greater—than their mature plant counterparts, according to the United States Department of Agriculture. AeroFarms greens are grown with zero pesticides and are ready to enjoy right out of the container. Taste the AeroFarms difference - enjoy Micro Arugula by adding a heaping handful to boost any meal including sandwiches, wraps, soups, salads, takeout, and more.', 'Bursting With Flavor No Pesticides Ever No Washing Needed', 'AeroFarms', 'https://i5.walmartimages.com/asr/0d19de3f-fd85-41d1-be43-85f1431dd9a8.e703b4d3ad7348ff02b30b13eba9399c.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d19de3f-fd85-41d1-be43-85f1431dd9a8.e703b4d3ad7348ff02b30b13eba9399c.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d19de3f-fd85-41d1-be43-85f1431dd9a8.e703b4d3ad7348ff02b30b13eba9399c.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (465896238, 'Fresh Organic Green Kiwi, 2 lb Clamshell', 6.94, '756110900104', 'Treat yourself to the refreshing flavor of Fresh Organic Green Kiwi. Enjoy this tasty kiwi on its own as a healthy snack or incorporate it into a variety of delicious recipes. For breakfast, you can make a sweet fruit bowl with sliced kiwi, strawberries, pineapple, and cantaloupe. For an extra special treat, top with a dollop of whipped cream. Cut it into small pieces and put it in a fresh salad along with chicken, cucumbers, tomatoes, and a light dressing. You can even use kiwi to make a sweet sorbet or scrumptious muffins. Enjoy the sweet and juicy taste of Fresh Organic Green Kiwi.', 'Fresh Organic Green Kiwi is a flavorful addition to many recipes Enjoy on its own or add to a mixed fruit salad Add to your fresh garden salad Get creative and make a refreshing sorbet Explore all the delicious ways to add fresh kiwi to your favorite recipes', 'Unbranded', 'https://i5.walmartimages.com/asr/3342798d-ea58-4782-87a7-aefc5068f3ac.6ea154d1827290e061d78a1776a4f284.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3342798d-ea58-4782-87a7-aefc5068f3ac.6ea154d1827290e061d78a1776a4f284.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3342798d-ea58-4782-87a7-aefc5068f3ac.6ea154d1827290e061d78a1776a4f284.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (465958629, 'Organic Sugar Snap Peas 6 Oz', 3.98, '716519009051', 'Snap Pea, Sugar, Stringless, Bag 6 OZ Organic. Washed and ready to eat. Three generations. Est. 1939. Perfect for healthy snacking. Mann\'s Stringless Sugar Snap Peas are a unique cross between English peas and snow peas. They are sweet, crunchy and delicious and can be enjoyed right out of the bag! For Nutrition Facts and Recipes, Please Visit: Veggiesmadeeasy.com. USDA organic. Certified organic by CCOF. We are dedicating to providing the highest quality organic vegetables to your family. Farming has been a third generation family business since 1939. All our vegetables are grown on family-owned farms. Rest assured - sustainable methods are utilized while growing these great tasting veggies that help keep you happy and healthy! Product of Mexico. Keep refrigerated. Perishable. 6 oz (170 g) Salinas, CA 93901 800-285-1002', 'Snap Peas, Sugar, Stringless Organic. Washed and ready to eat. Three generations. Est. 1939. Perfect for healthy snacking. Mann\'s Stringless Sugar Snap Peas are a unique cross between English peas and snow peas. They are sweet, crunchy and delicious and can be enjoyed right out of the bag! For Nutrition Facts and Recipes, Please Visit: Veggiesmadeeasy.com. USDA organic. Certified organic by CCOF. We are dedicating to providing the highest quality organic vegetables to your family. Farming has been a third generation family business since 1939. All our vegetables are grown on family-owned farms. Rest assured - sustainable methods are utilized while growing these great tasting veggies that help keep you happy and healthy! Product of Mexico.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/838175d7-7ae8-4fcd-b27d-46de92a23760.bc507da1d9098731e9595424468e5a6e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/838175d7-7ae8-4fcd-b27d-46de92a23760.bc507da1d9098731e9595424468e5a6e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/838175d7-7ae8-4fcd-b27d-46de92a23760.bc507da1d9098731e9595424468e5a6e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (466044741, 'Jumbo Red Onions per Pound, Whole', 1.58, 'deleted_405873145078', 'Introducing Jumbo Red Onions, sold by the pound for your culinary convenience. Our impressively large onions boast a robust flavor and striking color, making them the ideal choice for enhancing your favorite recipes. Perfect for salads, salsas, grilling, or caramelizing, these versatile red onions offer endless possibilities in the kitchen. Hand-selected for their size and quality, our Jumbo Red Onions ensure freshness and exceptional taste in every dish you prepare.', 'Jumbo Red Onions Per Pound Introducing Jumbo Red Onions, sold by the pound for your culinary convenience. Our impressively large onions boast a robust flavor and striking color, making them the ideal choice for enhancing your favorite recipes. Perfect for salads, salsas, grilling, or caramelizing, these versatile red onions offer endless possibilities in the kitchen. Hand-selected for their size and quality, our Jumbo Red Onions ensure freshness and exceptional taste in every dish you prepare. Bag\', and \'No Artificial Colors;No Artificial Flavors', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/25b57eb9-0750-4b51-b3cf-056501939195.6501ab4eda72c2e10f0cd1be33198dd6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/25b57eb9-0750-4b51-b3cf-056501939195.6501ab4eda72c2e10f0cd1be33198dd6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/25b57eb9-0750-4b51-b3cf-056501939195.6501ab4eda72c2e10f0cd1be33198dd6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (466063272, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094240427', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (466120411, 'Fingerling Potatoes, 1.5 Lb.', 3.47, '826429000779', 'Fingerling Potatoes, 1.5 Lb.', 'Fingerling Potatoes 1.5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (466512187, 'Small Bagged Oranges', 4.96, 'deleted_845963110003', 'Enjoy the juicy goodness of these Small Bagged Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, these Small Bagged Oranges will add flavor to any meal or beverage.', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast Adds flavor to a variety or recipes Use as a garnish for your favorite cocktail Make sweet desserts like ambrosia, orange bars, and orange pie', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b431a5dd-223c-46d3-8326-26a4ff5fed56.08562544f9c9c34fb1b6c309efc5cf87.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b431a5dd-223c-46d3-8326-26a4ff5fed56.08562544f9c9c34fb1b6c309efc5cf87.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b431a5dd-223c-46d3-8326-26a4ff5fed56.08562544f9c9c34fb1b6c309efc5cf87.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (466557995, 'Watermelon Seedless', 4.48, '405504885540', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (466638840, 'Fresh Ginger Root', 1.98, '851720003150', 'short description is not available', 'Fresh Ginger Root', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (466868123, 'Marketside Beyond Baby Kale & Crispy Leaf Lettuce, 4 oz Clam Shell, Fresh', 2.98, '194346001484', 'Enjoy the fresh flavor of Marketside Beyond Baby Kale and Crispy Leaf Lettuce. These greens are indoor and vertically grown for peak-season freshness all year long. Indoor vertical farms are a controlled growing environment giving each plant the optimal amount of light and nutrients for fresh and flavorful produce any time of the year. Farming vertically means our produce can be grown using significantly less water and land than traditional outdoor farms. Create something delicious with Marketside Beyond Baby Kale and Crispy Leaf Lettuce. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Fresh baby kale and crispy leaf lettuce Indoor and vertically grown for peak-season freshness all year long No pesticides, herbicides or fungicides applied to our greens Convenient peel and reseal packaging Keep refrigerated until ready to enjoy', 'Marketside Beyond', 'https://i5.walmartimages.com/asr/d99f731e-6ca9-44ee-9c18-3f9c55c87407.f809f23f517f2a6d07331145d9656725.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d99f731e-6ca9-44ee-9c18-3f9c55c87407.f809f23f517f2a6d07331145d9656725.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d99f731e-6ca9-44ee-9c18-3f9c55c87407.f809f23f517f2a6d07331145d9656725.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (467396410, 'Fresh Mango Puerto Rico, Each', 0.98, '405673947872', 'Savor the irresistible taste of a fresh Mango. Mangoes are an excellent fruit to add to your breakfast, lunch, dinner, or dessert. For breakfast, you can chop the mango up and add it to yogurt or a smoothie for a sweet treat that\'s sure to get your morning started on a high note. For dessert, you could use a mango to make a refreshing sorbet or put a tropical twist on a cobbler. You can also use it to make creamy milkshakes or delicious juices that everyone is sure to enjoy. The culinary possibilities are endless when you keep your kitchen stocked with fresh Mangoes.', 'Irresistibly sweet and juicy Delicious on its own or in a variety of recipes Make a creamy milkshake or a nutritious juice blend Add mango to yogurt or a smoothie Use to top your salad for a tropical twist', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d4993498-cb0a-4539-bee5-b3c0db4a6702.ee3057845556133bab8fb2cd8e56b1a1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4993498-cb0a-4539-bee5-b3c0db4a6702.ee3057845556133bab8fb2cd8e56b1a1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4993498-cb0a-4539-bee5-b3c0db4a6702.ee3057845556133bab8fb2cd8e56b1a1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (468313248, 'Organic Fresh and Bold Ginger, 8 oz Bag', 4.87, '045255154283', 'Fresh organic Ginger is a great addition to your favorite foods, teas & soups. Organic ginger can be used shredded to spice up your food or as an ingredient. It is packed with vitamins, minerals and a healthy organic addition to your diet.', 'Organic Fresh and Bold Ginger, 8 oz bag Great addition to any meal or as an ingredient when cooking Packed with vitamins and minerals Rinse when ready to use Best if refrigerated', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6920d02a-c0c6-4882-aaad-233cb0e51fe1.d851d34351744b2e12d937809c2d9a0c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6920d02a-c0c6-4882-aaad-233cb0e51fe1.d851d34351744b2e12d937809c2d9a0c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6920d02a-c0c6-4882-aaad-233cb0e51fe1.d851d34351744b2e12d937809c2d9a0c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (468362626, 'Avocado Bag', 5.94, 'deleted_deleted_856893002399', '', '', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (468414675, 'Yellow Flesh Peaches, per Pound', 1.58, '400094615409', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (469553357, 'Roma Tomato, 2 lb Bag', 1.28, 'deleted_711069004587', 'With fresh Roma Tomatoes, it\'s easy to make a wholesome, delicious meal. Roma tomatoes are a fresh produce ingredient for whipping up a variety of wonderful dishes. You can use them to create a zesty tomato sauce for stirring into a homemade pasta dish, crush them up to make a delightful Roma tomato bruschetta, or simply enjoy them on their own as a nutritious snack or as a party platter option for dipping in your favorite vegetable dipping sauce. If you\'re feeling a classic tomato dish, Roma tomatoes can even lend themselves in making a comforting and appetizing tomato soup or a flavorful salsa. However you choose to use them, each Roma tomato will add stunning flavor to your meal. Elevate your recipes with Roma Tomatoes.', 'Roma Tomato, 2 lb Bag: Wholesome, versatile, and delicious Rich, juicy flavor in each bite Ideal ingredient for a variety of dishes Use to make pasta sauce, tomato soup, or fresh salsa Make a tasty pesto or bruschetta to serve at your next dinner party Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2f860752-38f8-43a5-96b7-afda3b890630.59821395b55a4259f90cc71edfa15258.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f860752-38f8-43a5-96b7-afda3b890630.59821395b55a4259f90cc71edfa15258.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f860752-38f8-43a5-96b7-afda3b890630.59821395b55a4259f90cc71edfa15258.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (469806788, 'Large Bagged Oranges', 6.78, 'deleted_072240757808', 'short description is not available', 'Large Bagged Oranges', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (469828175, 'Cucumber Salad/pickling', 3.48, 'deleted_072404000139', 'short description is not available', 'Cucumber Salad/pickling', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (470155170, 'Grape Tomato, 10 oz Package', 2.48, '815512010115', 'Fresh grape tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Grape Tomatoes are the perfect choice.', 'Grape Tomatoes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (470486919, 'Bagged Jalapeno', 0.97, 'deleted_812181022227', 'short description is not available', 'Bagged Jalapeno', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (470724848, 'Fresh Yellow Bell Pepper, 1Each', 2.47, '000000049245', 'Enhance your meals with the delicious flavor of Fresh Yellow Bell Peppers. This fresh vegetable contains essential vitamins such as A and C, and minerals including calcium and magnesium. Yellow bell pepper, also known as red capsicum, has a crisp flavor that enhances a variety of recipes. Dice bell peppers and put them in a hearty chili, slice them, sauté them with onions or stir-fry with thinly-sliced steak and serve with rice. A hollowed-out red bell pepper can be filled with sausage, mushrooms and rice to create a delicious stuffed pepper that will have the family asking for seconds. They also taste delicious raw alongside other vegetables. Add your favorite dip for a healthy, crunchy crudité. Cooked or uncooked, Yellow Bell Peppers are an excellent item to have on hand.', 'Fresh High on Vitamin A Large amounts of Vitamin E', 'Fresh Produce', 'https://i5.walmartimages.com/asr/133de766-420b-43ac-a9b7-9a85392131b6.b61c13709a2e3abc008873564ebee329.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/133de766-420b-43ac-a9b7-9a85392131b6.b61c13709a2e3abc008873564ebee329.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/133de766-420b-43ac-a9b7-9a85392131b6.b61c13709a2e3abc008873564ebee329.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (470872901, 'Mandarins 2lb', 4.67, 'deleted_091636000069', 'short description is not available', 'Mandarins 2lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/17069c40-767c-43d4-afbb-55fa19ab7c69_1.ace4117a7ae02ffe3f231246aeea4a03.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/17069c40-767c-43d4-afbb-55fa19ab7c69_1.ace4117a7ae02ffe3f231246aeea4a03.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/17069c40-767c-43d4-afbb-55fa19ab7c69_1.ace4117a7ae02ffe3f231246aeea4a03.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (471168085, 'Fresh Marketside Sweet Potato Cubes, 24 oz', 3.98, '681131377379', 'Marketside Sweet Potato Cubes are a delicious and easy dish that the entire family will enjoy. Use them to whip up a delicious side or incorporate them into your favorite meals from soups and casseroles to stir fries and more. Try the recipe for Roasted Sweet Potato Risotto on the back of the bag. Easy to prepare, these sweet potatoes may be cooked in the microwave or on the stovetop. There are about six servings per bag and each serving has only 90 calories. Add Marketside Sweet Potato Cubes to your next nutritious meal.Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Sweet Potato Cubes, 24 oz: Microwaves in bag in 6 minutes Washed and ready to cook Make a tasty casserole or add to a delicious soup Cook in the microwave or on the stovetop About 6 servings per bag Keep refrigerated', 'Marketside', 'https://i5.walmartimages.com/asr/6812e8fd-8913-4bf8-95a3-6b467fbc627c.9105776022e56d014d0f22a20bf327a4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6812e8fd-8913-4bf8-95a3-6b467fbc627c.9105776022e56d014d0f22a20bf327a4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6812e8fd-8913-4bf8-95a3-6b467fbc627c.9105776022e56d014d0f22a20bf327a4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (471179527, '6pk Tomato Beefsteak', 5.98, '024719388921', 'short description is not available', '6pk Tomato Beefsteak', '', 'https://i5.walmartimages.com/asr/eeb32f3b-1e37-446b-928e-570015aaf211.965f24f33a62008eceed63a88f10779a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eeb32f3b-1e37-446b-928e-570015aaf211.965f24f33a62008eceed63a88f10779a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eeb32f3b-1e37-446b-928e-570015aaf211.965f24f33a62008eceed63a88f10779a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (471208656, 'Great Value Frozen Sliced Mushrooms, 10 oz', 2.74, '078742350950', 'Experience the earthy goodness of Great Value Frozen Sliced Mushrooms. These mushrooms are frozen at peak freshness, ensuring you receive a product that maintains its robust flavor and texture. Known for their savory umami taste, they are perfect for enhancing meat dishes or serving as a delicious meat alternative. Add them to your favorite recipes or roast with Parmesan and garlic for an impressive appetizer. These ready-in-minutes mushrooms offer versatility and convenience, making them a staple in any kitchen. With Great Value, enjoy affordable, high-quality groceries that meet your family\'s needs.', 'Great Value Frozen Sliced Mushrooms Incorporate into your favorite recipes. Frozen to maintain freshness Frozen to maintain freshness Ready in minutes. Enjoy in a recipe or on its own Frozen to maintain freshness Frozen to maintain freshness Frozen to maintain freshness Frozen to maintain freshness', 'Great Value', 'https://i5.walmartimages.com/asr/9811b331-bb44-4fcc-9562-942eb71955e8_1.de9bf35b8fe44cc28643a3bac026f988.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9811b331-bb44-4fcc-9562-942eb71955e8_1.de9bf35b8fe44cc28643a3bac026f988.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9811b331-bb44-4fcc-9562-942eb71955e8_1.de9bf35b8fe44cc28643a3bac026f988.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (471269636, 'Plum, Each', 0.5, '405753578064', 'short description is not available', 'Plum, Each', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (471337232, 'Fresh Red Seedless Grapes', 1.84, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/4c5284a7-f42c-48d5-9aef-69ba7418c466_2.9be47203debdb29d3750aaa41a313a0f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4c5284a7-f42c-48d5-9aef-69ba7418c466_2.9be47203debdb29d3750aaa41a313a0f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4c5284a7-f42c-48d5-9aef-69ba7418c466_2.9be47203debdb29d3750aaa41a313a0f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (471404444, 'Freshness Guaranteed Sliced Brown Mushrooms 16oz', 4.42, 'deleted_631661999862', 'short description is not available', 'Freshness Guaranteed Sliced Brown Mushrooms 16oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (471413152, '120pc Apple Red 5#', 716.4, '400094581582', 'short description is not available', '120pc Apple Red 5#', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (471787160, 'Freshness Guaranteed Pink Apples 3lb Bag', 4.24, 'deleted_847473006746', 'short description is not available', 'Freshness Guaranteed Pink Apples 3lb Bag', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (472217781, '180pc Apple Gold 3#', 804.6, '405673064715', 'short description is not available', '180pc Apple Gold 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (472440025, 'Freshness Guaranteed Watermelon 24oz', 4.98, '681131377256', 'short description is not available', 'Freshness Guaranteed Watermelon 24oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (472560100, 'Red Seedless Grapes', 1.84, '', 'short description is not available', 'Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (472882921, 'Pineberry Blend 16oz', 8.97, '045009891228', 'Fresh cut pineapple, strawberries, and grapes in a medley', 'Pineberry Blend 16oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b7201a36-bff9-435d-9e3e-138d865efe8b.2bdbf58edd6077ee2a5a91beec1aa8a9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b7201a36-bff9-435d-9e3e-138d865efe8b.2bdbf58edd6077ee2a5a91beec1aa8a9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b7201a36-bff9-435d-9e3e-138d865efe8b.2bdbf58edd6077ee2a5a91beec1aa8a9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (473371112, '240pc On Ylw 3# Bp', 465.6, '400094993767', 'short description is not available', '240pc On Ylw 3# Bp', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (473715339, '27pc Val Choc Apple', 214.92, '405856205034', 'short description is not available', '27pc Val Choc Apple', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (473721140, 'NY SPICE SHOP Sour Tamarind Whole - 5 Pound - Tamarind Pods - Thai Sour Tamarind - Tamarind Candy', 51.99, '768253242430', 'NY Spice Shop sour tamarind is light brown in color sweet, tangy, and sour in taste. There are two special kinds of tamarinds “Sweet Tamarinds & Sour Tamarinds”, both are available at our NY Spice Shop. It is used to add in biryani, sweet and sour rice, and a variety of chickpeas chats. It is a strong base for varieties of chutneys, squashes, BBQ stew, and sauces. Sour tamarind is also used in Thai and other cuisines.', 'All-Natural Whole Tamarind Pods – NY Spice Shop sour tamarind pods are covered the fresh, delicious, edible fruit which is packed with healthy fibers, and antioxidants. Versatile Meal Enhancer – Our tamarind can be used for creating Thai pasts, Mexican candies or Agua Fresca, traditional Asian meals, amazing curry, Malaysian satay, and other exciting options friends and family will enjoy. HEALTHY & DELICIOUS – Sour tamarind chutney is naturally sour, no sugar added whole pods can make savory dishes and snacks. Delivered Fresh in Resealable Bag – Our tamarind comes in a resealable bag to ensure they’re fresh and taste great from start to finish. And because we’re focused on natural, organic ingredients you can trust they’re perfect. Trusted Quality in Every Bite – We want to make your meals, snacks, and sweet treats more memorable which is why we carefully source all our products to ensure they reach you ready to eat and with a stable shelf life.', 'NY Spice Shop', 'https://i5.walmartimages.com/asr/ad4bccea-9e8c-4399-8307-bcada98b33b8.196aef56f42b877a41afcfddcf6c3a7b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ad4bccea-9e8c-4399-8307-bcada98b33b8.196aef56f42b877a41afcfddcf6c3a7b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ad4bccea-9e8c-4399-8307-bcada98b33b8.196aef56f42b877a41afcfddcf6c3a7b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (474128385, 'Fieldpack Unbranded Romaine Hearts', 3.48, 'deleted_652953651626', 'short description is not available', 'Fieldpack Unbranded Romaine Hearts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (474438514, '120pc Apl Granny 5#', 600, '405672893507', 'short description is not available', '120pc Apl Granny 5#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (475442863, 'Green Giant Fresh Cello Lettuce, 1 Each', 1.84, 'deleted_723525400000', 'Green Giant Fresh Cello Lettuce, 1 Each', 'Cello Lettuce Green Giant Fresh', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (475493768, 'Freshness Guaranteed Fresh Red Seedless Grapes', 2.28, '', 'short description is not available', 'Freshness Guaranteed Fresh Red Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (476113119, 'Fresh Chinese Long Beans, Bunch', 4.42, '000000045278', 'Our fresh Chinese Long Beans are the perfect veggie to balance out any meal. Also known as the asparagus bean and the long-podded cowpea, this vegetable has a unique beany taste. You can steam these long beans and serve as a side to any meal. FIELD PACK UNBRANDED. You can also incorporate them into your next stir fry or stew. This tasty vegetable is a very popular ingredient in traditional Chinese cuisine. Explore new recipes and discover all the delicious ways to prepare this tasty and nutritious vegetable. With our fresh Chinese Long Beans, you know you\'re getting the bounty of nature\'s goodness.', 'Chinese Long Beans, Bunch: Extremely versatile vegetable Also known as the asparagus bean & long-podded cowpea Perfect ingredient for Chinese cuisine Try them steamed as a delicious side dish Good source of vitamins Explore delicious new recipes', 'FIELD PACK UNBRANDED', 'https://i5.walmartimages.com/asr/8b0ffdbc-2bce-48d7-beda-ba64d1c10555.fd3adc22f67e5b08653385aaa4dbe2d0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8b0ffdbc-2bce-48d7-beda-ba64d1c10555.fd3adc22f67e5b08653385aaa4dbe2d0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8b0ffdbc-2bce-48d7-beda-ba64d1c10555.fd3adc22f67e5b08653385aaa4dbe2d0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (476215106, '192pc On Walla 3#', 572.16, '405537116819', 'short description is not available', '192pc On Walla 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (476364362, 'Marketside Beyond Baby Spinach, 8 oz Clam Shell, Fresh', 4.98, '194346001521', 'Enjoy the fresh flavor of Marketside Beyond Baby Spinach. These greens are indoor and vertically grown for peak-season freshness all year long. Indoor vertical farms are a controlled growing environment giving each plant the optimal amount of light and nutrients for fresh and flavorful produce any time of the year. Farming vertically means our produce can be grown using significantly less water and land than traditional outdoor farms. Create something delicious with Marketside Beyond Baby Spinach. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Fresh and flavorful baby spinach Indoor and vertically grown for peak-season freshness all year long No pesticides, herbicides or fungicides applied to our greens Convenient peel and reseal packaging Keep refrigerated until ready to enjoy', 'Marketside Beyond', 'https://i5.walmartimages.com/asr/5b15edfc-6ee0-4784-abaf-1f6283e00f22.45c2b037aa079a43b6ebdf39b535e471.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5b15edfc-6ee0-4784-abaf-1f6283e00f22.45c2b037aa079a43b6ebdf39b535e471.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5b15edfc-6ee0-4784-abaf-1f6283e00f22.45c2b037aa079a43b6ebdf39b535e471.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (476781362, 'Cauliflower Florets 12oz', 2.58, 'deleted_854026006290', 'short description is not available', 'Cauliflower Florets 12oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (477571587, 'Manzana Gala de Mountaineer, 3 Lb.', 4.57, '038082087046', 'Manzana Gala de Mountaineer, 3 Lb.', 'Manzana Gala 12/3 Mountaineer', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/8d883673-bcdc-4d0e-a377-bc0ef667c26e.6020cde76cad8270758f69c6a7638a7f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8d883673-bcdc-4d0e-a377-bc0ef667c26e.6020cde76cad8270758f69c6a7638a7f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8d883673-bcdc-4d0e-a377-bc0ef667c26e.6020cde76cad8270758f69c6a7638a7f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (477864427, 'Organic Red Leaf Lettuce, 1 Each', 1.96, '768573710015', 'Organic Red Leaf Lettuce, 1 Each', 'Org Lettuce Red Leaf', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (478297186, 'Fresh Green Onions, 1 Each', 0.78, '848218000005', 'Fresh Green Onions, 1 Each', 'Fresh Green Onions', 'FIELDPACK UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (478332301, 'Watermelon Seedless', 4.48, '400094408421', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (478498425, 'Freshness Guaranteed Cantaloupe 16 Oz', 4.84, 'deleted_681131036528', 'short description is not available', 'Freshness Guaranteed Cantaloupe 16 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (478648006, 'Services Reduced Program Dept 94', 0.01, '252013000007', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (478943893, 'Asian Snack Gourd', 1.78, '000000049443', 'short description is not available', 'Asian Snack Gourd', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (479084873, 'Organic Mini Sweet Bell Peppers, 8 oz', 3.46, 'deleted_729062143714', 'Organic Mini Sweet Bell Peppers, 8 Oz.', 'Organic Mini Sweet Pepper', 'Fresh Produce', 'https://i5.walmartimages.com/asr/18756ff7-6c02-4666-8921-660d5a495772.d2f7454af2738abb960d530a610f4200.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18756ff7-6c02-4666-8921-660d5a495772.d2f7454af2738abb960d530a610f4200.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18756ff7-6c02-4666-8921-660d5a495772.d2f7454af2738abb960d530a610f4200.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (479396825, 'Marketside Organic Cauliflower Florets, 10 oz', 3.98, '681131161589', 'Marketside Organic Cauliflower Florets are packed fresh, washed and ready to eat for your convenience. These florets have a great fresh taste that is loaded with nutrients. Enjoy them as a healthy side or use them in all your favorite recipes. They are a great addition to pastas and casseroles. Season them with salt, pepper and garlic and serve with grilled steak, grilled Brussel sprouts and bread rolls for a filling dinner. Get creative and use it to make a cauliflower crust pizza that is a healthier alternative to traditional pizza or make homemade cauliflower rice. They come packaged inside a microwaveable bag that cooks in less than five minutes. Dinner sides are made easy with Marketside Organic Cauliflower Florets. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes. Microwave in bag: Pierce bag with fork. Microwave on high for 3 to 4 minutes or until desired tenderness. Carefully remove bag from microwave. Be cautious when opening the bag as the vegetables and steam will be very hot. Season to taste and enjoy.', 'Microwave in bag Washed and ready to eat Use to make cauliflower pizza crust or cauliflower rice 20 calories per serving Net weight 10 oz', 'Marketside', 'https://i5.walmartimages.com/asr/546ff9d7-43f4-429f-a799-d896847a281b_2.2f555e9db60555dfb077b9546fd96ead.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/546ff9d7-43f4-429f-a799-d896847a281b_2.2f555e9db60555dfb077b9546fd96ead.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/546ff9d7-43f4-429f-a799-d896847a281b_2.2f555e9db60555dfb077b9546fd96ead.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (479851882, 'Sabra Mexican Street Corn Inspired Guacamole from Hass Avocados, 16 oz', 5.88, '040822345477', 'Sabra Mexican Street Corn Inspired Guacamole will be the go-to appetizer for every summer occasion. Inspired by the delicious flavors of Mexico, our newest guacamole features juicy sweet corn, lime, and chipotle powder and is combined with hand-picked, Mexican-grown Hass avocados. This flavor-packed guacamole dip tastes just like homemade but is easy to store until serving. Whether you\'re enjoying summer fun by the pool, Memorial Day, or July 4th celebrations, it won\'t be long before Sabra Mexican Street Corn Inspired Guacamole becomes the snacking staple at every summer event.In addition to Mexican Street Corn Inspired Guacamole, Sabra offers chunky guacamole dip in a variety of irresistible flavors, including Classic, Spicy, and Classic with Lime.', 'Inspired by the flavors of Mexico, juicy sweet corn, lime, and chipotle powder are combined with hand-picked, Mexican-grown Hass avocados to create a flavorful guacamole experience. Sabra Mexican Street Corn Inspired Guacamole is served best with tortilla chips, tacos, and more for summer entertaining, BBQs or as an everyday snack. Made with ripe, hand-scooped, Mexican-grown Hass avocados (see product image for list of ingredients). Vegetarian; Kosher; GMO-free', 'Sabra', 'https://i5.walmartimages.com/asr/a36e3817-509f-46ad-86e7-9a3ace56d6fd.3625d500fb0973ea20ed0bd8b5ba050d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a36e3817-509f-46ad-86e7-9a3ace56d6fd.3625d500fb0973ea20ed0bd8b5ba050d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a36e3817-509f-46ad-86e7-9a3ace56d6fd.3625d500fb0973ea20ed0bd8b5ba050d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (479944661, 'Mann\'s Soutwest Chipotley Saute Bowl, 7.5oz', 4.98, '716519007859', 'Wam up your taste buds with the delicious blend of cauliflower, kale, kohlrabi, sweet potato, black beans, chipotle corn salsa and shredded cheddar cheese.', 'Microwaveable in just 3 minutes 9 grams of protein 180 calories Vegetarian contains Milk', 'Mann\'s', 'https://i5.walmartimages.com/asr/91507bc0-5cd0-464d-baa0-117255fd026e.f1b55a33ec39b2d965794122d21b81bb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/91507bc0-5cd0-464d-baa0-117255fd026e.f1b55a33ec39b2d965794122d21b81bb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/91507bc0-5cd0-464d-baa0-117255fd026e.f1b55a33ec39b2d965794122d21b81bb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (480123157, 'Butternut Squash', 1.18, '857610005488', 'Butternut Squash', 'Butternut Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (480188316, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094275160', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (480913027, 'Juici Apple, Each', 0.83, 'deleted_887434034678', 'short description is not available', 'Juici Apple Each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/13c7870e-6cc8-4307-badc-6053e43f5e71.227f1ff605e18c1b8e7c287107c63ea0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13c7870e-6cc8-4307-badc-6053e43f5e71.227f1ff605e18c1b8e7c287107c63ea0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13c7870e-6cc8-4307-badc-6053e43f5e71.227f1ff605e18c1b8e7c287107c63ea0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (480997704, 'Fortune Brand Dried Black Fungus, Cloud Ear, 2.5 Oz, 50 Ct', 76.73, '022652207026', 'DRIED BLACK FUNGUS (CLOUD EAR)', 'Fortune Brand Dried Black Fungus, Cloud Ear, 2.5 Oz, 50 Ct', 'FORTUNE BRAND', 'https://i5.walmartimages.com/asr/8172bfb3-b127-43d9-a696-41b61fb4fdcd.404a512b7565cce9abf12bd9c6acfd54.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8172bfb3-b127-43d9-a696-41b61fb4fdcd.404a512b7565cce9abf12bd9c6acfd54.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8172bfb3-b127-43d9-a696-41b61fb4fdcd.404a512b7565cce9abf12bd9c6acfd54.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (481074721, 'Watermelon Seedless', 4.98, '400094249864', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (481135155, 'Tomatillos, 2 lb', 2.98, '095829098079', 'short description is not available', 'Tomatillos, 2 lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f8d73b72-430f-4ad7-8ad5-2ae28a64d0c2.8d1bf1a7b580a12e415da2c55b2101bd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f8d73b72-430f-4ad7-8ad5-2ae28a64d0c2.8d1bf1a7b580a12e415da2c55b2101bd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f8d73b72-430f-4ad7-8ad5-2ae28a64d0c2.8d1bf1a7b580a12e415da2c55b2101bd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (481388369, 'Fresh Hami Melons, Each', 4.98, '098843043759', 'Treat yourself to the delicious flavor of a Fresh Hami Melon. Enjoy this tasty melon on its own as a healthy snack or incorporate it into a variety of delicious recipes. For breakfast, you can make a sweet fruit bowl with sliced melon, strawberries, pineapple, and kiwi. For an extra special treat, top with a dollop of whipped cream. Cut it into small pieces and put it in a fresh salad along with chicken, cucumbers, tomatoes, and a light dressing. You can even use this melon to make a refreshing summer cocktail, a spreadable jam, or a light sorbet. Enjoy the sweet and juicy taste of Fresh Hami Melon.', 'Fresh Hami Melons, Each Flavorful addition to many recipes Enjoy on its own or add to a mixed fruit salad Add to your fresh garden salad Get creative and make a melon cocktail or a refreshing sorbet Explore all the delicious ways to add fresh Hami melon to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e8025e6d-6a43-4c7b-aa5e-01b2bf957698.b38f4a3f90f6caffdeb598864f6d4e8f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e8025e6d-6a43-4c7b-aa5e-01b2bf957698.b38f4a3f90f6caffdeb598864f6d4e8f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e8025e6d-6a43-4c7b-aa5e-01b2bf957698.b38f4a3f90f6caffdeb598864f6d4e8f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (481738943, 'Acorn Squash', 1.18, '850489008871', 'Acorn Squash', 'Acorn Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/42805330-9346-4dd4-9362-9b71d0491d13.47ac454488713e49f4a0d82c51449b00.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42805330-9346-4dd4-9362-9b71d0491d13.47ac454488713e49f4a0d82c51449b00.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42805330-9346-4dd4-9362-9b71d0491d13.47ac454488713e49f4a0d82c51449b00.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (481931566, 'Fieldpack Unbranded Fresh Strawberries 3#', 11.68, '671704000124', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (481964956, 'Yellow Onions, 3 Lb.', 1.94, '405500157931', 'Yellow Onions, 3 Lb.', 'Yellow Onions 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (482146001, 'Fieldpack Unbranded Organic Butter Lettuce', 3.26, '716582017700', 'Fieldpack Unbranded Organic Butter Lettuce provides a fresh leafy green choice perfect for a variety of dishes. This mild-flavored butter lettuce includes Bibb and Boston varieties, known for their tender, sweet leaves forming loose, round-shaped heads. This organic lettuce is freshly sourced and provides an ideal base for salads, sandwiches, and wraps, or served alone as a fresh vegetable dish. Packaged in a recyclable bag, please wash before use for the best experience. Suitable for a wide range of diets, it\'s a must-have vegetable staple.', 'Ideal for salads and wraps providing a mild, unique flavor Packaged fresh to maintain quality and crispness Sourced with high quality and organic standards Incorporate into recipes or enjoy as a healthy snack Arrives in a recyclable and sustainable package Vegetable Type: Butter Lettuce, Container Type: Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7c6bfde8-1c27-4502-929c-684406587507.77058127e9688929bcaa54d922594751.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c6bfde8-1c27-4502-929c-684406587507.77058127e9688929bcaa54d922594751.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c6bfde8-1c27-4502-929c-684406587507.77058127e9688929bcaa54d922594751.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (482251424, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094896518', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (482348305, 'Spaghetti Squash', 1.54, 'deleted_851734005157', 'short description is not available', 'Spaghetti Squash', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (482567174, 'Yellow Flesh Peaches, per Pound', 1.58, '400094925492', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (483436025, '240pc On Ylw 3# Nv', 465.6, '400094992227', 'short description is not available', '240pc On Ylw 3# Nv', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (484232680, 'Idaho Potatoes 5 Lb Bag', 2.94, '605806001284', 'short description is not available', 'Idaho Potatoes 5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (486016828, 'Walmart Produce Vegetable Tray With No Dip 38 Oz', 10.97, '824862004156', 'short description is not available', 'Walmart Produce Vegetable Tray With No Dip 38 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (486073864, 'Fieldpack Unbranded Fresh Strawberries 1#', 3.61, '', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (486082625, '90pc Pto Idaho 10#', 537.3, '405531027968', 'short description is not available', '90pc Pto Idaho 10#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (486582872, 'Freshness Guaranteed Fresh Green Seedless Grapes', 2.28, '', 'short description is not available', 'Freshness Guaranteed Fresh Green Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (486824080, 'Chili Verde Potato Tray', 3.52, '826088936013', 'short description is not available', 'Chili Verde Potato Tray', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (486929843, '1# Bag Keylimes', 2.98, 'deleted_744430275729', 'short description is not available', '1# Bag Keylimes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (486952004, 'Fresh Strawberries, 3 lb Container', 5.92, '033383200606', 'The sweet, juicy flavor of Fresh Strawberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. They contain essential vitamins and nutrients like, vitamin C, dietary fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh Strawberries today and savor the delectable flavor.', 'Fresh Strawberries, 3 lb Clamshell: Prior to serving gently wash the strawberries and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'University at Buffalo', 'https://i5.walmartimages.com/asr/b55a6c9b-6212-422e-ab0a-14750f029a94.7088d1695522e0f6442a1d5f73a40350.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b55a6c9b-6212-422e-ab0a-14750f029a94.7088d1695522e0f6442a1d5f73a40350.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b55a6c9b-6212-422e-ab0a-14750f029a94.7088d1695522e0f6442a1d5f73a40350.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (487389193, 'Fieldpack Unbranded Cello Lettuce', 2.16, 'deleted_405815733905', 'short description is not available', 'Fieldpack Unbranded Cello Lettuce', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (487442490, 'Fresh California Grown Nectarines, 1 Lb.', 1.78, 'deleted_400094805534', 'Fresh California Grown Nectarines, 1 Lb.', 'Fresh California Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (487454717, 'Fresh Green Seedless Grapes', 30, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (488227828, 'Walmart Produce Melon Berry Medley 10 Oz', 2.98, '826766254248', 'short description is not available', 'Walmart Produce Melon Berry Medley 10 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (489202983, 'Fresh Red Grapefruit, Each', 1.18, 'deleted_082202042859', 'The ideal balance between tart and sweet, this Fresh Red Grapefruit is great for both savory and sweet dishes any time of day. Enjoy half of a grapefruit sprinkled with sugar with some eggs in the morning for a light, sweet breakfast. Slice it up and put in a salad with spinach, avocado, and red onion topped with a mustard and balsamic vinegar dressing for lunch or dinner. Make delicious grapefruit bars that showcase the sweet and tartness of this versatile fruit. In addition, it\'s a great source of vitamin C and vitamin A. With such versatility, Fresh Red Grapefruit will become a pantry staple in your home.', 'Great for both savory and sweet dishes Enjoy it for breakfast, lunch, dinner, or dessert Enjoy half a grapefruit sprinkled with sugar in the morning Slice it up and put it in salad for lunch or dinner Make delicious grapefruit bars Great source of vitamin C and vitamin A', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c23d870b-225f-4818-afe3-0b4add48afe6.b78126a7bd277fd29afbeb21dac10e04.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c23d870b-225f-4818-afe3-0b4add48afe6.b78126a7bd277fd29afbeb21dac10e04.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c23d870b-225f-4818-afe3-0b4add48afe6.b78126a7bd277fd29afbeb21dac10e04.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (489671406, 'ONETANG Natural Dried Shiitake Mushrooms - Premium Flavors |AAA Grade Extra Dry Mushrooms for Soups, Sauces, Pasta and Risotto, Rehydrate Quickly, All Natural & Vegan | 16 Oz', 21.99, '', 'ONETANG Dried Shiitake Mushrooms 16 oz Shiitake mushroom is known as the king of delicacies with high protein and low fat. Dried mushroom, add no preservatives, process without sulfur fumigation, best-selling in European and American markets for more than ten years, safe and delicious, is your best choice for health. In order to secure quality, we strictly control every aspect from cultivation to the finished product. Product Net Content Uom: Ounces (oz)', 'Dried mushrooms 16.00 oz of vacuum packing keep the freshness of products and prolong the shelf life of products. Mushroom raw material selection Xixia mushroom of China National Geographical Indications Products. Shiitake mushroom is fragrant and rich, the meat is thick and thin, the species is authentic and the source is selected. Conform to the laws of nature and pick them in time, 100% New Crop. No Fumigation Sulfur, No Artificial Additive, mushroom foot length control less Than 1cm, strict control of the water standards, moisture content less Than 13%. BRC, ISO22000, HACCP certificated factory.', 'ONETANG', 'https://i5.walmartimages.com/asr/58abaacf-b90b-479d-a9bd-cb7ddd01d88a.f11ec2244e11f0d6f470b9148de405d5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58abaacf-b90b-479d-a9bd-cb7ddd01d88a.f11ec2244e11f0d6f470b9148de405d5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58abaacf-b90b-479d-a9bd-cb7ddd01d88a.f11ec2244e11f0d6f470b9148de405d5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (490594701, 'Fresh Bicolor Grapes, 2lb', 5.88, '854957001760', 'short description is not available', 'Four Star Fruit Bicolor Grapes 2lb', 'Unbranded', 'https://i5.walmartimages.com/asr/48c81eac-d62f-4059-9fc8-1fbdd6c35be7.7c0fab2724e9604d4f1ebff2fef422ac.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/48c81eac-d62f-4059-9fc8-1fbdd6c35be7.7c0fab2724e9604d4f1ebff2fef422ac.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/48c81eac-d62f-4059-9fc8-1fbdd6c35be7.7c0fab2724e9604d4f1ebff2fef422ac.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (490974576, 'BrightFarms Sweet Baby Butter Leaf Lettuce, 4 oz Salad', 2.48, '857062004848', 'BrightFarms Sweet Baby Butter is the perfect base for any salad, burger or sandwich. It is delicate and sweet, while having a satisfying crunch. Grown nearby in a state-of-the-art greenhouse, the salad greens go from farm to store in as little as 24 hours ensuring they are fresh, crunchy and long-lasting in your fridge -- in fact we guarantee it! By growing indoors using a hands-free growing process, we eliminate the use of pesticides on our produce so that the greens are ready to eat from the container, with no need to wash. At BrightFarms, we are on a mission to grow salads in a way that is better for people and the planet, transforming the way people eat and enjoy fresh produce - and shaping a more sustainable future for food.', 'Pesticide, herbicide and fungicide free greens Greenhouse grown, for guaranteed fresh greens year-round No need to wash Responsibly grown, harnessing the power of technology to do more with less: less water, less land, less shipping fuel to produce more Non-GMO', 'BrightFarms', 'https://i5.walmartimages.com/asr/08f8d57c-6ee7-488b-9a78-aafc501cf589.8c17c737e1bbf3c6c08080b0e618223a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/08f8d57c-6ee7-488b-9a78-aafc501cf589.8c17c737e1bbf3c6c08080b0e618223a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/08f8d57c-6ee7-488b-9a78-aafc501cf589.8c17c737e1bbf3c6c08080b0e618223a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (490994170, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094226612', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (491080312, '200pc Pto Ykn/red Wa', 1074, '405536360398', 'short description is not available', '200pc Pto Ykn/red Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (492068757, 'Anjou Pears, 4 lb', 4.97, '741839007005', 'Anjou Pears, 4 Lb.', '4lb Bag Of Danjou Pears', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9c58b4e3-6dee-44fa-9489-4b8056bfb81b_1.77992124e814dfb65dcbefb14d277f1c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9c58b4e3-6dee-44fa-9489-4b8056bfb81b_1.77992124e814dfb65dcbefb14d277f1c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9c58b4e3-6dee-44fa-9489-4b8056bfb81b_1.77992124e814dfb65dcbefb14d277f1c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (492079621, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094244333', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (492157309, 'California Grown Peaches, per Pound', 1.58, '400094272695', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (492728125, 'Ogp Red Cherry Samples', 0.01, '405836031615', 'short description is not available', 'Ogp Red Cherry Samples', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (492826017, 'Services Reduced Program Dept 94', 0.01, '251688000008', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (492909841, 'Marketside Fresh Cut Watermelon, 16 oz Tray', 3.84, '681131180665', 'Enjoy the sweet, refreshing taste of Marketside Watermelon. This pre-cut watermelon is great for breakfast, lunch, dessert, or when you want a snack. Watermelon is a good source of vitamin C, vitamin A, and potassium making them an excellent healthy treat. You can eat them right out of the container, infuse them with water for a refreshing drink, or chop them up and make a mouthwatering watermelon salad with feta and mint. With 16-ounces in each container, this watermelon is great for sharing with friends and family or keeping it for yourself. It comes in a re-closable container to help maintain freshness. Bring home Marketside Cut Watermelon today for a refreshing, healthy treat. Marketside provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Marketside item.', 'Marketside Cut Watermelon, 16 oz Sweet and Juicy Pre-cut watermelon spears in a convenient resealable package to keep fruit fresh and allow for easy storage. Ideal for busy lifestyles, picnics, road trips school lunches, quick snacks or salads. Good source of vitamins A and C No preservatives, artificial colors or artificial flavors Perfect for your next backyard cookout Net weight: 16 oz', 'Marketside', 'https://i5.walmartimages.com/asr/8d2dca33-59ca-4dbf-bc01-b9ecee0088e4.75cb490cee40ed3f873adce45d567e9d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8d2dca33-59ca-4dbf-bc01-b9ecee0088e4.75cb490cee40ed3f873adce45d567e9d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8d2dca33-59ca-4dbf-bc01-b9ecee0088e4.75cb490cee40ed3f873adce45d567e9d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (493382771, 'California Grown Peaches, per Pound', 1.58, '400094032831', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (493939971, 'Watermelon Seedless', 4.98, '405503747672', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (494269858, 'Sweet Potatoes 3 Lb Bag', 4.24, 'deleted_859061002092', 'short description is not available', 'Sweet Potatoes 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (494841739, 'Fresh Raspberries, 6 Oz.', 2.68, 'deleted_400094529850', 'Fresh Raspberries, 6 Oz.', 'Fresh Raspberries 6 Oz.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/294af397-a9f6-496c-ac4c-39b78883f091.ae76131c0ace8707ec7a1768df95e83f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/294af397-a9f6-496c-ac4c-39b78883f091.ae76131c0ace8707ec7a1768df95e83f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/294af397-a9f6-496c-ac4c-39b78883f091.ae76131c0ace8707ec7a1768df95e83f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (495221568, '128pc Grapefruit 5#', 765.44, '405735963871', 'short description is not available', '128pc Grapefruit 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (495468034, 'Watermelon Seedless', 4.98, '400094341001', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (495594427, 'Yellow Onions, 4 Lb.', 2.58, '061061000231', 'Yellow Onions, 4 Lb.', 'Yellow Onions 4 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (496579767, 'Cantaloupe', 0.01, '717524414427', 'short description is not available', 'Cantaloupe', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (496705033, 'Cucumber', 0.62, '405966230384', 'short description is not available', 'Cucumber', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (496710622, 'Nm Hatch Chili Hot 10# Sold By Box Only', 12.98, '851533003767', 'short description is not available', 'Nm Hatch Chili Hot 10# Sold By Box Only', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (496747410, 'Produce Unbranded Snack Fresh Red Apples With Grapes 2.5oz', 0.98, '074641026101', 'short description is not available', 'Snack Fresh Red Apples With Grapes 2.5oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (496873341, '240pc On Ylw 3# Rio', 465.6, '405500887364', 'short description is not available', '240pc On Ylw 3# Rio', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (497286341, '90pc Pto Rst 10# Bw', 444.6, '405530523775', 'short description is not available', '90pc Pto Rst 10# Bw', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (497633427, 'Services Reduced Program Dept 94', 0.01, '251685000001', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (498377886, 'Watermelon Seedless', 4.48, '400094234303', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (498803758, 'Watermelon Seedless', 4.48, '400094984864', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (498897689, 'Sweet Tearless Onion Sample', 0.01, '405790162882', 'short description is not available', 'Sweet Tearless Onion Sample', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (499008313, 'Organic Microwavable Potatoes, 1 Each', 1.28, '834344000460', 'Organic Microwavable Potatoes, 1 Each', 'Organic Microwavable Potatoes Per Each', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (499409360, 'Services Reduced Program Dept 94', 0.01, '251696000007', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (499673207, 'Freshness Guaranteed Berry Blend Medium', 7.71, '262823000005', 'short description is not available', 'Freshness Guaranteed Berry Blend Medium', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (500152257, 'Fresh Organic Mandarin Oranges, 2 lb Bag', 5.36, 'deleted_849315000417', 'Enjoy the fresh sweetness of Organic Mandarin Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these mandarin oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are also used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. However you choose to use them, Organic Mandarin Oranges add flavor to any meal or beverage.', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast Adds flavor to a variety or recipes Use as a garnish for your favorite cocktail Make sweet desserts like ambrosia, orange bars, and orange pie Grown, harvested, and packed without chemicals, pesticides or preservatives Available in a 2-pound bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/19ae05d6-ea3b-4ac0-ae57-7166e37dca18_3.b04fb12f9b7fd7a78a5bb358420c6ad2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19ae05d6-ea3b-4ac0-ae57-7166e37dca18_3.b04fb12f9b7fd7a78a5bb358420c6ad2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19ae05d6-ea3b-4ac0-ae57-7166e37dca18_3.b04fb12f9b7fd7a78a5bb358420c6ad2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (500238731, 'Freshness Guaranteed Strawberry Blueberry Blend, 16 oz', 6.97, '681131180641', 'short description is not available', 'Freshness Guaranteed Strawberry Blueberry Blend 16 Oz', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (500464351, 'Fresh White Peaches', 1.88, 'deleted_896460002087', '', '', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (500897525, 'Watermelon Seedless', 4.48, '400094408353', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (501342734, '180pc Apple Pink 3#', 889.2, '405671384662', 'short description is not available', '180pc Apple Pink 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (501968584, 'Fresh Cauliflower Florets', 2.47, '000000045667', 'short description is not available', 'Fresh Cauliflower Florets', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (502955747, '180pc Pto Rst 10# Ff', 889.2, '405532891636', 'short description is not available', '180pc Pto Rst 10# Ff', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (503293508, '210pc On Vid 3# Ps', 827.4, '405539562461', 'short description is not available', '210pc On Vid 3# Ps', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (503325294, 'Fresh Green Seedless Grapes, 2lb', 7.47, '', 'Treat yourself to the delicious, juicy flavor of Fresh Red Grapes. These grapes are bursting with sweet flavor, so you can easily enjoy a handful as a fresh snack any time of day. Enjoy them for breakfast, lunch, dinner, or dessert. They are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Fresh Red Grapes.', 'Fresh Green Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (503710389, 'Fresh Pluots, 2 lb Bag', 4.97, '683953001173', 'Fresh Plumcots are the perfect blend of flavor and texture of a plum and an apricot. There are more than 20 different plumcot varieties, each one with its own distinct appearance, color, and size. You can use them as a substitute in recipes with plums for a sweet twist. Bake a mouthwatering plumcot cake, plumcot and blueberry crisp, or roast them with honey and goat cheese for a decadent dish. Enjoy it as is as a healthy snack, add it to your lunch for a healthy side, or pack multiple and take on a picnic with friends and family. Enjoy the delicious flavor of Fresh Plumcots.', 'Fresh Plumcots, 2 lb Bag Perfect blend of a plum and an apricot Use as a substitute in recipes using plums Bake a mouthwatering plumcot cake, plumcot and blueberry crisp, or roast them with honey and goat cheese Enjoy it as is as a healthy snack, add it to your lunch for a healthy side, or pack multiple and take on a picnic More than 20 different plumcot varieties', 'Produce UB', 'https://i5.walmartimages.com/asr/14136e15-a1ea-4b02-ab6b-66000369a6d7.6e0e5eeedc6ec892f6a5f000ba057ff8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/14136e15-a1ea-4b02-ab6b-66000369a6d7.6e0e5eeedc6ec892f6a5f000ba057ff8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/14136e15-a1ea-4b02-ab6b-66000369a6d7.6e0e5eeedc6ec892f6a5f000ba057ff8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (503943948, '256pc On Ylw 3# Ca', 496.64, '405564999386', 'short description is not available', '256pc On Ylw 3# Ca', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (504212237, 'Kamo Komo Bumpy Pumpkin', 4.98, '823298001609', 'short description is not available', 'Kamo Komo Bumpy Pumpkin', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (504822926, 'Fresh Green Seedless Grapes', 3.27, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (505135856, 'Greens Greens Trop', 2.98, 'deleted_060556606019', 'short description is not available', 'Greens Greens Trop', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/5a3fb5f8-4fd5-4388-9a24-3f26b09f40d7.38119a8e6433dd5486c047958015de6d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a3fb5f8-4fd5-4388-9a24-3f26b09f40d7.38119a8e6433dd5486c047958015de6d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a3fb5f8-4fd5-4388-9a24-3f26b09f40d7.38119a8e6433dd5486c047958015de6d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (505172181, 'BBQ Ranch', 3.63, '071279309071', 'BBQ Ranch Chopped Kit contains cauliflower, kale, red cabbage, green cabbage, carrot and a master pack containing BBQ Ranch dressing, roasted soy nuts, bacon, freeze dried corn, and chia seeds packed in a 11.3-ounce polyethylene bag. Product has the typical flavor and crispness of smoky BBQ salads with shades of green, white, orange and purple colors depending on the individual ingredient.', 'BBQ Ranch Chopped Kit contains cauliflower, kale, red cabbage, green cabbage, carrot and a master pack containing BBQ Ranch dressing, roasted soy nuts, bacon, freeze dried corn, and chia seeds packed in a 11.3-ounce polyethylene bag. Product has the typical flavor and crispness of smoky BBQ salads with shades of green, white, orange and purple colors depending on the individual ingredient.', 'Fresh Express', 'https://i5.walmartimages.com/asr/4adf89af-044c-4108-ba90-e277a8f5129b.3339e3a93862571bdd1082964b61ffa4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4adf89af-044c-4108-ba90-e277a8f5129b.3339e3a93862571bdd1082964b61ffa4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4adf89af-044c-4108-ba90-e277a8f5129b.3339e3a93862571bdd1082964b61ffa4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (505467900, 'Fresh Strawberries, 2 lb', 5.84, '862264000178', 'short description is not available', 'Fresh Strawberries, 2 lb', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/d848296e-0770-439e-8437-aa945df49859_1.77691e3b66c66fc357d69ed2bef7db42.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d848296e-0770-439e-8437-aa945df49859_1.77691e3b66c66fc357d69ed2bef7db42.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d848296e-0770-439e-8437-aa945df49859_1.77691e3b66c66fc357d69ed2bef7db42.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (505746814, 'Marketside Fresh Chopped Cauliflower, 12 oz', 2.98, '681131221818', 'Add fresh and ready to eat chopped cauliflower to your meal with Marketside Chopped Cauliflower. Serve as is, or add your favorite spices for additional flavor. Add onion, thyme, garlic, olive oil, parmesan cheese, salt and pepper to cauliflower to create a yummy side dish, use as a substitute for rice in stir fries and skillet meals, or steam and mash as a change of pace from mashed potatoes. As a good source of calcium, potassium, and dietary fiber and a quick cooking time of 3-4 minutes in the microwave, Marketside Chopped Cauliflower is an easy and nutritious addition to any meal. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Washed and ready to eat Great addition to any meal Healthy side Net weight 12 oz', 'Marketside', 'https://i5.walmartimages.com/asr/f475f0c2-93ac-40b0-a8af-1c7242c2d679_1.701a98638269130e137cfc0109eff257.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f475f0c2-93ac-40b0-a8af-1c7242c2d679_1.701a98638269130e137cfc0109eff257.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f475f0c2-93ac-40b0-a8af-1c7242c2d679_1.701a98638269130e137cfc0109eff257.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (505869327, 'Fresh Dark Sweet Cherries', 84.5, '', 'short description is not available', 'Fresh Dark Sweet Cherries', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (506071035, 'HI Green Giant Fresh Cut and Harvested Produce Asparagus, 12 oz', 5.92, '605806124242', 'Provide your family with a healthy serving of nutritious vegetables when you serve up a steaming hot dish of Asparagus. This asparagus is loaded with nutrients and has a great fresh taste. This versatile vegetable can be prepared in a myriad of different ways. Saute the spears with olive oil, salt, pepper, and a hint of lemon juice for a healthy and flavorful vegetable side that will pair well with a wide array of main dishes. Add these asparagus spears to pasta, salads, casseroles, and other inventive meal options. You can even incorporate them into quiches and frittatas for brunch. Get creative in the kitchen while fueling your body with nutrient-dense vegetables when you bring home a bunch of Asparagus.', 'Asparagus, Bunch: Loaded with nutrients and have a great fresh taste Saute them with olive oil, salt, pepper, and a hint of lemon juice for a healthy and flavorful vegetable side that will pair well with a wide array of main dishes Get creative in the kitchen Add these asparagus spears to pasta, salads, casseroles, and other inventive meal options Add to quiches and frittatas for brunch', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1b335dfb-660f-4fdb-8265-8a2c7e24fc66.473fed3769f358f01d9541cd196c1d27.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1b335dfb-660f-4fdb-8265-8a2c7e24fc66.473fed3769f358f01d9541cd196c1d27.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1b335dfb-660f-4fdb-8265-8a2c7e24fc66.473fed3769f358f01d9541cd196c1d27.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (507748869, 'Earthbound Farm® Organic Pure Veggie Snack Tray 7oz', 2.5, '032601952785', 'Our Earthbound Farm Organic Pure Veggies Snack Tray is all fresh, organic, and deliciously ready to snack on! We are proud to provide the freshest, most delicious organic produce to your table, and we stand behind our freshness guarantee. Especially happy? Not quite? Get in touch: 800-690-3200 or www.earthboundfarm.com.', 'Organic vegetables Organic snack tray with ranch dip Ready to eat Easy to enjoy on the go', 'Earthbound Farm', 'https://i5.walmartimages.com/asr/790a892b-2bac-408b-ab75-0d83c77d2d41.ca0272ac18f814b395c68a4fb12d447a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/790a892b-2bac-408b-ab75-0d83c77d2d41.ca0272ac18f814b395c68a4fb12d447a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/790a892b-2bac-408b-ab75-0d83c77d2d41.ca0272ac18f814b395c68a4fb12d447a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (508008977, 'Osg Sq. End Mill,Single End,Cobalt,1/2\"', 1.98, '000000045001', 'short description is not available', 'Osg Sq. End Mill,Single End,Cobalt,1/2\"', 'Fresh Produce', 'https://i5.walmartimages.com/asr/76b7849a-4c6f-40bd-852e-668cd9bc68fb_1.1eb6383f99a0221ba31ddd3e46d917a0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/76b7849a-4c6f-40bd-852e-668cd9bc68fb_1.1eb6383f99a0221ba31ddd3e46d917a0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/76b7849a-4c6f-40bd-852e-668cd9bc68fb_1.1eb6383f99a0221ba31ddd3e46d917a0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (509045623, '180pc Pto Ykn 5# Bg', 894.6, '400094040621', 'short description is not available', '180pc Pto Ykn 5# Bg', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (509140943, 'Fresh Explora Greens Butter Lettuce, Each', 3.37, '860003148709', 'Butter lettuce, with its tender texture and vibrant green or rich reddish-purple hue, is a versatile addition to your culinary creations. Its scrumptious leaves are perfect for crafting delicate lettuce wraps, refreshing salads, or adding a layer of crispness to sandwiches. Elevate your meals with the delightful taste of butter lettuce and enjoy a healthy and visually stunning ingredient in your dishes.', 'Explora Greens Butter Lettuce EXCELLENT SOURCE OF VITAMIN K GOOD SOURCE OF FOLATE AND VITAMIN A LUTEIN AND ZEAXANTHIN', 'Unbranded', 'https://i5.walmartimages.com/asr/ceaa08d6-65be-416d-83ef-73134ab8ee4a.00573136366abf6242edc0b6eede4ead.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ceaa08d6-65be-416d-83ef-73134ab8ee4a.00573136366abf6242edc0b6eede4ead.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ceaa08d6-65be-416d-83ef-73134ab8ee4a.00573136366abf6242edc0b6eede4ead.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (509675803, 'Yellow Flesh Peaches, per Pound', 1.58, '400094137666', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (510053660, 'Watermelon Seedless', 4.48, '400094132753', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/80e452f5-b8cf-4153-aece-3be7089fe8ba.3368806e6c74c9618f1c6305a5b16339.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/80e452f5-b8cf-4153-aece-3be7089fe8ba.3368806e6c74c9618f1c6305a5b16339.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/80e452f5-b8cf-4153-aece-3be7089fe8ba.3368806e6c74c9618f1c6305a5b16339.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (510263564, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094183991', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (510372066, 'Turnip Greens', 0.98, 'deleted_073064000996', 'short description is not available', 'Turnip Greens', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (510430339, 'Green Bell Pepper', 0.78, 'deleted_852713002013', 'short description is not available', 'Green Bell Pepper', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (510596888, 'Fieldpack Unbranded Pepper Mini Sweet', 2.98, 'deleted_733821200808', 'short description is not available', 'Fieldpack Unbranded Pepper Mini Sweet', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (511188322, 'Aroma One Organics Garlic Puree', 2.98, '750448908658', 'Aroma One Organics Garlic Puree 80G Transform your dishes with the Aroma One Organics Garlic Puree 80G, an essential pantry item for any home cook. Made from organically grown, carefully selected garlic, this puree brings a potent, bold flavor to any recipe. Whether you’re preparing garlic bread, a flavorful stir-fry, or a savory marinade, this puree offers the perfect balance of convenience and authenticity.', '100% Organic: Pure garlic with no additives or chemicals, for a clean and natural taste. Convenient and Time-Saving: Ready-to-use, eliminating the need for peeling and mincing fresh garlic. Bold and Robust Flavor: Adds a rich and intense garlic taste that will elevate your dishes instantly. Versatile: Ideal for sauces, dressings, soups, dips, and more No Artificial Ingredients: Free from preservatives, colors, or flavor enhancers, making it a clean choice for health-conscious consumers. Packed with Health Benefits: Garlic is renowned for its immune-boosting properties and heart-healthy benefits. Eco-Friendly: Produced in sustainable conditions, supporting environmentally responsible farming practices. Long-Lasting Freshness: Enjoy fresh garlic flavor year-round with a long shelf life. Ideal for Quick Meals: Perfect for busy cooks who want the full flavor of garlic without the preparation time. Make every meal a standout with the bold, pungent flavor of Aroma One Organics Garlic Puree 80G. Whether you\'re cooking up a quick weeknight dinner or creating a gourmet dish, this garlic puree is the perfect way to enhance your recipes in no time.', 'Aroma One', 'https://i5.walmartimages.com/asr/926b69c7-a163-4f0f-832e-a062f4614c54.a657216bd89bf415c90454517f4e4fa3.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/926b69c7-a163-4f0f-832e-a062f4614c54.a657216bd89bf415c90454517f4e4fa3.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/926b69c7-a163-4f0f-832e-a062f4614c54.a657216bd89bf415c90454517f4e4fa3.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (511593628, 'Melon Agua Sin Semilla', 0.68, '405859527126', 'Introducing Melon Agua Sin Semilla, the seedless watermelon that delivers a refreshing and hydrating experience like no other! This delicious fruit boasts a vibrant, juicy interior packed with naturally sweet flavors, perfect for satisfying your cravings on a hot summer day. With its seedless feature, you can enjoy hassle-free snacking without interruptions. Ideal for smoothies, fruit salads, or simply eating on its own, Melon Agua Sin Semilla provides a healthy, mouthwatering, and convenient option for everyone in the family.', 'Melon Agua Sin Semilla Introducing Melon Agua Sin Semilla, the seedless watermelon that delivers a refreshing and hydrating experience like no other! This delicious fruit boasts a vibrant, juicy interior packed with naturally sweet flavors, perfect for satisfying your cravings on a hot summer day. With its seedless feature, you can enjoy hassle-free snacking without interruptions. Ideal for smoothies, fruit salads, or simply eating on its own, Melon Agua Sin Semilla provides a healthy, mouthwatering, and convenient option for everyone in the family.', 'Unbranded', 'https://i5.walmartimages.com/asr/d85d5fc1-b53e-4fbf-88e1-b1c90ab4a5a0.cf9c8c3ed26b901081a195d2bf794ecb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d85d5fc1-b53e-4fbf-88e1-b1c90ab4a5a0.cf9c8c3ed26b901081a195d2bf794ecb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d85d5fc1-b53e-4fbf-88e1-b1c90ab4a5a0.cf9c8c3ed26b901081a195d2bf794ecb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (511896139, 'Tomato on the Vine, Bag', 2.48, '405545141070', 'Keep your recipes simple and classic with fresh tomatoes on the vine. With their vibrant red color, firm and juicy flesh, and unmistakably delicious flavor, this fresh produce item is sure to impress more than just your taste buds. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. The list is endless! Plus, they come right to your kitchen still on the vine that they grew on, meaning that their mouthwatering taste and freshness will be long-lasting for your culinary convenience. Stock up on Walmart\'s Tomatoes On The Vine and keep your dishes looking great and tasting equally as excellent.', 'Tomatoes On The Vine Per Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (512375019, 'Fresh Bells Nursery Hot House Cucumber', 4.34, '045009853820', 'Introducing our fresh hot house cucumbers - a crispy and refreshing addition to your meals. Grown in controlled environments, these cucumbers boast a vibrant green color and unparalleled flavor. Enjoy them sliced in salads, as a healthy snack, or add them to sandwiches for a satisfying crunch. With their firm texture and delicious taste, our hot house cucumbers are a must-have for any kitchen.', 'Bells Nursery Hot House Cucumber Introducing our fresh hot house cucumbers - a crispy and refreshing addition to your meals. Grown in controlled environments, these cucumbers boast a vibrant green color and unparalleled flavor. Enjoy them sliced in salads, as a healthy snack, or add them to sandwiches for a satisfying crunch. With their firm texture and delicious taste, our hot house cucumbers are a must-have for any kitchen.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a64a9fa0-a464-4b36-8a09-4443dce4274c.cbbf75c953a480bd4c4d466d513095ad.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a64a9fa0-a464-4b36-8a09-4443dce4274c.cbbf75c953a480bd4c4d466d513095ad.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a64a9fa0-a464-4b36-8a09-4443dce4274c.cbbf75c953a480bd4c4d466d513095ad.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (512436619, 'Limon, 2 Lb.', 2.98, '', 'Limon, 2 Lb.', 'Limon 2 Libra', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/d2a57a4d-81dd-4642-9a6c-34034c47e854.dd0ad7a462637eb25c491f9aa19edaec.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d2a57a4d-81dd-4642-9a6c-34034c47e854.dd0ad7a462637eb25c491f9aa19edaec.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d2a57a4d-81dd-4642-9a6c-34034c47e854.dd0ad7a462637eb25c491f9aa19edaec.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (512640325, 'Mandarin Oranges, 5 Lb.', 6.67, '405509867718', 'Mandarin Oranges, 5 Lb.', '5# Mandarins', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (513117019, 'Grape Tomatoes', 2.48, '405565638079', 'short description is not available', 'Grape Tomatoes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (513117651, 'Shrink Cap | Fawn Green w/Large Midnight Black Grapes (100/Pack)*', 29.95, '776982330953', 'Elevate Your Wine Experience with Our European Crafted Shrink Caps Enhance Bottle Presentation and Ensure Freshness with Our Shrink Caps! Our Premium Shrink Caps are the perfect addition to any wine bottle, combining elegance with functionality. These caps, expertly crafted in Europe, not only enhance the visual appeal of your bottles but also play a crucial role in maintaining the cork\'s integrity. Our shrink caps are ideal for winemakers, wine enthusiasts, or those who love to gift homemade wine. They are a simple yet effective way to elevate your wine\'s presentation and ensure freshness. Key Features: High-Quality Material:Manufactured in Europe, guaranteeing premium quality and durability. Universal Fit:Designed to fit 375ml, 750ml, and 1500ml wine bottles perfectly. Easy Tear-Off Design:Facilitates a smooth bottle-opening experience. Precise Dimensions:Measuring 30.5mm x 55mm for a flawless fit. Elevated Presentation:Adds a sophisticated touch to any wine bottle. Usage Guide: Slide the Cap:Place the shrink cap over the neck of the wine bottle. Apply Heat:Use a heat gun or steam to shrink the cap around the bottleneck securely. Tear & Pour:Enjoy the easy tear-off design for quick access to your wine. FAQs: Q:Can these shrink caps be used for beverages other than wine?A:They are versatile for any bottled beverage with compatible dimensions. Q:How resistant are these caps to external factors like moisture?A:Crafted with high-quality materials, they resist moisture and other external elements effectively. Q:Are special tools required for application?A:A heat gun or steam source is needed to secure the cap\'s shrinking. Q:Do these caps leave any residue upon removal?A:No, they are designed for clean and residue-free removal.', 'High-Quality Corks and Stoppers for Wine Bottles – Designed to provide a secure seal, preserving the freshness and flavor of your wine with every use. Perfect for Home and Professional Winemakers – Whether for DIY projects or commercial bottling, our corks and stoppers ensure reliable performance and a professional finish. Durable and Easy to Use – Made from premium materials, our wine corks and stoppers are easy to insert and remove, making them ideal for sealing and storing your homemade beverages.', 'ABC Cork', 'https://i5.walmartimages.com/asr/f66194ef-68c5-4a8f-9f6e-e3797a5bf0a0.52a604284f469b3ecc4a35ff1d9866be.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f66194ef-68c5-4a8f-9f6e-e3797a5bf0a0.52a604284f469b3ecc4a35ff1d9866be.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f66194ef-68c5-4a8f-9f6e-e3797a5bf0a0.52a604284f469b3ecc4a35ff1d9866be.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (513678639, 'Cebolla Pearl Red 12/8oz', 2.98, '018513018078', 'Red Pearl Onion', 'Produce', 'Panda Farms', 'https://i5.walmartimages.com/asr/eee2b4b6-853c-4ddb-a016-b1cf970e325f_1.d169f8631d8fa9fc647253a38edac5d9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eee2b4b6-853c-4ddb-a016-b1cf970e325f_1.d169f8631d8fa9fc647253a38edac5d9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eee2b4b6-853c-4ddb-a016-b1cf970e325f_1.d169f8631d8fa9fc647253a38edac5d9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (513717552, 'Yellow Flesh Peaches, per Pound', 1.58, '400094343906', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (514767156, 'Fresh Green Seedless Grapes', 1.78, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (514780839, 'Yellow Flesh Peaches, per Pound', 1.58, '400094343418', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (514990308, 'Fresh Dark Sweet Cherries', 7.98, '', 'short description is not available', 'Fresh Dark Sweet Cherries', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (515024184, 'Fresh Valencia Orange, Each', 1.37, '405878099826', 'Fresh Valencia Orange is a juicy and vibrant citrus fruit with a sweet and tangy flavor. Known for its bright orange color and refreshing taste, it is a popular choice for both eating and juicing. With its high vitamin C content and refreshing aroma, Fresh Valencia Orange is a healthy and delicious addition to any meal or snack.', 'Fresh Valencia Orange is a delightful citrus fruit that offers a burst of juicy goodness with every bite. Its vibrant and enticing bright orange color is a feast for the eyes, while its sweet yet tangy flavor is a treat for the taste buds. This versatile fruit is widely recognized for its refreshing taste, making it a perfect choice for both eating and juicing. What sets Fresh Valencia Orange apart is its exceptional juiciness, which makes it an ideal candidate for extracting fresh and flavorful orange juice. The juice of this variety is known for its distinct sweetness and tang, offering a refreshing and invigorating experience with every sip. Whether enjoyed on its own or mixed in with other fruits, this orange variety is a fantastic way to quench your thirst and revitalize your senses. In addition to its delectable taste, Fresh Valencia Orange is also packed with nutritional benefits. One of its standout qualities is its high vitamin C content, which is essential for boosting the immune system and promoting overall health. This vitamin not only helps protect against common illnesses but also aids in collagen production, contributing to healthy skin and connective tissues. The aroma of Fresh Valencia Orange is equally enticing, filling the air with a citrusy and invigorating scent. The mere whiff of this fruit can instantly uplift your mood and transport you to a sunny orchard, creating a sensory experience that is truly delightful. Whether enjoyed as a snack on its own, squeezed into a refreshing glass of juice, or incorporated into various recipes, Fresh Valencia Orange offers a burst of flavor and a dose of health benefits. Its juicy and tangy nature, coupled with its vibrant color and refreshing aroma, make it a must-have addition to any culinary repertoire. So, embrace the zestiness and indulge in the delightful flavors of Fresh Valencia Orange for a truly invigorating and enjoyable experience.', 'Unbranded', 'https://i5.walmartimages.com/asr/51f232ae-5f25-4c84-938e-a09f4bee8278.6363c8bd69cafa25a7a57d16039fa8ac.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/51f232ae-5f25-4c84-938e-a09f4bee8278.6363c8bd69cafa25a7a57d16039fa8ac.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/51f232ae-5f25-4c84-938e-a09f4bee8278.6363c8bd69cafa25a7a57d16039fa8ac.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (515076572, 'Fresh Lemons, 2 lb Bag', 3.92, 'deleted_842586100138', 'Enjoy the juicy goodness of citrus when you eat a Lemon. Deliciously tart and juicy, these lemons are very easy to squeeze. Among the fruits in the citrus family, lemons have a pleasing tart flavor with few seeds. Generally a winter fruit, lemons are now available year-round. Lemons are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the lemons hang out in a bowl on your counter or table to breathe. Lemons are great to cook, bake, add a twist to your water or your after hours favorite drink. Available in a 2 lb bag.', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Add to your iced or hot tea Make a satisfying and refreshing strawberry lemonade Use lemon zest to make lemon cookies or lemon loaf Adds flavor to a variety or recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/03038099-488e-4089-9289-df46ee43fe7a.55fc8dfe15cdf98e017420d5cd6b61e3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/03038099-488e-4089-9289-df46ee43fe7a.55fc8dfe15cdf98e017420d5cd6b61e3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/03038099-488e-4089-9289-df46ee43fe7a.55fc8dfe15cdf98e017420d5cd6b61e3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (515121290, 'Fresh Black Seedless Grapes, Bag (2.25 lbs/Bag Est.)', 2.98, '073748111116', 'Treat yourself to the delicious, juicy flavor of Fresh Black Seedless Grapes. These grapes are bursting with flavor and are completely seedless, so you can easily enjoy a handful as a fresh snack any time of day. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the fresh taste of Fresh Black Seedless Grapes.', 'Fresh Black Seedless Grapes Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e2391f14-e952-4a96-bfc0-f03caee053e2_2.f62f0f07bb7f152d0b4a1df00d1de457.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2391f14-e952-4a96-bfc0-f03caee053e2_2.f62f0f07bb7f152d0b4a1df00d1de457.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2391f14-e952-4a96-bfc0-f03caee053e2_2.f62f0f07bb7f152d0b4a1df00d1de457.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (515884505, 'Baker Potatoes, 3 Count', 2.98, '333835701348', 'Baker Potatoes, 3 Count', 'Baker Potatoes 3 Pack Tray', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (515996857, 'Fresh Grown Yellow Peaches', 1.78, 'deleted_845792040441', 'short description is not available', 'Fresh Grown Yellow Peaches', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/66649401-25ab-4f9c-8a92-bca8dbf3c2a2.486be8ce6d081ae871e90e945fa28e20.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/66649401-25ab-4f9c-8a92-bca8dbf3c2a2.486be8ce6d081ae871e90e945fa28e20.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/66649401-25ab-4f9c-8a92-bca8dbf3c2a2.486be8ce6d081ae871e90e945fa28e20.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (516204117, 'Organic Broccoli Florets 12 Oz', 3.77, 'deleted_854026006276', 'short description is not available', 'Organic Broccoli Florets 12 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (516468253, '125pc Pto Rst Jmb 8#', 802.5, '405546023276', 'short description is not available', '125pc Pto Rst Jmb 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (516786666, 'Freshness Guaranteed Gala Apples 3 Lb Bag', 3.74, 'deleted_883391003726', '2lb bag of Gala apples. Grown in the U.S.', 'Grown in the US', 'POPCHOSE', 'https://i5.walmartimages.com/asr/55f13b78-45a2-4545-9de5-268c3bf2190b.730ba90f791243b6d13a5bd08719cf88.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/55f13b78-45a2-4545-9de5-268c3bf2190b.730ba90f791243b6d13a5bd08719cf88.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/55f13b78-45a2-4545-9de5-268c3bf2190b.730ba90f791243b6d13a5bd08719cf88.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (517140426, 'Fresh Black Seedless Grapes', 4, '', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (517227731, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094274675', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (517244735, 'Organic Limes 1# Bag', 2.98, 'deleted_744430275637', 'short description is not available', 'Organic Limes 1# Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (517349127, 'Sliced Apples & Grapes 5/2 Oz', 3.68, '077745250588', 'short description is not available', 'Sliced Apples & Grapes 5/2 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (517739917, '2# Bag Lemons', 3.48, 'deleted_852389004960', '2# Bag Lemon', '2# Bag Lemons', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (518438231, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_400094468623', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (518486131, 'Tomatoes On The Vine Per Lb', 1.98, '898859002050', 'short description is not available', 'Tomatoes On The Vine Per Lb', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (518625257, 'Fresh Premium Grape Tomato, 2 lb Package', 4.98, '684924050077', 'Premium Grape Tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily complements your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Premium Grape Tomatoes are the perfect choice.', 'Premium Grape Tomato, 2 lb Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ef2dcbc7-1fc9-40cd-bf3e-09d72a0218d9.1d2f7b812b05175eccc5c66761b3fa2e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ef2dcbc7-1fc9-40cd-bf3e-09d72a0218d9.1d2f7b812b05175eccc5c66761b3fa2e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ef2dcbc7-1fc9-40cd-bf3e-09d72a0218d9.1d2f7b812b05175eccc5c66761b3fa2e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (518642894, 'Organic Cucumber 2 Pack', 2.98, 'deleted_810083650302', 'short description is not available', 'Organic Cucumber 2 Pack', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (519088035, 'Mustard Greens, one bunch', 0.98, 'deleted_885435999613', 'Mustard Greens', 'Mustard greens are the most pungent of the cooking greens and lend a peppery flavor to food. Curly mustard is distinctive for its frilly leaf edges. Mustard leaves are a versatile kitchen green and source of both vitamins A and C and contain several other vitamins and minerals as well as fiber and protein. Ideal Temperature: 33 F. Ethylene sensitive. Cracked ice around and in packages may help extend shelf life. Keep at proper humidity levels (90-95%) to prevent wilting. It is normal for mustard greens to show a slight bronze tint.', 'Ratto Bros.', 'https://i5.walmartimages.com/asr/b3fd3ef8-09eb-4ac4-ae1c-db4d037646b9.528bceb31cc3c7eb3fb63507034725b2.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3fd3ef8-09eb-4ac4-ae1c-db4d037646b9.528bceb31cc3c7eb3fb63507034725b2.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3fd3ef8-09eb-4ac4-ae1c-db4d037646b9.528bceb31cc3c7eb3fb63507034725b2.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (519123431, 'Fresh Whole Okra', 2.87, '405911181617', 'Experience the unique taste and texture of Fresh Whole Okra, a versatile and nutritious addition to your culinary repertoire. This vibrant green vegetable boasts a delicious, slightly sweet flavor and a delightfully tender crunch. Rich in fiber, vitamins, and antioxidants, Fresh Whole Okra offers numerous health benefits, making it a wholesome choice for any meal. Savor its delightful taste in a variety of dishes, from traditional gumbo to stir-fries, and elevate your culinary creations with the distinctive charm of Fresh Whole Okra.', 'Fresh Whole Okra Experience the unique taste and texture of Fresh Whole Okra, a versatile and nutritious addition to your culinary repertoire. This vibrant green vegetable boasts a delicious, slightly sweet flavor and a delightfully tender crunch. Rich in fiber, vitamins, and antioxidants, Fresh Whole Okra offers numerous health benefits, making it a wholesome choice for any meal. Savor its delightful taste in a variety of dishes, from traditional gumbo to stir-fries, and elevate your culinary creations with the distinctive charm of Fresh Whole Okra.', 'Unbranded', 'https://i5.walmartimages.com/asr/2b0804bd-21ca-41fd-abec-51c5b91d0178.87dac13cfd80ad715d9c9a6193e9d0ec.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2b0804bd-21ca-41fd-abec-51c5b91d0178.87dac13cfd80ad715d9c9a6193e9d0ec.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2b0804bd-21ca-41fd-abec-51c5b91d0178.87dac13cfd80ad715d9c9a6193e9d0ec.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (519262713, 'Fresh Red Seedless Grapes, Bag', 3.96, 'deleted_083477200944', 'short description is not available', 'Fresh Red Seedless Grapes, Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (519629689, 'Organic Kale, 1 bunch', 2.46, '000000930956', 'Greens Kale Red Organic', 'Organic Kale, 1 bunch', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b956283c-542a-4494-b46d-6681f0bcb45e_1.473f028cc1ea235c76d9de4b59243504.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b956283c-542a-4494-b46d-6681f0bcb45e_1.473f028cc1ea235c76d9de4b59243504.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b956283c-542a-4494-b46d-6681f0bcb45e_1.473f028cc1ea235c76d9de4b59243504.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (519944906, 'White Sweet Potatoes 2 Lb Bag', 2.78, '033383001326', 'short description is not available', 'White Sweet Potatoes 2 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (520669453, '840pc Pomegranate', 1663.2, '405770833955', 'short description is not available', '840pc Pomegranate', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (520925392, 'Avocado Caesar with Grilled Herb Chicken, Chopped Salad Kit', 4.88, '071279302058', 'Twisted Avocado Caesar Chopped Kit contains romaine lettuce, and a masterpack containing Avocado Caesar dressing, tortilla strips, freeze dried corn, parmesan cheese packed in a 9.7-ounce polyethylene bag. Product has the typical flavor and crispness of Avocado Caesar salad with a light to dark green, white, and light brown color depending on the individual ingredients.', 'Avocado Caesar with Grilled Herb Chicken, Chopped Salad Kit', 'Fresh Express', 'https://i5.walmartimages.com/asr/6d53e664-8d8a-4a50-836a-fad9db2f2404_3.097dfaa4a3bbd792bcdff21b5b4c4e3e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6d53e664-8d8a-4a50-836a-fad9db2f2404_3.097dfaa4a3bbd792bcdff21b5b4c4e3e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6d53e664-8d8a-4a50-836a-fad9db2f2404_3.097dfaa4a3bbd792bcdff21b5b4c4e3e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (521043348, 'Stuffed Mushroom with Fresh Peppers, 8 Oz.', 4.98, '037102275128', 'Stuffed Mushroom with Fresh Peppers, 8 Oz.', 'Mushroom Stuffed Fresh Peppers 8 Oz.', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (521156164, 'Watermelon Seedless', 4.48, '400094407585', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (521691483, 'Dried Mushroom Kibble by Its Delish, 4 Oz Bag Dark Chilean Dehydrated and Chopped Boletus Luteus Mushrooms for Cooking and Flavoring', 26.99, '799137109259', 'Dried Kibbled Mushrooms by Its Delish Boletus Luteus mushrooms is a wild-grown dark mushroom with a deep and earthy flavor, commonly called the brown or Chilean mushroom, sorted, washed, trimmed, and air-dried. There are a good source of vitamin, minerals and protein. These are 100% all-natural with no added ingredients or preservatives. These chopped mushroom flakes are used in a wide variety of applications for rich-flavored mushroom for including sauces, gravy, soups, vegetable stock, broth and stews, pasta products, meats and sausages, seasoning blends, salad products, pot pies, and casseroles and ready meals. Prep Instruction Ideas: Add these mushrooms while slow cooking soups, stews, sauces, casseroles and other foods with sufficient liquid content. In other applications, hydrate by using 1 part dried mushroom and 5 parts water. Simmer for 10-15 minutes. Add water if necessary. Yields 1 oz equals about 1/2 cup dry. Generally, air dried vegetables double in volume when hydrated. Dry/Fresh Ratio 1 lb of air dried boletus luteus mushrooms, once rehydrated, equals approximately 6 lbs of fresh prepared boletus luteus mushrooms. Storage Suggestion Best if used within 18 months. Store tightly sealed in a dry location away from sunlight. Tip: For ready to use mushrooms, soak the dry mushrooms in a sealed container and store in the refrigerator. Stock up and enjoy! About It\'s Delish! It\'s Delish was established in 1992 and is located in North Hollywood, California. It\'s Delish is a food manufacturer and distributor who produces over 500 gourmet food products including licorice, sour belts, taffies, caramels, Jordan almonds, chocolates, nuts, fruits, trail mixes, spices, and the spice blends. It\'s Delish also produces organics and all-natural products. We give you the opportunity to order from the factory direct!', 'PREMIUM - Gourmet Dried Mushrooms Kibble Similar to Porcini and chopped into small dices VALUE SIZE - Quarter Pound Bag 4 oz, about two cups dry by the Its Delish brand ENHANCE your culinary experience with hearty flavor, bold taste and vibrant aroma. Add rich flavors paired with vitamins, minerals and protein to your favorite recipes and dishes AWESOME in sauces, gravy, soups, vegetable stock, broth and stews, pasta products, meats and sausages, seasoning blends, salad products, pot pies, risottos and casseroles and ready meals. QUALITY - Certified Kosher OU Parve, Non-Dairy, Vegan, All-Natural, No MSG, No preservatives, Gluten Free, Packaged in the USA and Shipped to you Direct!', 'It\'s Delish', 'https://i5.walmartimages.com/asr/3dfff43c-9e22-4dc1-836c-5695c1015375.83b92677bde7b4a648328e18edbab474.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3dfff43c-9e22-4dc1-836c-5695c1015375.83b92677bde7b4a648328e18edbab474.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3dfff43c-9e22-4dc1-836c-5695c1015375.83b92677bde7b4a648328e18edbab474.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (521862089, 'Freshness Guaranteed Granny Smith Apples 3 Lb Bag', 3.78, 'deleted_847081000273', 'short description is not available', 'Freshness Guaranteed Granny Smith Apples 3 Lb Bag', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (522000775, 'Yellow Flesh Peaches, per Pound', 1.58, '400094357958', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (522080372, 'Taylor Farms® Iceberg Lettuce 2ct Bag', 1.99, '030223011156', 'Taylor Farms Iceberg Lettuce is all natural with no preservatives. Harvested fresh from the field, iceberg lettuce can be chopped and used in a salad, or shredded for use in sandwiches, tacos & burgers to bring crisp freshness to every bite.', 'Classic Salads Includes Iceberg Lettuce', 'Taylor Farms', 'https://i5.walmartimages.com/asr/618813a5-d2df-4b2c-a62a-bb268ba6c29f.4065499ee99d46f84719e150aaa9fb05.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/618813a5-d2df-4b2c-a62a-bb268ba6c29f.4065499ee99d46f84719e150aaa9fb05.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/618813a5-d2df-4b2c-a62a-bb268ba6c29f.4065499ee99d46f84719e150aaa9fb05.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (522335651, '240pc On Ylw 3# Or', 475.2, '405509660289', 'short description is not available', '240pc On Ylw 3# Or', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (522409738, 'Marketside Butternut Noodles, 16 oz', 3.98, '681131305310', 'Add some fresh flavor to your meal with Marketside Butternut Squash Noodles. These butternut noodles are the perfect substitute for pasta. The noodles are made with butternut squash and are perfect for anyone wanting a vegan, gluten-free, or low-carb option or you just want to try something new. These noodles are washed and ready to cook. You can prepare these noodles in a variety of ways, season them with your favorite spices for a quick and easy meal or cook them in a pan for a few minutes and add your favorite pasta sauce for a delicious meal. Marketside Butternut Squash Noodles are a great addition to any meal. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Perfect substitute for pasta Great vegan, gluten-free or low-carb option Washed and ready to cook Only 45 calories per serving', 'Marketside', 'https://i5.walmartimages.com/asr/f51a1137-71fe-485b-bdfa-582b1b4f2724_1.b60f2d373b9e6d6dc04d16987fffa426.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f51a1137-71fe-485b-bdfa-582b1b4f2724_1.b60f2d373b9e6d6dc04d16987fffa426.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f51a1137-71fe-485b-bdfa-582b1b4f2724_1.b60f2d373b9e6d6dc04d16987fffa426.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (522524510, '200pc On Swt 3# Rio', 656, '405553686693', 'short description is not available', '200pc On Swt 3# Rio', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (522627207, 'Fieldpack Unbranded Candy Hearts Grapes 1lb Clamshell', 3.48, '827470003177', 'short description is not available', 'Fieldpack Unbranded Candy Hearts Grapes 1lb Clamshell', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (522691385, 'Fresh Green Beans', 1.48, '204530000008', 'short description is not available', 'Fresh Green Beans', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (522809792, '120pc Apple Gala 3#', 512.4, '405667198754', 'short description is not available', '120pc Apple Gala 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (523000556, 'Phillips Gourmet Organic Sliced Muchrooms, 4oz', 5.88, '021706642042', 'They are a variety of brown color, have a more intense texture and flavor.', 'Sliced Muchrooms Great source of protien Vitamin D, B Low in sodium Great soruce of potassium and riboflavina-B2 No colestrol Low in digestible carbohydrates', 'Phillips Gourmet', 'https://i5.walmartimages.com/asr/87366983-9e56-4844-95dd-a6d755a613fe.63943649dbfec1d1eb42bcb4dc8d6f82.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/87366983-9e56-4844-95dd-a6d755a613fe.63943649dbfec1d1eb42bcb4dc8d6f82.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/87366983-9e56-4844-95dd-a6d755a613fe.63943649dbfec1d1eb42bcb4dc8d6f82.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (523209178, 'Watermelon Seedless', 4.48, '400094476529', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (523273147, 'California Grown Saturn Peaches, per Pound', 3.68, 'deleted_400094521748', 'California Grown Saturn Peaches, per Pound', 'Fresh California Grown Saturn Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (523319413, 'Shrink Cap | Silver/Black Grapes (100/Pack)*', 29.95, '776982330052', 'Elevate Your Wine Experience with Our European Crafted Shrink Caps Enhance Bottle Presentation and Ensure Freshness with Our Shrink Caps! Our Premium Shrink Caps are the perfect addition to any wine bottle, combining elegance with functionality. These caps, expertly crafted in Europe, not only enhance the visual appeal of your bottles but also play a crucial role in maintaining the cork\'s integrity. Our shrink caps are ideal for winemakers, wine enthusiasts, or those who love to gift homemade wine. They are a simple yet effective way to elevate your wine\'s presentation and ensure freshness. Key Features: High-Quality Material:Manufactured in Europe, guaranteeing premium quality and durability. Universal Fit:Designed to fit 375ml, 750ml, and 1500ml wine bottles perfectly. Easy Tear-Off Design:Facilitates a smooth bottle-opening experience. Precise Dimensions:Measuring 30.5mm x 55mm for a flawless fit. Elevated Presentation:Adds a sophisticated touch to any wine bottle. Usage Guide: Slide the Cap:Place the shrink cap over the neck of the wine bottle. Apply Heat:Use a heat gun or steam to shrink the cap around the bottleneck securely. Tear & Pour:Enjoy the easy tear-off design for quick access to your wine. FAQs: Q:Can these shrink caps be used for beverages other than wine?A:They are versatile for any bottled beverage with compatible dimensions. Q:How resistant are these caps to external factors like moisture?A:Crafted with high-quality materials, they resist moisture and other external elements effectively. Q:Are special tools required for application?A:A heat gun or steam source is needed to secure the cap\'s shrinking. Q:Do these caps leave any residue upon removal?A:No, they are designed for clean and residue-free removal.', 'High-Quality Corks and Stoppers for Wine Bottles – Designed to provide a secure seal, preserving the freshness and flavor of your wine with every use. Perfect for Home and Professional Winemakers – Whether for DIY projects or commercial bottling, our corks and stoppers ensure reliable performance and a professional finish. Durable and Easy to Use – Made from premium materials, our wine corks and stoppers are easy to insert and remove, making them ideal for sealing and storing your homemade beverages.', 'ABC Cork', 'https://i5.walmartimages.com/asr/012a9ecd-4eae-4b5e-a138-4c2c9baed71c.152d71e684eff1287c4b7ffcf82a3b13.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/012a9ecd-4eae-4b5e-a138-4c2c9baed71c.152d71e684eff1287c4b7ffcf82a3b13.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/012a9ecd-4eae-4b5e-a138-4c2c9baed71c.152d71e684eff1287c4b7ffcf82a3b13.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (523387713, '160pc On Vid 4# Pl', 630.4, '400094163610', 'short description is not available', '160pc On Vid 4# Pl', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (523393741, 'Organic Zucchini 2 Pack', 2.26, 'deleted_810083650289', 'short description is not available', 'Organic Zucchini 2 Pack', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (524042598, 'Asparagus 10oz', 3.77, 'deleted_885206005673', 'short description is not available', 'Asparagus 10oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (524165112, 'Cotton Candy Green Sdls Grapes', 3.96, '', 'short description is not available', 'Cotton Candy Green Sdls Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (524300327, 'Tri Pepper Diced 7 Oz', 2.58, '643550000665', 'short description is not available', 'Tri Pepper Diced 7 Oz', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (524527593, 'Yellow Bell Pepper, each', 1.38, 'deleted_684924046896', 'short description is not available', 'Yellow Bell Pepper', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/170100a2-7ce0-432d-99f0-9ff1cd3312d2_1.d6b490916a1d77fd75a212af07b85e9b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/170100a2-7ce0-432d-99f0-9ff1cd3312d2_1.d6b490916a1d77fd75a212af07b85e9b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/170100a2-7ce0-432d-99f0-9ff1cd3312d2_1.d6b490916a1d77fd75a212af07b85e9b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (524751580, 'Clementines, 3 lb', 3.54, 'deleted_882648001331', 'Clementines, 3 lb', 'Clementines, 3 lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/41346d9b-ddc1-41a7-8093-35edc68c44fb_1.be72592d1d838c1dc7b156278cba3e1c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/41346d9b-ddc1-41a7-8093-35edc68c44fb_1.be72592d1d838c1dc7b156278cba3e1c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/41346d9b-ddc1-41a7-8093-35edc68c44fb_1.be72592d1d838c1dc7b156278cba3e1c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (524952352, 'Gourmet212 Grilled Artichokes Marinated In Oil 7.05oz, 6 Pack', 62.95, '191822007749', 'Aegean?s olive oil dishes are very famous. Taste of Mediterranean and light color artichokes will give with tasty broad bean or as a mezze The light color artichoke will give you Mediterranean taste with broad beans or serve as mezze. It is being served with potatoes, green beans and carrots at most fish restaurants.', 'Gourmet212 Grilled Artichokes Marinated In Oil 7.05oz (6 Pack), Glass, Jarred, Fresh The Aegean olive oil dishes are very famous. Taste of Mediterranean and light color artichokes will give with tasty broad bean or as a mezze. The light color artichoke will give you a Mediterranean taste with broad beans or serve as mezze. It is being served with potatoes, green beans, and carrots at most fish restaurants.', 'unknown', 'https://i5.walmartimages.com/asr/54b0f81a-2290-4253-b840-8755cb128eae.cb7499594a8a8956e15ff84e1b501f24.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54b0f81a-2290-4253-b840-8755cb128eae.cb7499594a8a8956e15ff84e1b501f24.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54b0f81a-2290-4253-b840-8755cb128eae.cb7499594a8a8956e15ff84e1b501f24.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (525075625, 'Red Seedless Grapes, bag', 3.69, 'deleted_814326010007', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/3199e597-c881-48bf-bf4c-eaac840ecbb2_2.7af452a9df42d6a3909c1d65859944ec.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3199e597-c881-48bf-bf4c-eaac840ecbb2_2.7af452a9df42d6a3909c1d65859944ec.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3199e597-c881-48bf-bf4c-eaac840ecbb2_2.7af452a9df42d6a3909c1d65859944ec.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (525223601, 'Services Reduced Program Dept 94', 0.01, '251995000005', 'short description is not available', 'Services Reduced Program Dept 94', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (525778239, 'Dried Japones Chile 8 Oz', 3.94, '045255150919', 'short description is not available', 'Dried Japones Chile 8 Oz', 'Melissa\'s', 'https://i5.walmartimages.com/asr/52589882-5add-408d-8f9f-16e78d2b09b9_3.62598a1152992821db174303f0229a7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/52589882-5add-408d-8f9f-16e78d2b09b9_3.62598a1152992821db174303f0229a7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/52589882-5add-408d-8f9f-16e78d2b09b9_3.62598a1152992821db174303f0229a7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (526153473, 'Fresh Red Seedless Grapes', 2.88, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (526284339, 'Fresh Green Onions, 1 Each', 0.98, 'deleted_405629331021', 'Fresh Green Onions, 1 Each', 'Fresh Green Onions Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (526591831, 'Family Size Taco Salad Kit', 5.98, '016741000476', 'short description is not available', 'Family Size Taco Salad Kit', 'Unbranded', 'https://i5.walmartimages.com/asr/5381d058-198d-4491-84f0-ab31b1962a4b_1.048b9391b5a7c2e1587f819f3825b41a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5381d058-198d-4491-84f0-ab31b1962a4b_1.048b9391b5a7c2e1587f819f3825b41a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5381d058-198d-4491-84f0-ab31b1962a4b_1.048b9391b5a7c2e1587f819f3825b41a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (526800091, 'Bowery Baby Kale - Locally Grown, Sustainable Salad Greens, 4.5oz', 2.98, '851536007168', 'Bowery\'s locally grown and pesticide-free Baby Kale is mellow and earthy with a great crunch. Since 2017, Bowery Farming has been growing the purest produce possible locally in New Jersey. Our indoor farms provide the ideal growing environment for a year-round assortment of pesticide free and non-GMO leafy greens & herbs. We are 100x more productive on the same footprint of land as traditional agriculture and use 95% less water. Bowery only distributes locally, ensuring our greens are delivered within just a few days of harvest.', 'Bowery Baby Kale, 4.5oz, Locally Grown with Zero Pesticides: Locally Grown Zero Pesticides Non-GMO Verified No Need to Wash Grown Indoors', 'Bowery Farming', 'https://i5.walmartimages.com/asr/61a3bf89-ccb2-4949-9a68-ed66c5d6c1c3_1.3ffa5c146e2da0096dc32187496955c4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/61a3bf89-ccb2-4949-9a68-ed66c5d6c1c3_1.3ffa5c146e2da0096dc32187496955c4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/61a3bf89-ccb2-4949-9a68-ed66c5d6c1c3_1.3ffa5c146e2da0096dc32187496955c4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (527510050, 'Stayman-winesap Apples 3 Lb Bag', 3.94, '033383082622', 'short description is not available', 'Stayman-winesap Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (528067471, 'Organic Gala Apples 3Lb Ctn', 4.97, '887434012102', 'Organic Gala Apples 3Lb Ctn - Organic Gala Apples 3Lb - Their beautiful red hue isn’t the only thing that makes the Gala such a wonderful, everyday apple. These are the perfect addition to add a pop of color or sweet treat in your next charcuterie board creation. Fragrant, juicy, and bright - this crisp red apple is best eaten fresh in a salad, as a snack or paired with cheeses and nuts.', 'Organic Gala Apples 3 Lb Ctn', 'VTUWYM', 'https://i5.walmartimages.com/asr/45dc3c46-4784-44b9-9d19-de73001d5d97.a8fb6d3a4da64d18f8ab7b84ff2729be.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/45dc3c46-4784-44b9-9d19-de73001d5d97.a8fb6d3a4da64d18f8ab7b84ff2729be.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/45dc3c46-4784-44b9-9d19-de73001d5d97.a8fb6d3a4da64d18f8ab7b84ff2729be.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (528094177, '200pc Pto Red 5# Bm', 794, '405509183337', 'short description is not available', '200pc Pto Red 5# Bm', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (528284895, 'Meyer Lemons, 2 Lb.', 3.48, '885674000385', 'Enhance your recipes with the Meyer Lemons 2lb bag. Meyer lemons are a winter citrus fruit that\'s distinctively different than the average lemon. These organic Meyer lemons are bursting with flavor, with a unexpected sweetness. The variety is believed to be a hybrid of lemons and mandarin oranges, which give the fruit its unique flavor and color. Meyer lemon juice is fantastic for marinades, dressings and mixed drinks, as well as marmalades, desserts and sauces. The 2lb Meyer lemons bag needs no refrigeration. Meyer Lemons, 2lb Bag:', 'Organic Meyer lemons2 lb bagLighter, sweeter flavor than most lemonsSweet winter citrus fruit that tastes like a cross between a regular lemon and a mandarin orangeIdeal for marinades, marmalades, cocktails, dressings and more', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a9d2d5df-6df6-41de-9c48-693487089f47_1.37f24f4e5945e54cd674169517939a8b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a9d2d5df-6df6-41de-9c48-693487089f47_1.37f24f4e5945e54cd674169517939a8b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a9d2d5df-6df6-41de-9c48-693487089f47_1.37f24f4e5945e54cd674169517939a8b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (528441448, 'Services Reduced Program Dept 94', 0.01, '251746000001', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (528672575, 'Bowery Farming Bowery Salad Iceberg Crunch 4oz', 2.98, '851536007540', 'short description is not available', 'Bowery Farming Bowery Salad Iceberg Crunch 4oz', 'Bowery Farming', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (528786665, 'Org Red Kale', 2.46, '858959004064', 'short description is not available', 'Org Red Kale', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (529019786, 'Fresh Large Hass Avocado Bag, 3- 4 Count', 3.48, '887214001548', 'Avocados aren’t just great-tasting fresh produce items, but they are a nutrient-dense fruit that can be enjoyed throughout the year. Hass avocados are a versatile ingredient with a creamy texture and mild flavor that can be used in many different types of recipes and dishes that are perfect for enjoying at barbecues and outdoor gatherings with friends and family during the summer. Enjoy Large avocados in countless ways that will make those barbecues and gatherings with family and friends even more exciting. Use avocados in flavorful recipes that everybody can share and enjoy while being together outside. Try avocados in individual Mexican food items like tacos or burritos, as part of appetizers like avocado crostini, or in a fresh guacamole or avocado dip so everybody can dip tortilla chips into something delicious. The possibilities are deliciously endless if you need additional food options for barbecues. Not only is a Large avocado a great ingredient to use in numerous ways, but it is also a healthy food that contributes unsaturated “good” fats and almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9. A Large ripe avocado will have a dark green to nearly black skin color, a bumpy skin texture and should yield to gentle pressure without leaving indentations or feeling mushy. Avocados with a slightly bumpy texture should be ripe in 1 to 2 days. They will also be somewhat firm and have a dark green and black speckled color. Once you’ve selected the perfect bag of avocados, you’ll be ready to enjoy all kinds of different healthy foods and recipes for the next time you’re enjoying an outdoor gathering with friends and families.', 'Bag of 3 to 4 Large Hass Avocados Fresh fruit with a creamy texture and mild flavor Fresh avocados are great for using in tacos, burritos, appetizers, avocado dip and fresh guacamole so that you have delicious food to share and enjoy during barbecues and the summer months A cholesterol free fruit that contains almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9 Large hass avocados are the lowest sugar fruit and provide unsaturated “good fats” that help absorb Vitamin A, Vitamin D, Vitamin K and Vitamin E Large ripe avocados will have dark green to nearly black skin color, a bumpy texture and should yield to gentle pressure without leaving indentations', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/5c798f29-e430-419a-b4aa-36c9ccc4ade2.0ac54bdc229519ee39f7188386f272d8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5c798f29-e430-419a-b4aa-36c9ccc4ade2.0ac54bdc229519ee39f7188386f272d8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5c798f29-e430-419a-b4aa-36c9ccc4ade2.0ac54bdc229519ee39f7188386f272d8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (529606845, 'City Farms Arugula Clam 4 Oz', 6.43, '850010794037', 'short description is not available', 'City Farms Arugula Clam 4 Oz', 'Fresh City Farms', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (529656618, 'Fresh Orange Cauliflower', 7.97, '027918034361', 'Introducing our Whole Fresh Orange Cauliflower, a vibrant twist on a classic favorite! Bursting with color and flavor, this cauliflower variety is a nutritional powerhouse. Packed with vitamin C, potassium, fiber, iron, calcium, and magnesium, it offers a wholesome addition to your meals. Whether roasted, steamed, or added to stir-fries, our Whole Fresh Orange Cauliflower brings a delightful pop of color and a nutritious boost to your plate. Experience the goodness of orange cauliflower today!', 'Excellent source of vitamin C Slightly nutty and a little sweet Crunchy texture', 'Tanimura & Antle', 'https://i5.walmartimages.com/asr/efd38d76-ef1d-482d-bb58-fbe62d24478e.8307f2eee28a795b37e05dab2d58be6d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/efd38d76-ef1d-482d-bb58-fbe62d24478e.8307f2eee28a795b37e05dab2d58be6d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/efd38d76-ef1d-482d-bb58-fbe62d24478e.8307f2eee28a795b37e05dab2d58be6d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (529935485, 'Fresh Cut In-Store Cucumber Slices, 1-1.75 lbs', 2.56, '262969000006', 'Enjoy the cool, refreshing taste of our Fresh Cut In-Store Cucumber Slices. Freshly prepared, each cucumber slice is carefully cut to the perfect thickness, promising high quality in every bite. Weighing between 1-1.75 pounds, these cucumbers are versatile and perfect for various culinary uses. Toss them in a salad for a refreshing crunch, add them to sandwiches for a burst of freshness, or snack on them for a healthy, hydrating option. The clear, sturdy container serves a dual purpose - it not only showcases the freshness and quality of the product, but also allows for easy storage and transport. Whether you\'re always on the go, meal prepping, or simply looking for a fresh, healthy snack, our Fresh Cut In-Store Cucumber Slices are a perfect choice.', 'Fresh Cut In-Store Cucumber Slices, 1-1.75 lbs Freshly cut in-store to ensure maximum freshness and quality Perfect for various culinary uses, such as in salads, sandwiches, or as a standalone snack Come in a clear, sturdy container for easy storage and transportation Ready to be enjoyed straight from the container', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bc4a57ec-da74-4176-98f0-6045a013fabd.3a3075df58d1845e58a5a17b22de3332.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc4a57ec-da74-4176-98f0-6045a013fabd.3a3075df58d1845e58a5a17b22de3332.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc4a57ec-da74-4176-98f0-6045a013fabd.3a3075df58d1845e58a5a17b22de3332.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (530346478, 'BrightFarms Spring Mix Lettuce, 8 oz Family Pack Salad Salad', 4.97, '857062004510', 'BrightFarms Spring Mix Lettuce is the perfect base for any salad, wrap or sandwich. It combines crunchy lettuces with sweet, tender baby lettuces for a mix that is versatile in texture, color and flavor. Grown nearby in a state-of-the-art greenhouse, the salad greens go from farm to store in as little as 24 hours ensuring they are fresh, crunchy and long-lasting in your fridge -- in fact we guarantee it! By growing indoors using a hands-free growing process, we eliminate the use of pesticides on our produce so that the greens are ready to eat from the container, with no need to wash. At BrightFarms, we are on a mission to grow salads in a way that is better for people and the planet, transforming the way people eat and enjoy fresh produce - and shaping a more sustainable future for food.', 'Pesticide, herbicide and fungicide free greens Greenhouse grown, for guaranteed fresh greens year-round No need to wash Responsibly grown, harnessing the power of technology to do more with less: less water, less land, less shipping fuel to produce more Non-GMO', 'BrightFarms', 'https://i5.walmartimages.com/asr/4362a557-f674-4e47-98a6-c6529a2181ea.c1bad3289a00faf1887b6c13bc75c9f6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4362a557-f674-4e47-98a6-c6529a2181ea.c1bad3289a00faf1887b6c13bc75c9f6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4362a557-f674-4e47-98a6-c6529a2181ea.c1bad3289a00faf1887b6c13bc75c9f6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (530643718, 'Sunset® Yowzers® Red Chili Peppers 8oz', 0.97, '057836000599', 'Sunset® Yowzers® Red Chili Peppers 8oz', 'Hot & sweet Chef Gourmet Inspired', 'Sunsets', 'https://i5.walmartimages.com/asr/5fdf6b2b-33ee-41e9-843a-43da5362c35e.e27e141503e404aca5daa09afc2c9c85.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5fdf6b2b-33ee-41e9-843a-43da5362c35e.e27e141503e404aca5daa09afc2c9c85.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5fdf6b2b-33ee-41e9-843a-43da5362c35e.e27e141503e404aca5daa09afc2c9c85.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (530753787, 'Organic Yellow Potatoes 3 Lb Bag', 4.46, '028733052608', 'short description is not available', 'Organic Yellow Potatoes 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (530797989, 'Dried Mushroom Kibble by Its Delish, 2 Oz Bag Dark Chilean Dehydrated and Chopped Boletus Luteus Mushrooms for Cooking and Flavoring', 21.99, '799137109242', 'Dried Kibbled Mushrooms by Its Delish Boletus Luteus mushrooms is a wild-grown dark mushroom with a deep and earthy flavor, commonly called the brown or Chilean mushroom, sorted, washed, trimmed, and air-dried. There are a good source of vitamin, minerals and protein. These are 100% all-natural with no added ingredients or preservatives. These chopped mushroom flakes are used in a wide variety of applications for rich-flavored mushroom for including sauces, gravy, soups, vegetable stock, broth and stews, pasta products, meats and sausages, seasoning blends, salad products, pot pies, and casseroles and ready meals. Prep Instruction Ideas: Add these mushrooms while slow cooking soups, stews, sauces, casseroles and other foods with sufficient liquid content. In other applications, hydrate by using 1 part dried mushroom and 5 parts water. Simmer for 10-15 minutes. Add water if necessary. Yields 1 oz equals about 1/2 cup dry. Generally, air dried vegetables double in volume when hydrated. Dry/Fresh Ratio 1 lb of air dried boletus luteus mushrooms, once rehydrated, equals approximately 6 lbs of fresh prepared boletus luteus mushrooms. Storage Suggestion Best if used within 18 months. Store tightly sealed in a dry location away from sunlight. Tip: For ready to use mushrooms, soak the dry mushrooms in a sealed container and store in the refrigerator. Stock up and enjoy! About It\'s Delish! It\'s Delish was established in 1992 and is located in North Hollywood, California. It\'s Delish is a food manufacturer and distributor who produces over 500 gourmet food products including licorice, sour belts, taffies, caramels, Jordan almonds, chocolates, nuts, fruits, trail mixes, spices, and the spice blends. It\'s Delish also produces organics and all-natural products. We give you the opportunity to order from the factory direct!', 'PREMIUM - Gourmet Dried Mushrooms Kibble Similar to Porcini and chopped into small dices VALUE SIZE - Two Ounces 2 Oz Bag, about one cup of dry by the Its Delish brand ENHANCE your culinary experience with hearty flavor, bold taste and vibrant aroma. Add rich flavors paired with vitamins, minerals and protein to your favorite recipes and dishes AWESOME in sauces, gravy, soups, vegetable stock, broth and stews, pasta products, meats and sausages, seasoning blends, salad products, pot pies, risottos and casseroles and ready meals. QUALITY - Certified Kosher OU Parve, Non-Dairy, Vegan, All-Natural, No MSG, No preservatives, Gluten Free, Packaged in the USA and Shipped to you Direct!', 'It\'s Delish', 'https://i5.walmartimages.com/asr/3dfff43c-9e22-4dc1-836c-5695c1015375.83b92677bde7b4a648328e18edbab474.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3dfff43c-9e22-4dc1-836c-5695c1015375.83b92677bde7b4a648328e18edbab474.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3dfff43c-9e22-4dc1-836c-5695c1015375.83b92677bde7b4a648328e18edbab474.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (531020875, '180pc Pto Rst 10# Wa', 1074.6, '400094858523', 'short description is not available', '180pc Pto Rst 10# Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (531138917, 'McLane Company Fiesta Salad, 5.65 Oz.', 3.48, '717524772176', 'McLane Company Fiesta Salad, 5.65 Oz.', 'Mclane Company Fiesta Salad', 'McLane Company', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (531229006, 'Cherry Tomato, 10 oz Package', 2.98, 'deleted_884051050203', 'Bring the fresh, delicious taste of Cherry Tomatoes into your home. Because of their notable flavor and thicker skin, they are a versatile tomato that\'s great for grilling, sauteing, roasting, or baking. Their small size also makes them a quick and simple addition to a fresh salad as well as an excellent finger food for whenever you\'re in the mood for a light snack. Packed with nutrients, cherry tomatoes are a deliciously healthy ingredient that adds both vibrant color and mouthwatering flavor to any recipe. For the best flavor and freshness, store these tomatoes at room temperature on your kitchen counter. Make your next meal a marvelous one with these fresh Cherry Tomatoes.', 'Cherry Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/39585953-8ae1-4909-a68a-40c3288c87ba.b7af54eb72069bdaca0bd4d3d88f9d2b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39585953-8ae1-4909-a68a-40c3288c87ba.b7af54eb72069bdaca0bd4d3d88f9d2b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39585953-8ae1-4909-a68a-40c3288c87ba.b7af54eb72069bdaca0bd4d3d88f9d2b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (531468006, 'Fresh Red Seedless Grapes', 2.48, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (532035494, 'Garden Salad Mix, 6 Oz.', 1, '400094397206', 'Garden Salad Mix, 6 Oz.', 'Ta Garden Salad Mix 6 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (532114944, 'Fresh Guanabana, 20 lb Package', 5.97, '000000033817', 'The Fresh Guanabana, 20 lb Package is a delightful assortment of delicious and exotic guanabana fruits, carefully hand-picked and packaged to ensure maximum freshness and flavor. Guanabana, also known as soursop, is a tropical fruit with a unique taste that combines the flavors of pineapple, strawberry, and citrus, resulting in a truly refreshing and tangy experience. This 20 lb package is perfect for those who want to indulge in the heavenly taste of guanabana or for those who wish to share this exquisite fruit with friends and family. Each fruit is plump, juicy, and bursting with vitamins, minerals, and antioxidants, making it a healthy choice for a snack or a versatile ingredient for various culinary creations. Whether enjoyed on its own, blended into smoothies, or incorporated into salads and desserts, the Fresh Guanabana, 20 lb Package is a true tropical treasure that will transport your taste buds to paradise.', 'Item Type: Edge Clamp Brand: TE-CO Manufacturer Part Number: 33817 Made in the United States', 'TE-CO', 'https://i5.walmartimages.com/asr/b4685596-b822-4de4-b573-80d8e6e2a996.d85000087726f875fcc2107029387a34.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b4685596-b822-4de4-b573-80d8e6e2a996.d85000087726f875fcc2107029387a34.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b4685596-b822-4de4-b573-80d8e6e2a996.d85000087726f875fcc2107029387a34.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (532239432, 'Cabo Fresh Fiesta Refrigerated Guacamole, 12 Oz Tub', 3.98, '811892024896', 'Cabo Fresh Fiesta Refrigerated Guacamole in a 12 Oz Tub, with 95% avocado 5% spices', 'Cabo Fresh Fiesta Guacamole 12 Oz Tub, Refrigerated 95% avocado 5% spices A Gluten free Product of Mexico', 'Cabo Fresh', 'https://i5.walmartimages.com/asr/0312051b-6730-48ca-873e-e55e7bde0698.e5f7d8b05d4cf02349c4f8922d3a7fde.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0312051b-6730-48ca-873e-e55e7bde0698.e5f7d8b05d4cf02349c4f8922d3a7fde.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0312051b-6730-48ca-873e-e55e7bde0698.e5f7d8b05d4cf02349c4f8922d3a7fde.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (532259689, '180pc Pto Rst 10# Pt', 1074.6, '400094863145', 'short description is not available', '180pc Pto Rst 10# Pt', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (533125066, '75pc Orange Navel 8#', 597.75, '405791374475', 'short description is not available', '75pc Orange Navel 8#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (533554971, '180pc Apple Gala 3#', 561.6, '405668515642', 'short description is not available', '180pc Apple Gala 3#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (533631258, '240pc On Ylw 3# Chr', 475.2, '400094028544', 'short description is not available', '240pc On Ylw 3# Chr', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (533672189, 'Good Healthy Organic Mighty Mix Sunflower, Pea and Radish Microgreens Salad, 3 oz Clam Shell, Fresh', 2.98, '856642007422', 'GoodHealthy Organic Mighty Micro Mix features little plants with huge flavor! This perfectly curated blend of organic pea and sunflower microgreens delivers the vitamins and nutrients you’ve been missing in every bite. Nutty and crisp, the Mighty Micro Mix packs nutrition and flavor into any recipe! At GoodHealthy, we’re changing the way you think about farming! Every seed we plant is nurtured in organic soil, rich in nutrients, and cared for by our sustainable SmartFarm technology. Grown locally 365 days a year, our AI-driven farms are turning less into more; using less water, less land, and less energy to produce more of the farm-fresh organic veggies you love! Going beyond organic, our regenerative greenhouses restore nutrients to the soil with every harvest, reducing our carbon footprint and supporting the local environment. Making the world GoodHealthy, one plant at a time!', 'GoodHealthy Organic Mighty Micro Mix 3oz', 'Good Healthy', 'https://i5.walmartimages.com/asr/d4218082-994b-4e5d-b0ee-22a255927fa9.34bc8c9981c590898f5db57d6a6086b1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4218082-994b-4e5d-b0ee-22a255927fa9.34bc8c9981c590898f5db57d6a6086b1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4218082-994b-4e5d-b0ee-22a255927fa9.34bc8c9981c590898f5db57d6a6086b1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (534227389, 'Sweet Potatoes 5 Lb Bag', 4.27, '669660481651', 'short description is not available', 'Sweet Potatoes 5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (534341349, 'Green Bell Pepper', 0.86, 'deleted_852713002068', 'short description is not available', 'Green Bell Pepper', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (534407671, 'Fresh Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094357484', 'Fresh Grown Yellow Nectarines, 1 Lb.', 'Fresh Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (535340334, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094511459', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (535750637, 'Mother Earth Products Dehydrated Mushrooms, 1 Quart Mylar Bag', 9.73, '810919032616', 'Mother Earth Products Dehydrated Champignon Mushrooms: a healthy & convenient addition to every area of your life without the headache: emergency preparedness, snacking, long and short term storage, traveling, everyday cooking, hiking, backpacking, spicing up your recipes, etc. use it now or later. Mother Earth Products Dehydrated Champignon Mushrooms are made with real, Non-GMO Champignon Mushrooms, no additives or preservatives, & is kosher - a guilt-free, robust food that makes eating tasty & rewarding, without the hassle of weekly trips to the store or the worry of spoiling. It?s so delicious you won?t store it away and hope you never have to use it. Taste the Goodness of Mother Earth Products', '100% champignon mushrooms; spice; good for all recipes, especially soups, stir fry, and pizza; long term storage; short term storage; pantry; portable; convenient; nothing added; emergency preparedness; great flavor; easy to cook with', 'Mother Earth Products', 'https://i5.walmartimages.com/asr/1a87e4b2-b885-498a-9002-bf21dc4c1bbd.7bc48a99ac77cc9565aa41c8cf443d18.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a87e4b2-b885-498a-9002-bf21dc4c1bbd.7bc48a99ac77cc9565aa41c8cf443d18.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a87e4b2-b885-498a-9002-bf21dc4c1bbd.7bc48a99ac77cc9565aa41c8cf443d18.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (535813427, 'California Grown Peaches, per Pound', 1.48, '405544455802', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (535830428, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094319123', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (536206355, 'Green Giant Broccoli Florets. 32 Oz', 5.98, 'deleted_605806122361', 'For 100+ years, Green Giant has produced the finest healthy canned & ; frozen vegetables. Perfect for healthy recipes & ; vegetable side dishes.', 'Green Giant Broccoli Florets. 32 Oz', 'Green Giant', 'https://i5.walmartimages.com/asr/2095f2ec-350e-4f2b-bffe-35f0277370e2_1.7944fd345602eafa1fda6a6a45ee9950.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2095f2ec-350e-4f2b-bffe-35f0277370e2_1.7944fd345602eafa1fda6a6a45ee9950.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2095f2ec-350e-4f2b-bffe-35f0277370e2_1.7944fd345602eafa1fda6a6a45ee9950.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (536665329, 'Yellow Flesh Peaches, per Pound', 1.58, '400094658468', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (536692461, 'China Impor', 6.47, '826594105088', 'short description is not available', 'China Impor', 'China Impor', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (536731444, 'Fresh Red Seedless Grapes 32oz', 4.98, 'deleted_817050010527', 'short description is not available', 'Fresh Red Seedless Grapes 32oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (536832313, 'Watermelon Seedless', 4.48, '400094371381', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (536965498, 'Fresh Cocktail Tomato, 1 lb Package', 2.98, 'deleted_813595010275', 'Holding the ideal balance of sweetness and acidity, it\'s easy to see why Cocktail Tomatoes are called the tomato lover\'s tomato. Cocktail tomatoes are small, making them an ideal choice for appetizers to pair with your everyday meals and for when you\'re entertaining guests. You can combine these tasty little tomatoes with fresh mozzarella and basil drizzled with olive oil or slice them up and add them to a freshly tossed salad. If you\'re feeling something classic, you can always cut one up to add that fresh tomato taste to a sandwich or dice up a few to make a delightful pizza topping. Plus, cocktail tomatoes are packed with nutrients, including vitamins A, B6, B12, C, D, E, K, phosphorous, magnesium and zinc, so you can feel good about adding some extra flavor to your meals. Be sure to add Cocktail Tomatoes to your inventory of fresh ingredients today.', 'Cocktail Tomato, 1 lb Package: The tomato lover\'s tomato Small size is ideal for salads and appetizers Ideal ingredient for a variety of dishes These European-style whole tomatoes are ideal all year long Add to party trays or school lunches Delicious and nutritious 16-ounce package of cocktail tomatoes To maintain sweetness, do not refrigerate', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e9cd5b61-4764-440a-824f-27c48ab73adb.9d45497f656a74cee90bea61ec675494.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9cd5b61-4764-440a-824f-27c48ab73adb.9d45497f656a74cee90bea61ec675494.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9cd5b61-4764-440a-824f-27c48ab73adb.9d45497f656a74cee90bea61ec675494.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (537037331, 'Gesex Fresh Red Seedlesss Grapes', 9.47, '', 'Gesex Fresh Red Seedlesss Grapes', 'Gesex Fresh Red Seedlesss Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (537508049, 'Royal Verano Pears', 34.99, '780994803138', 'Royal Verano Pears', 'Pears', 'Harry & David', 'https://i5.walmartimages.com/asr/f519b22b-47fe-47dd-acbb-7775afc140a5.522d32d140a130326be7230b2c1a859d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f519b22b-47fe-47dd-acbb-7775afc140a5.522d32d140a130326be7230b2c1a859d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f519b22b-47fe-47dd-acbb-7775afc140a5.522d32d140a130326be7230b2c1a859d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (537528046, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_400094563687', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (537606379, 'Forest-grown Japanese Dried Shiitake KOSHIN, 42-75mm, 70g', 29.99, '', 'Sugimoto shiitake are naturally cultivated outdoors on special sweet sap oak logs. Moreover, our drying and packaging process keeps the moisture content to less than 9% which enhances the Shiitake flavor and VitaminD content. Sugimoto Shiitake promotes 100% natural and sustainable cultivation using only carefully selected local cultivators. This Shiitake mushroom is called ?Koshin? and is picked after the cap of the Mushroom blooms into an umbrella. It is more large and flat than the ?Donko? Shiitake mushroom which is picked earlier while the cap is still in a bud form. Since Koshin is less thick than the Donko, it is easier and quicker to use requiring less time to rehydrate. Koshin is best used cut and in stir-fries, soups, sauces, where smaller pieces are used with other ingredients. Our products pass a yearly quality audit guaranteeing the consistency of the sourcing and production process of our Dried Shiitake mushroom. This Audit is conducted by the Japanese Ministry of Agriculture, Forestry, and Fisheries with the Japanese Consumers\' Co-operative Union. (JCCU)', 'Forest-grown shiitake mushroom Kosher certified Endorsed by famous Japanese chef Dr. Yukio Hattori and his show \'Iron Chef\' Sustainable cultivation methods Grown in collaboration with 600+ local cultivators', 'Sugimoto Co.', 'https://i5.walmartimages.com/asr/025f8e00-1df6-4bfb-9070-78dc433e6fd7.a425ac5af388e363ececf8282ee22bc8.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/025f8e00-1df6-4bfb-9070-78dc433e6fd7.a425ac5af388e363ececf8282ee22bc8.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/025f8e00-1df6-4bfb-9070-78dc433e6fd7.a425ac5af388e363ececf8282ee22bc8.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (537843405, '240pc Pto Red/ylw 3#', 878, '405500672212', 'short description is not available', '240pc Pto Red/ylw 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (538262492, 'Yellow Flesh Peaches, per Pound', 1.58, '400094845400', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (538365156, 'Cebolla Roja 24/2lb', 2.87, '405873145061', 'Introducing our Cebolla Roja 24/2lb pack - a bulk supply of premium-quality red onions that add a pop of color and rich flavor to your culinary creations. These versatile onions, known for their vibrant hue and distinct taste, come in 24 handy 2lb bags, ensuring you have ample supply for your recipes. Ideal for salads, salsas, or a variety of cooked dishes, Cebolla Roja 24/2lb offers convenience and consistent quality for your kitchen or food service needs.', 'Cebolla Roja 24/2lb Introducing our Cebolla Roja 24/2lb pack - a bulk supply of Whole Fresh premium-quality red onions that add a pop of color and rich flavor to your culinary creations. These versatile onions, known for their vibrant hue and distinct taste, come in 24 handy 2lb bags, ensuring you have ample supply for your recipes. Ideal for salads, salsas, or a variety of cooked dishes, Cebolla Roja 24/2lb offers convenience and consistent quality for your kitchen or food service needs.', 'Cebolla Roja', 'https://i5.walmartimages.com/asr/e7869246-c92d-4913-8bdd-eaef681b52d7.ba6b0e5f109105872b3af118e9d863f2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e7869246-c92d-4913-8bdd-eaef681b52d7.ba6b0e5f109105872b3af118e9d863f2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e7869246-c92d-4913-8bdd-eaef681b52d7.ba6b0e5f109105872b3af118e9d863f2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (538529296, 'Burpee Cherry Baby Tomato Vegetable Seed, 1-pack', 1.96, '041530543155', 'Here they come: cascading, jewel-like clusters of delectable ruby-red cherries. Tomatoes bursting with sweetness, light, and a tingly-tangy ‘pop’! ‘Cherry Baby’s super productive plants soon mass with dense clusters of up to 350 sweet 1 oz. cuties. In a large container or the garden, these tomatoes place a healthy snack within arm’s reach. Indeterminate.', 'Burpee exclusive. Red tomatoes bursting with sweetness, light, and a tingly-tangy \'pop\', with clusters of up to 350 Sweet, 1 oz. Tomatoes. Indeterminate Sow indoors 6-8 weeks before average last frost date using a Burpee seed starting kit. Transplant to the garden 4 weeks after the average last frost date. Harvest in 70 days Plant Height is 48\". plant spread is 48\". yields 1\" fruit Annual for all growing zones from 1-11. Sunlight exposure = full-sun', 'Burpee', 'https://i5.walmartimages.com/asr/9db680a9-1f58-4fc9-bd93-206eb2c16a7b.578ce30d1ceed7887bb27b3015860e7a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9db680a9-1f58-4fc9-bd93-206eb2c16a7b.578ce30d1ceed7887bb27b3015860e7a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9db680a9-1f58-4fc9-bd93-206eb2c16a7b.578ce30d1ceed7887bb27b3015860e7a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (538586500, 'California Grown Peaches, per Pound', 1.58, '400094006214', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (538961555, 'Earthbound Farms Fresh Organic Broccoli Florets, 9 oz', 3.48, '032601952693', 'Ready to eat or cook, Earthbound Farms Organic Broccoli Florets are deliciously fresh and organic. These packaged broccoli florets are washed and prepped, so they\'re ready to toss into your favorite recipe or to be dipped in your favorite veggie dip right from the package. One nine-ounce package contains three servings. With 35 calories and loads of nutrients per three-ounce serving, you can have a healthy side dish on the table in no time. Each serving gives you six percent of your daily recommended intake of potassium plus two grams of protein! Earthbound Farms Organic Broccoli Florets are also great in baked recipes like casseroles or in creamy soups like cream or broccoli or cream of potato soup.', 'Earthbound Farms Fresh Organic Broccoli Florets are ready for your favorite dips or recipes Ready to eat on the go Recipe-ready vegetables Washed and ready to enjoy Fresh organic snack Good source of Vitamin K Each 9-ounce package has 3 servings', 'Earthbound Farm', 'https://i5.walmartimages.com/asr/e0ecdf25-f74f-46ee-926e-8908dfa712ef.cde246cae27bbd04944f7f8356f95d5e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e0ecdf25-f74f-46ee-926e-8908dfa712ef.cde246cae27bbd04944f7f8356f95d5e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e0ecdf25-f74f-46ee-926e-8908dfa712ef.cde246cae27bbd04944f7f8356f95d5e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (539032328, 'Acorn Squash', 1.58, 'deleted_850003165028', 'short description is not available', 'Acorn Squash', 'Fresh Produce', 'https://i5.walmartimages.com/asr/daf77412-3612-43bc-bfaf-5ef228abae6d.834dcfdb96f9856e465e5718fe558dd3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/daf77412-3612-43bc-bfaf-5ef228abae6d.834dcfdb96f9856e465e5718fe558dd3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/daf77412-3612-43bc-bfaf-5ef228abae6d.834dcfdb96f9856e465e5718fe558dd3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (539409693, 'Fresh Green Seedless Grapes, Bag (2.25 lbs/Bag Est.)', 4, '681131433655', 'Treat yourself to the delicious, juicy flavor of Freshness Guaranteed Fresh Green Seedless Grapes. These grapes are bursting with flavor and are completely seedless, so you can easily enjoy a handful as a fresh snack any time of day. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Freshness Guaranteed Fresh Green Seedless Grapes.Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Spark Fresh item.', 'Fresh Green Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/706f6ddc-df9b-4f53-bb2f-9a25cc1f13d5.2a6406c8b0d696402a0478f87df6ef8a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/706f6ddc-df9b-4f53-bb2f-9a25cc1f13d5.2a6406c8b0d696402a0478f87df6ef8a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/706f6ddc-df9b-4f53-bb2f-9a25cc1f13d5.2a6406c8b0d696402a0478f87df6ef8a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (539569198, 'Freshness Guaranteed Pineapple Medium', 4.37, '262825000003', 'Experience a burst of tropical flavors with these Freshness Guaranteed Pineapple Chunks. The pre-cut slices of ripe pineapple are juicy and sweet to taste and are packed in its own juice. Carry them with you and eat them straight out of the tray any time you want, at home or on-the-go. You can also use them to top desserts and ice creams, in a fruit salad or blend them with milk to make milkshakes. Pineapples are known to have a number of nutrients, and they are especially rich in vitamin C. Add some fresh fruits to your daily menu today with these Freshness Guaranteed Pineapple Chunks.Freshness Guaranteed provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Pineapple Medium', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (539700049, 'Organic Sweet Sapphire Grapes 1lb', 3.96, '816426013216', 'short description is not available', 'Organic Sweet Sapphire Grapes 1lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (539860003, 'Fresh Asian Pears, Each', 1.97, '000000044073', 'The 20th Century Asian pear smells like a pear, but, like an apple, the fruit is crisp, firm and round. The flavor is like a pear pumped up and sweeter. On the larger side, with smooth, green skin. The flesh of the fruit is crisp, white, and very juicy. Fresh Asian Pears are high in fiber, low in calories, and have many micronutrients. These micronutrients help to improve blood, bone, and cardiovascular health. They are great to add to a healthy diet plan!', 'Fresh Asian Pear, Each: Sweet,crisp and aromatic with a definitive pear flavor Great for breakfast, lunch, dinner, and dessert Versatile ingredient perfect for both savory and sweet dishes Chop them up and add to muffins with walnuts and vanilla, slice and add to pizza with prosciutto, goat cheese, and arugula, or cut in half and cook in a skillet with butter, brown sugar, and vanilla', 'Unbranded', 'https://i5.walmartimages.com/asr/08ee0c5c-699a-4636-9c5e-ec496e556f30.db76790d55b8e320b767ed0fb9092179.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/08ee0c5c-699a-4636-9c5e-ec496e556f30.db76790d55b8e320b767ed0fb9092179.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/08ee0c5c-699a-4636-9c5e-ec496e556f30.db76790d55b8e320b767ed0fb9092179.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (539878607, 'Sweet Apple, Chicken Nugget, Carrots, Dr', 3.94, '732313762510', 'short description is not available', 'Sweet Apple, Chicken Nugget, Carrots, Dr', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (539922855, 'Watermelon Seedless', 4.48, '400094479186', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (540209921, '240pc On Ylw 3# Bg', 465.6, '400094971857', 'short description is not available', '240pc On Ylw 3# Bg', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (540489393, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094225844', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (540801690, 'Freshness Guaranteed Honeycrisp Apples 3 Lb Bag', 7.67, 'deleted_033383047874', 'short description is not available', 'Freshness Guaranteed Honeycrisp Apples 3 Lb Bag', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (540917745, '200pc Pto Ykn 5#wabg', 994, '405529180224', 'short description is not available', '200pc Pto Ykn 5#wabg', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (540928658, 'Medallion Yellow Onions, 4 Count', 1.89, '661061000295', 'Medallion Yellow Onions, 4 Count', 'Medallion Yellow Onion 4 Ct Sleeve Pack', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (541142469, 'Marketside Organic Zucchini', 2.96, '681131091053', 'Marketside Organic Zucchini has a mild taste and a crisp texture that is great in recipes or enjoyed as a healthy snack. This nutrient dense vegetable is great in soups, casseroles, pot roasts and other tasty recipes. Slice it up and enjoy with baby carrots and ranch dressing for a healthy snack. Season with fresh chopped garlic, sauté and serve with grilled chicken breast and roasted carrots. It is great for health conscious individuals as they are USDA organic. Enjoy fresh from the farm taste with Marketside Organic Zucchini. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Zucchini USDA organic Great for you Healthy side item Summer squash/li>', 'Marketside', 'https://i5.walmartimages.com/asr/dd208c04-5bf7-4022-bbeb-4b30ae200bd5_2.ce992df2afc106b32bed95319680ac4a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dd208c04-5bf7-4022-bbeb-4b30ae200bd5_2.ce992df2afc106b32bed95319680ac4a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dd208c04-5bf7-4022-bbeb-4b30ae200bd5_2.ce992df2afc106b32bed95319680ac4a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (541543640, 'Freshness Guaranteed Fresh Red Seedless Grapes', 2.28, '', 'short description is not available', 'Freshness Guaranteed Fresh Red Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (541813266, 'Fresh Whole Malanga Lila', 0.97, 'deleted_405854077343', 'Introducing Malanga Lila, a unique, nutrient-packed root vegetable that adds a delicious twist to your culinary creations. With its earthy flavor and starchy texture, Malanga Lila is perfect for adding substance to soups, stews, and side dishes. Rich in fiber, vitamins, and minerals, this versatile ingredient not only enhances your meals but also promotes a healthy lifestyle. Embrace the exotic taste of Malanga Lila and elevate your dishes to new heights of flavor and nutrition.', 'Introducing Fresh Malanga Lila, a unique, nutrient-packed root vegetable that adds a delicious twist to your culinary creations. With its earthy flavor and starchy texture, Malanga Lila is perfect for adding substance to soups, stews, and side dishes. Rich in fiber, vitamins, and minerals, this versatile ingredient not only enhances your meals but also promotes a healthy lifestyle. Embrace the exotic taste of Malanga Lila and elevate your dishes to new heights of flavor and nutrition.', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/e2e839c8-d025-462a-af80-62845c2cbac8.6f50a627b9c1cd38f2ce4f00f273abaf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2e839c8-d025-462a-af80-62845c2cbac8.6f50a627b9c1cd38f2ce4f00f273abaf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2e839c8-d025-462a-af80-62845c2cbac8.6f50a627b9c1cd38f2ce4f00f273abaf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (542124612, 'Gala Apples 3 Lb Bag', 2.98, '818290020123', 'short description is not available', 'Gala Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (542806438, '200pc Pto Ykn 5# Rpe', 994, '405504307424', 'short description is not available', '200pc Pto Ykn 5# Rpe', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (542955132, 'Sunset Angel Sweet Tomatoes, 1 Pint Package, Fresh', 3.99, '057836655850', 'SUNSET Angel Sweet Tomatoes are 1 pint of premium grape snacking tomatoes! Perfect for snacking, lunch, or dinner - fresh or cooked. Try them in salads, pastas, omelets, flatbreads, and more. Miraculously sweet tomatoes! Sweet and juicy bite-size tomatoes packed with extra sweet flavor. Hothouse grown to ensure consistent quality and freshness. Certified non-GMO tomatoes. Store at room temperature for optimal flavor, and wash before enjoying. Plastic tray featuring a peel and reseal film to help keep tomatoes fresh. Enjoy SUNSET Angel Sweet Tomatoes all year long.', 'SUNSET fresh Angel Sweet grape snacking tomatoes Miraculously sweet tomatoes Sweet and juicy bite-size tomatoes packed with extra sweet flavor Perfect for snacking, lunch, or dinner - fresh or cooked Try them in salads, pastas, omelets, flatbreads, and more Wash and enjoy Available all-year-long Non-GMO certified Hothouse grown to ensure consistent quality and freshness 1 pint plastic container featuring a peel and reseal film to help keep tomatoes fresh Store at room temperature for optimal flavor', 'SUNSET', 'https://i5.walmartimages.com/asr/0dfd1dfe-2f36-4ddb-9bc1-59d462f34e53.52bed9d77148d13bb3e6b4891c0c41b1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0dfd1dfe-2f36-4ddb-9bc1-59d462f34e53.52bed9d77148d13bb3e6b4891c0c41b1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0dfd1dfe-2f36-4ddb-9bc1-59d462f34e53.52bed9d77148d13bb3e6b4891c0c41b1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (542966989, 'Yellow Potatoes 5 Lb Bag', 2.57, 'deleted_677176000174', 'short description is not available', 'Yellow Potatoes 5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (543398045, 'Jammers Thomcord Grapes 1lb Bag', 2.98, 'deleted_799424381108', 'short description is not available', 'Jammers Thomcord Grapes 1lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (543806105, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094239933', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (544312793, '90pc Pto Rst 10# Ph', 399.6, '405531376035', 'short description is not available', '90pc Pto Rst 10# Ph', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (544362461, 'Fresh Green Seedless Grapes', 2.18, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (545035266, 'Yu Yee Dried Black Fungus,8.8 Oz', 18.89, '023452800226', 'black fungus mushroom premim dried all natural', 'Yu Yee Dried Black Fungus,8.8 Oz', 'Yu Yee', 'https://i5.walmartimages.com/asr/1a034e28-1fd2-44bc-b52f-5119f914a253_1.3d5a6c9bed7c5f5de63d0433039569c4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a034e28-1fd2-44bc-b52f-5119f914a253_1.3d5a6c9bed7c5f5de63d0433039569c4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a034e28-1fd2-44bc-b52f-5119f914a253_1.3d5a6c9bed7c5f5de63d0433039569c4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (545920335, 'Fuji Apples 3 Lb Bag', 3.97, 'deleted_080153341311', '', '', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (546677407, 'Organic Zucchini, Fresh, 2 Each', 2.96, 'deleted_823874000132', 'Add some fresh flavor to your meal with Organic Zucchini. This versatile vegetable can be used in a variety of dishes to create delicious and decadent meals. This nutrient dense vegetable. Slice it up and enjoy with baby carrots and ranch dressing for a healthy snack. Season with fresh chopped garlic, saute and serve with grilled chicken breast and roasted carrots. It is great for health-conscious individuals. With so many uses, this vegetable. Create tasty and flavorful meals with Organic Zucchini.', 'Versatile ingredient Slice it up and enjoy with baby carrots and ranch dressing for a healthy snack Great in soups, casseroles, pot roasts and other tasty recipes USDA organic Rich in vitamin C, calcium, and vitamin B-6 Will become a pantry staple', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/4c487bc4-83f4-43c6-ad33-da094986ad9e_1.75dfe24691d7fcea4b712883a53aee1b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4c487bc4-83f4-43c6-ad33-da094986ad9e_1.75dfe24691d7fcea4b712883a53aee1b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4c487bc4-83f4-43c6-ad33-da094986ad9e_1.75dfe24691d7fcea4b712883a53aee1b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (546740780, 'Organic Cucumber, 2 Each', 2.98, '095829400469', 'Wholesum\'s organic cucumbers are perfectly crisp and have a cool, mildly sweet and refreshing flavor. They are a top choice for slicing and eating fresh on a chef\'s salad or serving on a veggie tray with hummus. Keep hydrated with fresh cucumber infused water or slice one up for a quick on-the-go snack. As a low calorie and vitamin rich food, cucumbers also offer many nutritional benefits, helping support bone and cardiovascular health. Enjoy them along with other Wholesum organic fresh vegetables such as grape tomatoes and bell peppers and top with your favorite dressing. Wholesum is committed to bringing you a variety of premium organic produce that is fresh, flavorful, and responsibly grown.', 'Wholesum Organic Cucumbers Certified Organic 2 Count Cucumbers Great for salads Great for snacking Responsibly grown', 'Marketside', 'https://i5.walmartimages.com/asr/54e78389-436c-4823-af99-5aba6086a690.a5ede5f807a385faa636cc6eb9472161.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54e78389-436c-4823-af99-5aba6086a690.a5ede5f807a385faa636cc6eb9472161.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54e78389-436c-4823-af99-5aba6086a690.a5ede5f807a385faa636cc6eb9472161.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (546755038, 'Fresh Dark Sweet Cherries', 84.5, '', 'short description is not available', 'Fresh Dark Sweet Cherries', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (547038281, 'Pineapple Mango 10 Oz', 2.68, '717524782106', 'short description is not available', 'Pineapple Mango 10 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (547571575, 'Sun Dried Tomato Half, 1 Pound', 6.92, '204802000002', 'We’ll show you how to dry tomatoes in the sun, how to dry tomatoes in the oven, how to dry tomatoes in the dehydrator and how to store dried tomatoes. AND we’ll give you a list of ideas for delicious recipes using your sun dried tomatoes! We grow our own tomatoes every year and enjoy eating them fresh in salads, diced up for homemade canned tomatoes, transformed into our famous marinara sauce, spiced up in our restaurant-style salsa, made smooth and creamy in our perfect creamy tomato soup, and any other way we can think to use them. Another one of my favorite ways to use our tomatoes, especially when I’ve got a large end-of-season bumper crop, is to dry them. While I don’t often “sun dry” them, the tomatoes are sun-ripened on the vine and once they’re dried in the oven or the dehydrator, these “sun dried” tomatoes taste so incredible you’d never even know the difference!', 'Sun Dried Tomato Half, 1 Pound The possibilities are endless! Here are a few ideas to get you started. Use sun-dried tomatoes in or on: Pasta Salad Sauces Dips Salad Dressings Compound Butter Soups Sandwiches Burgers Antipasto/cheese/charcuterie platters Meatballs Risotto', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4cf2b3e3-0f8a-4a1e-933d-f201d21526fb.c37331aff05464e6edc511f635adf8d8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4cf2b3e3-0f8a-4a1e-933d-f201d21526fb.c37331aff05464e6edc511f635adf8d8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4cf2b3e3-0f8a-4a1e-933d-f201d21526fb.c37331aff05464e6edc511f635adf8d8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (547588303, 'Premium Bananas', 0.49, 'deleted_405821601113', 'short description is not available', 'Premium Bananas', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (548244449, '120pc Apple Gala 5#', 600, '405673556616', 'short description is not available', '120pc Apple Gala 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (548732869, '100pc Pto Rst 10# Pt', 444, '405566768737', 'short description is not available', '100pc Pto Rst 10# Pt', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (549151191, '75pc Orange Navel 8#', 778.5, '400094636206', 'short description is not available', '75pc Orange Navel 8#', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (549383840, 'Fresh Limes, 4 Count', 1.98, '820402299082', 'Stock up on several of these tart, juicy, Fresh Limes to enjoy with everyday meal planning. Freshly squeezed limes provide a healthy dose of vitamin C and antioxidants to your diet and are a key ingredient in many recipes, from homemade salsa to chicken dishes. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use the juice and the zest when baking cakes, cookies, and tarts. You can even use limes as a natural cleaning agent and to neutralize odors. Mix lime juice with vinegar and water and use as a surface spray for a nontoxic cleaning option. Limes are sold in a four-pack, so you can stock up on as many as you need. Enjoy the refreshing, tart flavor of Fresh Limes.', 'Fresh Limes, 4 Count: Juicy and fresh, packed with vitamin C and antioxidants Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use lime juice and zest when baking cakes, cookies, and tarts Refreshing, tart flavor', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8b76a74d-992c-4d8b-9583-e3bf32c1c1be.3e734700d313786a96eb7feab35c0996.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8b76a74d-992c-4d8b-9583-e3bf32c1c1be.3e734700d313786a96eb7feab35c0996.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8b76a74d-992c-4d8b-9583-e3bf32c1c1be.3e734700d313786a96eb7feab35c0996.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (549503714, 'Fresh Red Seedless Grapes', 1.84, 'deleted_095829211171', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (549598813, '183pc On Vid Kit Bf', 653.84, '405504156206', 'short description is not available', '183pc On Vid Kit Bf', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (549621957, 'Fresh Black Seedless Grapes', 2.22, 'deleted_814563011133', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (549657190, 'Dried Hot New Mexico Chile 12 Oz', 5.97, 'deleted_024059000088', 'short description is not available', 'Dried Hot New Mexico Chile 12 Oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bf7c3e08-c21d-453b-aef0-b1959fa64838_3.0990672c72a1d7ba00a49d1c74898278.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bf7c3e08-c21d-453b-aef0-b1959fa64838_3.0990672c72a1d7ba00a49d1c74898278.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bf7c3e08-c21d-453b-aef0-b1959fa64838_3.0990672c72a1d7ba00a49d1c74898278.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (550075239, 'Fresh Beets, 2 lb bag', 3.27, '033383449814', 'Beets (Remolacha) have been trimmed and bagged to make them more convenient to store and use. There is only one ingredient in this 16 oz. bag and that is beautiful red beets straight from the farm. There are many ways to enjoy the delicious taste and nutritional benefits that they offer.', 'Bag contains 16 oz of whole, unwashed beets Great for pickling, cooking, or enjoying raw Good source of fiber and vitamin C Refrigerate after washing', 'ATV Farms', 'https://i5.walmartimages.com/asr/fa2cf831-8917-4880-8f67-cebe9c79fd3e.c9b754f8d0261c1c255903fce2d1da88.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa2cf831-8917-4880-8f67-cebe9c79fd3e.c9b754f8d0261c1c255903fce2d1da88.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa2cf831-8917-4880-8f67-cebe9c79fd3e.c9b754f8d0261c1c255903fce2d1da88.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (550279144, 'Grizzly Bear Bumpy Pumpkins', 2.48, '850781007527', 'short description is not available', 'Grizzly Bear Bumpy Pumpkins', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (550470240, '180pc Apl Granny 3#', 822.6, '405665852801', 'short description is not available', '180pc Apl Granny 3#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (550698341, 'Fresh Lychees, Each', 1.48, '000000045100', 'In choosing a straight bit for any application, always select one with the shortest cutting edges and the shortest overall length that will reach the required CUT depth. Excessive length intensifies deflection and vibration, which degrade cut quality and Lead to tool breakage, A single-flute bit should be used where cut speed is more important than cut finish. Making one cut per revolution is faster than making two or three. Improved chip clearance is possible with a single flute configuration. The result: fast cuts, #45100, diameter (D): 1/8, cutting height (B): 7/16, shank (D): 1/4, overall length (L): 2, flutes: 1, carbide Tipped straight plunge single flute high production 1/8 dia x 7/16 x 1/4 inch shank.', 'Diameter (D) 1/8,Cutting height (B) 7/16,Shank (D) 1/4,Overall length (L) 2,Flutes High in Antioxidants: Lychees are a good source of antioxidants, which can help protect against cell damage and support overall health. Perfect for Snacking: Enjoy Fresh Lychees as a healthy snack on their own or add them to salads, smoothies, or desserts. Seasonal Availability: Fresh Lychees are available from May to October, making them a great summer treat.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f50a2e97-6eb4-40a3-8e76-1d2ee59d7f1e.9e607709f1b5d406e88c83ccd0b1f33f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f50a2e97-6eb4-40a3-8e76-1d2ee59d7f1e.9e607709f1b5d406e88c83ccd0b1f33f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f50a2e97-6eb4-40a3-8e76-1d2ee59d7f1e.9e607709f1b5d406e88c83ccd0b1f33f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (551253196, 'Fresh Red Seedless Grapes', 1.84, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (551315750, 'Fuji Apples 3 Lb Bag', 3.77, '400094484005', 'short description is not available', 'Fuji Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (551354729, 'AVO BAG 10/4 40 MXWP', 3.28, 'deleted_701080311092', 'Avocado Bagged', 'Large Avocado 4 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (551360646, 'Fingerling Potatoes 1.5 Lb Bag', 3.47, '826429000717', 'short description is not available', 'Fingerling Potatoes 1.5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (551999125, 'Ambrosia Apples 5 Lb Bag', 5.92, '847473005251', 'short description is not available', 'Ambrosia Apples 5 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (552061668, 'Ogp Red Cherry Samples', 0.01, '405836139311', 'short description is not available', 'Ogp Red Cherry Samples', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (552188824, 'Koru Apples, Each', 1.04, '000000036207', 'Bring home the amazing taste of Koru Apples. Tantalizingly crisp, this relatively new variety of apples has a complex, honey-like flavor. These are excellent snacking apples, but you can also use them in a variety of recipes. For breakfast, use these apples to make a rich and creamy yogurt parfait or a nutritious juice blend. Slice these apples and use them to add flavor to a lunchtime salad or spread peanut butter on them for a protein-filled snack. Koru Apples can also be used in many tasty desserts like apple cobbler, apple crisp, and apple pie. Get creative in the kitchen and make your great-granny\'s homemade apple butter or cinnamon applesauce. However you choose to use them, Koru Apples add flavor to any meal.', 'Koru Apples, each: Sweet, crisp & juicy Excellent snacking apple Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp & apple pie Slow to brown', 'Fresh Produce', 'https://i5.walmartimages.com/asr/81b735ce-76d7-4392-899b-c7d6dccb7a4d_3.de70ab236b17afc94fe313b92c6ea52e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/81b735ce-76d7-4392-899b-c7d6dccb7a4d_3.de70ab236b17afc94fe313b92c6ea52e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/81b735ce-76d7-4392-899b-c7d6dccb7a4d_3.de70ab236b17afc94fe313b92c6ea52e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (552321960, '200pc Pto Red 5# Cv', 1094, '405509147650', 'short description is not available', '200pc Pto Red 5# Cv', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (552502600, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_400094101964', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (552862787, 'Red Apple Bulk', 0.98, 'deleted_897049040162', 'short description is not available', 'Red Apple Bulk', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/151c39a0-9f66-4b11-906f-bd281f75c8df_1.24563d52f671c9313a13cfc1db0e4358.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/151c39a0-9f66-4b11-906f-bd281f75c8df_1.24563d52f671c9313a13cfc1db0e4358.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/151c39a0-9f66-4b11-906f-bd281f75c8df_1.24563d52f671c9313a13cfc1db0e4358.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (553070590, 'Gourmet212 Fried Eggplant 13.4oz (6 Pack), Fresh, Tin, Canned', 56.95, '191822007169', 'Have you ever tasted fried eggplant? Eggplant can offers you a bigger convenience than buying and preparing fresh eggplants. Eggplant has a unique taste but if you do not want to struggle cooking it, you can buy canned eggplant fries. Our product has a homemade taste like you just made it, so you open and serve any time you want. You can consume fried eggplants cold or warm as you like. We suggest you serve and eat eggplants with yoghurt. If you have never tried it before, it might be your new favorite. There are some features that may make you try our product: Fried eggplants are ready to serve and eat Our product has a homemade taste It is prepared with extra virgin olive oil It is Kosher Certified It is Halal Certified Ingredients: Eggplant 65%, Roasted Tomato Paste 16&, Extra Virgin Olive Oil 4%, Tomato Paste, Sunflower Oil, Garlic, Sugar, Salt, Spices. Just reading these features can make you buy our fried eggplant. It is delicious!', 'Gourmet212 Fried Eggplant 13.4 oz (6 Pack), Airtight Tin, Canned, Stainless Steel, Kosher, and Halal Certified. Our product has a homemade taste like you just made it. You can consume fried eggplants cold or warm as you like. Fried eggplants are ready to serve and eat. It is Kosher and Halal Certified Ingredients: Eggplant 65%, Roasted Tomato Paste 16%, Extra Virgin Olive Oil 4%, Tomato Paste, Sunflower Oil, Garlic, Sugar, Salt, Spices.', 'Gourmet212', 'https://i5.walmartimages.com/asr/a428a642-e76f-4e23-adac-d421e66b917a.7128eb4578d328329dc7d8889ab326bf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a428a642-e76f-4e23-adac-d421e66b917a.7128eb4578d328329dc7d8889ab326bf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a428a642-e76f-4e23-adac-d421e66b917a.7128eb4578d328329dc7d8889ab326bf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (553373599, 'Watermelon Seedless', 4.48, '400094407721', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (553575932, 'Gourmet212 Stuffed Cabbage Leaves 14.11oz., 12 Pack', 87.95, '191822005493', 'You might have loved cabbage. In fact, you might have searched ?cabbage rolls near me? or where can I buy cabbage rolls? on the Internet before; now, you are at the right place to buy some stuffed cabbage leaves. Stuffed cabbage leaves are a very popular dish in Turkey. They can be prepared with both olive oil and ground meat. To be able to offer you a vegan dish, we prefer to make it with olive oil. It is ready to serve so you can open and immediately serve the stuffed cabbage leaves to your guests. Also, you can take it with you to the workplace and enjoy this cheap and healthy meal during your lunch break. You can buy our product in inner peace because of the reasons given below: It is ready to serve It is prepared with extra virgin olive oil It is all natural It is Kosher Certified It is Halal Certified Ingredients: Cabbage 34,6%, Onion 26%, Rice 21,7%, Extra virgin olive oil 5%, Sunflower oil, Tomato paste 3%, Pepper Paste, Spice mix (mint, black pepper, dill, parsley), Salt, Water, Acidity Regulator (Citric acid). Enjoy the healthy stuffed cabbage leaves. Bon appetite!', 'Gourmet212 Stuffed Cabbage Leaves 14.11oz (Pack of 12), Fresh, Vegetable Preserved in Airtight Stainless Steel Tin Canned. The stuffed cabbage leaves are highly appreciated in Turkey. You can make them with olive oil and minced meat. It is all-natural and prepared with extra virgin olive oil. It is Kosher and Halal Certified. Ingredients: Rice 21.7%, Cabbage 34, 6%, Onion 26%, Extra virgin olive oil 5%, Tomato paste 3%, Sunflower oil, Pepper Paste, Spice mix (mint, black pepper, dill, parsley), Salt, Water, Acidity Regulator (Citric acid).', 'Gourmet212', 'https://i5.walmartimages.com/asr/82b23237-0eb2-4671-b09e-f4e6741d9b67.8d6eb397a252b72f64fc0351454bd612.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/82b23237-0eb2-4671-b09e-f4e6741d9b67.8d6eb397a252b72f64fc0351454bd612.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/82b23237-0eb2-4671-b09e-f4e6741d9b67.8d6eb397a252b72f64fc0351454bd612.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (553812743, 'Fresh Yellow Honey Mango, 1.5 lb Bag', 2.88, '810017700912', 'Treat yourself to a burst of tropical goodness when you bring home a bag of Yellow Honey Mangos. Mangoes boast a deliciously sweet fragrance and juicy flavor that is sure to wake up your taste buds. They are packed with over 20 vitamins and minerals including A and C, making them not only scrumptious but also a healthy treat. They can be used for everything from salads and smoothies to fresh salsas and luscious desserts. For the best experience, these mangos should be cut in half, sliced while in the peel and then scooped out. Bring home a bag of Yellow Honey Mangos today.', 'Deliciously fresh, sweet and juicy. Packed with sweet tropical flavor. Makes a healthy snack.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/38a39a5b-0cd9-41ec-9064-3303af2fa44f.44cc8da409d8c6ce44ed4297b789b693.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/38a39a5b-0cd9-41ec-9064-3303af2fa44f.44cc8da409d8c6ce44ed4297b789b693.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/38a39a5b-0cd9-41ec-9064-3303af2fa44f.44cc8da409d8c6ce44ed4297b789b693.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (554188011, 'Services Reduced Program Dept 94', 0.01, '251875000002', 'short description is not available', 'Services Reduced Program Dept 94', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (554581596, 'Bowery Farming Crispy Leaf Lettuce Salad, 4 oz Clam Shell, Fresh Salad Lettuce', 2.98, '851536007397', 'For those who crave a crunch, look no further. Our crispy leaf lettuce salad does it all: crispness with fresh frills for a perfect green that?ll take center stage in any salad or dish. Every Bowery leaf is grown and handled with care, without pesticides. Bowery\'s smart farms use less water and create less waste on less land. All Bowery produce salad is freshly harvested, picked at peak freshness 365 days a year, and available on shelf in just a few days.', 'Produce grown smarter for better flavor: less wasteful, more tasteful. Vertically Grown Fresher Longer Zero-Pesticide Greens No Need to Wash Bowery Farming Salad Leafy Greens', 'Bowery Farming', 'https://i5.walmartimages.com/asr/48eec4fb-0673-46b8-86e0-ca4aec671897.245ef5cc9007e635e06ce5d02cefe466.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/48eec4fb-0673-46b8-86e0-ca4aec671897.245ef5cc9007e635e06ce5d02cefe466.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/48eec4fb-0673-46b8-86e0-ca4aec671897.245ef5cc9007e635e06ce5d02cefe466.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (554666574, 'Fresh Red Seedless Grapes', 2.48, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (554843014, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094346143', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (554977611, '200pc On Swt 3# Gr', 788, '405532639610', 'short description is not available', '200pc On Swt 3# Gr', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (555521987, 'Red Delicious Apples Bulk', 1.38, 'deleted_736264040161', 'short description is not available', 'Red Delicious Apples Bulk', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/9728649b-4cb1-4280-bff6-85c15b034516_1.997f3b5f09708de3192ebadb3982c0b5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9728649b-4cb1-4280-bff6-85c15b034516_1.997f3b5f09708de3192ebadb3982c0b5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9728649b-4cb1-4280-bff6-85c15b034516_1.997f3b5f09708de3192ebadb3982c0b5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (555542616, 'Spice World Minced Ginger 4 oz', 2.7, '070969000045', 'Ginger adds a nice, undeniable flavor to your cooking—and Spice World has made it convenient as well, with our Ready-to-Use Minced Ginger. Simply add a spoonful of perfectly minced ginger to your dish. Nobody will believe it’s not fresh. And because our Ready-to-Use Minced Ginger comes in a jar, it’ll keep longer than fresh ginger.', 'No sodium Non-GMO Kosher', 'Spice World', 'https://i5.walmartimages.com/asr/39ab514a-b5c4-4c40-bbe9-60836490152c.016401576b3506a2a18820bf2b22938a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39ab514a-b5c4-4c40-bbe9-60836490152c.016401576b3506a2a18820bf2b22938a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39ab514a-b5c4-4c40-bbe9-60836490152c.016401576b3506a2a18820bf2b22938a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (555660764, 'Fresh Organic Sweet Potatoes, 3 Count Tray', 6.34, '819614010288', 'Create something wholesome and delicious with these Fresh Organic Sweet Potatoes. Sometimes referred to as yams, these versatile fresh produce vegetables can be used multiple ways: to make savory sides or sweet treats. Try them roasted or baked for a tasty addition to any dish. You could also use them to make seasoned sweet potato fries or a flavorful hummus dip for your next party. If you want to satisfy your sweet tooth, try them in a traditional sweet potato casserole or use them to make sweet potato and brown sugar ice cream. The mouthwatering possibilities are endless with this hearty vegetable. Add something amazing to your meals with these Organic Sweet Potatoes.', 'Fresh Organic Sweet Potatoes, 3 Count Tray Wholesome, versatile, and delicious Ideal ingredient for a variety of dishes Make seasoned sweet potato fries or a flavorful hummus dip Use them for a sweet potato casserole or sweet potato and brown sugar ice cream USDA organic Packaged in a plastic tray', 'Fresh Produce', 'https://i5.walmartimages.com/asr/096811c6-50c5-4b6b-8269-4d3dcf8fbff8.a8ff0b7331bd9bc03a94eb801aadec1e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/096811c6-50c5-4b6b-8269-4d3dcf8fbff8.a8ff0b7331bd9bc03a94eb801aadec1e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/096811c6-50c5-4b6b-8269-4d3dcf8fbff8.a8ff0b7331bd9bc03a94eb801aadec1e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (555872095, 'Freshness Guaranteed Vegetables With Guac Snack Cup', 2.98, '030223028314', 'short description is not available', 'Freshness Guaranteed Vegetables With Guac Snack Cup', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (556099499, 'California Grown Peaches, per Pound', 1.58, '400094008737', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (556596551, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094274538', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (557181732, 'Mann Packing Manns Culinary Cuts Brussels Sprouts, 9 oz', 2.98, '716519067013', 'Brussels Sprouts, Shaved, Culinary Cuts, bag 9 OZ Washed and ready to eat. Steam in bag. Microwave ready. Three generations. Est. 1939. Mann\'s Family Favorites: Farming has been a family business for three generations. We are dedicated to providing the highest quality and freshest produce. Gluten free. For information contact us: Mann\'s Customer Service, PO Box 690, Salinas, CA 93902 USA. CulinaryCutsClub.com. Product of Mexico. Keep refrigerated. Perishable. Healthy cooking made easy! Steaming is a healthy and convenient way to prepare fresh vegetables. Our innovative packaging allows you to steam these veggies in your microwave. Do not pierce bag. Place this side up, in microwave and heat for 2 minutes. Remove carefully as bag will be warm to the touch. Enjoy! Inspirational Ideas: Try the delicious Shaved Brussels Sprouts recipes from the front of our bag by visiting CulinaryCutsClub.com. Enjoy roasted Shaved Brussels Sprouts as a crispy, flavorful topping on rice, pasta, soup or salad. Saute Shaved Brussels Sprouts with sesame oil, ginger, garlic and soy sauce for an easy Asian side dish. 9 oz (255 g) Salinas, CA 93901 800-285-1002', 'Brussels Sprouts, Shaved Washed and ready to eat. Steam in bag. Microwave ready. Three generations. Est. 1939. Mann\'s Family Favorites: Farming has been a family business for three generations. We are dedicated to providing the highest quality and freshest produce. Gluten free. For information contact us: Mann\'s Customer Service, PO Box 690, Salinas, CA 93902 USA. CulinaryCutsClub.com. Product of Mexico.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/fc39c939-b9e7-465c-9251-b01409214822.4a05515d7f0dbe10039ac91c6c5f6a17.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fc39c939-b9e7-465c-9251-b01409214822.4a05515d7f0dbe10039ac91c6c5f6a17.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fc39c939-b9e7-465c-9251-b01409214822.4a05515d7f0dbe10039ac91c6c5f6a17.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (557391433, 'Gourmet212 Grilled Artichokes Marinated In Oil 7.05oz', 24.95, '191822005066', 'Aegean?s olive oil dishes are very famous. Taste of Mediterranean and light color artichokes will give with tasty broad bean or as a mezze The light color artichoke will give you Mediterranean taste with broad beans or serve as mezze. It is being served with potatoes, green beans and carrots at most fish restaurants.', 'Gourmet212 Grilled Artichokes Marinated In Oil 7.05oz, Airtight Glass Jar, Kosher, and Halal Certified, Fresh Grilled Artichokes, being served with potatoes, green beans, and carrots at most fish restaurants. Store in Cold and Dry places, away from direct sunlight. Keep refrigerated after opening. Amount per serving Calories 30.', 'Gourmet212', 'https://i5.walmartimages.com/asr/78f145c6-4f59-45a0-8534-f5cb529886f4.e44faf737394b7cb230292618b3d1ec6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/78f145c6-4f59-45a0-8534-f5cb529886f4.e44faf737394b7cb230292618b3d1ec6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/78f145c6-4f59-45a0-8534-f5cb529886f4.e44faf737394b7cb230292618b3d1ec6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (557517234, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094680773', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (557689776, 'Fresh Cherry on the Vine Tomato, 9 oz Package', 4.98, '898859002074', 'Fresh Cherry on the Vine Tomatoes are the perfect cooking tomato. Because of their notable flavor and thicker skin, they are a versatile tomato option that\'s fit for grilling, sauteing, roasting, or baking. Their small size also makes them a quick and simple addition to a fresh salad as well as an excellent finger food for whenever you\'re in the mood for a light snack. Packed with nutrients, cherry on the vine tomatoes are a deliciously healthy ingredient that adds both vibrant color and mouthwatering flavor to any recipe. For the best flavor and freshness, store these tomatoes at room temperature on your kitchen counter. Make your next meal a marvelous one with these fresh Cherry on the Vine Tomatoes.', 'Wholesome, fresh, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/199a3092-34b2-400d-a70a-0e4a358eed0b.b3329ae13c215dc46addae50f72eabcd.webp?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/199a3092-34b2-400d-a70a-0e4a358eed0b.b3329ae13c215dc46addae50f72eabcd.webp?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/199a3092-34b2-400d-a70a-0e4a358eed0b.b3329ae13c215dc46addae50f72eabcd.webp?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (557839121, 'Services Reduced Program Dept 94', 0.01, '251908000009', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (557843539, 'Green Giant Mighty Medley Creamer Potato, 1.5 Lb.', 3.48, 'deleted_605806003783', 'Green Giant Mighty Medley Creamer Potato, 1.5 Lb.', 'Mighty Medley Green Giant Creamer Potato', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (557866898, '180pc Apl Granny 3#', 709.2, '405665851910', 'short description is not available', '180pc Apl Granny 3#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (558227072, 'Pepper Mini Sweet', 3.18, 'deleted_626074000212', 'short description is not available', 'Pepper Mini Sweet', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (558931994, 'Fresh Medley Tomatoes, 10oz', 2.5, '882035501277', 'Bring the fresh, delicious taste of Fresh Medley Tomatoes to your kitchen. These tomatoes are greenhouse grown giving them sweet, juicy flavor in every bite. These multi-colored medley tomatoes come in hues of orange, red and yellow, which adds a nice bit of vibrant color to your meals. Use them to top salads at lunch or dinner, mix them into pasta salads, or add them to omelets for a fresh bite. They are bite sized, which makes them easy to enjoy as a snack, if desired, and there\'s plenty to use in all your favorite recipes. Get creative in the kitchen with Nature Fresh Farms Medley Tomatoes today.', 'Fresh Medley Grape Tomato, 10 oz Package Colorful blend of fresh, high-flavor snacking tomatoes Great for Salads Great for snacking', 'Nature Fresh Farms', 'https://i5.walmartimages.com/asr/011fa0ce-3c53-4494-b3b4-2798de024da1.3be0ad53eb27c42cc0f6ac8f4d84c199.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/011fa0ce-3c53-4494-b3b4-2798de024da1.3be0ad53eb27c42cc0f6ac8f4d84c199.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/011fa0ce-3c53-4494-b3b4-2798de024da1.3be0ad53eb27c42cc0f6ac8f4d84c199.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (559013577, 'Crisply Sweet Greens Mixed Salad, 5 oz', 3.48, '857951008001', 'Crisply Sweet Greens Mixed Salad, 5 Oz.', 'Crisply Sweet Greens Mixed Salad, 5 oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ad19d6eb-c0e2-4b11-8bea-139a3b86575e_3.c04941e04e24c7f4b451b51558cca917.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ad19d6eb-c0e2-4b11-8bea-139a3b86575e_3.c04941e04e24c7f4b451b51558cca917.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ad19d6eb-c0e2-4b11-8bea-139a3b86575e_3.c04941e04e24c7f4b451b51558cca917.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (559021789, 'Org Cucumbers, 1 Each', 2.96, 'deleted_711069008516', 'Org Cucumbers, 1 Each', 'Organic Cucumber', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/0a9ff4aa-e99b-4009-a952-e2cc8de33983_1.07f58edf4a7ee11c8159fe1e5ee9baf7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a9ff4aa-e99b-4009-a952-e2cc8de33983_1.07f58edf4a7ee11c8159fe1e5ee9baf7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a9ff4aa-e99b-4009-a952-e2cc8de33983_1.07f58edf4a7ee11c8159fe1e5ee9baf7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (559030886, 'Red Potatoes 5 Lb Bag', 5.77, 'deleted_851231005018', 'short description is not available', 'Red Potatoes 5 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (559099231, 'Dark Sweet Cherries, Half Pint', 2.98, '887434320207', 'Dark Sweet Cherries, Half Pint', 'Dark Sweet Cherries 1/2 Dry Pint', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7a0b952e-a04b-4887-b3bf-1323704d01d1.c05b2e0ab969d083309c04b90a7b7ee7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7a0b952e-a04b-4887-b3bf-1323704d01d1.c05b2e0ab969d083309c04b90a7b7ee7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7a0b952e-a04b-4887-b3bf-1323704d01d1.c05b2e0ab969d083309c04b90a7b7ee7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (559113588, 'Fresh Mandarin Dekopon, 2 lb Bag', 5.74, '725422000086', 'This Fresh Mandarin Dekopon fruit is effortlessly peelable and seedless, making it accessible for all to enjoy. Bursting with a delightful sweetness and abundant in juice, these fruits are not only delicious but also provide a generous supply of dietary fiber, calcium, and vitamin C. Whether enjoyed on their own or combined with nuts or layered in yogurt, this Fresh Mandarin Dekopon offers a nourishing and delectable treat.', 'Fresh Mandarin Dekopon, 2 lb Bag Seedless and abundant in juice Easy to peel Intense sweetness Nourishing and delectable treat Great for the whole family', 'Unbranded', 'https://i5.walmartimages.com/asr/504ff3bb-bbdb-4add-b73d-06c328e335d6.ebe67b62082b69b5a9ce55291a94f043.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/504ff3bb-bbdb-4add-b73d-06c328e335d6.ebe67b62082b69b5a9ce55291a94f043.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/504ff3bb-bbdb-4add-b73d-06c328e335d6.ebe67b62082b69b5a9ce55291a94f043.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (559358463, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094138014', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (559375589, 'Organic Red Cherries, Half Pint', 2.98, '888289403930', 'Organic Red Cherries, Half Pint', 'Organic Red Cherries 1/2 Dry Pint', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (559573688, 'Corn Husk, 8 oz', 5.48, 'deleted_883616004309', 'corn husk', 'Corn Husk 8 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/81700b7c-7187-4fd1-b808-c75c996bd523_1.455aafeb071e5d4d6939b5a2ca2e7812.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/81700b7c-7187-4fd1-b808-c75c996bd523_1.455aafeb071e5d4d6939b5a2ca2e7812.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/81700b7c-7187-4fd1-b808-c75c996bd523_1.455aafeb071e5d4d6939b5a2ca2e7812.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (559754839, 'Freshness Guaranteed Fruit Medley Blend Bowl', 7.97, '263037000003', 'Freshness Guaranteed Fruit Medley Blend in a Plastic Bowl. This delicious Fruit Medley Blend is ready to eat and a healthy snack.', 'Freshness Guaranteed Fruit Medley Blend Bowl', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (559886303, 'Broccoli Florets, 12 oz', 2.68, 'deleted_854026006269', 'short description is not available', 'Broccoli Florets 12 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (559929266, 'Watermelon Seedless', 4.98, '400094237861', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (560162709, 'Fresh Garlic Mesh 10 count (15 units/case)', 7.6, '651973539112', 'Fresh Garlic Mesh 10 count (15 units/case)', 'Fresh garlic mesh, also known as garlic netting, is a practical tool for storing garlic bulbs Garlic products, whether fresh, peeled, or in paste form, offer a range of benefits that can enhance both your culinary creations and your health TIO PACO FRESH PRODUCE is a family business that has been importaing and distributing garlic to its valued customers across the country for over 20 years.', 'Tio Paco', 'https://i5.walmartimages.com/asr/e71a3a8f-1c35-452f-955f-640b3fc6247f.3a5843b82af6ddc7f432fb2116af9d54.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e71a3a8f-1c35-452f-955f-640b3fc6247f.3a5843b82af6ddc7f432fb2116af9d54.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e71a3a8f-1c35-452f-955f-640b3fc6247f.3a5843b82af6ddc7f432fb2116af9d54.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (560309953, 'Freshness Guaranteed Sliced White Mushrooms 8oz', 2.08, 'deleted_699058820069', 'short description is not available', 'Freshness Guaranteed Sliced White Mushrooms 8oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (560624166, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094274811', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (560815143, 'Tasteful Selections Tasteful Selection Hney Gld Mesh Org', 4.88, '826088583101', 'Produce', 'Potatoes, 2-Bite, Honey Gold US No. 1 (3/4 in min dia). USDA Organic. Certified Organic by CCOF. Field to fork fresh in every bite! Signature flavor. We appreciate your feedback: feedback(at)rpespud.com. For nutritional information, food pairing ideas and recipes please visit: tastefulselections.com/nutrition. Produce of USA.', 'Tasteful Selections', 'https://i5.walmartimages.com/asr/75f25f00-a72c-4c31-9fe7-7bc7c2a544dd.c5997d13ee37a0ecc8fc3b8db1eedbbe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75f25f00-a72c-4c31-9fe7-7bc7c2a544dd.c5997d13ee37a0ecc8fc3b8db1eedbbe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75f25f00-a72c-4c31-9fe7-7bc7c2a544dd.c5997d13ee37a0ecc8fc3b8db1eedbbe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (560877417, '120pc Pto Ykn 5# Ca', 596.4, '405507399815', 'short description is not available', '120pc Pto Ykn 5# Ca', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (560989057, 'Fresh Black Seedless Grapes', 1.98, '', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (561637681, 'Marketside Organic Fuji Apples, 2lb Bag', 5.5, 'deleted_741839004301', 'There are lots of reasons why the Marketside Organic Fuji Apple is a fan favorite. The versatility of Fuji apples makes them a great choice for many different occasions. Developed by researches in Fujisaki, Japan in the 1930’s, Fuji apples are crisp and very juicy with a sugary-sweet flavor. Fuji apples store well, which makes them a great treat all year long! Use them for snacking, in salads, in fruit salads, and for baking; the Fuji apple is a great choice for any occasion! Pick up some Marketside Organic Fuji Apples today and have a handy snack you can feel good about. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Fuji Apples, 2lb Bag: One of the most popular apple varieties Crisp and juicy Use for snacking, salads, or for baking Organic', 'Marketside', 'https://i5.walmartimages.com/asr/11921682-7513-417d-b4e4-2056e21adf9e.d0b0b570aaa043c16dffcd74280a3147.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/11921682-7513-417d-b4e4-2056e21adf9e.d0b0b570aaa043c16dffcd74280a3147.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/11921682-7513-417d-b4e4-2056e21adf9e.d0b0b570aaa043c16dffcd74280a3147.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (561813433, 'Organic Pitted Deglet Noor Dates 19.8LB Sun-Dried/Certified NON-GMO/KOSHER/VEGAN', 69, '850023294043', 'These are the renowned authentic Algerian Deglet Noor Dates. They are blondish brown, of an amber hue. USDA Organic, taken straight from the Palm Tree into your hands. Chop chop and throw some in your salad, smoothie, pre-workout shake, or blend them with your cake mix, or eat them whole for a healthy nutritious snack. They are naturally sweet, packed with fiber, vitamins and minerals. We are passionate about these dates and we would really love for you to try them! 100% Certified USDA Organic – Our farms and plants are certified organic by the USDA. Our products are graded by USDA and approved by FDA Deglet Noor- a firmer date than Medjool Premium taste, color, and texture- Our dates have a translucent amber color and a unique mild caramel, honey flavor that is light sweet Freshly hand-picked- no additives, no preservatives, all you get is dates Can be eaten whole, added to cereal as a natural sweetener, a topping for salads, or made into delicious appetizers, baked goods, and smoothies', '19.8 lb bulk box of premium organic pitted Deglet Noor dates Naturally sweet with a smooth, caramel-like flavor Ready to use for baking, blending, meal prep, or food production No added sugar, no preservatives, nothing artificial USDA Organic, vegan, gluten-free, non-GMO, and kosher certified', 'Alya Foods', 'https://i5.walmartimages.com/asr/03fe3f7f-ece7-4f93-9970-9c9111a9cf6a.962bb96d15dab014fae7c2471c380cfc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/03fe3f7f-ece7-4f93-9970-9c9111a9cf6a.962bb96d15dab014fae7c2471c380cfc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/03fe3f7f-ece7-4f93-9970-9c9111a9cf6a.962bb96d15dab014fae7c2471c380cfc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (562159250, 'Cocktail Tomato, 1 lb Package', 2.98, 'deleted_057830020753', 'Holding the ideal balance of sweetness and acidity, it\'s easy to see why Cocktail Tomatoes are called the tomato lover\'s tomato. Cocktail tomatoes are small, making them an ideal choice for appetizers to pair with your everyday meals and for when you\'re entertaining guests. You can combine these tasty little tomatoes with fresh mozzarella and basil drizzled with olive oil or slice them up and add them to a freshly tossed salad. If you\'re feeling something classic, you can always cut one up to add that fresh tomato taste to a sandwich or dice up a few to make a delightful pizza topping. Plus, cocktail tomatoes are packed with nutrients, including vitamins A, B6, B12, C, D, E, K, phosphorous, magnesium and zinc, so you can feel good about adding some extra flavor to your meals. Be sure to add Cocktail Tomatoes to your inventory of fresh ingredients today.', 'Cocktail Tomato, 1 lb Package: The tomato lover\'s tomato Small size is ideal for salads and appetizers Ideal ingredient for a variety of dishes These European-style whole tomatoes are ideal all year long Add to party trays or school lunches Delicious and nutritious 16-ounce package of cocktail tomatoes To maintain sweetness, do not refrigerate', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e9cd5b61-4764-440a-824f-27c48ab73adb.9d45497f656a74cee90bea61ec675494.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9cd5b61-4764-440a-824f-27c48ab73adb.9d45497f656a74cee90bea61ec675494.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9cd5b61-4764-440a-824f-27c48ab73adb.9d45497f656a74cee90bea61ec675494.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (562888478, 'Fresh Green Seedless Grapes', 3.27, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (563300058, 'Lime 3 Count Package', 1.88, '820402249261', 'short description is not available', 'Lime 3 Count Package', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (563579151, 'Bulk Persian Limes', 0.28, 'deleted_744430275668', 'short description is not available', 'Bulk Persian Limes', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (564427135, 'Services Reduced Program Dept 94', 0.01, '251745000002', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (564539568, 'Cocktail Tomatoes', 3.48, 'deleted_699058231452', 'short description is not available', 'Cocktail Tomatoes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (564636574, '100pc Pto Rst 10# Ff', 454, '405500345048', 'short description is not available', '100pc Pto Rst 10# Ff', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (564708343, 'Organic Whole Brown Mushrooms 8oz', 3.12, 'deleted_699058820144', 'short description is not available', 'Organic Whole Brown Mushrooms 8oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (565225468, 'Yellow Nectarin, Each', 2.48, 'deleted_896460002148', 'short description is not available', 'Fresh Grown Yellow Nectarines', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (565328636, 'Gala Apples 3 Lb Bag', 3.37, 'deleted_818679006250', '', '', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (565653257, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, 'deleted_400094127292', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (565971721, 'Watermelon Seedless', 4.48, '400094675052', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (566207308, 'Yellow Flesh Peaches, per Pound', 1.58, '400094233191', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (566373326, 'Fresh Black Seedless Grapes', 2.78, '', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/133f2a1c-08c9-4b30-b58e-8f2dff824974_2.3094c5be225d26e09693a9fe995cab5f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/133f2a1c-08c9-4b30-b58e-8f2dff824974_2.3094c5be225d26e09693a9fe995cab5f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/133f2a1c-08c9-4b30-b58e-8f2dff824974_2.3094c5be225d26e09693a9fe995cab5f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (567173346, 'Red Onions, 3 lb Bag', 1.78, '883616601027', 'Red Onions, 3 lb Bag', 'Red Onions 3 Lb Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/b25ed630-6588-4f8e-88e9-b5653b539142.95023cb1bacef011578da0274a08d38f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b25ed630-6588-4f8e-88e9-b5653b539142.95023cb1bacef011578da0274a08d38f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b25ed630-6588-4f8e-88e9-b5653b539142.95023cb1bacef011578da0274a08d38f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (567749878, 'Fresh Red Seedless Grapes', 2.48, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (567926690, 'Grape Tomato, 10 oz', 1.97, '042808001810', 'Fresh grape tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Grape Tomatoes are the perfect choice.', 'Grape Tomatoes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (568035406, 'Fresh Stuffed Baby Bella Mushrooms, Fiesta Cheese Blend, 8.5 oz, 6 Count', 4.97, '070475657245', 'Fiesta Cheese Blend Stuffed Baby Bella Mushrooms are stuffed with a tasty combination of pepper jack cheese, queso fresco, queso Gallego cheese, dried tomatoes, bell peppers, onion, garlic, and jalapenos. These stuffed mushrooms are perfect for both grilling and baking and can even be cooked in the microwave. The stuffed caps are great as an appetizer or as a delicious side dish. Serve with tender New York strip steak and broccoli florets for an unforgettably delicious dinner the whole family will enjoy. They also offer nutritional benefits as they are a good source of dietary fiber, protein, calcium, and iron. Spice up your routine sides with Fiesta Cheese Blend Stuffed Baby Bella Mushrooms.', 'Stuffed Baby Bella Mushrooms, Fiesta Cheese Blend, 8.5 oz, 6 Count: Baby bella mushrooms stuffed with a tasty combination of pepper jack cheese, queso fresco, queso Gallego cheese, dried tomatoes, bell peppers, onion, garlic, and jalapenos Cooks in the tray Oven safe and microwavable tray Great as an appetizer or side item Good source of protein Net weight 8.5 oz', 'Giorgio', 'https://i5.walmartimages.com/asr/35bdfb87-0927-4eb5-b02d-fa506413afc7.cf63f3dd7221a6731d9b749574b64a19.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35bdfb87-0927-4eb5-b02d-fa506413afc7.cf63f3dd7221a6731d9b749574b64a19.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35bdfb87-0927-4eb5-b02d-fa506413afc7.cf63f3dd7221a6731d9b749574b64a19.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (568120857, 'Ruby Tango Red Mandarins, 26 Oz.', 4.98, '092148142223', 'Ruby Tango Red Mandarins, 26 Oz.', 'Ruby Tango Red Mandarins 26 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (568257574, 'Marketside BBQ Chopped Salad, 13.35 oz, Fresh', 3.63, '681131055918', 'short description is not available', 'Marketside BBQ Chopped Salad 13.35z', 'Marketside', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (568483752, 'Tom Grape Amarillo', 4.68, '882035500805', 'short description is not available', 'Tom Grape Amarillo', 'Unbranded', 'https://i5.walmartimages.com/asr/f7fb13df-12a4-495b-8acd-a733f00d6fa2.277d151a07a9b043187a223651b4f32f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f7fb13df-12a4-495b-8acd-a733f00d6fa2.277d151a07a9b043187a223651b4f32f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f7fb13df-12a4-495b-8acd-a733f00d6fa2.277d151a07a9b043187a223651b4f32f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (568692868, 'Organic Red Leaf Lettuce', 1.96, 'deleted_033383904115', '', '', 'Produce Electronic ID', 'https://i5.walmartimages.com/asr/727018b1-ec51-4b2f-a88f-821092caa6af_1.b4a4206e12ab30acefc64f5c83870c64.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/727018b1-ec51-4b2f-a88f-821092caa6af_1.b4a4206e12ab30acefc64f5c83870c64.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/727018b1-ec51-4b2f-a88f-821092caa6af_1.b4a4206e12ab30acefc64f5c83870c64.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (568716241, 'Fieldpack Unbranded Fresh Strawberries 1#', 2.98, '400094503690', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (568879446, 'Romaine Salad, 9 Oz.', 2.48, '030223011293', 'Romaine Salad, 9 Oz.', 'Sld Romaine Bag 9 Oz.', 'Taylor Farms', 'https://i5.walmartimages.com/asr/6dde1bd6-3513-42f2-aa62-497d445ed1ab.c1174f873db6c7512bd3f290714d6fa4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6dde1bd6-3513-42f2-aa62-497d445ed1ab.c1174f873db6c7512bd3f290714d6fa4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6dde1bd6-3513-42f2-aa62-497d445ed1ab.c1174f873db6c7512bd3f290714d6fa4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (568983695, 'Yellow Flesh Peaches, per Pound', 1.58, '400094250921', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (569036612, '240pc On Ylw 3# Ca', 465.6, '405555351193', 'short description is not available', '240pc On Ylw 3# Ca', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (569305188, 'Services Reduced Program Dept 94', 0.01, '252011000009', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (569757172, 'California Grown Peaches, per Pound', 1.58, '400094896938', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (569988995, 'CHERRY TOMATOES', 2.5, '711068535075', 'CHERRY TOMATOES', '', '', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (570058437, 'Plenty Greens Kale Crunch Salad Blend, 4.5 oz Clam Shell, Fresh', 2.48, '810567030682', 'short description is not available', 'Plenty Crunchy Salad 4oz', 'PLENTY', 'https://i5.walmartimages.com/asr/b544406f-8d9d-470c-9474-09b6567c8208.21727d9a6240b74368fc48fd3bc69ddb.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b544406f-8d9d-470c-9474-09b6567c8208.21727d9a6240b74368fc48fd3bc69ddb.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b544406f-8d9d-470c-9474-09b6567c8208.21727d9a6240b74368fc48fd3bc69ddb.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (570172611, 'Bowery Farming Baby Kale Mix Pesticide-Free Lettuce, Locally Grown Salad Greens, Non-GMO 4oz', 2.98, '851536007366', 'Baby Kale Mix has a hearty, sweet, and well-rounded flavor. It\'s great as a salad base and sauteed with your favorite veggies. Bowery Farming grows positively tasty, fresh produce in a cleaner, more sustainable way: in local, indoor smart farms. Every Bowery leaf is grown and handled with care, without pesticides. Bowery\'s smart farms use less water & create less waste on less land. Because Bowery\'s farms are local, you can trust that your produce is freshly harvested, picked at peak freshness 365 days a year, and available on shelf in just a few days.', 'Bowery Farming Baby Kale Mix Pesticide-Free, Locally Grown Salad Greens, 4oz: 100% Pesticide-free 100% Locally grown 100% Fully traceable Indoor-grown Protected Produce Clean & ready to eat Non-GMO Project Verified Recycled Packaging', 'Bowery Farming', 'https://i5.walmartimages.com/asr/83603b3c-ae21-4fd5-b019-28a34b5cf1d9.c7e1344ea4e14084644e5bb2313daa34.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/83603b3c-ae21-4fd5-b019-28a34b5cf1d9.c7e1344ea4e14084644e5bb2313daa34.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/83603b3c-ae21-4fd5-b019-28a34b5cf1d9.c7e1344ea4e14084644e5bb2313daa34.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (570562294, 'Mother Earth Products Freeze Dried Sliced Mushrooms, Quart Mylar', 15.35, '810919031855', 'Mother Earth Products Freeze Dried Sliced Mushrooms: a healthy & convenient addition to every area of your life without the headache: emergency preparedness, snacking, long and short term storage, traveling, everyday cooking, hiking, backpacking, spicing up your recipes, etc. use it now or later. Mother Earth Products Freeze Dried Mushrooms are made with real, Non-GMO Mushrooms, no additives or preservatives, & is kosher - a guilt-free, robust food that makes eating tasty & rewarding, without the hassle of weekly trips to the store or the worry of spoiling. It’s so delicious you won’t store it away and hope you never have to use it. Taste the Goodness of Mother Earth Products', '100% mushrooms; long term storage; short term storage; pantry; portable; convenient; nothing added; emergency preparedness; great flavor; easy to cook with; can eat straight from container without reconstituting', 'Mother Earth Products', 'https://i5.walmartimages.com/asr/7c11b790-3f7d-4af9-be82-fd40e0f0ce9f.89c4b2849db3bad2fa8e6cf4c9ddce52.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c11b790-3f7d-4af9-be82-fd40e0f0ce9f.89c4b2849db3bad2fa8e6cf4c9ddce52.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c11b790-3f7d-4af9-be82-fd40e0f0ce9f.89c4b2849db3bad2fa8e6cf4c9ddce52.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (570892406, 'Yellow Flesh Peaches, per Pound', 1.58, '400094711736', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (571068728, 'Guava 16/14oz', 3.48, '851237004435', 'short description is not available', 'Guava 16/14oz', 'Unbranded', 'https://i5.walmartimages.com/asr/ccf72062-ac47-479f-aff8-5c896f58a0b2.7380ff0f22f71714e44a86b62511df37.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ccf72062-ac47-479f-aff8-5c896f58a0b2.7380ff0f22f71714e44a86b62511df37.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ccf72062-ac47-479f-aff8-5c896f58a0b2.7380ff0f22f71714e44a86b62511df37.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (571251131, 'Fresh Starfruit, Each', 1.48, '000000042567', 'Fresh Starfruit, also known as carambola, gets its name from its five-pointed shape, which yields slices of juicy, lush translucent stars when sliced. The fruit ripens to a bright, light yellow and begins to exude a light, tropical aroma. Browning on the tips of the ridges is simply a sign of ripeness. Sweet and mild, the flavor compares to plums, grapes, pineapple and pear, with notes of lemon. Enjoy for breakfast, lunch, dinner or dessert. Make a star fruit upside-down cake or slice for an elegant star fruit mosaic atop a frosted cake or glazed tart. For dinner, this tropical fruit also pairs well with seafood. Starfruit\'s pale yellow, juicy flesh contains a few small, flat seeds and has a distinctly tropical flavor. Except for the seeds, the entire starfruit is edible. The culinary possibilities are endless with Fresh Starfruit.', 'Fresh tropical Starfruit Delicious on its own or in a variety of recipes Keep refrigerated in a paper or plastic bag for up to one week Wash well before slicing Slices may also be frozen for later use Low in fat, saturated fat, cholesterol, and sodium Good source of fiber High in vitamin C, pantothenic acid, and copper Also known as Carambola and Five Finger Fruit around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1a2ccef0-a235-4666-89a4-a7b8efc7007e.fa905b18c5c95bf9e2ff40855595f99d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a2ccef0-a235-4666-89a4-a7b8efc7007e.fa905b18c5c95bf9e2ff40855595f99d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a2ccef0-a235-4666-89a4-a7b8efc7007e.fa905b18c5c95bf9e2ff40855595f99d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (571543228, 'Fresh Sweet Washington Rainier Cherries', 5.98, '888289402193', 'short description is not available', 'Fresh Sweet Washington Rainier Cherries', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (571789335, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '405521536678', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (571915678, 'Services Reduced Program Dept 94', 0.01, '252012000008', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (571915708, 'Yellow Flesh Peaches, per Pound', 1.58, '400094918630', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (571966917, 'Freshness Guaranteed Berry Blend Small', 8.97, '262822000006', 'Experience a burst of summertime goodness with this delicious Freshness Guaranteed Berry Blend. This pre-cut Berry Blend is juicy, sweet, and refreshing to the taste. In addition, the Berry Blend is a great natural source of vitamins A and C. Carry them with you and eat them straight out of the tray any time you want, at home, or on-the-go. Pair them with a tasty salad or sandwich for a nutritious and delicious lunch. You can also use them as a naturally sweet ingredient in a fruit salad. Add some fresh fruit to your daily menu with this Freshness Guaranteed Berry Blend.Freshness Guaranteed provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Berry Blend Small', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (572036823, 'Freshness Guaranteed Fresh Red Seedless Grapes', 2.98, '', 'short description is not available', 'Freshness Guaranteed Fresh Red Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (572161311, 'Veggie Tray 20oz', 15.64, '045009891341', '20oz Veggie tray', 'Veggie Tray 20oz', 'Unbranded', 'https://i5.walmartimages.com/asr/c63399d6-418a-41a7-8c41-817d92ba46d4.62528572541331a6b097ca0fb681a5f7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c63399d6-418a-41a7-8c41-817d92ba46d4.62528572541331a6b097ca0fb681a5f7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c63399d6-418a-41a7-8c41-817d92ba46d4.62528572541331a6b097ca0fb681a5f7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (572749857, 'Fresh Red Seedless Grapes, per lb', 1.98, '895321002129', 'short description is not available', 'Fresh Red Seedless Grapes, per lb', '', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (572797917, 'Freshness Guaranteed Fresh Red Seedless Grapes', 1.98, '', 'short description is not available', 'Freshness Guaranteed Fresh Red Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (572855704, 'Watermelon Seedless', 4.48, '400094374399', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (573037505, 'Miravalle Corn Husk, 8 oz Package', 8.88, '712810008151', 'Corn husks are thin, papery, and have a fibrous texture, also known as hojas de maíz, are a traditional and important ingredient used for preparing many dishes. They are most commonly used to make tamales, a popular dish made of corn masa dough filled with various meats, vegetables, or cheese, then wrapped in a corn husk and steamed. They can be used to wrap and steam food, imparting a subtle corn flavor and aroma. They are also an excellent natural alternative to aluminum foil or parchment paper for wrapping food for grilling or baking.', 'Elevate your culinary skills by using Corn Husks (hojas de maíz) to create authentic tamales, with the added bonus of a subtle corn flavor and aroma Choose an eco-friendly and natural alternative to aluminum foil or parchment paper by using Corn Husks to wrap and steam your favorite dishes Enjoy versatile Corn Husks for grilling or baking, as they not only provide a unique presentation but also keep your food moist and flavorful.', 'Miravalle', 'https://i5.walmartimages.com/asr/4c27a0a6-1578-4063-bc9b-bfe9f36b9d2d_1.7f4ea5b66e8d9752c0243467541339db.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4c27a0a6-1578-4063-bc9b-bfe9f36b9d2d_1.7f4ea5b66e8d9752c0243467541339db.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4c27a0a6-1578-4063-bc9b-bfe9f36b9d2d_1.7f4ea5b66e8d9752c0243467541339db.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (573172735, '(6 pack) (6 Pack) Gefen Organic Vacuum Pack Beets, 17.6 Oz', 18.78, '710069011014', 'Salad ready', 'Gefen Organic Vacuum Pack Beets, 17.6 Oz', 'Gefen', 'https://i5.walmartimages.com/asr/0a9405f5-63eb-4849-9de2-debcc156ac9f_1.c00291e6af5df99f138f828e0ef756a8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a9405f5-63eb-4849-9de2-debcc156ac9f_1.c00291e6af5df99f138f828e0ef756a8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a9405f5-63eb-4849-9de2-debcc156ac9f_1.c00291e6af5df99f138f828e0ef756a8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (574451647, 'Clementines, 1.5 lb', 2.14, '092148142124', 'short description is not available', 'Clementines, 1.5 lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5239bd74-c85d-4d08-b8da-c3bc7ef938c8.52a18c9d52147dd9c6402004a243dddd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5239bd74-c85d-4d08-b8da-c3bc7ef938c8.52a18c9d52147dd9c6402004a243dddd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5239bd74-c85d-4d08-b8da-c3bc7ef938c8.52a18c9d52147dd9c6402004a243dddd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (575190664, 'Services Reduced Program Dept 94', 0.01, '251976000000', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (575313443, 'Yellow Flesh Peaches, per Pound', 1.58, '400094343760', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (575550143, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094006283', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (575639399, '180pc Apple Gala 3#', 561.6, '405665855123', 'short description is not available', '180pc Apple Gala 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (575671694, 'Okra, 1 Lb.', 1.06, '000000046558', 'Okra, 1 Lb.', 'Okra, per lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d99c6334-3cce-4294-9dc0-a8244200c5b3.15b6a5f14e80be0537603b2fdc30d73d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d99c6334-3cce-4294-9dc0-a8244200c5b3.15b6a5f14e80be0537603b2fdc30d73d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d99c6334-3cce-4294-9dc0-a8244200c5b3.15b6a5f14e80be0537603b2fdc30d73d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (576134637, 'Gaea Marinated Carrots In Pouch 2.6oz', 2.47, '607959701370', 'Real carrot bites marinated in Gaea extra virgin olive oil & lemon. Vegan. Gluten free. A low calorie food. No preservatives. Non GMO Project verified. nongmoproject.org. 1/2 Serving of veggies. Nothing artificial. Liquid free. Crisp & tasty. Lightly pickled, bite-sized carrots marinated in Gaea extra virgin olive oil and lemon. A better for you, on-the-go, TSA approved snack brought to you from the makers of the Olive Snack. www.gaeaolive.com. nongmoproject.org. USA Customer Service Hotline: 1-844-883-GAEA, www.gaeaolive.com. Product of Greece.', 'Gaea Marinated Carrots In Pouch 2.6oz', 'Gaea', 'https://i5.walmartimages.com/asr/6ec949a3-345b-4b77-841a-68a8faed1edf.04259c4124a76832d8cd6445f54ef1e6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6ec949a3-345b-4b77-841a-68a8faed1edf.04259c4124a76832d8cd6445f54ef1e6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6ec949a3-345b-4b77-841a-68a8faed1edf.04259c4124a76832d8cd6445f54ef1e6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (576172782, 'Watermelon Seedless', 4.48, '400094985700', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (576285671, 'Marketside Vegetable Tray with Buttermilk Ranch Dip, 40 oz', 9.98, '681131388665', 'This Marketside Vegetable Tray is ideal for those who are short on time, yet want something that\'s flavorful and nutritious. It contains a healthy blend of fresh cut vegetables including baby carrots, grape tomatoes, celery, broccoli florets, sugar snap peas and sweet peppers. It also comes with a separate container of buttermilk ranch dip. This large vegetable tray is ideal for social gatherings, parties, game day, backyard barbecues and more. That\'s how Walmart helps you bring the best quality fresh foods to your table every day. Fresh, wholesome, guaranteed delicious.Marketside Vegetable Tray with Buttermilk Ranch Dip, 40 oz:', 'Fresh cut vegetables Hand-selected produce and classic buttermilk ranch dip Marketside: fresh ideas and honest ingredients Includes: baby carrots, grape tomatoes, broccoli florets, celery, sugar snap peas, sweet peppers Fresh vegetable tray, 40 oz', 'Marketside', 'https://i5.walmartimages.com/asr/48203257-da48-4501-be9c-3ebf900455e5.36f54f0fa35d27184477d907a92f7099.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/48203257-da48-4501-be9c-3ebf900455e5.36f54f0fa35d27184477d907a92f7099.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/48203257-da48-4501-be9c-3ebf900455e5.36f54f0fa35d27184477d907a92f7099.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (576361612, '100pc Pto Rst 10# Bm', 444, '405522977968', 'short description is not available', '100pc Pto Rst 10# Bm', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (576735059, 'Green Seedless Grapes, per lb', 2.88, '405501060643', 'short description is not available', 'Green Seedless Grapes, per lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e3493b51-d859-4499-8a4f-985e8a281558.ec2345597c4287be07085da9c7d01d62.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e3493b51-d859-4499-8a4f-985e8a281558.ec2345597c4287be07085da9c7d01d62.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e3493b51-d859-4499-8a4f-985e8a281558.ec2345597c4287be07085da9c7d01d62.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (577395459, 'Habanero Peppers', 2.97, 'deleted_812181022081', 'short description is not available', 'Habanero Peppers', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (577445194, 'Fresh Green Seedless Grapes', 30, 'deleted_810232031051', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (577880017, 'Fresh Black Seedless Grapes, Bag (2.25 lbs/Bag Est.)', 3.97, '405873138360', 'Indulge in the freshness of our juicy black grapes. Carefully handpicked, each grape is carefully inspected to ensure a whole and delectable fruit. Packed in a convenient bag, our grapes are perfect for a light and healthy snack. Savor the sweetness of every bite, bursting with flavors that will satisfy your taste buds. Order our fresh black grapes now for a healthier and happier you!', 'Fresh Black Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/25456569-b8ad-4582-aaec-beda73333ca5.ece1c3a73ae64a1ba038269c2c1dd00c.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/25456569-b8ad-4582-aaec-beda73333ca5.ece1c3a73ae64a1ba038269c2c1dd00c.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/25456569-b8ad-4582-aaec-beda73333ca5.ece1c3a73ae64a1ba038269c2c1dd00c.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (578394521, '180pc Apl Granny 3#', 652, '405665855482', 'short description is not available', '180pc Apl Granny 3#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (579073627, 'Walmart Produce Freshly Diced Yellow Onions', 2.58, 'deleted_074641015938', 'short description is not available', 'Walmart Produce Freshly Diced Yellow Onions', 'WALMART PRODUCE', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (579292874, 'Fresh Red Seedless Grapes', 2.88, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (579500057, 'Cherry on the Vine Tomato, 12 oz Package', 0.01, '405674729798', 'Fresh Cherry on the Vine Tomatoes are the perfect cooking tomato. Because of their notable flavor and thicker skin, they are a versatile tomato option that\'s fit for grilling, sauteing, roasting, or baking. Their small size also makes them a quick and simple addition to a fresh salad as well as an excellent finger food for whenever you\'re in the mood for a light snack. Packed with nutrients, cherry on the vine tomatoes are a deliciously healthy ingredient that adds both vibrant color and mouthwatering flavor to any recipe. For the best flavor and freshness, store these tomatoes at room temperature on your kitchen counter. Make your next meal a marvelous one with Cherry on the vine Tomatoes from Walmart.', 'Cherry on the Vine Tomato, 12 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (579769461, 'Kale Greens 2# Bag', 4.56, '659389000202', 'short description is not available', 'Kale Greens 2# Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (580099197, 'Pac Rose Apples 2 Lb Bag', 3.47, '066022003504', 'short description is not available', 'Pac Rose Apples 2 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (580345968, '200pc Pto Red 5# Wa', 1094, '405505384837', 'short description is not available', '200pc Pto Red 5# Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (580488601, 'California Grown Peaches, per Pound', 1.58, '400094220276', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (580582153, 'Freshness Guaranteed Fresh Red Seedless Grapes', 2, '', 'short description is not available', 'Freshness Guaranteed Fresh Red Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (580753519, 'Marketside Organic Carrots & Broccoli 7 Oz', 2.5, '681131161343', 'short description is not available', 'Marketside Organic Carrots & Broccoli 7 Oz', 'Marketside', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (580903790, 'Rockit Apple 5ct', 2.97, '888289403404', 'short description is not available', 'Rockit Apple 5ct', 'Rock It', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (582589310, '225pc Pto Rst Jmb 8#', 1444.5, '405518778753', 'short description is not available', '225pc Pto Rst Jmb 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (582958497, 'PictSweet Yam Patties, 16 ounce -- 18 per case', 128.45, '070560998604', 'The PictSweet Yam Patties can be baked to make a delicious snack, appetizer, and side dish sure to be liked by kids and adults alike. Prepared from fresh sweet potatoes, these ready-to-bake yam patties will save prep time and effort. This bulk pack of PictSweet yam patties will be great for diners, bistros, and restaurants.', 'PictSweet Yam Patties, 16 ounce -- 18 per case', 'Pictsweet Farms', 'https://i5.walmartimages.com/asr/f4807a47-006c-4801-bd31-d036cdbd9704.4a1af5132b9c406baf0d071ccbcd50e1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f4807a47-006c-4801-bd31-d036cdbd9704.4a1af5132b9c406baf0d071ccbcd50e1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f4807a47-006c-4801-bd31-d036cdbd9704.4a1af5132b9c406baf0d071ccbcd50e1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (583343980, 'Avocado Bag', 4.48, 'deleted_636442360091', 'short description is not available', 'Large Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (583474633, 'Freshly Diced Red Onions', 2.58, '643550000610', 'short description is not available', 'Freshly Diced Red Onions', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (583592685, 'Fresh Red Seedless Grapes', 1.84, 'deleted_000000034968', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (584134844, 'Freshness Guaranteed Fresh Red Seedless Grapes', 2.82, '', 'short description is not available', 'Freshness Guaranteed Fresh Red Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (584865702, 'Fresh Red Apple - Each, Plant Variety Included', 0.33, '000000040150', 'Experience the sweet and crisp flavor of our Fresh Red Apples available in the plant variety of an Enterprise and Honeycrisp cross. Perfect for casual snacking or a gourmet addition to salads, sandwiches, and desserts. Enjoy their juicy crunch and vibrant color as part of a healthy diet. Red apples contain antioxidants and contribute positively to your well-being. Perfect for baking or pairing with your favorite cheese. Discover the delicious versatility of these apples today.', 'Fresh Red Apple - Each, Featuring Plant Variety: Enterprise and Honeycrisp Cross Large, Juicy, and Red with a Perfect Balance of Flavor and Firm Texture Ideal for Snacking, Cooking, Baking, and Entertaining Excellent in Fresh Decor: Wreaths, Floral Arrangements, and Tablescapes Rich in Antioxidants Due to Deep Red Skin Versatile Usage in Salads, Desserts, or as a Snack', 'Unbranded', 'https://i5.walmartimages.com/asr/445b58b2-6000-461d-a717-aba4452b943a.48c5e49803af66b6229c088cd7018f4f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/445b58b2-6000-461d-a717-aba4452b943a.48c5e49803af66b6229c088cd7018f4f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/445b58b2-6000-461d-a717-aba4452b943a.48c5e49803af66b6229c088cd7018f4f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (585236417, 'Baker Farms Organic Tuscan Kale Greens, 10 oz: Tripled Washed Chopped Fresh Bagged', 2.97, '813098020399', 'Baker Farms Organic Tuscan Kale, 10oz, Bagged', 'Organic Tuscan Kale 10oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f22bffab-2dac-4b0d-b472-78d02665ede0.6a3d5d4afe7d81bcd8f6cb3d0cd5e23f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f22bffab-2dac-4b0d-b472-78d02665ede0.6a3d5d4afe7d81bcd8f6cb3d0cd5e23f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f22bffab-2dac-4b0d-b472-78d02665ede0.6a3d5d4afe7d81bcd8f6cb3d0cd5e23f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (585393758, 'Freshness Guaranteed Watermelon Medium', 4.77, '262826000002', 'Freshness Guaranteed fresh cut Watermelon in Plastic Tray ready to be opened and shared. It includes a medium sized amount of fresh sweet watermelon', 'Freshness Guaranteed Watermelon Medium', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (585825587, 'Jimmys Holy Smoke', 3.98, '086824923138', 'short description is not available', 'Jimmys Holy Smoke', 'Jimmy\'s', 'https://i5.walmartimages.com/asr/0709c576-14fc-4900-b572-6dde05bc965e_3.673776f44ed49a005007913542a8e334.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0709c576-14fc-4900-b572-6dde05bc965e_3.673776f44ed49a005007913542a8e334.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0709c576-14fc-4900-b572-6dde05bc965e_3.673776f44ed49a005007913542a8e334.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (586083289, 'Fresh Sliced Baby Bella Mushrooms, 8 oz', 2.17, '037102170102', 'Experience the fresh taste of Sliced Brown Mushrooms. Brown mushrooms look similar in size and shape to white mushrooms but they\'re heartier and provide a deep earthy taste. They are just like portabella mushrooms but have been harvested just a few days before becoming large enough to fit a burger. This means they have that same firm, meaty texture you love about portabella caps, just in a tasty bite-size form. Pre-sliced, their hearty, full-bodied taste makes them an excellent addition to beef, wild game, and vegetable dishes. Plus, mushrooms are a natural source of the antioxidant selenium, making them an excellent addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try Sliced Brown Mushrooms.', 'Sliced Brown Mushrooms, 8 oz tray: 8-ounce package of sliced Brown mushrooms Naturally fat-free Cholesterol-free Low in calories, carbs and sodium Fresh and all natural Best if kept refrigerated Wash before use Natural source of the antioxidant selenium Excellent addition to beef, wild game and vegetable dishes', 'Monterey', 'https://i5.walmartimages.com/asr/315fbff0-615f-4c06-b887-1a83cd430bc7.890878855c20c2f6fad3e7a4f4259a64.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/315fbff0-615f-4c06-b887-1a83cd430bc7.890878855c20c2f6fad3e7a4f4259a64.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/315fbff0-615f-4c06-b887-1a83cd430bc7.890878855c20c2f6fad3e7a4f4259a64.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (586267385, 'Sliced Gourmet Mushrooms, 16 oz', 3.74, 'deleted_037102686061', 'Experience the fresh taste of Sliced Gourmet Mushrooms. If you\'re looking for a traditional mushroom with a mild earthy taste, white mushrooms are just what you need. They\'ve remained the most popular mushroom for several decades and although all mushrooms are versatile, white mushrooms are the most versatile of them all. Pre-cleaned and sliced, they are perfect for adding to stir-frys, sauces, soups, pizzas, salads, and stews to create culinary works all your own. They are free of fat and cholesterol and are low in calories and sodium. Plus, mushrooms are a natural source of the antioxidant selenium, making them an excellent addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try out Sliced Gourmet Mushrooms.', 'Sliced Gourmet Mushrooms, 16 oz: 16-ounce package of sliced mushrooms Naturally fat-free Cholesterol-free Low in calories, carbs and sodium Fresh and all natural Natural source of the antioxidant selenium Great for salads, pizzas, and much more', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/91bbef7a-0662-41fa-9a28-2af086944a7e.418cd71daf42589d324111624fe2e79b.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/91bbef7a-0662-41fa-9a28-2af086944a7e.418cd71daf42589d324111624fe2e79b.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/91bbef7a-0662-41fa-9a28-2af086944a7e.418cd71daf42589d324111624fe2e79b.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (586785908, '200pc Pto Ykn 5# Bm', 694, '400094040461', 'short description is not available', '200pc Pto Ykn 5# Bm', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (586789258, 'Fresh Red Seedless Grapes, Bag (2.25 lbs/Bag Est.)', 3.5, '681131433648', 'Treat yourself to the delicious, juicy flavor of Fresh Red Seedless Grapes. These grapes are bursting with flavor and are completely seedless, so you can easily enjoy a handful as a fresh snack any time of day. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Freshness Guaranteed Fresh Red Seedless Grapes.Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Spark Fresh item.', 'Fresh Red Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e55dbaa1-87c3-4b86-85de-202b84120f9e.2708c9466465f6a23cf47d8197fab9b6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e55dbaa1-87c3-4b86-85de-202b84120f9e.2708c9466465f6a23cf47d8197fab9b6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e55dbaa1-87c3-4b86-85de-202b84120f9e.2708c9466465f6a23cf47d8197fab9b6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (586823130, 'Fresh Sweet Rainier Cherries, 1.25 lb Pouch', 7.48, '850247002028', 'Treat yourself to the refreshing flavor of Fresh Sweet Rainier Cherries. This golden yellow cherry with a red blush has a crisp bite and delicate super-sweet flavor. Enjoy them on their own or add them to a variety of recipes. For breakfast, you could use them to make a filling parfait with yogurt, granola, and other fruit. Make a fresh cherry cobbler and serve with your favorite ice cream at your next party. Use them to top off your decadent cheesecake or classic ice cream sundae. Enjoy the satisfying taste of summer with Fresh Sweet Rainier Cherries.', 'Fresh Sweet Rainier Cherries, 1.25 lb Pouch have a crisp bite and delicate super-sweet flavor Enjoy on their own or add to a variety of recipes Make a filling yogurt parfait for breakfast Make a cherry cobbler and serve with your favorite ice cream Use to top a cheesecake or a classic ice cream sundae To enjoy fresh cherries: store in the refrigerator and wash just before eating Grown in US', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d7536075-5e54-44e3-8001-ab434911573f.12f15c0628985b8c1a64c9893a4ac7d1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d7536075-5e54-44e3-8001-ab434911573f.12f15c0628985b8c1a64c9893a4ac7d1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d7536075-5e54-44e3-8001-ab434911573f.12f15c0628985b8c1a64c9893a4ac7d1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (587047683, 'Services Reduced Program Dept 94', 0.01, '251880000004', 'short description is not available', 'Services Reduced Program Dept 94', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (587130338, 'Organic Whole Bulbs of Black Garlic - Black Garlic North America Brand - Quantity: 2 Packs of 2 Bulbs Each', 11.99, '637801971514', '2 Packs of 2 Bulbs of Whole Bulb Organic Black Garlic (total of 4 bulbs). Black Garlic is ready to eat and has exceptional sweetness with date, balsamic, and slight garlic undertones. The consistency is soft and chewy, and our black garlic is Vegan, Natural, Preservative-Free, Gluten-Free, Kosher and Organic-Certified! At Black Garlic North America Brand, we believe in treating our environment, bodies & conscience ethically, which is why we feel providing our customers with organic options is important. Try in: Sauces and Dressings, on Salads and in Soups, on top of Pizza, and even in Breads, Chocolate Chip Cookies and other Desserts for an explosion of flavor!', '2 Packs of 2 Bulbs (4 total bulbs). Adding a couple diced or crushed black garlic cloves improves even your best creations, both sweet AND savory! Contains 2X the antioxidants of fresh garlic. Vegan, Natural, Preservative-Free, Gluten-Free, Kosher and Organic-Certified!', 'Black Garlic North America', 'https://i5.walmartimages.com/asr/75c89b23-546b-4474-b08f-4ec8ea85addb.26478de85d40942c9d317d3bd524a77a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75c89b23-546b-4474-b08f-4ec8ea85addb.26478de85d40942c9d317d3bd524a77a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75c89b23-546b-4474-b08f-4ec8ea85addb.26478de85d40942c9d317d3bd524a77a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (587138110, 'Local Roots Royal Gems Mix, 4.5 oz', 2.98, '853911006261', 'An upgraded mix of heritage baby romaine lettuces.', 'Grown locallyGrown with zero pesticides or herbicidesGrown with up to 99% less waterHigh in Antioxidants, Chlorophyll, and Vitamins', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c19eb57b-5545-4e4a-83db-1c90f7329511.034d943cb27860dee0e5615bd1101390.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c19eb57b-5545-4e4a-83db-1c90f7329511.034d943cb27860dee0e5615bd1101390.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c19eb57b-5545-4e4a-83db-1c90f7329511.034d943cb27860dee0e5615bd1101390.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (587448590, 'Fresh Red Seedless Grapes, per lb', 1.84, '850414002240', 'short description is not available', 'Fresh Red Seedless Grapes, per lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (587633314, '240pc On Tx1015 3#tm', 984, '405537334282', 'short description is not available', '240pc On Tx1015 3#tm', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (587641536, 'Yellow Flesh Peaches, per Pound', 1.58, '400094137802', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (587729866, 'Chilean Grown Plums, per Pound', 1.78, '405503681099', 'Chilean Grown Plums, per Pound', 'Fresh Chilean Grown Plums', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (587740000, '180pc Apple Fuji 3#', 678.6, '405665856458', 'short description is not available', '180pc Apple Fuji 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (588325183, 'Fieldpack Unbranded Fresh Strawberries 1#', 2.42, 'deleted_813882010582', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (588410091, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094261286', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (588643569, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094347997', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (588800917, 'Butternut Squash Whole Fresh, 1 Each', 4.48, '856862005093', 'Add some fresh flavor to your meal with Butternut Squash. This versatile vegetable can be used in a variety of dishes to create delicious and decadent meals. Roast the whole squash for a simple and flavorful side dish, chop it into cubes and put it in the slow cooker with chicken breast, kidney beans, and spices, or make butternut noodles for a gluten-free pasta alternative. For a sweet treat turn the squash into a rich and spicy pie, perfect for the holiday season. With so many uses, this vegetable will become a pantry staple. Create tasty and flavorful meals with Butternut Squash.', 'Produce Unbranded Butternut Squash Whole Fresh, 1 Each Natural food Versatile ingredient Will become a pantry staple Make butternut squash noodles for a gluten free pasta alternative', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bdcdc288-3e95-4321-b587-f5e4b4d07388.5a8a78f466b5605d67c7605ba12dc303.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bdcdc288-3e95-4321-b587-f5e4b4d07388.5a8a78f466b5605d67c7605ba12dc303.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bdcdc288-3e95-4321-b587-f5e4b4d07388.5a8a78f466b5605d67c7605ba12dc303.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (589664154, 'Marketside Mks Chnk Nug, Apl, Crt, Cran, Ban', 3.94, '030223023289', 'short description is not available', 'Marketside Mks Chnk Nug, Apl, Crt, Cran, Ban', 'Marketside', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (590955053, 'Fresh Broccoli Bunch, Each', 1.97, '027918000083', 'Getting your daily servings of vegetables is tastier than ever with Braga Farms Broccoli. This bunch broccoli has everything a broccoli-lover could want, from its healthy green color to its even ratio of florets to stem. The consumption of broccoli has tripled over the past 25 years. Its popularity is due to an aesthetic appeal, delightful taste, versatile-culinary applications, and the fact that it is packed full of nutrition. Whether you are in the mood to steam, roast, or sauté, broccoli is a great way to get your daily dose of greens in for the day.', 'Bright-green color Healthy side to any meal Excellent steamed, roasted, sautéed, in soups or served raw with a favorite dip', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/ad4d1415-50d7-4cbc-ab1a-0231643c5927.b2e3a9be13deb50152324b75309b75df.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ad4d1415-50d7-4cbc-ab1a-0231643c5927.b2e3a9be13deb50152324b75309b75df.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ad4d1415-50d7-4cbc-ab1a-0231643c5927.b2e3a9be13deb50152324b75309b75df.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (591641859, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094454695', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (591833746, 'Freshness Guaranteed Diced Mirepoix Mix, 10 oz', 2.88, 'deleted_681131276511', 'Add a little color and texture to your next dish with our Freshness Guaranteed Diced Mirepoix Mix. With yellow onion, carrots, and celery all diced up and mixed together in this one convenient package, you can skip the prep work and have just what you need to create a flavorful soup stock or a savory sauce. Just throw this mix into a pan with some butter or oil, cook on low heat until beautifully carmelized, and you\'ll have the perfect base ready to enhance the flavor profile in a wide variety of recipes. Casseroles, chicken noodle soup, stews, and more are quickly and easily perfected when you use our Freshness Guaranteed Diced Mirepoix Mix.Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Spark Fresh item.', 'Freshness Guaranteed Diced Mirepoix Mix, 10 oz: Classic Mirepoix mix consisting of yellow onions, celery, and carrots Ingredients come pre-diced for your convenience Great way to add color, flavor, and texture to a wide variety of dishes Excellent for creating soups, stews, sauces, braises, and casseroles Resealable container makes it easy to use as much or as little at a time as you need', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6a49b487-08c1-4c61-9cd3-323ee4d599c4.1496bd974c811e9cdd42de5da8c1e440.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a49b487-08c1-4c61-9cd3-323ee4d599c4.1496bd974c811e9cdd42de5da8c1e440.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a49b487-08c1-4c61-9cd3-323ee4d599c4.1496bd974c811e9cdd42de5da8c1e440.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (591941856, 'Fresh California Grown Nectarines, 1 Lb.', 1.78, 'deleted_400094220344', 'Fresh California Grown Nectarines, 1 Lb.', 'Fresh California Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (592064430, 'Fresh Express Twisted Caesar Pesto, 9.5 oz Bag, Fresh', 3.98, '071279302164', 'Why choose between pesto and caesar when you can have it all? NEW Fresh Express Twisted Pesto Caesar Chopped Salad Kit, 9.7 oz is an incredible symphony of flavors you won’t want to miss! Crispy iceberg, green leaf lettuce, crunchy garlic brioche croutons, savory shredded Parmesan cheese and decadently creamy Pesto Caesar Dressing all come together in a magical symphony of flavors. Try it today for an unforgettable culinary experience. Look for it in the fresh produce section.', 'Thoroughly washed and ready to eat Premium, restaurant quality ingredients A refreshing and tasty meal that\'s perfect for any occasion', 'Fresh Express', 'https://i5.walmartimages.com/asr/79ffd81c-b7da-4212-acc1-09ad59a2b61a.4b7e2d6655b0764187b3a5c6854ee7e4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/79ffd81c-b7da-4212-acc1-09ad59a2b61a.4b7e2d6655b0764187b3a5c6854ee7e4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/79ffd81c-b7da-4212-acc1-09ad59a2b61a.4b7e2d6655b0764187b3a5c6854ee7e4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (592312619, 'Clementines, 5 lb', 5.94, 'deleted_092148111540', 'Clementines, 5 lb', 'Clementines, 5 lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/41346d9b-ddc1-41a7-8093-35edc68c44fb_1.be72592d1d838c1dc7b156278cba3e1c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/41346d9b-ddc1-41a7-8093-35edc68c44fb_1.be72592d1d838c1dc7b156278cba3e1c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/41346d9b-ddc1-41a7-8093-35edc68c44fb_1.be72592d1d838c1dc7b156278cba3e1c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (592682060, 'Fresh Serrano Pepper, 4 Ounce Bag', 1.58, '711069541204', 'Enhance your meals with the delicious flavor of Serrano Peppers. Naturally low in calories, fat, and cholesterol, this vegetable is a great source of vitamins C, B6, and A, as well as iron and magnesium. Serrano peppers have a bright and biting flavor that enhances a variety of recipes. Make a zesty pico de gallo or salsa using fresh serrano peppers, add to a sweet peach jam to make a glaze for hot wings, or add to eggs for out of this world huevos rancheros. You can even add some diced serrano peppers and cheese to cornbread batter for a delectable chile cheese cornbread that will have everyone asking for seconds. Lunches and dinners are more scrumptious when fresh Serrano Peppers are part of the meal. Also known as Chile serrano, Serrano chili, Filfil serrano and Serrano mirch around the world.', 'Serrano Pepper, 4 oz: Naturally low in calories Rich in vitamins C, B6, and A Add to enchiladas or chili, make a zesty salsa or pico de gallo, or add to peach jam for a glaze for hot wings Approximately 8-12 peppers per .25 lb Versatile and delicious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/71784258-8461-44ee-9ef1-04e1e012413b.3e7b782e9e363172a67e961a4a9fcc5a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71784258-8461-44ee-9ef1-04e1e012413b.3e7b782e9e363172a67e961a4a9fcc5a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71784258-8461-44ee-9ef1-04e1e012413b.3e7b782e9e363172a67e961a4a9fcc5a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (592831607, 'Gills Onions Gills Yellow Onions, 7 oz', 1.99, '643550000405', 'Yellow Onions, Fresh Diced 7 oz (198 g) Quality. Convenience. Grower Direct. Product of USA. Keep refrigerated. 7 oz (198 g) Oxnard, CA 93030', 'Yellow Onions, Fresh Diced Quality. Convenience. Grower Direct. Product of USA.', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (593802073, 'Purple Sweet Potatoes Whole Fresh, Each', 0.96, '858174002074', 'Create something wholesome, fresh and delicious with these Sweet Potatoes (Yams) .These versatile vegetables can be used to make savory sides or sweet treats. Try them roasted or baked for a tasty addition to any dish. You could also use them to make seasoned sweet potato fries or a flavorful hummus dip for your next party. If you want to satisfy your sweet tooth, try them in a traditional sweet potato casserole or use them to make sweet potato and brown sugar ice cream. The mouthwatering possibilities are endless with this hearty vegetable. Add something amazing to your meals with Sweet Potatoes.', 'Bulk Purple Sweet Potatoes Create something wholesome, fresh and delicious with these Sweet Potatoes (Yams) . These versatile vegetables can be used to make savory sides or sweet treats. Try them roasted or baked for a tasty addition to any dish. You could also use them to make seasoned sweet potato fries or a flavorful hummus dip for your next party. If you want to satisfy your sweet tooth, try them in a traditional sweet potato casserole or use them to make sweet potato and brown sugar ice cream. The mouthwatering possibilities are endless with this hearty vegetable. Add something amazing to your meals with Sweet Potatoes.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b3002cf8-f708-42c4-96eb-b17139e2f91f.1938913efeba17eaf92f8a03b06ea5e8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3002cf8-f708-42c4-96eb-b17139e2f91f.1938913efeba17eaf92f8a03b06ea5e8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3002cf8-f708-42c4-96eb-b17139e2f91f.1938913efeba17eaf92f8a03b06ea5e8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (593854330, '616pc Pomegranate Ca', 1219.68, '400094292631', 'short description is not available', '616pc Pomegranate Ca', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (594131148, 'Whole Cello Carrots 1 Lb Bag', 1.27, 'deleted_744508100021', 'short description is not available', 'Whole Cello Carrots 1 Lb Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (594179855, '150pc Pto Ykn 5# Wa', 641, '405509211696', 'short description is not available', '150pc Pto Ykn 5# Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (594817975, 'Marketside 5lbredilicious', 6.96, '003338300033', 'Our standards are what set us apart, and our quality is what keeps us stocking pantries, fridges and freezers with the best natural and organic 365 products every day. We get excited about things like whole grain flours, shade-grown coffee, organic milk and frozen veggies because we know that you care about cooking with the very best ingredients ��� without compromising on the ingredients you don���t want. (All 365 products meet Whole Foods Market quality standards.).....', '- Selected and stored fresh - Sourced with high quality standards - Recommended to wash before consuming - Delicious on their own as a healthy snack or as part of a recipe', 'Marketside', 'https://i5.walmartimages.com/asr/2f983fba-77a5-4ded-9b41-f82fb3f1c36b.b4b42bd6723e6c2b1f80ede921f8a8e8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f983fba-77a5-4ded-9b41-f82fb3f1c36b.b4b42bd6723e6c2b1f80ede921f8a8e8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f983fba-77a5-4ded-9b41-f82fb3f1c36b.b4b42bd6723e6c2b1f80ede921f8a8e8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (594928990, 'Fresh Avocado per Each', 3.28, '042808002534', 'Indulge in the rich and creamy goodness of Fresh Avocado, a versatile and nutritious superfood that adds a touch of luxury to your culinary creations. Boasting a smooth, buttery texture and a subtle, nutty flavor, this delectable fruit is perfect for both savory and sweet dishes. Packed with heart-healthy monounsaturated fats, vitamins, minerals, and antioxidants, Fresh Avocado is a delicious and wholesome choice for any meal. Enjoy it in salads, sandwiches, smoothies, or simply on its own, and savor the delightful taste and nourishing benefits of this remarkable fruit.', 'Fresh Avocado Per Each Indulge in the rich and creamy goodness of Fresh Avocado, a versatile and nutritious superfood that adds a touch of luxury to your culinary creations. Boasting a smooth, buttery texture and a subtle, nutty flavor, this delectable fruit is perfect for both savory and sweet dishes. Packed with heart-healthy monounsaturated fats, vitamins, minerals, and antioxidants, Fresh Avocado is a delicious and wholesome choice for any meal. Enjoy it in salads, sandwiches, smoothies, or simply on its own, and savor the delightful taste and nourishing benefits of this remarkable fruit.', 'Unbranded', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (595504738, 'Welchs Bicolor Grapes, 3 Lb', 9.97, '095829210655', 'Treat yourself to the delicious, juicy flavor of Fresh Bicolor Grapes. These grapes are bursting with sweet flavor, so you can easily enjoy a handful as a fresh snack any time of day. Enjoy them for breakfast, lunch, dinner, or dessert. They are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Fresh Bicolor Grapes. Fresh.', 'Enjoy a handful as a fresh snack any time of day Great for using in fruit salad Freeze and use as fun ice cubes', 'Welch\'s', 'https://i5.walmartimages.com/asr/36ad0e00-745b-4160-ab70-f9ed6fefd6c5.04a0a399057602f06082c4b98d0bffd6.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/36ad0e00-745b-4160-ab70-f9ed6fefd6c5.04a0a399057602f06082c4b98d0bffd6.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/36ad0e00-745b-4160-ab70-f9ed6fefd6c5.04a0a399057602f06082c4b98d0bffd6.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (595593021, 'Navel Oranges, 5 lb', 6.48, '967040008116', 'short description is not available', 'Navel Oranges, 5 lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d90980cb-6535-42c2-bde6-955882b7e0ba.84d22bed3b28de42352ad1c0f4f2d72f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d90980cb-6535-42c2-bde6-955882b7e0ba.84d22bed3b28de42352ad1c0f4f2d72f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d90980cb-6535-42c2-bde6-955882b7e0ba.84d22bed3b28de42352ad1c0f4f2d72f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (596019950, 'Freshness Guaranteed Mango Tajin', 3.88, '681131036702', 'short description is not available', 'Freshness Guaranteed Mango Tajin', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (596246327, 'Yellow Flesh Peaches, per Pound', 1.58, '400094803356', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (596493489, 'Fresh SugarBee® Apples, each – Premium, extra crisp apple with flavor notes of honey, caramel and molasses.', 2.27, 'deleted_888289001020', 'SugarBee® apples were naturally created by honeybees. On a particularly sunny day, one very adventurous honeybee carried pollen to a Honeycrisp tree from another apple tree whose variety remains a mystery. Mother Nature did her part and SugarBee® apples were born! If you like your apples on the sweeter side, you are going to love SugarBee®.', 'Sugarbee Apples, Each: Intense notes of honey, caramel, and molasses with a complex finish. Great for healthy snacking as they are slow to brown Pair them with sharp cheeses and crackers for stunning appetizer cheese boards', 'Chelan Fresh', 'https://i5.walmartimages.com/asr/52b07dcf-faa2-4179-ac6c-debb51c97942.62a0b94d3831bf782ae89b6c185a3a17.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/52b07dcf-faa2-4179-ac6c-debb51c97942.62a0b94d3831bf782ae89b6c185a3a17.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/52b07dcf-faa2-4179-ac6c-debb51c97942.62a0b94d3831bf782ae89b6c185a3a17.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (596632705, 'Bosc Pears, Each', 1.88, 'deleted_851210002557', 'short description is not available', 'Bosc Pears, Each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (597468288, 'Yellow Flesh Peaches, per Pound', 1.58, '400094561799', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (597617292, 'Fresh Grown Seedless Bicolor Grapes 32z', 3.98, '854957001791', 'short description is not available', 'Fresh Grown Seedless Bicolor Grapes 32z', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (597646906, 'Fieldpack Unbranded Bunch Beets', 2.57, 'deleted_723525200143', 'short description is not available', 'Fieldpack Unbranded Bunch Beets', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (597915162, 'Dynamic Duo Creamer Potato', 5.48, '629307042546', 'short description is not available', 'Potatoes, Dynamic Duo, Variety Pack A wonderful combination of our most popular red and yellow varietals they complement each other well with smooth thin skins and buttery yellow flesh. Dynamic duo cooks quickly offering a nutritious yet exquisitely fluffy texture. 12% DV of fiber per serving. 100 calories per serving. Naturally fat-free. Gluten free. Good source of potassium. Cholesterol free. No peeling required. Creamer potatoes, coveted by leading chefs and foodies, are a premium little potato varietal that is typically thin-skinned, rich in flavor, and highly nutritious. In 1996, when my father and I introduced these flavorful little potatoes, we grew a one-acre plot that we harvested, washed and bagged by hand. Since then, we focus solely on selecting creamer potatoes that are outstanding in taste, nutrition and texture. It\'s all we do. Our proprietary varietals are harvested when they are mature and at their best. My family and I still enjoy the original, diverse taste of these exceptional potatoes, and I am excited to share them with you. Angela, co-founder and chief potato champion. LittlePotatoes.com. Facebook. Twitter. Instagram. Pinterest. YouTube. Product of Canada. Product of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d2c9f08e-280c-4643-bd0d-4463c784fe5e_2.3aed0cac4d706de0ca5a08e1746c7d8d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d2c9f08e-280c-4643-bd0d-4463c784fe5e_2.3aed0cac4d706de0ca5a08e1746c7d8d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d2c9f08e-280c-4643-bd0d-4463c784fe5e_2.3aed0cac4d706de0ca5a08e1746c7d8d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (598217565, 'Fresh Red Seedless Grapes, 2 lb', 4.97, '899734002158', 'Treat yourself to the delicious, juicy flavor of Fresh Red Seedless Grapes. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Fresh Red Seedless Grapes.', 'Fresh Red Seedless Grapes Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4e760aff-5b4d-4b6e-8318-ae827b014b02.17d45450028262b99470e5bccd7bfb28.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4e760aff-5b4d-4b6e-8318-ae827b014b02.17d45450028262b99470e5bccd7bfb28.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4e760aff-5b4d-4b6e-8318-ae827b014b02.17d45450028262b99470e5bccd7bfb28.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (598460254, 'LEMON BLEND BOTTLE 32 oz. - LIMON (Pack of 9)', 35.67, '690164584487', 'Los trucos caseros y los ingredientes naturales pueden ayudarnos a ablandar carne y a disfrutar de unos platos realmente deliciosos. Un fruto del color del sol que te permitirá ablandar carne con facilidad.Coloca la carne en un plato, empapa el pincel de cocina en el jugo de limón y úsalo para extender el producto sobre los trozos de carne que vayas a cocinar.', 'Le da un sabor excepcional y deja las carnes suavecitas.Le da un sabor excepcional y deja las carnes suavecitas.', 'DJulio', 'https://i5.walmartimages.com/asr/3e892546-f303-4679-8960-71f9c86bd92e_1.23ab5056acabe7c00de87d31f92acee3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3e892546-f303-4679-8960-71f9c86bd92e_1.23ab5056acabe7c00de87d31f92acee3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3e892546-f303-4679-8960-71f9c86bd92e_1.23ab5056acabe7c00de87d31f92acee3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (598601791, 'Premium Bananas', 0.49, 'deleted_000000042376', 'short description is not available', 'Premium Bananas', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (598738727, 'GH Power Salad W/ Kale & Brussel Sprouts', 5.47, '826766254699', 'Power Salad with Kale & Brussel Sprouts', 'GH Power Salad W/ Kale & Brussel Sprouts', 'Garden Highway', 'https://i5.walmartimages.com/asr/14793ef0-ae84-4bf9-ab4f-594787ebe960.4d84ee11563eba26aff4c0ea792b2be8.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/14793ef0-ae84-4bf9-ab4f-594787ebe960.4d84ee11563eba26aff4c0ea792b2be8.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/14793ef0-ae84-4bf9-ab4f-594787ebe960.4d84ee11563eba26aff4c0ea792b2be8.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (598771781, 'Straw/blueberry Blend', 11.54, '045009998170', 'short description is not available', 'Straw/blueberry Blend', 'Unbranded', 'https://i5.walmartimages.com/asr/6a7b7327-141c-4969-a1d0-a2e4311512f9.19c70fdbaeb5c2099c07484db5f1cd27.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a7b7327-141c-4969-a1d0-a2e4311512f9.19c70fdbaeb5c2099c07484db5f1cd27.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a7b7327-141c-4969-a1d0-a2e4311512f9.19c70fdbaeb5c2099c07484db5f1cd27.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (598940560, 'Full Circle Organic Green Squash, 8.0 OZ', 3.98, 'deleted_716310551162', 'Full Circle Organic Green Squash. Full Circle™ Green Squash. In season year round. Certified USDA Organic. U.S. No. 1. Net Wt.8 oz. (227 g).', 'Squash, Certified Organic, Green, 2 Pack In season: Year Round USDA Organic; Certified Organic by QAI. U.S. No. 1. Produce of USA.', 'Full Circle Organic', 'https://i5.walmartimages.com/asr/fbfeeafe-746d-4654-ae8d-d2353bd280ac_1.1dfb824d0abba5ee8ed461958ceae86c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fbfeeafe-746d-4654-ae8d-d2353bd280ac_1.1dfb824d0abba5ee8ed461958ceae86c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fbfeeafe-746d-4654-ae8d-d2353bd280ac_1.1dfb824d0abba5ee8ed461958ceae86c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (598988546, 'Taylor Farms Mexican Style Caesar Chicken Sld 6.3oz', 2.98, '030223060321', 'A classic favorite with a twist! This salad combines crisp romaine lettuce with chili lime seasoned white chicken meat, and cotija cheese all covered with a zesty Mexican Caesar dressing that delivers a flavor adventure. Made for busy lives on the go, everything’s included – even the fork!', 'Taylor Farms Mexican Style Caesar Chicken Sld 6.3oz', 'Taylor Farms', 'https://i5.walmartimages.com/asr/6c3f4e8e-5efa-41d4-b2e3-a8cdfd8c59e9.430322d95849ce42a014379c76f363bc.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6c3f4e8e-5efa-41d4-b2e3-a8cdfd8c59e9.430322d95849ce42a014379c76f363bc.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6c3f4e8e-5efa-41d4-b2e3-a8cdfd8c59e9.430322d95849ce42a014379c76f363bc.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (599301243, 'Watermelon Seeded', 6.58, 'deleted_851354002314', 'short description is not available', 'Watermelon Seeded', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (599355685, 'Organic Russian Banana Fingerlings Potato, 1.5 Lb.', 3.48, '690545915664', 'Organic Russian Banana Fingerlings Potato, 1.5 Lb.', 'Organic Russian Banana Fingerlings 1.5lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (599414368, 'Fresh Dark Sweet Washington Cherries, 3 Lb.', 5.98, '813200013103', 'Fresh Dark Sweet Washington Cherries, 3 Lb.', 'Fresh Dark Sweet Washington Cherries', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (599516630, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094365779', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (599920530, 'Fresh Black Seedless Grapes', 1.88, 'deleted_014668790074', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (599977385, 'Spice Select Garlic Paste, 32oz', 7.25, '076114310175', 'Spice Select\'s Ready to-use Garlic Paste is an essential piece to any household cook\'s spice cabinet. Sitting between fresh minced garlic and garlic powder, garlic paste is perfect for adding the perfect consistency to making marinades, soups, and sauces while bringing on the bold garlic flavor you love. With this ready-to-use garlic paste, all you have to do is prepare your meal up to the point you\'re ready to add some garlic, and then simply add as much of the garlic paste as you need—no defrosting or heating up required. Because it\'s so versatile, it\'s handy to always have a jar of Spice Select\'s Ready to-use Garlic Paste on hand when you\'re cooking up dinner for the family.', 'Spice Select Garlic Paste, 32oz: Ready-to-use garlic paste soft, creamy consistency is perfect for sauces, soups, and marinades Brings the bold taste of fresh garlic you love to any dish About 189 servings per container Kosher', 'Spice Select', 'https://i5.walmartimages.com/asr/52717319-ca80-4763-b308-78d198ab7611_1.bf56dad5d1415211cea62f3e38ca74e8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/52717319-ca80-4763-b308-78d198ab7611_1.bf56dad5d1415211cea62f3e38ca74e8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/52717319-ca80-4763-b308-78d198ab7611_1.bf56dad5d1415211cea62f3e38ca74e8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (600191654, 'Fresh Black Seedless Grapes', 1.88, 'deleted_014668790067', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (600278107, 'Idaho Potatoes, 10 Lb.', 4.94, 'deleted_851106006386', 'Idaho Potatoes, 10 Lb.', 'Idaho Potatoes 10 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (600633662, 'Lechuga Cello 24', 2.97, '065951300012', 'short description is not available', 'Lechuga Cello 24', 'Unbranded', 'https://i5.walmartimages.com/asr/7c212312-871d-48fc-a065-60639d57f316.e1d523c0cdcca8ea4bafa9628ac9a4b4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c212312-871d-48fc-a065-60639d57f316.e1d523c0cdcca8ea4bafa9628ac9a4b4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c212312-871d-48fc-a065-60639d57f316.e1d523c0cdcca8ea4bafa9628ac9a4b4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (601368870, 'Marketside Greenhouse Grown Fresh Strawberries, 12 oz Container', 4.78, '699058999352', 'The sweet, juicy flavor of Marketside Greenhouse Grown Fresh Strawberries make them a refreshing and delicious treat. These sweet and flavorful strawberries are grown in a greenhouse and found in our premium selection. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. They contain essential vitamins and nutrients like vitamin C, dietary fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Marketside Greenhouse Grown Fresh Strawberries today and savor the delectable flavor. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Greenhouse Grown Fresh Strawberries, 12 oz Container Premium selection Prior to serving gently wash them and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'Marketside', 'https://i5.walmartimages.com/asr/621e5ad3-5e96-408f-8ccc-92edb0bcb732.3f1ca05169e9bd36a1d1433cab09c9cf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/621e5ad3-5e96-408f-8ccc-92edb0bcb732.3f1ca05169e9bd36a1d1433cab09c9cf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/621e5ad3-5e96-408f-8ccc-92edb0bcb732.3f1ca05169e9bd36a1d1433cab09c9cf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (601441949, 'Microwave in Bag Red Potatoes, 12 Oz.', 2.48, '854419002151', 'Microwave in Bag Red Potatoes, 12 Oz.', 'Microwave In Bag Red Potatoes 12 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (601673274, 'Spaghetti Squash, Each', 7.4, '856862005086', 'Treat yourself to a delicious and healthy meal with Spaghetti Squash. When, cooked this unique squash falls apart into ribbons that are the perfect substitute for spaghetti. Roast the squash and serve with marinara sauce and meatballs for a healthy spin on a classic or bake some with pancetta and make a creamy, decadent carbonara. You can even make scrumptious vegan or vegetarian meals using this versatile squash. If you’re feeling creative you can make Spaghetti Squash tacos, Spaghetti Squash casserole, or even pad Thai. Try serving it for breakfast by making Spaghetti Squash nests with a sunny side up egg. The possibilities are endless when you bring home Spaghetti Squash.', 'Spaghetti Squash, 1 Each: When cooked, this squash falls apart into ribbons that are the perfect substitute for spaghetti Perfect for a healthy dinner Incorporate into all sorts of recipes from traditional Italian cuisine to Asian inspired dishes Can even be enjoyed for breakfast with eggs Great for vegan and vegetarian options', 'Fresh Produce', 'https://i5.walmartimages.com/asr/75847174-a16b-465d-89bf-c497505e7c53.84944e37ec234278389fc3d29fd78618.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75847174-a16b-465d-89bf-c497505e7c53.84944e37ec234278389fc3d29fd78618.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75847174-a16b-465d-89bf-c497505e7c53.84944e37ec234278389fc3d29fd78618.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (602097089, 'Freshness Guaranteed Broccoli & Cauliflower with Ranch Snack Tray, 5 oz', 3.48, '681131036825', 'This Freshness Guaranteed Broccoli and Cauliflower with Ranch Snack Tray is a tasty and healthy snack that you can enjoy any time of the day. This fresh broccoli and cauliflower comes in a ready-to-eat package making it easy to enjoy on the go for you and your kids. It also comes with a two-ounce container of ranch dressing. These veggies are great for packing in lunches or as an afternoon snack. Keep refrigerated until ready to enjoy. Bring home the Freshness Guaranteed Broccoli and Cauliflower with Ranch Snack Tray today. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Broccoli & Cauliflower with Ranch Snack Tray, 5 oz: Tasty and healthy snack Comes with a 2 oz package of ranch dressing 150 calories per serving No trans fat or added sugars Reclosable container helps maintain freshness Great for packing in lunches Keep refrigerated until ready to enjoy', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1eed43b4-53c6-440c-8f27-c7c4552b1995.f120f94573bee5e9222b5c067aaaf1ae.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1eed43b4-53c6-440c-8f27-c7c4552b1995.f120f94573bee5e9222b5c067aaaf1ae.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1eed43b4-53c6-440c-8f27-c7c4552b1995.f120f94573bee5e9222b5c067aaaf1ae.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (602882010, 'Yellow Onions, 3 Lb.', 1.94, 'deleted_400094045893', 'Yellow Onions, 3 Lb.', 'Yellow Onions 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (603003766, '500lb Cabbage Grn Hg', 340, '405781331228', 'short description is not available', '500lb Cabbage Grn Hg', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (603239932, '170pc On Swt 4# Uo', 506.6, '405517674551', 'short description is not available', '170pc On Swt 4# Uo', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (603467102, 'Fresh Green Seedless Grapes', 3.27, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (603861317, 'Seasonal Blend Summer 32oz', 11.98, '045009891259', 'short description is not available', 'Seasonal Blend Summer 32oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/42316677-4b87-4f24-830c-a7ea9e762706.c143ecfbd7c0a5f1d29b21db5e1627c5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42316677-4b87-4f24-830c-a7ea9e762706.c143ecfbd7c0a5f1d29b21db5e1627c5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42316677-4b87-4f24-830c-a7ea9e762706.c143ecfbd7c0a5f1d29b21db5e1627c5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (604131849, 'Microwave in Bag Yellow Potatoes, per Pound', 2.47, 'deleted_033383004785', 'Microwave in Bag Yellow Potatoes, per Pound', 'Microwave In Bag Yellow Potatoes Lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/a1230766-a1db-49e4-8c0d-0670d196da25.44a4bcd5aa1dc60c860b1fc40c6489af.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a1230766-a1db-49e4-8c0d-0670d196da25.44a4bcd5aa1dc60c860b1fc40c6489af.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a1230766-a1db-49e4-8c0d-0670d196da25.44a4bcd5aa1dc60c860b1fc40c6489af.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (604450542, '240pc On Tx1015 3#', 945.6, '405501210628', 'short description is not available', '240pc On Tx1015 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (605055723, 'The Little Potato Company Terrific Trio Potatoes, 1.5 Lb.', 3.67, 'deleted_629307122040', 'The Little Potato Company Terrific Trio Potatoes, 1.5 Lb.', 'Potatoes, Terrific TrioU.S. no. 1 grade (3/4 in. -1 5/8 in.). Fresh. Straight from the farm. Easy pre-washed. Thin skinned. No peeling required. Nutritious. Fat, gluten and cholesterol free. Good source of potassium. A highly attractive and delicious combination of our best red, yellow, and blue potato varieties- the Terrific Trio. Each variety in the bag offers a unique, harmonious taste experience that is sure to provide plate appeal. The virtues of being small. 1.855.516.6075. Facebook. Twitter. This bag is not suitable for microwaving. The Little Potato Company is focused on solely on carefully selecting and growing little potatoes that have outstanding flavors, great texture, and better nutrition. It���s all we do. And we harvest our unique, proprietary potato varieties when they���re mature at their best. You can taste the difference! A message from Angela. As a mother and businesswoman. I am pleased to bring these little potatoes to you. My father, a Dutch immigrant, introduced me to the flavorful little potatoes he grew up with. Together we planted our first acre in 1996, sorting, washing, and bagging our first crop by hand. We remain dedicated to bringing back the original, diverse goodness of little potatoes. Our potatoes will have you proclaiming the virtues of being small. Angela. Co-founder and chief potato champion. Product of USA.', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/d57950f8-a2de-433e-8d69-7909459755ca.1982f02a107469898b4ace8239d31033.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d57950f8-a2de-433e-8d69-7909459755ca.1982f02a107469898b4ace8239d31033.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d57950f8-a2de-433e-8d69-7909459755ca.1982f02a107469898b4ace8239d31033.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (605249851, 'Tuscan Cantaloupe', 3.28, 'deleted_827575300096', 'short description is not available', 'Tuscan Cantaloupe', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (605423890, 'Eat Smart Spicy Sweet Kale Chopped Salad Kit', 3.48, '709351303517', 'Have a restaurant-inspired meal with the Eat Smart Spicy Sweet Kale Vegetable Salad Kit. This delicious, nutritious product contains no artificial colors, flavors or preservatives. This Eat Smart Vegetable Salad Kit is 100% clean and free from gluten. The combination of ingredients makes a unique side dish or main course. The bag includes: broccoli stalk, cabbage, Brussels sprouts, kale, chicory, dried cranberries, and a spicy Poppyseed dressing.', 'Eat Smart Spicy Sweet Kale Vegetable Salad Kit, 12 oz. Contains 7 super foods. All ingredients come in the bag. Just toss and serve100% gluten-free salad', 'EatSmart', 'https://i5.walmartimages.com/asr/fa99ee1c-57be-469f-9b7c-fd776fa452c8.21a40bbe0eb850f4385c1e31f5819232.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa99ee1c-57be-469f-9b7c-fd776fa452c8.21a40bbe0eb850f4385c1e31f5819232.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa99ee1c-57be-469f-9b7c-fd776fa452c8.21a40bbe0eb850f4385c1e31f5819232.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (606236255, 'Goverden Spicy Guacamole 8oz', 4.43, '850002858075', 'short description is not available', 'Freshness Guaranteed Spicy Guacamole 8oz', 'GoVerden', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (606258601, 'Large Avocado 3 Count Bag', 39, '', 'short description is not available', 'Large Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/46f83849-2822-43ed-a591-140ca68a2339.556331758a6c547340447e7eee8cf1d5.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/46f83849-2822-43ed-a591-140ca68a2339.556331758a6c547340447e7eee8cf1d5.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/46f83849-2822-43ed-a591-140ca68a2339.556331758a6c547340447e7eee8cf1d5.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (606285647, '200pc Pto Rst Jmb8nv', 1284, '405518789872', 'short description is not available', '200pc Pto Rst Jmb8nv', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (606387525, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094006351', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (606512691, 'Freshness Guaranteed Whole Brown Mushrooms 16oz', 3.78, 'deleted_631661999855', 'short description is not available', 'Freshness Guaranteed Whole Brown Mushrooms 16oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (606946114, 'Fresh Dark Sweet Red Cherries', 5.98, '818544020336', 'short description is not available', 'Fresh Dark Sweet Red Cherries', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (607143191, 'Fresh Candy Dream Grapes, 1 Lb', 3.98, '897325002129', 'short description is not available', 'Fresh Candy Dream Grapes, 1 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (607297939, 'Services Reduced Program Dept 94', 0.01, '251678000001', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (607332713, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094897577', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (607760038, 'Jicama', 1.38, 'deleted_883616002930', 'short description is not available', 'Jicama', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/f32d8d11-47ea-4cb1-a6be-f63759286646_1.5a3db62441c231480e76e505a264a97d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f32d8d11-47ea-4cb1-a6be-f63759286646_1.5a3db62441c231480e76e505a264a97d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f32d8d11-47ea-4cb1-a6be-f63759286646_1.5a3db62441c231480e76e505a264a97d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (608000064, 'Fresh Red Seedless Grapes', 2.88, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (608574931, 'Fresh Fruit Tray 40 oz, Chopped', 20.44, '045009891310', 'Introducing our Fresh Fruit Tray 40 oz, a luxurious assortment of handpicked, vibrant, and mouthwatering fruits, meticulously chopped to create a visual and flavorful delight. Each fruit is harvested at peak ripeness and expertly cut for your convenience, providing a ready-to-eat medley that\'s both nutritious and delicious. Rich in vitamins and antioxidants, our Fresh Fruit Tray is a perfect centerpiece for gatherings, picnics, or simply enjoying a healthy snack. Savor the irresistible taste and freshness of this nature-inspired treat.', 'Fruit Tray 40 Oz Introducing our Fresh Fruit Tray 40 oz, a luxurious assortment of handpicked, vibrant, and mouthwatering fruits, meticulously chopped to create a visual and flavorful delight. Each fruit is harvested at peak ripeness and expertly cut for your convenience, providing a ready-to-eat medley that\'s both nutritious and delicious. Rich in vitamins and antioxidants, our Fresh Fruit Tray is a perfect centerpiece for gatherings, picnics, or simply enjoying a healthy snack. Savor the irresistible taste and freshness of this nature-inspired treat.', 'Unbranded', 'https://i5.walmartimages.com/asr/3074d68e-9499-43b1-ae6d-2f76eb814cf7.9e2df49233271f0ec15e1f7614fcd670.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3074d68e-9499-43b1-ae6d-2f76eb814cf7.9e2df49233271f0ec15e1f7614fcd670.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3074d68e-9499-43b1-ae6d-2f76eb814cf7.9e2df49233271f0ec15e1f7614fcd670.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (608613536, 'Green Bell Pepper MX', 0.78, '826575002016', 'Green Bell Pepper MX', 'Green Bell Pepper', 'Benetton', 'https://i5.walmartimages.com/asr/616eb2ea-5ce4-4957-934f-c6fdd92003a6.f470f58201b97a7052057b275b1a8ec8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/616eb2ea-5ce4-4957-934f-c6fdd92003a6.f470f58201b97a7052057b275b1a8ec8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/616eb2ea-5ce4-4957-934f-c6fdd92003a6.f470f58201b97a7052057b275b1a8ec8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (608694467, 'Freshness Guaranteed Whole White Mushrooms 8oz', 1.98, 'deleted_699058820045', 'short description is not available', 'Freshness Guaranteed Whole White Mushrooms 8oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (609129508, '180pc Pto Rst 10# Ph', 799.2, '405531369501', 'short description is not available', '180pc Pto Rst 10# Ph', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (609549294, 'York Apples 3 Lb Bag', 3.94, '033383092072', 'short description is not available', 'York Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (609598218, 'Fresh Green Seedless Grapes', 2.12, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (609718780, 'Fresh Slicing Tomato, 1 lb Package', 1.98, 'deleted_711069534626', 'Vine Ripened Tomatoes are picked at peak freshness and specially bred for deep red color, intense flavor, and higher lycopene content than standard tomatoes. There is nothing better for your burger, sandwich or salad, anyway you slice it. Be sure to add thsi fresh produce item to your Walmart basket today!', 'Slicing Tomato, 1 lb Pack: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, burgers, gourmet sandwiches, and more Add to party trays or school lunches Bred to have higher lycopene than standard tomatoes A good source of vitamin C, K, potassium and folate', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2a539f16-056b-4bc2-888d-0b83a59724f4.751227480d6ca336c0cce6cc560e64bc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2a539f16-056b-4bc2-888d-0b83a59724f4.751227480d6ca336c0cce6cc560e64bc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2a539f16-056b-4bc2-888d-0b83a59724f4.751227480d6ca336c0cce6cc560e64bc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (609924359, 'California Grown Peaches, per Pound', 1.58, '400094210895', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (609971671, 'Dark Sweet Cherries, Half Pint', 2.98, '847473006500', 'Dark Sweet Cherries, Half Pint', 'Dark Sweet Cherries 1/2 Dry Pint', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (610446420, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094608197', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (610624197, 'Spinach Salad, 10 Oz.', 1.54, '030223000273', 'Spinach Salad, 10 Oz.', 'Salad Spinach Bag 10 Oz.', 'Taylor Farms', 'https://i5.walmartimages.com/asr/5f143090-acfb-40b9-a6e4-686c11284ca9.ef472a861f7dcd102c6837059f485502.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5f143090-acfb-40b9-a6e4-686c11284ca9.ef472a861f7dcd102c6837059f485502.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5f143090-acfb-40b9-a6e4-686c11284ca9.ef472a861f7dcd102c6837059f485502.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (610661483, 'Yellow Flesh Peaches, per Pound', 1.58, '400094482629', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (610853733, 'Fresh Earth Greens Organic Romaine, 7 oz', 3.96, '818431001479', 'Bring the refreshing taste of Earth Greens Organic Romaine to your home. This package includes individual organic romaine leaves that are washed and ready to eat. These romaine leaves are perfect for a variety of healthy and delicious meals. You can use them to whip up a classic Caesar salad with all the fixings or let your creativity run wild. You can also use them to make lettuce wraps filled with all your favorite fillings or top your favorite sandwich or burger. The possibilities are endless with Earth Greens Organic Romaine.', 'Earth Greens Organic Romaine Wholesome, versatile, and delicious Washed and ready to use right out of the package Great for salads, burgers, sandwiches, wraps and more Package features a peel and resealable film to keep your lettuce leaves fresh and crisp Healthy + organic = happy', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c2852226-c86d-4b73-8cef-9ebc699dae7b.460ce8b13ff54834b19a953d1f1dd9cb.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c2852226-c86d-4b73-8cef-9ebc699dae7b.460ce8b13ff54834b19a953d1f1dd9cb.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c2852226-c86d-4b73-8cef-9ebc699dae7b.460ce8b13ff54834b19a953d1f1dd9cb.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (611231687, 'Fresh Red Seedless Grapes 32oz', 3.96, 'deleted_813526010039', 'short description is not available', 'Fresh Red Seedless Grapes 32oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (611976118, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094280720', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (612026155, 'Fresh Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094357415', 'Fresh Grown Yellow Nectarines, 1 Lb.', 'Fresh Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (612072269, 'Vegetable Tray with Meat And Cheese 38oz', 11.97, '824682200264', 'Introducing our mouthwatering Taylor Farms Vegetable Plastic Tray, a perfect blend of fresh, wholesome ingredients to satisfy your taste buds and nutritional needs. This bountiful platter features crisp broccoli florets, juicy grape tomatoes, creamy cheese cubes, savory turkey bites, crunchy celery sticks, and tender baby carrots. Paired with an irresistible Hidden Valley Ranch dipping sauce, our Vegetable Tray is the ultimate choice for parties, picnics, or a nutritious snack. Relish the delightful harmony of flavors and textures while enjoying the benefits of fresh, quality produce.', 'Vegetable Tray With Meat And Cheese 38oz Introducing our mouthwatering Vegetable Tray, a perfect blend of fresh, wholesome ingredients to satisfy your taste buds and nutritional needs. This bountiful platter features crisp broccoli florets, juicy grape tomatoes, creamy cheese cubes, savory turkey bites, crunchy celery sticks, and tender baby carrots. Paired with an irresistible Hidden Valley Ranch dipping sauce, our Vegetable Tray is the ultimate choice for parties, picnics, or a nutritious snack. Relish the delightful harmony of flavors and textures while enjoying the benefits of fresh, quality produce.', 'Taylor Farms', 'https://i5.walmartimages.com/asr/56db25ff-fc26-4979-a8f4-b062b76483b1.72f5ed19b5e8244429f0788c76dedaf5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/56db25ff-fc26-4979-a8f4-b062b76483b1.72f5ed19b5e8244429f0788c76dedaf5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/56db25ff-fc26-4979-a8f4-b062b76483b1.72f5ed19b5e8244429f0788c76dedaf5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (612841308, 'Earthbound Farm® Organic 50/50 10oz Tray', 4.39, '032601900199', 'Two tender and tasty salad favorites combined: spring mix with extra baby spinach.', 'Organic Salad Organic Lettuce Blend', 'EARTHBOUND FARM', 'https://i5.walmartimages.com/asr/2278b6ae-5a36-4aed-b172-aad5d9f93c7f.66bfb16295376ce3974e7133bc327e16.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2278b6ae-5a36-4aed-b172-aad5d9f93c7f.66bfb16295376ce3974e7133bc327e16.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2278b6ae-5a36-4aed-b172-aad5d9f93c7f.66bfb16295376ce3974e7133bc327e16.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (612936029, 'Fieldpack Unbranded Mixed Bell Pepper 3 Pack', 1.98, 'deleted_813155020966', 'short description is not available', 'Fieldpack Unbranded Mixed Bell Pepper 3 Pack', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (613169588, 'Cucumber', 0.62, '405715530628', 'short description is not available', 'Cucumber', 'Fresh Produce', 'https://i5.walmartimages.com/asr/64ac631d-ca9a-4ee2-942f-e967ddb9ade6.3f9e01e8e573840eeaeda602b500df0e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/64ac631d-ca9a-4ee2-942f-e967ddb9ade6.3f9e01e8e573840eeaeda602b500df0e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/64ac631d-ca9a-4ee2-942f-e967ddb9ade6.3f9e01e8e573840eeaeda602b500df0e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (613440053, 'Cucumber Hothouse', 1.22, 'deleted_816426010338', 'short description is not available', 'Cucumber Hothouse', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (613718350, 'Fresh Banana, Guineos Maduros 3lbs Package', 3.57, '856552006386', 'Our fresh and delicious bananas are the perfect addition to your daily diet. High in potassium and fiber, these bananas will give you a natural energy boost that will keep you going all day long. Great as a healthy snack or in smoothies and desserts. Our bananas are sourced from trusted farms and are carefully handpicked to ensure the highest quality. Order now for a tasty and nutritious snack!', 'Sweet, tropical flavor Enjoy at breakfast, lunch, dessert, or when you want a snack Good source of potassium, vitamin B6 and vitamin C and low in sodium Make banana bread or banana pudding and enjoy with a hot cup of coffee Peel open and enjoy', 'Fresh Produce', 'https://i5.walmartimages.com/asr/816648b2-6f37-4601-8181-40a1004f452a.d59cb573f23290b8b7aac66b6001272c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/816648b2-6f37-4601-8181-40a1004f452a.d59cb573f23290b8b7aac66b6001272c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/816648b2-6f37-4601-8181-40a1004f452a.d59cb573f23290b8b7aac66b6001272c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (613842125, '180pc Pto Rst 10# Bm', 799.2, '400094860557', 'short description is not available', '180pc Pto Rst 10# Bm', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (614565629, '125pc Pto Idaho 8#', 802.5, '405551645951', 'short description is not available', '125pc Pto Idaho 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (614760120, '180pc Pto Rst 10#2', 889.2, '405500082585', 'short description is not available', '180pc Pto Rst 10#2', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (614933879, 'Walmart Produce Freshly Chopped Green Onions', 2.58, 'deleted_030223022374', 'short description is not available', 'Walmart Produce Freshly Chopped Green Onions', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (615090103, 'Fuji Apples 3 Lb Bag', 4.38, 'deleted_882648000297', 'short description is not available', 'Fuji Apples 3 Lb Bag', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (615219547, 'Services Reduced Program Dept 94', 0.01, '251706000003', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (615226267, 'Strawberry/blueberry Blend 10oz', 6.97, '045009891198', '10oz Strawberry / Blueberry blend', 'A 10oz container of cut & washed strawberry and blueberries', 'Unbranded', 'https://i5.walmartimages.com/asr/6a7b7327-141c-4969-a1d0-a2e4311512f9.19c70fdbaeb5c2099c07484db5f1cd27.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a7b7327-141c-4969-a1d0-a2e4311512f9.19c70fdbaeb5c2099c07484db5f1cd27.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a7b7327-141c-4969-a1d0-a2e4311512f9.19c70fdbaeb5c2099c07484db5f1cd27.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (615326756, 'Sweet Cherry Tomato - 2\" x 3\" Pot -Sweet/Intense Flavor', 4.99, '810046277201', 'CHERRY TOMATO: A cherry tomato is a smaller garden variety of tomato. It is popular as a snack and in salads. Cherry tomatoes range in size from a thumbtip up to the size of a golf ball, and can range from being round to slightly oblong in shape. The more oblong ones often share characteristics with plum tomatoes, and are known as grape tomatoes.', 'Flavor is sweet and intense, packed into small, red, round fruits Large sweet cherry tomatoes Indeterminate Easy to grow', 'Hirt\'s Gardens', 'https://i5.walmartimages.com/asr/db00f0cf-7f0b-48c2-bc6e-66f33efa366b_1.4cb67e7a799049964542214387c04d38.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/db00f0cf-7f0b-48c2-bc6e-66f33efa366b_1.4cb67e7a799049964542214387c04d38.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/db00f0cf-7f0b-48c2-bc6e-66f33efa366b_1.4cb67e7a799049964542214387c04d38.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (615408235, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094950159', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (615761374, 'Fresh Pineapple', 2, 'deleted_095829816178', 'short description is not available', 'Fresh Pineapple', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (616167357, 'NATURAURA - Dried Morel Mushrooms (Morchella Conica) Fresh Flavor, Nutritious, Gourmet Morel Mushrooms 3-4inch Size (2 Ounces)', 27.99, '718910898807', 'NATURAURA works with purveyors from all around the globe to bring you the freshest and finest quality herbs, dried goods, teas, and more! Morchella Mushrooms (Morels) are extremely fragrant and smokey mushrooms that are perfect for soups and other dishes. High in potassium, vitamins, and a wonderful source of Vitamin D. Did you know Morel Mushrooms are known to contain the HIGHEST amounts of Vitamin D out of all edible mushrooms? Yum. - Extremely Fresh & Fragrant Dried Morchella Mushrooms - Morels - Premium Quality Morel Mushrooms - Morchella Mushrooms - Morels contain the HIGHEST amount of -VITAMIN D in ALL edible mushrooms! - Morels are non-GMO, Kosher, & Gluten Free without certification in accordance to CRC Guidelines - High in Vitamins, Potassium, and a great source of Vitamin D', 'Morel Mushrooms are rarely grown commercially, making them a seasonal product generally found in the spring time. You will find morel mushrooms growing by the river beds, forest floors, or in forests that have been in recent fires. We saved you the foraging trip to bring to you morel mushrooms that are expertly dried, extremely fragrant, & naturally delicious. Premium Quality Morel Mushrooms - Morchella Mushrooms are a great source of natural vitamins, and make for a great meat-replacement Did you know? Morel Mushrooms contain the HIGHEST amount of VITAMIN D in ALL edible mushrooms - eating healthy never tasted this good! Yummy! Morels are non-GMO, Kosher, & Gluten Free without certification in accordance to CRC Guidelines - Premium Grade Morels are Packed & Inspected in our California facility. High in Vitamins, Potassium, and a great source of Vitamin D - Eat as many morels as you\'d like, without the guilt!', 'NATURAURA', 'https://i5.walmartimages.com/asr/904c7d3b-c279-4ac0-8aa1-66448c45b5aa.8d6dfb324ae7812036007c0dbec46c2e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/904c7d3b-c279-4ac0-8aa1-66448c45b5aa.8d6dfb324ae7812036007c0dbec46c2e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/904c7d3b-c279-4ac0-8aa1-66448c45b5aa.8d6dfb324ae7812036007c0dbec46c2e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (616410482, 'Prico Mango Trozado 20oz', 7.67, '687398561025', 'Prico Mango Chunks are the perfect way to add some island fruit sweetness to your day. These mango chunks are perfect for making homemade smoothies or for snacking on between meals for a quick pick me up. You can serve this fruit plain or with fresh whipped cream, vanilla and nutmeg. You can also add these delicious juicy mango chunks to fruit salads, ice cream, yogurt or milkshakes. You can also use these as a special treat to be served with cereal, pancakes or waffles.', 'Pre-portioned for easy snacking Freshly cut ripe mango Plastic container made with removable lid for easy storage', 'Prico', 'https://i5.walmartimages.com/asr/198df69a-a186-4dba-8223-ae3de1473bde.f55165bb69340aa0827892a39a6c0126.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/198df69a-a186-4dba-8223-ae3de1473bde.f55165bb69340aa0827892a39a6c0126.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/198df69a-a186-4dba-8223-ae3de1473bde.f55165bb69340aa0827892a39a6c0126.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (617209032, 'Fresh Whole Organic Grape Tomato, 10 oz Package', 2, '606105000008', 'Fresh Whole Organic Grape Tomatoes are an exciting summer treat, and they\'re the perfect size for skewers, salads and roasting. These bite-sized grape tomatoes look and taste great. Grape tomatoes are a low-calorie treat that are also low in sodium and are a good source of fiber. Whether you are snacking or adding them to your favorite dish. their uses are almost limitless. Try these grape tomatoes with feta cheese, fresh dill, and a drizzle of olive oil for a light and delicious Mediterranean treat. Or make a caprese salad with grape tomatoes, fresh basil, fresh mozzarella, and balsamic vinegar. With 10-ounces of tomatoes in each package, you\'ll have plenty to make mouthwatering meals. Use your imagination to create delicious dishes with Fresh Whole Organic Grape Tomatoes.', 'Fresh Whole Organic Grape Tomato, 10 oz Package Perfect size for skewers, salads and roasting Low-calorie, low in sodium, and a good source of fiber Pair with feta cheese, fresh dill, and a drizzle of olive oil for a Mediterranean dish Make a caprese salad with grape tomatoes, fresh basil, fresh mozzarella, and balsamic vinegar USDA certified organic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/96a8b70c-a560-4f53-9d61-a047584fa928.89b2eb39193705694743a3cea6910d4c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96a8b70c-a560-4f53-9d61-a047584fa928.89b2eb39193705694743a3cea6910d4c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96a8b70c-a560-4f53-9d61-a047584fa928.89b2eb39193705694743a3cea6910d4c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (617433440, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094144992', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (617730761, 'Yellow Flesh Peaches, per Pound', 1.58, '400094706411', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (617736167, 'Yellow Onions, 3 Lb.', 1.94, 'deleted_400094228814', 'Yellow Onions, 3 Lb.', 'Yellow Onions 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (617772292, 'Services Reduced Program Dept 94', 0.01, '251667000005', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (618197968, 'Straw Bale', 6.66, '853647001400', 'short description is not available', 'Straw Bale', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (618697047, 'Vary-berry Mixed Berries, 10oz Clam', 8.97, '761635207201', 'Presentation: 10-ounce package of mixed berries (raspberries, blueberries, blackberries, or other berries) from the brand Sun Belle. For a serving of approximately 142 g (1 cup): 60 kcal, carbohydrates 15 g, fiber 6 g, sugar 9 g, sodium 0 mg. Cholesterol-free, low in fat, with negligible sodium. Ideal for consumption as a fresh snack, added to yogurts, salads, smoothies, or as part of light meals. Provides dietary fiber, which promotes a feeling of fullness and helps incorporate fresh fruit into the daily diet. The Sun Belle brand highlights that its berries are “a rich source of antioxidants.', 'Variety Pack of 10oz Fresh Raspberries, blueberries, blackberries. Produce of USA, Canada, Mexico, Chile, Peru, Guatemala. Cholesterol-free Low in fat With negligible sodium', 'Sun Belle', 'https://i5.walmartimages.com/asr/b3e6426d-c590-457c-bc98-e16d2fbbbc91.3ab14bd91037e4132d8bf0e7e31c3880.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3e6426d-c590-457c-bc98-e16d2fbbbc91.3ab14bd91037e4132d8bf0e7e31c3880.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3e6426d-c590-457c-bc98-e16d2fbbbc91.3ab14bd91037e4132d8bf0e7e31c3880.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (619403813, 'Emmivansfoods Gorontula Dried Fruits Snot Apple 100% Natural,8oz', 20.99, '880007667419', 'Gorontula Fruit , Azanza Garcheana , African Chewing Gum , Snot Apple, Dried Goron tula Fruit, Nigerian Silky Kola, matobwe . It is sweet and chewy ,It can be eating raw , that is why it is also called African chewing gum. It can be soaked to soften before eating or boiled in hot water to make jelly. Can be 20- 30 gorontula fruits in a pack.', 'Gorontula Seed is also called African chewing gum. It is sweet and chewy, It can be eaten raw. It can be soaked to soften before eating. Can be 20- 30 gorontula fruits in a pack. Gorontula Seed is boiled in hot water to make jelly. Emmivansfoods Gorontula seeds are 100% Natural. Emmivansfoods is packaged in a resealable 8oz pouch.', 'Emmivansfoods', 'https://i5.walmartimages.com/asr/4d24af19-078c-4cbb-9dd7-d0d6d2ab3c2a.c3e79b41a52c39d84eab23ebb3d12ac0.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4d24af19-078c-4cbb-9dd7-d0d6d2ab3c2a.c3e79b41a52c39d84eab23ebb3d12ac0.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4d24af19-078c-4cbb-9dd7-d0d6d2ab3c2a.c3e79b41a52c39d84eab23ebb3d12ac0.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (619814360, 'TOMATORRRRRRRRRRRRRR', 1.98, '091234000096', 'TOMATORRRRRRRRRRRRRR', '', '', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (620485217, 'Services Reduced Program Dept 94', 0.01, '251711000005', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (621305637, 'Fresh Little Gem Lettuce', 2.98, '885460000407', 'Introducing Fresh Little Gem Lettuce, a delightful and versatile green that adds a touch of gourmet flair to your salads and dishes. This petite lettuce variety features crisp, tender leaves with a sweet, buttery flavor, making it a perfect addition to any meal. Rich in vitamins and minerals, Fresh Little Gem Lettuce offers an array of health benefits. Enjoy this vibrant, fresh produce in salads, wraps, or as a garnish, and elevate your culinary creations with the exquisite taste and texture of Little Gem Lettuce.', 'Fresh Fieldpack Unbranded Little Gem Lettuce Introducing Fresh Little Gem Lettuce, a delightful and versatile green that adds a touch of gourmet flair to your salads and dishes. This petite lettuce variety features crisp, tender leaves with a sweet, buttery flavor, making it a perfect addition to any meal. Rich in vitamins and minerals, Fresh Little Gem Lettuce offers an array of health benefits. Enjoy this vibrant, fresh produce in salads, wraps, or as a garnish, and elevate your culinary creations with the exquisite taste and texture of Little Gem Lettuce.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ea763c4c-16c3-4754-a598-8823cb779812.db9b725bf3095b1ee55e8a0f73404aa8.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea763c4c-16c3-4754-a598-8823cb779812.db9b725bf3095b1ee55e8a0f73404aa8.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ea763c4c-16c3-4754-a598-8823cb779812.db9b725bf3095b1ee55e8a0f73404aa8.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (621462928, 'Red Boil In Bag Potatoes 3lb', 4.24, 'deleted_605806003820', 'Fresh Red Boil In Bag Potatoes', 'Ready to Boil, Bake or Mash Red potatoes. Just remove the tag and boil right in the food safe mesh bag.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a278588f-4b7c-46d8-9662-2c9d58f958a0.000d5d67ae5f8b862773629fb2a6dc5e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a278588f-4b7c-46d8-9662-2c9d58f958a0.000d5d67ae5f8b862773629fb2a6dc5e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a278588f-4b7c-46d8-9662-2c9d58f958a0.000d5d67ae5f8b862773629fb2a6dc5e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (621496806, 'Grape Tomato, 10 oz Package', 2.23, 'deleted_059749964012', 'Fresh grape tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Grape Tomatoes are the perfect choice.', 'Grape Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (621497000, 'Mann\'s Fresh Green Beans Veggie Sides, 7.8 oz', 3.97, '716519009839', 'Elevate mealtime with the Mann\'s Green Beans Veggie Sides. Made with charred onions and bacon sauce, this side of veggies is a perfect addition to your meals. Pair them with a perfectly cooked steak and potatoes for a delicious meal that will have you feeling like you dined at the best steakhouse in town. You can also serve them with grilled chicken, rolls, and sweet potatoes for a well-rounded dinner your friends and family is sure to love. In just three minutes, you can be enjoying the delicious taste of these green beans. Simply place the bag in the microwave, microwave on high for three minutes, stir until combined, and enjoy. Complete your meals with the Mann\'s Green Beans Veggie Sides.', 'Greens beans with charred onions and bacon sauce Pair with steak and potatoes for a mouthwatering meal Serve with grilled chicken, rolls, and sweet potatoes for a well-rounded meal Ready in just 3 minutes Perfect addition to your meals', 'Unbranded', 'https://i5.walmartimages.com/asr/49aafce9-ae03-41be-94a4-dded974626db.3faf663acc1cf07340c4f9b88a196163.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/49aafce9-ae03-41be-94a4-dded974626db.3faf663acc1cf07340c4f9b88a196163.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/49aafce9-ae03-41be-94a4-dded974626db.3faf663acc1cf07340c4f9b88a196163.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (622057236, 'Fresh Blackberries, 12 oz. Container', 4.84, '033383240015', 'The sweet, juicy flavor of Fresh Blackberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes or yogurt, bake them into mouthwatering blackberry cobbler, mix them with other fruit for a light and flavorful salad, or add them to a creamy smoothie. They contain essential vitamins and nutrients like vitamin C, fiber, potassium, vitamin K and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them with cool water and enjoy the fresh taste. Refrigerate the berries to keep them fresh and ready for use. Pick up a Fresh Blackberry container today and savor the delectable flavor.', 'Are you ready to experience the vibrant taste and health benefits of Fresh Blackberries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Blackberries are plump, juicy, and bursting with natural sweetness. The versatility of blackberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these tasty gems into your baking endeavors, whether it\'s cobblers, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Not only are blackberries delicious, but they also offer an array of health benefits. Loaded with vitamins and dietary fiber, blackberries are are a nutritious choice that will keep you feeling good from the inside out. Our Fresh Blackberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness.', 'Multiple Suppliers', 'https://i5.walmartimages.com/asr/f3be97b4-beed-464f-8cd4-b09b3127f463.2a64e25bc7eb923e6f0b730a7184fb5c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f3be97b4-beed-464f-8cd4-b09b3127f463.2a64e25bc7eb923e6f0b730a7184fb5c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f3be97b4-beed-464f-8cd4-b09b3127f463.2a64e25bc7eb923e6f0b730a7184fb5c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (622131376, 'Watermelon Seedless', 4.48, '400094994030', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/76efd2b8-5fe8-449c-8c36-12c0b1cedbc7.3368806e6c74c9618f1c6305a5b16339.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/76efd2b8-5fe8-449c-8c36-12c0b1cedbc7.3368806e6c74c9618f1c6305a5b16339.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/76efd2b8-5fe8-449c-8c36-12c0b1cedbc7.3368806e6c74c9618f1c6305a5b16339.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (622534121, 'Demi Long Shallots 12.3 Oz Box', 2.44, '', 'short description is not available', 'Demi Long Shallots 12.3 Oz Box', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (622549887, 'Roma Tomato, Each', 5.98, 'deleted_729062990448', 'With Fresh Roma Tomatoes from Walmart, it\'s easy to make a wholesome, delicious meal. Roma tomatoes are a fresh produce ingredient for whipping up a variety of wonderful dishes. You can use them to create a zesty tomato sauce for stirring into a homemade pasta dish, crush them up to make a delightful Roma tomato bruschetta, or simply enjoy them on their own as a nutritious snack or as a party platter option for dipping in your favorite vegetable dipping sauce. If you\'re feeling a classic tomato dish, Roma tomatoes can even lend themselves in making a comforting and appetizing tomato soup or a flavorful salsa. However you choose to use them, each Roma tomato will add stunning flavor to your meal. Just find the recipe and experience the tasty results for yourself! Elevate your recipes with Roma Tomatoes.', 'Roma Tomato, Each: Wholesome, versatile, and delicious Rich, juicy flavor in each bite Ideal ingredient for a variety of dishes Use to make pasta sauce, tomato soup, or fresh salsa Make a tasty pesto or bruschetta to serve at your next dinner party Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2f860752-38f8-43a5-96b7-afda3b890630.59821395b55a4259f90cc71edfa15258.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f860752-38f8-43a5-96b7-afda3b890630.59821395b55a4259f90cc71edfa15258.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f860752-38f8-43a5-96b7-afda3b890630.59821395b55a4259f90cc71edfa15258.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (623075829, 'Watermelon Seedless', 4.48, '400094927175', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (623254417, 'Bonnie Plants Napa Grape Tomato 5\"', 4.18, '715339723017', 'short description is not available', 'Bonnie Plants Napa Grape Tomato 5\"', 'Bonnie Plants', 'https://i5.walmartimages.com/asr/eeb32f3b-1e37-446b-928e-570015aaf211.965f24f33a62008eceed63a88f10779a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eeb32f3b-1e37-446b-928e-570015aaf211.965f24f33a62008eceed63a88f10779a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eeb32f3b-1e37-446b-928e-570015aaf211.965f24f33a62008eceed63a88f10779a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (623782402, 'Fieldpack Unbranded Romaine Lettuce', 1.98, 'deleted_405965264403', 'short description is not available', 'Fieldpack Unbranded Romaine Lettuce', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (623822970, 'Ready Pac Foods Bistro Chopped Bacon Caesar Salad Kit', 3.63, '077745255705', 'This indulgent take on a classic Chopped Caesar Salad is made with the freshest and tastiest ingredients, including real bacon. Starting with a base of crisp chopped Romaine lettuce, this complete salad kit includes savory Bacon pieces, shredded Parmesan Cheese, crisp Garlic Croutons, and creamy Caesar Romano Dressing. Enjoy on its own or add your favorite protein to make a complete meal in minutes!', 'Ready Pac Bistro Chopped Bacon Caesar Salad Kit , 10.55 oz (299 g) Only 170 calories per 1 cup serving Contains dairy and wheat Low in sugar (only 1g per 1 cup serving) Low in carbohydrates (only 5 g per 1 cup serving) Made with fresh, healthy vegetables such as romaine lettuce Combines healthy vegetables with Real Bacon and Caesar Romano Dressing Packed in a breathable bag for freshness Keep refrigerated and use within two days of opening Thoroughly washed Comes in other delicious varieties such as Savory Steakhouse, Sweet Kale and Kickin\' Southwest', 'Ready Pac Foods', 'https://i5.walmartimages.com/asr/087dc12c-31ee-4def-88b7-d04f716a10f6.9081fa4574910aa60b2ad75b714621c7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/087dc12c-31ee-4def-88b7-d04f716a10f6.9081fa4574910aa60b2ad75b714621c7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/087dc12c-31ee-4def-88b7-d04f716a10f6.9081fa4574910aa60b2ad75b714621c7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (623879285, 'Tasteful Selections Sunburst Blend Potato 24oz', 4.47, '826088526139', 'Creamy textures and tender skins, create this blend’s flavor fusion. The union of two of our two most popular varieties has created this great potato offering, Sunburst Blend™ potatoes! Creamy textures and tender skins create this blend’s flavor fusion that will satisfy your household. Copy right Tasteful selection', 'Bite size, Sunburst Blend Potato 24oz', 'Tasteful Selections', 'https://i5.walmartimages.com/asr/0ba28d06-811a-4c6a-a1ad-f36de3524633.411f311c337acea1b041b7519ae24da5.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ba28d06-811a-4c6a-a1ad-f36de3524633.411f311c337acea1b041b7519ae24da5.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ba28d06-811a-4c6a-a1ad-f36de3524633.411f311c337acea1b041b7519ae24da5.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (623928989, '75pc Orange Navel 8#', 589.5, '400094585290', 'short description is not available', '75pc Orange Navel 8#', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (624056368, 'Clementines, 3 lb', 3.54, 'deleted_858410005135', 'Clementines, 3 lb', 'Clementines, 3 lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/41346d9b-ddc1-41a7-8093-35edc68c44fb_1.be72592d1d838c1dc7b156278cba3e1c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/41346d9b-ddc1-41a7-8093-35edc68c44fb_1.be72592d1d838c1dc7b156278cba3e1c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/41346d9b-ddc1-41a7-8093-35edc68c44fb_1.be72592d1d838c1dc7b156278cba3e1c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (624220613, 'Marketside Classic Cole Slaw, 16 oz', 1.57, '681131221566', 'Marketside Classic Cole Slaw is made with green cabbage that shredded to perfection, and has a great fresh taste. This cole slaw is packed fresh, washed and ready to eat for your convenience. This shredded green cabbage is great as an ingredient, topping or garnish in your favorite recipes. Use it as a topping on sandwiches and tacos, or add it to an Asian-style stir fry. Mix this slaw with mayonnaise, celery and shredded carrots to create an all-American classic. Serve prepared slaw with barbecue chicken and bread rolls for a classically delicious meal the whole family will savor. Enjoy fresh from the farm taste with Marketside Classic Cole Slaw.Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Classic Cole Slaw, 16 oz:Great for tacos, cole claw and saladsWashed and ready to eat20 calories per servingNet weight 1 lb', 'Marketside', 'https://i5.walmartimages.com/asr/794c8db9-ee86-4dc6-93d9-81cd36df2226_2.c0fae51c4e8f72d448cd98ffac7d19be.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/794c8db9-ee86-4dc6-93d9-81cd36df2226_2.c0fae51c4e8f72d448cd98ffac7d19be.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/794c8db9-ee86-4dc6-93d9-81cd36df2226_2.c0fae51c4e8f72d448cd98ffac7d19be.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (624343095, '200pc Pto Ykn/red 5#', 1044, '405565978885', 'short description is not available', '200pc Pto Ykn/red 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (624630985, '75pc Orange Navel 8#', 598, '405790695670', 'short description is not available', '75pc Orange Navel 8#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (624730307, 'Watermelon Seedless', 4.98, '405504835781', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (624958400, '100pc Pto Idaho 10#', 597, '405500363196', 'short description is not available', '100pc Pto Idaho 10#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (624997952, 'Walmart Produce Freshly Diced Yellow Onions', 2.58, 'deleted_030223022367', 'short description is not available', 'Walmart Produce Freshly Diced Yellow Onions', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (625100074, 'Freshness Guaranteed Watermelon 32 Oz', 7.36, 'deleted_681131036672', 'short description is not available', 'Freshness Guaranteed Watermelon 32 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (625203089, 'Ancho Hot Pepper', 1.98, '000000047074', 'short description is not available', 'Ancho Hot Pepper', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (625928947, 'Field & Farmer - Dip Vegan Queso, 8oz | Pack of 6', 3.68, '854241007829', 'BIG FLAVOR from SMALL FARMS. This is nacho standard queso (see what I did there?). This creamy plant-based queso has just enough fire for an authentic queso kick but good-for-you ingredients like cannellini beans, cauliflower, and turmeric. Pairs perfectly with tortilla chips and a cold cerveza. Junk-free, plant-full.', '8 oz Party Dip, Vegan Queso Nut Free. Dairy Free. Allergen Free. Non GMO. Big flavor from small farms. Plant based. No preservatives. Get a Taste of This: We made this delicious dip using plant grown on small farms-like Carlson-Arbogast Farm in Michigan. fieldandfarmer.co.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2eae7cd9-7767-46a5-9b80-d1fd5e61a868.b25c9905f51e43bafa6630804932a7fe.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2eae7cd9-7767-46a5-9b80-d1fd5e61a868.b25c9905f51e43bafa6630804932a7fe.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2eae7cd9-7767-46a5-9b80-d1fd5e61a868.b25c9905f51e43bafa6630804932a7fe.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (626779738, 'Granny Smith Apples 3 Lb Bag', 3.94, '899734002479', 'short description is not available', 'Granny Smith Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (626983129, 'Crisply Spring Greens Mixed Salad, 5 oz', 3.48, '857951008025', 'Eden Green Crisply Spring Greens Mixed Salad, 5 Oz.', 'Crisply Spring Greens Mixed Salad, 5 oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/27183e09-6e55-45a4-9f05-4b710e9f70c1_3.b7f87d5c7808589c6861082d16204d9d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/27183e09-6e55-45a4-9f05-4b710e9f70c1_3.b7f87d5c7808589c6861082d16204d9d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/27183e09-6e55-45a4-9f05-4b710e9f70c1_3.b7f87d5c7808589c6861082d16204d9d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (627028986, '192pc On Swt 3# Pe', 788, '405534206452', 'short description is not available', '192pc On Swt 3# Pe', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (627455471, 'Hot House Cucumber', 1.38, 'deleted_885773000705', 'Enjoy the fresh, crisp, delicious flavor of English Cucumber. Packed with nutritional benefits such as being naturally low in calories, carbohydrates, sodium, fat, and cholesterol, cucumbers also provide potassium, fiber, and vitamin C and clock in at a cool 16 calories per cup. Use this cucumber to make healthy treats such as a cucumber salad with tomatoes and onions in a vinaigrette dressing, toss with fresh mozzarella, tomatoes, and a drizzle of balsamic vinegar, mix diced cucumbers with Greek yogurt, lemon, dill, and garlic for a refreshing tzatziki sauce for gyros or veggies, add to a crisp, fresh veggie salad, or thinly slice and add to a vinegar brine for quick pickles. Any way you slice, dice, or spiralize them, English Cucumber is a refreshing, healthy addition to any meal.', 'English Cucumber, 1 Each: Single cucumber Crisp, delicious, and refreshing Naturally low in calories, carbohydrates, sodium, fat, and cholesterol Provides potassium, fiber, and vitamin C, among other nutrients Create delicious recipes with this fresh cucumber', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/a7d339de-3af8-45cd-bc69-86a17cd5d73a_1.14fce5b7065225996e0144b2dbd78305.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a7d339de-3af8-45cd-bc69-86a17cd5d73a_1.14fce5b7065225996e0144b2dbd78305.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a7d339de-3af8-45cd-bc69-86a17cd5d73a_1.14fce5b7065225996e0144b2dbd78305.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (627993635, 'Shrink Cap | Shortbread w/Large Midnight Black Grapes (100/Pack)', 29.95, '776982330939', 'Elevate Your Wine Experience with Our European Crafted Shrink Caps Enhance Bottle Presentation and Ensure Freshness with Our Shrink Caps! Our Premium Shrink Caps are the perfect addition to any wine bottle, combining elegance with functionality. These caps, expertly crafted in Europe, not only enhance the visual appeal of your bottles but also play a crucial role in maintaining the cork\'s integrity. Our shrink caps are ideal for winemakers, wine enthusiasts, or those who love to gift homemade wine. They are a simple yet effective way to elevate your wine\'s presentation and ensure freshness. Key Features: High-Quality Material:Manufactured in Europe, guaranteeing premium quality and durability. Universal Fit:Designed to fit 375ml, 750ml, and 1500ml wine bottles perfectly. Easy Tear-Off Design:Facilitates a smooth bottle-opening experience. Precise Dimensions:Measuring 30.5mm x 55mm for a flawless fit. Elevated Presentation:Adds a sophisticated touch to any wine bottle. Usage Guide: Slide the Cap:Place the shrink cap over the neck of the wine bottle. Apply Heat:Use a heat gun or steam to shrink the cap around the bottleneck securely. Tear & Pour:Enjoy the easy tear-off design for quick access to your wine. FAQs: Q:Can these shrink caps be used for beverages other than wine?A:They are versatile for any bottled beverage with compatible dimensions. Q:How resistant are these caps to external factors like moisture?A:Crafted with high-quality materials, they resist moisture and other external elements effectively. Q:Are special tools required for application?A:A heat gun or steam source is needed to secure the cap\'s shrinking. Q:Do these caps leave any residue upon removal?A:No, they are designed for clean and residue-free removal.', 'High-Quality Corks and Stoppers for Wine Bottles – Designed to provide a secure seal, preserving the freshness and flavor of your wine with every use. Perfect for Home and Professional Winemakers – Whether for DIY projects or commercial bottling, our corks and stoppers ensure reliable performance and a professional finish. Durable and Easy to Use – Made from premium materials, our wine corks and stoppers are easy to insert and remove, making them ideal for sealing and storing your homemade beverages.', 'ABC Cork', 'https://i5.walmartimages.com/asr/b0f71f2a-8eb6-4f89-a7ac-8f23f9209edc.ba6624c8814ddb31a9b5ff2487e57e72.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b0f71f2a-8eb6-4f89-a7ac-8f23f9209edc.ba6624c8814ddb31a9b5ff2487e57e72.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b0f71f2a-8eb6-4f89-a7ac-8f23f9209edc.ba6624c8814ddb31a9b5ff2487e57e72.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (628137129, 'Watermelon Seedless', 4.98, '405504819415', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (628304633, 'Marketside Green Beans 12 Oz', 2.78, 'deleted_405519014768', 'short description is not available', 'Marketside Green Beans 12 Oz', 'Marketside', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (628308962, 'Idaho Potatoes, 10 Lb.', 5.47, 'deleted_826088536121', 'Idaho Potatoes, 10 Lb.', 'Idaho Potatoes 10 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (628761887, 'Mclane Company Oranges, 1 Each', 0.82, '717524802200', 'Mclane Company Oranges, 1 Each', 'Mclane Company Oranges', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (628914959, 'Yellow Flesh Peaches, per Pound', 1.58, '400094705155', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (629166678, '90pc Pto Rst 10# Nv', 444.6, '405530518399', 'short description is not available', '90pc Pto Rst 10# Nv', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (629900424, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, 'deleted_400094093832', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (629928378, '256pc On Ylw 3# Jc', 496.64, '405564999423', 'short description is not available', '256pc On Ylw 3# Jc', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (630252912, 'Lemon Plum, Each', 2.08, '000000044424', 'Introducing the delightful Lemon Plum - a unique and exotic fruit that brings together the refreshing tanginess of lemons and the luscious sweetness of plums. This extraordinary hybrid fruit is a must-try for fruit enthusiasts and culinary adventurers alike! Lemon plums boast a vibrant yellow color that gradually develops a rosy blush as they ripen, adding a striking visual appeal to your fruit bowl. Their shape is a beautiful blend of both parent fruits, featuring an elongated, slightly curved form that tapers to a point. This eye-catching appearance will surely spark conversation and pique the interest of your guests.', 'Introducing the delightful Lemon Plum Bag - a unique and exotic fruit that brings together the refreshing tanginess of lemons and the luscious sweetness of plums. This extraordinary hybrid fruit is a must-try for fruit enthusiasts and culinary adventurers alike! Lemon plums boast a vibrant yellow color that gradually develops a rosy blush as they ripen, adding a striking visual appeal to your fruit bowl. Their shape is a beautiful blend of both parent fruits, featuring an elongated, slightly curved form that tapers to a point. This eye-catching appearance will surely spark conversation and pique the interest of your guests.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3bcb14c8-df32-4d53-bad6-1fe780b58de8.2fcc049fef4aa1380bedbd5216534e71.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3bcb14c8-df32-4d53-bad6-1fe780b58de8.2fcc049fef4aa1380bedbd5216534e71.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3bcb14c8-df32-4d53-bad6-1fe780b58de8.2fcc049fef4aa1380bedbd5216534e71.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (630335285, 'Green Seedless Grapes, per lb', 2.88, '400094147856', 'short description is not available', 'Fresh Green Seedless Grapes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e3493b51-d859-4499-8a4f-985e8a281558.ec2345597c4287be07085da9c7d01d62.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e3493b51-d859-4499-8a4f-985e8a281558.ec2345597c4287be07085da9c7d01d62.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e3493b51-d859-4499-8a4f-985e8a281558.ec2345597c4287be07085da9c7d01d62.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (630487784, '180pc Apl Gala/fuji', 620.1, '405667295903', 'short description is not available', '180pc Apl Gala/fuji', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (631078114, 'Large Bagged Oranges', 8.73, '', 'short description is not available', 'Large Bagged Oranges', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (631413091, 'Fresh Cherry Hot Peppers', 3.48, '000000047227', 'short description is not available', 'Fresh Cherry Hot Peppers', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (631442829, 'Organic Celery Stalk, 1 Each', 1.76, '073574800222', 'Organic Celery Stalk, 1 Each', 'Organic Celery Stalk', 'FIELDPACK UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (631930464, 'Fresh Navel Oranges, 10 lb Box', 9.98, 'deleted_605049458340', 'Fresh Oranges are a good addition to a healthy diet along with other fruit. They\'re oval with thick, easy-to-remove peel and segments that separate cleanly. Oranges are a fruit that contains vitamin C and other nutrients that can be eaten as is or juiced for a smooth beverage at breakfast. It is suitable for use in all kinds of sweet and savory dishes, from cakes to weeknight chicken dinners. Citric acid fruits like oranges can be stored at room temperature for several days or in the refrigerator for up to two weeks. Available in a 4 lb package.', 'A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/77ccdb68-c4ce-4a9b-a736-d037261fdd23.e4e420e90c7aebc4cf66591b6353dcb5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77ccdb68-c4ce-4a9b-a736-d037261fdd23.e4e420e90c7aebc4cf66591b6353dcb5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77ccdb68-c4ce-4a9b-a736-d037261fdd23.e4e420e90c7aebc4cf66591b6353dcb5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (632329174, 'Watermelon Seedless', 4.98, '400094255483', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (632531299, 'Black Futsu Bumpy Pumpkin', 3.98, '823298001616', 'short description is not available', 'Black Futsu Bumpy Pumpkin', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (632761463, 'Yellow Yam Root Whole Fresh, Each', 3.28, '000000032759', 'Create something delicious with this fresh Yellow Yam. Yam is a versatile root that may be prepared like a potato. Commonly used in tropical regions, this yam should be peeled and cooked before eaten. Name yams can be cooked in a variety of ways, such as mashed, baked, boiled, fried, and more. Use it to make crispy fries, a comforting stew, or even a sweet cake. It\'s also a good source of fiber, B vitamins, and vitamin C. Make your next culinary masterpiece with Yellow Yam Root.', 'Prepare like a potato Should be peeled and cooked before eaten It\'s also a good source of fiber, B vitamins, and vitamin C Use it to make crispy fries, a comforting stew, or even a sweet cake', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a5627750-32a5-4a99-b912-3de17f8988c9_1.0c86b8433614e88542d9e311c2f4651c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a5627750-32a5-4a99-b912-3de17f8988c9_1.0c86b8433614e88542d9e311c2f4651c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a5627750-32a5-4a99-b912-3de17f8988c9_1.0c86b8433614e88542d9e311c2f4651c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (632804058, 'Fresh Beets, 2lb', 3.27, '033383702193', 'Serve up something amazing when you cook with Fresh Beets. This versatile root vegetable is known for its bright red color and is a great addition to a healthy diet and can be prepared in a variety of ways. Roast them with your favorite seasonings and serve with a juicy steak and homemade rolls or add them to a goat cheese and arugula salad. Use them in a comforting soup recipe, a delicious casserole, or even a cake. However, you choose to use them, these beets will add big flavor and unforgettable taste to any meal. The culinary possibilities are endless with Fresh Beets.', 'Fresh Beets, Bunch Known for their ruby red hue Deep, earthy flavor Great for a variety of dishes Ideal Temperature: 33 F', 'Unbranded', 'https://i5.walmartimages.com/asr/c8c835e6-16c4-4762-a968-aeea73f1c99c.ea65c3b2a098d0adb0038dc929157642.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8c835e6-16c4-4762-a968-aeea73f1c99c.ea65c3b2a098d0adb0038dc929157642.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8c835e6-16c4-4762-a968-aeea73f1c99c.ea65c3b2a098d0adb0038dc929157642.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (632988327, '200pc Pto Red 5# Rpe', 794, '405509122831', 'short description is not available', '200pc Pto Red 5# Rpe', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (633453005, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '405528393380', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (633659600, 'Organic Cherry Tomato', 4.57, '405683707176', 'Organic Cherry Tomato', 'Organic Cherry Tomato', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (633680315, 'Acorn Squash', 1.18, '708789000159', 'Acorn Squash', 'Acorn Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/42805330-9346-4dd4-9362-9b71d0491d13.47ac454488713e49f4a0d82c51449b00.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42805330-9346-4dd4-9362-9b71d0491d13.47ac454488713e49f4a0d82c51449b00.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42805330-9346-4dd4-9362-9b71d0491d13.47ac454488713e49f4a0d82c51449b00.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (634298307, 'Papaya, 1 Each', 1.28, 'deleted_858335003025', 'Papaya, 1 Each', 'Papaya', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/9934a77b-a781-496c-a5ae-0d1367c1943a.f5365e7001fadd4b7ac631665888312b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9934a77b-a781-496c-a5ae-0d1367c1943a.f5365e7001fadd4b7ac631665888312b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9934a77b-a781-496c-a5ae-0d1367c1943a.f5365e7001fadd4b7ac631665888312b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (634503354, 'Fresh Purple Eggplant, pound', 1.47, '405878099833', 'Create something wholesome and delicious with Eggplant (Berenjena). Eggplants are incredibly versatile and can be used to make a myriad of different recipes. Try them coated in breadcrumbs and fried for a comforting side, or for a healthier option you can stuff them and roast them in the oven. They can also be used to make cheesy eggplant rollatini, decadent eggplant parmesan, and scrumptious eggplant ravioli. You can even incorporate them into hearty stews or use them to top pizzas and more. Use your imagination to create something amazing and tasty with this squash. The mouthwatering possibilities are endless with this hearty vegetable. Add something amazing to your meals with fresh Eggplant.', 'Versatile and delicious Try them coated in breadcrumbs and fried or a comforting side, or for a healthier option you can stuff them and roast them in the oven Can also be used to make cheesy eggplant rollatini, decadent eggplant parmesan, and scrumptious eggplant ravioli.', 'Unbranded', 'https://i5.walmartimages.com/asr/4f18c20a-cf3c-4f33-bca7-73caa1e2c18c.38bfeb59cacabea640eb3364ffec95a0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4f18c20a-cf3c-4f33-bca7-73caa1e2c18c.38bfeb59cacabea640eb3364ffec95a0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4f18c20a-cf3c-4f33-bca7-73caa1e2c18c.38bfeb59cacabea640eb3364ffec95a0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (634676528, 'Ready Pac Foods Bistro Apple Bleu Pecan Salad, 4.5 oz', 2.97, '077745295800', 'Arugula, Baby Greens, Apples, Praline Pecans with Bleu Cheese Balsamic Vinaigrette', 'Suitable for Vegetarians 240 Calories 3g Protein Fork Inside', 'Ready Pac Foods', 'https://i5.walmartimages.com/asr/a59a34af-e2f9-4c6a-8c27-5659e7a32da2.1f94672f446d68a6469d929efcc9ae59.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a59a34af-e2f9-4c6a-8c27-5659e7a32da2.1f94672f446d68a6469d929efcc9ae59.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a59a34af-e2f9-4c6a-8c27-5659e7a32da2.1f94672f446d68a6469d929efcc9ae59.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (634700883, '90pc Pto Rst 10# Ef', 444.6, '405547375534', 'short description is not available', '90pc Pto Rst 10# Ef', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (634795997, 'Large Avocado 3 Count Bag', 4.9, 'deleted_701080310927', 'short description is not available', 'Large Avocado 3 Count Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (634881886, 'Yellow Flesh Peaches, per Pound', 1.58, '405528359959', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (635640858, 'Fresh Bartlett Pears, 3 lb Bag', 4.67, '033383001272', 'Savor the sweet taste of Fresh Bartlett Pears. Bartlett Pears are aromatic and have a definitive pear flavor that make them great for breakfast, lunch, dinner, and dessert. Chop the pears up and add them to muffins with walnuts and vanilla for a sweet treat that’s great for breakfast to get your morning started on a high note. Slice them up and top a pizza with prosciutto, goat cheese, and arugula for a mouthwatering meal perfect for a family dinner or dinner party. Cut the pear in half and cook it in a skillet with butter, brown sugar, and vanilla and serve with a scoop of vanilla ice cream for a decadent dessert. Enjoy tasty meals any time of day with Fresh Bartlett Pears.', 'Fresh Bartlett Pears, 3 lb Bag Sweet, crisp, and juicy Excellent snacking pear Make a creamy smoothie or a nutritious juice blend Add to your salad for extra crunch and flavor Adds flavor to a variety of recipes Make pear butter or poached pears Make sweet desserts like pear cobbler, pear crisp or pear tarts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/044859e7-4495-4429-a7d5-57a35d54b7ac.8074ec2e6f35bed8159c3584304a0922.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/044859e7-4495-4429-a7d5-57a35d54b7ac.8074ec2e6f35bed8159c3584304a0922.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/044859e7-4495-4429-a7d5-57a35d54b7ac.8074ec2e6f35bed8159c3584304a0922.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (635696291, 'Fresh Red Grapes Seedless, 2 Lb', 5.97, 'deleted_095829210709', 'short description is not available', 'Fresh Red Grapes Seedless, 2 Lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/d123362f-7123-4c6a-ade6-841092e4dfe3.4b45dbed6bdee4034335d61adf47689d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d123362f-7123-4c6a-ade6-841092e4dfe3.4b45dbed6bdee4034335d61adf47689d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d123362f-7123-4c6a-ade6-841092e4dfe3.4b45dbed6bdee4034335d61adf47689d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (635708585, 'All Natural Chopped Sunflower Kale', 3.63, '071430000342', 'Dole Chop Kit Sunflower Crunch 1 Kt', 'Sunflower Crunch Chopped Kit', 'Dole', 'https://i5.walmartimages.com/asr/d5d1e359-543d-4fe3-9d91-a0ae163e3acd.eb9de1e7f2feef707cfd51f5d8a6ef0c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d5d1e359-543d-4fe3-9d91-a0ae163e3acd.eb9de1e7f2feef707cfd51f5d8a6ef0c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d5d1e359-543d-4fe3-9d91-a0ae163e3acd.eb9de1e7f2feef707cfd51f5d8a6ef0c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (635850555, 'Yellow Flesh Peaches, per Pound', 1.58, '400094703687', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (636148195, 'Rockit Apple', 0.01, '405732739691', 'short description is not available', 'Rockit Apple', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (636198423, 'Fresh Organic Whole Baby Bella Mushrooms, 16 oz', 5.62, 'deleted_037102281464', 'Experience the fresh taste of Organic Whole Baby Bella Mushrooms. Baby bella mushrooms look similar in size and shape to white mushrooms, but they\'re heartier and provide a deep earthy taste. They are just like portabella mushrooms but have been harvested just a few days before becoming large enough to fit a burger. This means they have that same firm, meaty texture you love about portabella caps, just in a tasty bite-size form. Their hearty, full-bodied taste makes them an excellent addition to beef, wild game and vegetable dishes. Plus, mushrooms are a natural source of the antioxidant selenium, making them an excellent addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try Organic Whole Baby Bella Mushrooms.', 'Organic Whole Baby Bella Mushrooms, 16 oz: 16-ounce package of organic whole baby bella mushrooms Naturally fat-free Cholesterol-free Low in calories, carbs and sodium Fresh and all natural Wash before use Natural source of the antioxidant selenium Excellent addition to beef, wild game and vegetable dishes', 'Monterey Mushrooms', 'https://i5.walmartimages.com/asr/15767202-08d2-434d-afa1-e0015eb11ca2_2.6195b8da50a357483e89dc2aa3d4c4b2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/15767202-08d2-434d-afa1-e0015eb11ca2_2.6195b8da50a357483e89dc2aa3d4c4b2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/15767202-08d2-434d-afa1-e0015eb11ca2_2.6195b8da50a357483e89dc2aa3d4c4b2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (636205260, 'Services Reduced Program Dept 94', 0.01, '251695000008', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (636236595, 'Watermelon Seedless', 4.48, '405503749010', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/333b3fa9-707c-4371-98bb-c5a2df213c91.6dbcf3af8086f7aeb3997fa322087cb1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/333b3fa9-707c-4371-98bb-c5a2df213c91.6dbcf3af8086f7aeb3997fa322087cb1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/333b3fa9-707c-4371-98bb-c5a2df213c91.6dbcf3af8086f7aeb3997fa322087cb1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (636241090, 'Fresh Opo Squash, Each', 3.05, '000000031417', 'Create something delicious with our fresh Opo Squash. Also known as bottle gourd or calabash, this tasty squash is used in cuisines around the world. You can use it in a stir-fry dish or use it to make a tasty soup with meatballs or your favorite fish. In the Philippines, it\'s used to make a popular dish called Ginisang Upo. However you choose to use them, this opo squash will add flavor and texture to any recipe. Explore new recipes and discover all the delicious ways to prepare this tasty and nutritious squash. Add something fresh and satisfying to your next meal with our Opo Squash.', 'Opo Squash, each: Extremely versatile vegetable Also known as the bottle gourd or calabash Perfect ingredient for cuisines from around the world Try in a stir-fry or a tasty soup Make Ginisang Upo Explore delicious new recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c0f6dac4-532f-443a-8a5b-b789a1058a09.585c97d487c9ca0d549a767706ff8c43.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c0f6dac4-532f-443a-8a5b-b789a1058a09.585c97d487c9ca0d549a767706ff8c43.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c0f6dac4-532f-443a-8a5b-b789a1058a09.585c97d487c9ca0d549a767706ff8c43.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (636789546, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094272626', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (636862014, 'Topline Orange Sweet Bell Pepper, 1 Each', 1.5, 'deleted_856122001438', 'Enhance your meals with the delicious flavor of Greenhouse grown Red Bell Peppers. Red bell pepper has a crisp flavor that enhances a variety of recipes. Dice bell peppers and put them in a hearty chili, slice them and add to a deli sandwich, saute them with onions and serve on a hoagie roll with a bratwurst, or stir-fry with thinly-sliced steak and serve with rice. A hollowed-out red bell pepper can be filled with sausage, mushrooms and rice to create a delicious stuffed pepper. They also taste delicious raw alongside other vegetables. Red Bell Peppers are an excellent item to have on hand.', 'Naturally low in calories, Exceptionally rich in vitamin C and other antioxidants Delicious cooked or uncooked Create delicious recipes with fresh red peppers', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/00e64d4c-dd5c-47ee-b909-1d8429bba5b8_1.761ddaf9b0d37dfb961ee480c520838a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/00e64d4c-dd5c-47ee-b909-1d8429bba5b8_1.761ddaf9b0d37dfb961ee480c520838a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/00e64d4c-dd5c-47ee-b909-1d8429bba5b8_1.761ddaf9b0d37dfb961ee480c520838a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (637309035, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094032305', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (637730559, 'Fresh Green Seedless Grapes', 30, '840001300019', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (638094370, 'Fresh Green Seedless Grapes', 3.27, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (638522240, 'Watermelon Seedless', 4.98, '400094544921', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (638533312, '240pc On Swt 3# Cj', 1044, '405541176878', 'short description is not available', '240pc On Swt 3# Cj', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (638537748, 'Mann\"s Organic Super Blend', 3.47, '716519048371', 'short description is not available', 'Mann\"s Organic Super Blend', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (638628040, 'Seeds of Change 1G Lettuce Green Romaine Vegetable Plant Seeds Full Sun', 2.69, '748404081798', 'Experience the euphoria of growing fresh, flavorful salads with our Green Romaine Lettuce Seeds. These seeds promise a bountiful harvest of long, broad leaves that hold together in perfect bunches. Not only can you enjoy the crisp and juicy texture of the lettuce, but you can also savor its unmatched sweetness. Our Green Romaine Lettuce Seeds are the perfect choice for any garden. Start cultivating your lettuce dreams today and create anything but ordinary salads. Grow lettuce like a pro with our premium seeds!', 'Sow directly in the garden as early as the soil can be made fine and loose. Plant seeds every 2 inches, covering firmly with soil. Thin plants to 8 inches apart when they are 2 inches tall. Light Needs: Full Sun Plant Lifecycle: Annual Hardiness Zones: 2 - 11', 'Seeds Of Change', 'https://i5.walmartimages.com/asr/353f40d5-3f9c-4dcd-a3a2-1b5d54fbd050.0c81b7339b0279352d1fd450f4b5e38c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/353f40d5-3f9c-4dcd-a3a2-1b5d54fbd050.0c81b7339b0279352d1fd450f4b5e38c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/353f40d5-3f9c-4dcd-a3a2-1b5d54fbd050.0c81b7339b0279352d1fd450f4b5e38c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (638705858, 'Fresh Dragon Fruit, Each', 4.96, '405529687945', 'Savor the flavors of the tropics when you bring home this sweet Dragon Fruit. Native to Central America and Mexico, this delectable fruit tastes like a combination of a pear and a kiwi. Enjoy this dragon fruit on its own or incorporate it into a variety of recipes. For breakfast, you can use it to make a nutritious and delicious smoothie or add it to a bowl of oatmeal. You can also use it to make a variety of desserts including a refreshing sorbet, a dragon fruit cheesecake, and even dragon fruit chocolate chip cookies. However you choose to use it, this fresh Dragon Fruit is sure to please the entire family.', 'Dragon Fruit, Each Tastes like a combination of a pear and a kiwi Tropical fruit native to Mexico and Central America Enjoy on its own or in a variety of recipes Use to make a delicious smoothie Make a refreshing sorbet Incorporate into your favorite adult beverage Also known as Pitaya, Pitahaya, and Strawberry Pear around the world', 'Fresh Produce', 'https://i5.walmartimages.com/asr/31d47a06-ed1a-479f-9ae2-4dd910134264.52e413fae85171f17e4f55fa3f131ebc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/31d47a06-ed1a-479f-9ae2-4dd910134264.52e413fae85171f17e4f55fa3f131ebc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/31d47a06-ed1a-479f-9ae2-4dd910134264.52e413fae85171f17e4f55fa3f131ebc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (638908858, 'Hot Peppers, 3 oz', 1.98, '684924040542', 'Hot Peppers will add heat and color to your favorite recipes. There are so many ways to incorporate these greenhouse-grown peppers into your favorite foods. Slice them and pickle them so you can have them ready to add to nachos, sandwiches, burritos, and tacos. Add them to a spicy beef and pepper stir fry or use them to add some heat to your homemade guacamole. If you\'re up to it, try them on their own for a fiery snack. These peppers are low in calories, and they\'re also a great source of vitamins. If you\'re looking for a crunchy kick of heat, grab some of these amazing Hot Peppers.', 'Hot Peppers, 3 oz: Colorful & spicy Pickle them & use on nachos, sandwiches, burritos & more Perfect for salsas & guacamole Add to your next stir fry or enchiladas Good source of vitamins Explore delicious new recipes', 'Pure Flavor', 'https://i5.walmartimages.com/asr/08ff33b3-5aac-4acf-91b8-28e7645c5022_1.d731cb94b0cb244fa539dcdd0288fb50.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/08ff33b3-5aac-4acf-91b8-28e7645c5022_1.d731cb94b0cb244fa539dcdd0288fb50.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/08ff33b3-5aac-4acf-91b8-28e7645c5022_1.d731cb94b0cb244fa539dcdd0288fb50.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (640791229, 'Organic Whole Rainbow Carrots, 2 Lb.', 2.46, '071464019792', 'Organic Whole Rainbow Carrots, 2 Lb.', 'Organic Whole Rainbow Carrots 2 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (641073929, 'Freshness Guaranteed Tri Pepper Diced 7 Oz', 2.58, '681131221689', 'short description is not available', 'Freshness Guaranteed Tri Pepper Diced 7 Oz', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (641074820, 'Realistic Faux Cherry Tomatoes Decoration, Red, 7-Inch', 9.95, '748708776383', 'Decorate your home with this wonderful realistic cherry tomatoes decoration. This decoration will be a great addition to your bowl filler for your kitchen, can be used for arts and crafts, DIY projects, party decorations and more. Features a realistic looking and sized cherry red tomatoes. Height: 7” Diameter: 3.25”', 'Realistic Faux Cherry Tomatoes Decoration, Red, 7-Inch', 'Homeford', 'https://i5.walmartimages.com/asr/ba2ca5fe-a712-4d92-aa26-cf2a72ee470e.ee899f969fe2c076032675cb1ddb461c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ba2ca5fe-a712-4d92-aa26-cf2a72ee470e.ee899f969fe2c076032675cb1ddb461c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ba2ca5fe-a712-4d92-aa26-cf2a72ee470e.ee899f969fe2c076032675cb1ddb461c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (641520900, 'Fresh Chilean Grown Yellow Peaches, 1 Lb.', 1.58, '405535036409', 'Fresh Chilean Grown Yellow Peaches, 1 Lb.', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (641577424, 'Fresh Large Hass Avocado Bag, 3- 4 Count', 3.48, '887214001517', 'Avocados aren’t just great-tasting fresh produce items, but they are a nutrient-dense fruit that can be enjoyed throughout the year. Hass avocados are a versatile ingredient with a creamy texture and mild flavor that can be used in many different types of recipes and dishes that are perfect for enjoying at barbecues and outdoor gatherings with friends and family during the summer. Enjoy Large avocados in countless ways that will make those barbecues and gatherings with family and friends even more exciting. Use avocados in flavorful recipes that everybody can share and enjoy while being together outside. Try avocados in individual Mexican food items like tacos or burritos, as part of appetizers like avocado crostini, or in a fresh guacamole or avocado dip so everybody can dip tortilla chips into something delicious. The possibilities are deliciously endless if you need additional food options for barbecues. Not only is a Large avocado a great ingredient to use in numerous ways, but it is also a healthy food that contributes unsaturated “good” fats and almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9. A Large ripe avocado will have a dark green to nearly black skin color, a bumpy skin texture and should yield to gentle pressure without leaving indentations or feeling mushy. Avocados with a slightly bumpy texture should be ripe in 1 to 2 days. They will also be somewhat firm and have a dark green and black speckled color. Once you’ve selected the perfect bag of avocados, you’ll be ready to enjoy all kinds of different healthy foods and recipes for the next time you’re enjoying an outdoor gathering with friends and families.', 'Bag of 3 to 4 Large Hass Avocados Fresh fruit with a creamy texture and mild flavor Fresh avocados are great for using in tacos, burritos, appetizers, avocado dip and fresh guacamole so that you have delicious food to share and enjoy during barbecues and the summer months A cholesterol free fruit that contains almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9 Large hass avocados are the lowest sugar fruit and provide unsaturated “good fats” that help absorb Vitamin A, Vitamin D, Vitamin K and Vitamin E Large ripe avocados will have dark green to nearly black skin color, a bumpy texture and should yield to gentle pressure without leaving indentations', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/5c798f29-e430-419a-b4aa-36c9ccc4ade2.0ac54bdc229519ee39f7188386f272d8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5c798f29-e430-419a-b4aa-36c9ccc4ade2.0ac54bdc229519ee39f7188386f272d8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5c798f29-e430-419a-b4aa-36c9ccc4ade2.0ac54bdc229519ee39f7188386f272d8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (642138883, 'Dry Japones Chile 8 oz', 3.94, '712810008076', 'Packaged Japones Chili Dried 8oz', 'Dry Japones Chile 8 oz', 'Miravalle', 'https://i5.walmartimages.com/asr/18c5684f-1874-48f2-8990-ae645f1c6f9a_1.2704976290d872ec3c5b307239bf7a3d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18c5684f-1874-48f2-8990-ae645f1c6f9a_1.2704976290d872ec3c5b307239bf7a3d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/18c5684f-1874-48f2-8990-ae645f1c6f9a_1.2704976290d872ec3c5b307239bf7a3d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (642384437, 'Hass Avocados, each', 0.78, '670561397606', 'Hass Avocado', 'Hass Avocado', 'Unbranded', 'https://i5.walmartimages.com/asr/2b8525e6-d603-483c-bd8b-97492ed7f5e1.d7349fb754f372c7cb90ec33c6244399.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2b8525e6-d603-483c-bd8b-97492ed7f5e1.d7349fb754f372c7cb90ec33c6244399.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2b8525e6-d603-483c-bd8b-97492ed7f5e1.d7349fb754f372c7cb90ec33c6244399.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (642388758, 'Fresh Mandarin , pound', 1.86, '405826276576', 'Enjoy the juicy goodness of citrus when you eat a Tangerine (Mandarina). Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Among the smallest fruits in the orange family, tangerines have a pleasing sweet-tart flavor and are typically seedless. Generally a winter fruit, tangerines are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the tangerines hang out in a bowl on your counter or table to breathe. Compact and portable, tangerines are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious Tangerines on hand for an easy, healthy treat.', 'Fresh, delicious, tangerine Pleasing sweet-tart flavor Excellent source of vitamin C, potassium, and folic acid For maximum flavor, do not refrigerate', 'Unbranded', 'https://i5.walmartimages.com/asr/69d185d0-ac33-4817-948d-843df37c9467.9b57ed646f5af610f5a679c4b2668765.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/69d185d0-ac33-4817-948d-843df37c9467.9b57ed646f5af610f5a679c4b2668765.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/69d185d0-ac33-4817-948d-843df37c9467.9b57ed646f5af610f5a679c4b2668765.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (642389399, 'Watermelon Seedless', 4.98, '400094479537', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (642733276, 'Fresh Slicing Tomato, 1lb Pack', 3.74, '405556009062', 'Bring the fresh, delicious taste of Slicing Tomatoes into your home. These tomatoes deliver sweet and juicy flavor with each bite and are an ideal ingredient in a variety of recipes. They would make a tasty, garden-inspired addition to salads, burgers, gourmet sandwiches, and so much more. They are picked at peak freshness and specially bred for deep red color, intense flavor, and higher lycopene content than standard tomatoes. Whether you slice or dice them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with these fresh Slicing Tomatoes.', 'Slicing Tomato, 1 lb Pack Wholesome, fresh, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, burgers, gourmet sandwiches, and more Add to party trays or school lunches Bred to have higher lycopene than standard tomatoes A good source of vitamin C, K, potassium and folate', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b8ec3dcc-c960-422d-b6e0-2357ea2ffa1f.8f077c19f547fd04eae261d7aa88e385.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b8ec3dcc-c960-422d-b6e0-2357ea2ffa1f.8f077c19f547fd04eae261d7aa88e385.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b8ec3dcc-c960-422d-b6e0-2357ea2ffa1f.8f077c19f547fd04eae261d7aa88e385.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (643042061, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094209004', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (643374627, 'Fresh Cauliflower Orange, each', 7.98, '405779412328', 'Cauliflower (1 each) is an outstanding addition to a menu. Often used as a carb substitute, it can also make a tasty starter or main entree item. This product is packed with vitamins and is low in fat. The Fresh cauliflower vegetable is also a superfood antioxidant and is simple to prepare in boiling water or by roasting in an oven.', 'Healthy side to any meal Ideal to use as a carb substitute Low-fat, contains vitamins and antioxidants Can be used to make starters and main dishes or served with dips', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (643663339, 'Watermelon Seedless', 4.98, '405504884093', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (643690716, 'Fresh Sweet Corn on the Cob, 4ct', 4.88, '850251002168', 'Treat everyone to the delicious taste of this Fresh Sweet Corn on the Cob. While sweet corn typically invokes images of summer barbeques, it has many health benefits. Sweet corn is a great source of vitamin A and C, with one ear of corn containing over 10% of the daily value of vitamin C and over 6% daily value of vitamin A. It\'s not truly summer until you\'ve had some Fresh Sweet Corn on the Cob - just add butter and salt', 'Fresh Corn on the Cob, 4 Pack Sweet gourmet corn on the cob Husked, field fresh, prewashed, and ready to eat Low in fat and cholesterol free Ideal for your next backyard barbecue or summer camp out May be cooked in the microwave, steamed or boiled', 'Unbranded', 'https://i5.walmartimages.com/asr/a1494139-471e-4991-9652-4a379d727856.31c4c613db4bda009bd2f27e625bd924.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a1494139-471e-4991-9652-4a379d727856.31c4c613db4bda009bd2f27e625bd924.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a1494139-471e-4991-9652-4a379d727856.31c4c613db4bda009bd2f27e625bd924.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (643959950, 'Mango', 0.78, '', 'short description is not available', 'Mango', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/e0470b35-2c4c-4482-836f-1cf3af53d3bc_3.9e34699d210056b33e0441dc58c8a17a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e0470b35-2c4c-4482-836f-1cf3af53d3bc_3.9e34699d210056b33e0441dc58c8a17a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e0470b35-2c4c-4482-836f-1cf3af53d3bc_3.9e34699d210056b33e0441dc58c8a17a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (644037491, 'California Grown Peaches, per Pound', 1.58, '400094009024', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (644342170, '8oz Chile Costeno by 1400s Spices', 14.97, '850035960387', 'At 1400S Spices, we pledged to deliver a wide range of spices, teas and seasonings that will stand out with the superior quality of the ingredients, delightful blends of flavors, and amazing natural properties. Our products are made with carefully selected, fresh and natural ingredients from reliable suppliers, and check all standards of safety and quality, so you can fully enjoy all the benefits from mother nature in your dietary regime. Not completely satisfied with your order? Don’t worry, we are always at your service to address any issues or concerns. Costeno Dried Peppers – Add Spiciness and Flavor to Your Dishes Our dried peppers will delight all your senses with their fruity aroma and lingering taste that will fill your mouth with savor and pleasant smoky flavors! The dried pepper pods have a beautiful, intense red color and fine texture that will make a great addition to traditional Mexican dishes, international dishes, and other delicious recipes, such as tamales, mole, chili, sauces, marinades, meat dishes or vegetable casseroles. Still not convinced? Here are some of the amazing features of this product: • Natural and fresh; • Dried as a whole for preserving the aroma and taste; • Extremely versatile and easy to use; • Great in combination with vegetables, meat, poultry, pork, cheese, garlic and other spices; • Can be used as a whole or ground; • Intense fruity aroma; • Fine red skin; • Heat sealed bag; Indulge in the authentic Mexican taste of the costeno chiles!', 'A Must for Spice Lovers: Whether you are a fan of spicy food or you want to add a little bit of heat to your dishes the dried chili peppers from 1400s Spices are a must-have in your kitchen! Fresh and intense, these dried pepper pods are a versatile cooking ingredient that will enrich your recipes! Fresh Chili Peppers: Our dried peppers are carefully picked fresh costeno chiles, which were naturally dried and packed in a heat sealed bag to preserve their aroma and freshness intact for longer, bringing intense flavor to your dishes! Intense and Flavorful: The 1400s Spices costeno dried chiles have a medium heat with smoky, pleasant notes that will satisfy the cravings for spicy lovers and add a balanced touch to various traditional recipes, Mexican food, or international cuisine. Unique Aroma and Texture: The costeno red chili peppers stand out with a complex fruity fragrance that leaves a long-lasting taste while the fine, red skin brings not only delight but also color to traditional dishes. Versatile Ingredient: These costeno chili peppers are versatile and full of flavor, so you can add the whole pods to your cooking or ground them for preparing Mexican dishes such as tamales, mole, sauces, salsa, making a great pair with pork, poultry, vegetables, and meat dishes.', '1400s Spices', 'https://i5.walmartimages.com/asr/1323c113-19d6-48b3-957f-e5d18bd9ba4b.1a5c0d802c0bf92bc3dad627634c28cc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1323c113-19d6-48b3-957f-e5d18bd9ba4b.1a5c0d802c0bf92bc3dad627634c28cc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1323c113-19d6-48b3-957f-e5d18bd9ba4b.1a5c0d802c0bf92bc3dad627634c28cc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (644647298, 'Watermelon Chunk 10oz', 6.84, '045009891204', 'Experience a burst of summertime goodness with this delicious Freshness Guaranteed Watermelon. This pre-cut ripe watermelon is juicy, sweet, and refreshing to the taste. In addition, watermelons are a great natural source of vitamins A and C. Carry them with you and eat them straight out of the tray any time you want, at home, or on-the-go. Pair them with a tasty salad or sandwich for a nutritious and delicious lunch. You can also use them as a naturally sweet ingredient in a fruit salad. Add some fresh fruit to your daily menu with this Freshness Guaranteed Watermelon.Freshness Guaranteed provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Watermelon Chunks, 10 oz: Ready to eat watermelon Great for fruit salad Summer treat Net weight 10 oz Sweet and Juicy', 'Fresh Produce', 'https://i5.walmartimages.com/asr/909ece1f-77de-4a39-b8d5-419c8f2b45ca.9bfd0fbade1a881d6ce00f1a8ef328c9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/909ece1f-77de-4a39-b8d5-419c8f2b45ca.9bfd0fbade1a881d6ce00f1a8ef328c9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/909ece1f-77de-4a39-b8d5-419c8f2b45ca.9bfd0fbade1a881d6ce00f1a8ef328c9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (644973584, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_405517441740', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (645365171, 'Red Potatoes, 5 Lb.', 5.48, 'deleted_033383510118', 'Red Potatoes, 5 Lb.', 'Red Potatoes 5 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9065eb31-250e-40a4-9830-67f5aeaf23af.52d20019eb0b09a827c0e0f048328f7c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9065eb31-250e-40a4-9830-67f5aeaf23af.52d20019eb0b09a827c0e0f048328f7c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9065eb31-250e-40a4-9830-67f5aeaf23af.52d20019eb0b09a827c0e0f048328f7c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (645460807, 'Freshness Guaranteed Fruit Cup To Go Summer Blend 5z', 1.98, '681131355094', 'short description is not available', 'Freshness Guaranteed Fruit Cup To Go Summer Blend 5z', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (646549102, 'Fresh Grape Tomato, 2.5 oz Cup', 1.48, '751666418851', 'Add color and flavor to your next meal with Grape Tomatoes. Similar to larger Roma tomatoes, grape tomatoes have a lower water content than cherry tomatoes, making them meatier, more flavorful, and even a little tidier with every bite. They are hardier and less fragile than a traditional tomato as well, so there\'s no need to worry about bruising either. Perfectly bite-sized, grape tomatoes are not only a simple and delicious addition to salads and pastas, but also serve as a quick and convenient snack all on their own. Plus, grape tomatoes have a longer shelf-life, which means it\'s perfectly fine to keep them in storage for several days at a time. All you have to do is grab and enjoy to experience the class tomato taste of Grape tomatoes.', 'Grape Tomatoes, 2.5 oz: Lower water content and longer shelf-life than cherry tomatoes Hardier and more resistant to bruising than traditional tomatoes Conveniently bite-sized Quick and excellent addition to salads and snack trays Best stored at room temperature out of sunlight', 'Fresh Produce', 'https://i5.walmartimages.com/asr/df5ed044-bded-4216-b14d-eddbc569333e.14855ff5c8b5b9e37a3aedc6c49acaf2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/df5ed044-bded-4216-b14d-eddbc569333e.14855ff5c8b5b9e37a3aedc6c49acaf2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/df5ed044-bded-4216-b14d-eddbc569333e.14855ff5c8b5b9e37a3aedc6c49acaf2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (646778728, 'Taylor Farms Tf Mexican Style Caesar Chicken Sld', 3.2, '030223060574', 'Taylor Farms Salad Mexican', 'Salad, with Chicken, Mexican Inspired Caesar', 'Taylor Farms', 'https://i5.walmartimages.com/asr/59dbc2b1-e665-4cf3-91b6-899bbcf4fc3a.ca4bfed561e24646cc8eae25827d5156.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59dbc2b1-e665-4cf3-91b6-899bbcf4fc3a.ca4bfed561e24646cc8eae25827d5156.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59dbc2b1-e665-4cf3-91b6-899bbcf4fc3a.ca4bfed561e24646cc8eae25827d5156.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (646842793, 'Gourmet Garden Gluten Free Roasted Garlic Stir-in Paste, 4.0 oz Tube', 3.94, '875208001544', 'Gourmet Garden Gluten Free Roasted Garlic Stir-in Paste, 4 oz Tube. Roasty-toasty garlic flavor without the pungent smell of garlic on your fingers? It\'s possible, thanks to Gourmet Garden Roasted Garlic Stir-in Paste, our ready-to-use, crushed roasted garlic that enhances almost any food…meats, chicken, soups, marinades, stir-fries or dips to name a few. Packed inside each squeezable tube you\'ll find garlic that\'s been slowly roasted and smoothly crushed to deliver a warm, caramelized garlic punch. Our garlic paste is at its best flavor, color and aroma when it reaches your family\'s table. Use at the end of your cooking to add roasted sweet flavor to sautéed mushrooms, garlic bread, creamy pasta sauces and roasted veggies. Use 1 teaspoon of paste in place of 1 medium garlic clove. Store refrigerated for weeks after opening. This Gourmet Garden Roasted Garlic Stir-in Paste is in a Plastic tube that is 4 ounces. Store this Refrigerated item at an ambient temperature.', 'Gourmet Garden Gluten Free Roasted Garlic Stir-in Paste, 4 oz Tube Roasted, crushed garlic packed into a convenient squeezable tube No prep necessary Stays fresh in refrigerator for weeks after opening Gluten Free Adds sweet, caramelized flavor to garlic bread, pasta sauces, soups & veggies Use 1 tsp. of paste in place of 1 medium garlic clove This product is in a Plastic Tube', 'Gourmet Garden', 'https://i5.walmartimages.com/asr/d1bdc60e-1c29-45cd-b07c-46476b717646.de52bea8332a13bb9a97a3757fa0fd24.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d1bdc60e-1c29-45cd-b07c-46476b717646.de52bea8332a13bb9a97a3757fa0fd24.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d1bdc60e-1c29-45cd-b07c-46476b717646.de52bea8332a13bb9a97a3757fa0fd24.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (646929753, 'Fresh Green Beans', 1.78, 'deleted_033383701561', 'short description is not available', 'Fresh Green Beans', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (647019055, 'Organic Ambrosia Apples 2 Lb Bag', 2.94, '847473005435', 'short description is not available', 'Apples, Organic Minimum diameter: 2-3/8 inch. USDA Organic. Certified organic by Certifie Biologique par Washington State Department of Agriculture. Naturally pure, from our backyard to yours. US extra fancy. www.cmiorchards.com. www.daisygirlorganics.com. Facebook. /daisygirlorganics. Product of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f7bdda11-264a-4934-a1c0-dd341e3821c0.25c0b3cb9220b7ec3006320f32d0b00a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f7bdda11-264a-4934-a1c0-dd341e3821c0.25c0b3cb9220b7ec3006320f32d0b00a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f7bdda11-264a-4934-a1c0-dd341e3821c0.25c0b3cb9220b7ec3006320f32d0b00a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (647155784, 'Watermelon Seedless', 4.98, '400094985564', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (647792329, 'Green Giant Fresh Brussels Sprouts & Baby Potatoes', 3.98, '605806000591', 'Green Giant™ Fresh Brussels Sprouts & Baby Potatoes.Great for roasting, sauteing and more!Quick cooking!Gluten free.Per Serving:50 Calories.0g Sat fat, 0% DV.15mg Sodium, 1% DV.2g Sugars.Net Wt 16 oz (1 lb) (454 g). Perishable, keep refrigerated.', 'Brussels Sprouts & Potatoes 16oz', 'Green Giant', 'https://i5.walmartimages.com/asr/31923c95-5dab-4937-84a3-8c1dbec40956_1.ffa047b3a87acb05e83eb7e93f4a8db5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/31923c95-5dab-4937-84a3-8c1dbec40956_1.ffa047b3a87acb05e83eb7e93f4a8db5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/31923c95-5dab-4937-84a3-8c1dbec40956_1.ffa047b3a87acb05e83eb7e93f4a8db5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (648917946, 'Fresh Red Seedless Grapes', 2.88, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (648931838, 'Veggie Tray 48oz', 22.98, '045009891327', '48oz assorted veggie tray', 'Veggie Tray 48oz', 'Homestyle', 'https://i5.walmartimages.com/asr/33cac2d5-4358-4600-a85e-16bc9d4f64e4.27736482e86cf3ed14ac729915c003ad.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/33cac2d5-4358-4600-a85e-16bc9d4f64e4.27736482e86cf3ed14ac729915c003ad.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/33cac2d5-4358-4600-a85e-16bc9d4f64e4.27736482e86cf3ed14ac729915c003ad.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (649064802, '200pc Pto Rst 5# Wa', 648, '405531130149', 'short description is not available', '200pc Pto Rst 5# Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (649701131, 'Fresh Hydroponic Grown Strawberries, 1 lb Container', 5.72, '086951000030', 'The sweet, juicy flavor of Hydroponic Strawberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. They contain essential vitamins and nutrients like vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Hydroponic Strawberries today and savor the natural delectable flavor.', 'Premium selection Prior to serving gently wash the strawberries and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b72a1d68-d4a1-4b9f-a42f-a0944ef1b8f9.7921f4e711ab8be32944328c3acbbb27.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b72a1d68-d4a1-4b9f-a42f-a0944ef1b8f9.7921f4e711ab8be32944328c3acbbb27.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b72a1d68-d4a1-4b9f-a42f-a0944ef1b8f9.7921f4e711ab8be32944328c3acbbb27.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (649998650, 'Boston Lettuce, 1 Each', 2.98, '684924050435', 'Boston Lettuce, 1 Each', 'Boston/butter Green Lettuce', 'Fresh Produce', 'https://i5.walmartimages.com/asr/13325fab-6eed-424f-84f4-f43ed744e20b.8a5e3a295bea159f913808eb263d1d3c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13325fab-6eed-424f-84f4-f43ed744e20b.8a5e3a295bea159f913808eb263d1d3c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13325fab-6eed-424f-84f4-f43ed744e20b.8a5e3a295bea159f913808eb263d1d3c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (650088511, 'Freshness Guaranteed Chunky Avocado Spread, 15 oz', 5.23, '681131276450', 'Freshness Guaranteed Chunky Avocado Spread is bursting with bold Mexican flavors. Spread this fresh avocado dip made from Hass avocados on toasted whole wheat toast and serve with scrambled egg whites and fresh fruit for a healthy breakfast. Get creative and mix this chunky spread with homemade salsa and peppers to make a zesty dip for game night, or add to sandwiches, wraps and burgers to ensure a mouthful of flavor in every bite. This versatile spread is great for get togethers, parties or any occasion with family and friends! Add the fresh flavor of Freshness Guaranteed Chunky Avocado Spread to your next meal. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Spark Fresh item.', 'Freshness Guaranteed Chunky Avocado Spread, 15 oz: Product of Mexico Made from Hass avocados Great to serve with chips Excellent addition to burgers, wraps and sandwiches', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7177b4fb-dba9-4c97-9321-b6628f5fd52f.f2ab950ce3b77d7c70a990aed5731f2e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7177b4fb-dba9-4c97-9321-b6628f5fd52f.f2ab950ce3b77d7c70a990aed5731f2e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7177b4fb-dba9-4c97-9321-b6628f5fd52f.f2ab950ce3b77d7c70a990aed5731f2e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (650295410, 'Fresh Red Grapefruit, 3lb Bag', 5.27, '605049465720', 'Grapefruit is the perfect balance between tart and sweet. The balance between tart and sweet is great for both savory and sweet dishes any time of day. Enjoy half of a grapefruit sprinkled with sugar with some eggs in the morning for a light, sweet breakfast. Slice it up and put in a salad with spinach, avocado, and red onion topped with a mustard and balsamic vinegar dressing for lunch or dinner. Make delicious grapefruit bars that showcase the sweet and tartness of this versatile fruit. For an adult recipe juice the grapefruit and pair with some simple syrup and alcohol for a refreshing cocktail. This fruit is the perfect addition to a healthy diet as it is a great source of vitamin C and vitamin A. With such versatility, Grapefruit will become a pantry staple in your home.', 'Bursting with delicious juice and boasting a distinct tangy flavor, the fresh grapefruit pack a offers a nutritional punch withmany culinary uses. Refreshing and tangy: Grapefruit is known for its vibrant flavor profile, with a perfect balance of refreshing citrus notes and a tangy kick. Its zesty and invigorating taste can awaken your senses and leave you feeling energized. Immune-boosting powerhouse: Packed with essential vitamins like vitamin C, grapefruit is a natural immune booster. Its high antioxidant content helps protect the body against free radicals and supports overall health and wellness. Versatile and nutritious: Grapefruit is a versatile fruit that can be enjoyed in various ways. Whether you prefer it fresh, juiced, or added to salads and desserts, this citrus fruit is not only delicious but also a great source of vitamins, minerals, and fiber. It\'s a nutritious addition to any balanced diet.', 'Sunkist Growers', 'https://i5.walmartimages.com/asr/13e8aae4-61d1-44b3-b703-39082ec840e8.083d5fae8267df88814795582fb77ab3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13e8aae4-61d1-44b3-b703-39082ec840e8.083d5fae8267df88814795582fb77ab3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13e8aae4-61d1-44b3-b703-39082ec840e8.083d5fae8267df88814795582fb77ab3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (651012735, 'Sweet Twister Peppers', 3.98, 'deleted_885773045928', 'short description is not available', 'Sweet Twister Peppers', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (651171434, 'Plum, Each', 0.5, '405753577562', 'short description is not available', 'Plum, Each', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (651417486, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094674000', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (651661577, 'Organic Whole White Mushrooms 8oz', 2.68, 'deleted_631661999831', 'short description is not available', 'Organic Whole White Mushrooms 8oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (651664268, 'Sunset Flavor Bombs Cherry Tomatoes on the Vine, 14.0 OZ', 3.27, 'deleted_057836022492', 'Sunset Flavor Bombs Cherry Tomatoes on the Vine. Sunset® Flavor Bombs™ Cherry Tomatoes on the Vine. 397 g 14 oz.', 'Sunset Tomatoes Flavor Bombs 12/1lb', 'Sunsets', 'https://i5.walmartimages.com/asr/7ae5c1b3-ba28-4823-89d8-59a18f7ea797_1.1e5f1675424f19ae0104a860ef76000f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7ae5c1b3-ba28-4823-89d8-59a18f7ea797_1.1e5f1675424f19ae0104a860ef76000f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7ae5c1b3-ba28-4823-89d8-59a18f7ea797_1.1e5f1675424f19ae0104a860ef76000f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (651672887, 'Freshness Guaranteed Veggie Tray W/greek Yogurt Ranch Dip 36z', 9.98, '681131180726', 'short description is not available', 'Freshness Guaranteed Veggie Tray W/greek Yogurt Ranch Dip 36z', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (651852261, 'Marketside Beyond Zero Pesticides Baby Spinach, 4 oz Clam Shell, Fresh', 2.98, '194346001514', 'Enjoy the fresh flavor of Marketside Beyond Baby Spinach. These greens are indoor and vertically grown for peak-season freshness all year long. Indoor vertical farms are a controlled growing environment giving each plant the optimal amount of light and nutrients for fresh and flavorful produce any time of the year. Farming vertically means our produce can be grown using significantly less water and land than traditional outdoor farms. Create something delicious with Marketside Beyond Baby Spinach. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Beyond Baby Spinach, 4 oz: Fresh and flavorful baby spinach Indoor and vertically grown for peak-season freshness all year long No pesticides, herbicides or fungicides applied to our greens Convenient peel and reseal packaging Keep refrigerated until ready to enjoy', 'Marketside Beyond', 'https://i5.walmartimages.com/asr/68dfc747-b785-4c1a-bf29-06dcda064edd.cdea65ded23f538d80b2ca5e27bd9bee.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68dfc747-b785-4c1a-bf29-06dcda064edd.cdea65ded23f538d80b2ca5e27bd9bee.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68dfc747-b785-4c1a-bf29-06dcda064edd.cdea65ded23f538d80b2ca5e27bd9bee.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (651945890, 'Fresh Red Seedless Grapes', 0.98, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/5493d63f-83f4-4b9f-8c8d-41134800c242_2.99a0bc48757165f0761b10f8d8f14d41.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5493d63f-83f4-4b9f-8c8d-41134800c242_2.99a0bc48757165f0761b10f8d8f14d41.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5493d63f-83f4-4b9f-8c8d-41134800c242_2.99a0bc48757165f0761b10f8d8f14d41.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (652348466, '240pc On Ylw 3# Or', 475.2, '400094040140', 'short description is not available', '240pc On Ylw 3# Or', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (652727322, 'Fresh Red Seedless Grapes', 1.98, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (653414821, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094943700', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (653562102, 'Fuji Apples, 4 Count', 2.2, '883391004327', 'Treat yourself to the delicious, crisp taste of Fuji Apples. These apples are known for their light red and yellow skin and mild yet sweet taste. Enjoy one with breakfast or lunch or as a fresh snack anytime of day. Best of all, these delicious apples hold up well when cooked and can be used in both savory and sweet dishes. They can be roasted, sautéed, or boiled into a delicious sauce that pairs perfectly with pork. Try incorporating them into soups and compotes or using to make yummy jam or juice. Use them to create apple crisp, pie and strudel for a sweet treat. You can even pair them with sharp cheeses and crackers to create a stunning appetizer cheese board to share with guests. The possibilities are endless with Fuji Apples.', 'Fuji Apples, 4 Count: Includes 4 deliciously crisp apples Mildly sweet flavor Can be enjoyed fresh or cooked in to both savory and sweet dishes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/20cad9b8-2850-4fc5-8bbb-416a786862fb_2.960e982dda71f06809aea4b5c4889f76.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20cad9b8-2850-4fc5-8bbb-416a786862fb_2.960e982dda71f06809aea4b5c4889f76.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20cad9b8-2850-4fc5-8bbb-416a786862fb_2.960e982dda71f06809aea4b5c4889f76.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (653757567, '18pc Apl Rockit 3lb', 116.46, '405682852495', 'short description is not available', '18pc Apl Rockit 3lb', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (653815703, 'Pepper Mini Sweet', 2.98, 'deleted_626074001783', 'short description is not available', 'Pepper Mini Sweet', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (654547565, 'Freshness Guaranteed Fresh Green Seedless Grapes', 2.28, '', 'short description is not available', 'Freshness Guaranteed Fresh Green Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (655232488, 'Tom Grape 10oz', 2.48, '092504767343', 'short description is not available', 'Tom Grape 10oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (655765152, 'Mandarina Clemenvilla', 1.86, '405712775237', 'Mandarina Clemenvilla', 'Mandarina Clemenvilla #35', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (655770141, 'Green Giant Asparagus Spears (15 oz.,4 pk.)', 33.99, '722649453749', 'Green Giant Asparagus Spears (15 oz.,4 pk.)', 'Delicious hand selected asparagus spears!', 'Mold Armor', 'https://i5.walmartimages.com/asr/bc30da2f-443c-4b1b-9ac8-cf6745d249e7.3dc56a55c0c85f11ee849c0f01ee9d4e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc30da2f-443c-4b1b-9ac8-cf6745d249e7.3dc56a55c0c85f11ee849c0f01ee9d4e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc30da2f-443c-4b1b-9ac8-cf6745d249e7.3dc56a55c0c85f11ee849c0f01ee9d4e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (656076643, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094346631', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (656514880, 'Ready Pac Foods Bistro Buffalo Style Salad with Chicken and Buffalo Style Ranch Dressing, 6.5 oz', 2.98, '077745272115', 'Vegetable Blend, Roasted White Meat Chicken, Carrots, Bleu Cheese and Texas Toast Crouton Crumble with Buffalo Style Ranch Dressing Fresh Air Seal - Lets Veggies Breathe™', '260 Calories 10g Protein', 'Ready Pac Foods', 'https://i5.walmartimages.com/asr/762153b9-dd97-4725-9cf9-9ecb2ce241e0.417e990084f4a63d61f9b00c8746db32.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/762153b9-dd97-4725-9cf9-9ecb2ce241e0.417e990084f4a63d61f9b00c8746db32.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/762153b9-dd97-4725-9cf9-9ecb2ce241e0.417e990084f4a63d61f9b00c8746db32.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (656658401, 'Sweet Onions, 2 Count', 2.48, '811289020067', 'Sweet Onions, 2 Count', 'Sweet Onion 2 Ct Sleeve Pack', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e2a0de20-be0c-4c8a-b0e4-494b0d04bf00.b23b4ac94fca2caedfba5e336c5ddcff.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2a0de20-be0c-4c8a-b0e4-494b0d04bf00.b23b4ac94fca2caedfba5e336c5ddcff.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2a0de20-be0c-4c8a-b0e4-494b0d04bf00.b23b4ac94fca2caedfba5e336c5ddcff.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (657339515, 'Fresh Organic Romaine Lettuce, Each', 2.16, '033383904092', 'Make salads and sandwiches sing with Organic Romaine Lettuce. This crisp, flavorful lettuce is a staple in Caesar and mixed green salads, deli sandwiches and more, with a cool, refreshing crunch in every bite. Trader Joe\'s romaine lettuce is premium quality and completely organic, crafted without pesticides or herbicides. It contains no fat, no cholesterol, no sodium, no sugar and just eight calories per one cup serving. The whole-leaf lettuce is picked at the peak of flavor and comes ready to chop or use in sandwiches, lettuce cups and more. Trader Joe\'s lettuce should be washed before serving or dicing.', 'Make salads and sandwiches sing with Organic Romaine Lettuce. This crisp, flavorful lettuce is a staple in Caesar and mixed green salads, deli sandwiches and more, with a cool, refreshing crunch in every bite. Trader Joe\'s romaine lettuce is premium quality and completely organic, crafted without pesticides or herbicides. It contains no fat, no cholesterol, no sodium, no sugar and just eight calories per one cup serving. The whole-leaf lettuce is picked at the peak of flavor and comes ready to chop or use in sandwiches, lettuce cups and more. Trader Joe\'s lettuce should be washed before serving or dicing.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/141f0676-09af-4081-ac13-372ba8bd4c52.871f1f2cb031e35690c3141d8323fbdf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/141f0676-09af-4081-ac13-372ba8bd4c52.871f1f2cb031e35690c3141d8323fbdf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/141f0676-09af-4081-ac13-372ba8bd4c52.871f1f2cb031e35690c3141d8323fbdf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (657449604, 'Services Reduced Program Dept 94', 0.01, '251677000002', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (657543037, 'Cherry on the Vine Tomato, 12 oz Package', 3.98, 'deleted_689259004924', 'Fresh Cherry on the Vine Tomatoes are the perfect cooking tomato. Because of their notable flavor and thicker skin, they are a versatile tomato option that\'s fit for grilling, sauteing, roasting, or baking. Their small size also makes them a quick and simple addition to a fresh salad as well as an excellent finger food for whenever you\'re in the mood for a light snack. Packed with nutrients, cherry on the vine tomatoes are a deliciously healthy ingredient that adds both vibrant color and mouthwatering flavor to any recipe. For the best flavor and freshness, store these tomatoes at room temperature on your kitchen counter. Make your next meal a marvelous one with Cherry on the vine Tomatoes from Walmart.', 'Cherry on the Vine Tomato, 12 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/58f7fda5-2b5f-4b97-8ebb-30cf97ee6cf9.f29785bf74753d7ebddfe7b674383158.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58f7fda5-2b5f-4b97-8ebb-30cf97ee6cf9.f29785bf74753d7ebddfe7b674383158.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58f7fda5-2b5f-4b97-8ebb-30cf97ee6cf9.f29785bf74753d7ebddfe7b674383158.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (657676379, 'Large Avocado 2 Count Bag', 4.48, 'deleted_636442320101', 'short description is not available', 'Large Avocado 2 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (657687086, 'California Grown Peaches, per Pound', 1.58, '400094439272', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (658243966, 'Lime Thyme Potato Tray', 0.01, '405857386534', 'short description is not available', 'Lime Thyme Potato Tray', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (658330998, 'Services Reduced Program Dept 94', 0.01, '251713000003', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (659261813, 'Fresh Green Bananas, Bunch, Sweet', 1.13, '000000042314', 'Our fresh bananas are made with organic ingredients and are the perfect healthy snack! These sweet and delicious fruits are filled with essential vitamins and minerals that provide energy and help maintain a balanced diet. Enjoy them as a quick on-the-go snack or add them to smoothies and desserts for a delicious treat. Trust us, you won\'t be disappointed!', 'Whole green bananas are a type of fresh produce that can be consumed in their unripened state, offering a different taste and texture compared to their ripe, yellow counterparts. As a fresh produce item, green bananas maintain their full nutritional value, providing essential vitamins, minerals, and a higher amount of resistant starch, which can benefit gut health and digestion. When consumed whole and unripe, green bananas have a firmer texture and a mildly sweet, starchy taste, making them suitable for various culinary applications such as boiling, frying, or incorporating into savory dishes.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7a2714ba-f92e-487e-a400-bb521c25a553.68aaa773a1a49cc7f86547bd3718b9fb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7a2714ba-f92e-487e-a400-bb521c25a553.68aaa773a1a49cc7f86547bd3718b9fb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7a2714ba-f92e-487e-a400-bb521c25a553.68aaa773a1a49cc7f86547bd3718b9fb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (659576302, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094987117', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (660146126, '75pc Orange Navel 8#', 589.5, '405791273402', 'short description is not available', '75pc Orange Navel 8#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (660422356, 'Watermelon Seedless', 4.98, '400094373347', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (660586376, 'Acorn Squash', 0.77, '', 'Acorn Squash', 'Acorn Squash', 'Fresh Produce', 'https://i5.walmartimages.com/asr/daf77412-3612-43bc-bfaf-5ef228abae6d.834dcfdb96f9856e465e5718fe558dd3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/daf77412-3612-43bc-bfaf-5ef228abae6d.834dcfdb96f9856e465e5718fe558dd3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/daf77412-3612-43bc-bfaf-5ef228abae6d.834dcfdb96f9856e465e5718fe558dd3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (660841371, 'Freshness Guaranteed Fruit Cup To Go Tropical Blend 5z', 1.98, '681131355100', 'short description is not available', 'Freshness Guaranteed Fruit Cup To Go Tropical Blend 5z', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (661140012, 'Purple Eggplant', 1.42, '858491003013', 'Eggplant', 'Purple Eggplant', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/f7399661-3d47-4ba7-9792-249286158ea9.78955c98fbb1a2424cdf601e5bd2431a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f7399661-3d47-4ba7-9792-249286158ea9.78955c98fbb1a2424cdf601e5bd2431a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f7399661-3d47-4ba7-9792-249286158ea9.78955c98fbb1a2424cdf601e5bd2431a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (661337884, 'Idaho Potatoes, 5 Lb.', 2.42, 'deleted_017367050012', 'Idaho Potatoes, 5 Lb.', 'Idaho Potatoes 5 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/fdc11b8a-ef47-4f78-8527-5d8326ef6a92.09b3966a341ca2a62fe859971fe5687a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fdc11b8a-ef47-4f78-8527-5d8326ef6a92.09b3966a341ca2a62fe859971fe5687a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fdc11b8a-ef47-4f78-8527-5d8326ef6a92.09b3966a341ca2a62fe859971fe5687a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (661542613, 'Fresh Apple Kanzi, 2LB Bag', 4.44, '847473004421', 'Treat your family to the wildly juicy, sweet and crisp taste of Kanzi Apples. With a classic apple cider flavor, these apples have a firm texture with flesh that is slow to brown. This variety was developed in New Zealand by master farmers and now grown in Zillah, Washington. A crossing of Braeburn and Gala varieties, this apple fruit is always cross-pollinated to ensure genetic diversity. Kanzi Apples retain their white color long after you\'ve cut them open, which ensures that your refreshing fruit salads and other desserts look beautiful and appetizing. Free of gluten, fat and cholesterol, these apples are a wholesome way to indulge your sweet tooth.', 'Excellent snacking apple Make a creamy smoothie or a nutritious juice blend Free from genetic modification Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp & apple pie', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a6b00bf2-7f51-421a-8fd3-622cea15906f.f4e6ebab732d05e65b0a2a868b742190.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6b00bf2-7f51-421a-8fd3-622cea15906f.f4e6ebab732d05e65b0a2a868b742190.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6b00bf2-7f51-421a-8fd3-622cea15906f.f4e6ebab732d05e65b0a2a868b742190.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (661843433, '240pc On Ylw 3# Lm', 465.6, '400094669518', 'short description is not available', '240pc On Ylw 3# Lm', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (661957064, '2# Bag Lemons', 3.92, 'deleted_072240800825', 'short description is not available', '2# Bag Lemons', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (662059829, 'Watermelon Seedless', 4.48, '400094408216', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (662060903, 'Services Reduced Program Dept 94', 0.01, '251868000002', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (662155265, '180pc Apple Gala 3#', 768.6, '400094768839', 'short description is not available', '180pc Apple Gala 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (662512669, '500lb Bin Green Cabbage', 340, '405794790340', 'When looking for a delicious snack or meal and want diversity in how you can prepare your food then, reach for fresh green cabbage. It is farm fresh and you can prepare it in many different ways including making coleslaw, sauerkraut, you can fry it, boil it or even eat it raw and it pairs great in a salad. Cabbage is excellent for your digestive system, can help lower cholesterol and is packed with Vitamin C.', 'Fresh Green cabbage is delicious and great for you! Cabbage can lower blood pressure Cabbage can lower cholesterol Cabbage is very good for your digestive system Cabbage is packed with Vitamin C', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1d7a3156-f0a5-470c-a9f4-de9f23a3c2f2.17439e2438c4d52c5af94045c9f78f13.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d7a3156-f0a5-470c-a9f4-de9f23a3c2f2.17439e2438c4d52c5af94045c9f78f13.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d7a3156-f0a5-470c-a9f4-de9f23a3c2f2.17439e2438c4d52c5af94045c9f78f13.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (662523797, 'peru food garlic paste - ajo en pasta, 7.5 oz', 11.28, '812125009239', 'garlic paste;ajo en pasta;7.5 oz. jar;fresh;imported from peruSKU:ADIB00AEDLNAO', 'How to Enjoy Peru Food Garlic Paste Peru Food Garlic Paste makes cooking easier and more flavorful. Add a spoonful to marinades for meats, stir it into soups and stews, or use it as a base for sautéing vegetables. It’s a time-saving solution for creating restaurant-quality meals at home. Whether you\'re preparing a traditional Peruvian dish or experimenting with international cuisines, this garlic paste is your secret weapon for adding depth and richness to any recipe. Product Highlights Authentic Flavor: Made from fresh, high-quality Peruvian garlic for an unmatched taste. Versatile Use: Perfect for marinades, sauces, stir-fries, and more. Convenient: Ready-to-use paste saves you the hassle of peeling and chopping garlic. Premium Quality: Crafted with care to ensure a smooth, rich texture and bold flavor. Generous Size: Comes in a 7.5oz jar, offering plenty of paste for multiple meals. Ingredients Peru Food Garlic Paste is made with a simple yet powerful blend of ingredients: fresh garlic, sunflower oil, and a pinch of salt. The natural garlic flavor is preserved without any artificial additives or preservatives, making it a wholesome choice for your kitchen. Key Words Garlic Paste, Peruvian Garlic, Ajo en Pasta, Cooking Paste, Latin American Flavors, Easy Cooking, Marinade Ingredient, Peruvian Cuisine, Garlic Lovers, 7.5oz Garlic Paste, Garlic Puree, Authentic Garlic Taste, Peru Food Products, Latin Kitchen Essentials, Fresh Garlic Paste.', 'Peru Food', 'https://i5.walmartimages.com/asr/fb644c3c-4a34-4e31-813c-6336acebcaf3.7964f412b7e22b5f10444574b72371db.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb644c3c-4a34-4e31-813c-6336acebcaf3.7964f412b7e22b5f10444574b72371db.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb644c3c-4a34-4e31-813c-6336acebcaf3.7964f412b7e22b5f10444574b72371db.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (662554369, '120pc Apple Fuji 5#', 600, '405672893453', 'short description is not available', '120pc Apple Fuji 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (662899001, '180pc Pto Rst 10#ipp', 799.2, '400094917886', 'short description is not available', '180pc Pto Rst 10#ipp', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (662973428, 'Fresh Keylimes, 1 lb Bag', 2.98, 'deleted_744430275545', 'Add zest and flavor to your meals and beverages with these Key Limes. Freshly squeezed limes provide a healthy dose of vitamin C to your diet and are a key ingredient in many recipes, from homemade salsa to chicken dishes. The citrusy tropical flavor of these limes are sure to add a zing to all your cooked meals. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use them when baking cakes, cookies, and tarts. These limes are sold in a one-pound bag, so you\'ll have plenty for all your culinary creations. Enjoy the refreshing, tart flavor of Key Limes. Available in a 1 lb bag.', 'Fresh and juicy key limes Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies, and tarts Refreshing, tart flavor', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/e8d4639e-f09a-44b4-934a-f1adcbf0b5df.a77b2d505e0395abdcf2fbdfdd24aa91.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e8d4639e-f09a-44b4-934a-f1adcbf0b5df.a77b2d505e0395abdcf2fbdfdd24aa91.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e8d4639e-f09a-44b4-934a-f1adcbf0b5df.a77b2d505e0395abdcf2fbdfdd24aa91.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (663225988, '200pc Pto Ykn 5# Id', 694, '405511869649', 'short description is not available', '200pc Pto Ykn 5# Id', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (663257913, '160pc On Vid 4# Gash', 630.4, '405514342712', 'short description is not available', '160pc On Vid 4# Gash', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (663383108, 'Freshness Guaranteed Seasonal Fruit Blend 32 Oz', 8.38, 'deleted_681131036634', 'short description is not available', 'Freshness Guaranteed Seasonal Fruit Blend 32 Oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (663386169, 'Baby Kale', 3, '815063020212', 'Baby Kale', 'New look, same greens: Dream Greens is now AeroFarms!,Sustainably Grown Indoors,No Pesticides Ever,Locally Grown in NJ,Non-GMO Verified,No Washing Needed,B Corporation Certified,Grown using up to 95% less water, 99% less land than field farming,40% Less Plastic, Post-Consumer Recycled Trays,OU Kosher', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2cbb9888-5cc5-4a96-a14a-e7e10f1ae8cc.ec7aed2220fc063f32b207346fd179ef.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2cbb9888-5cc5-4a96-a14a-e7e10f1ae8cc.ec7aed2220fc063f32b207346fd179ef.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2cbb9888-5cc5-4a96-a14a-e7e10f1ae8cc.ec7aed2220fc063f32b207346fd179ef.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (663780191, 'California Grown Peaches, per Pound', 1.58, '400094272909', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (663885752, 'California Grown Peaches, per Pound', 1.58, '400094032374', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (663916209, 'Fresh Black Seedless Grapes', 1.88, 'deleted_014668760213', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (664006439, 'Iceberg Lettuce, 1 Each', 1.74, 'deleted_885460000049', 'Treat yourself to the fresh, crisp taste of Iceberg Lettuce. This lettuce is loaded with nutrients, has a mild sweetness, and is highly crisp for a perfect bite every time. You can use it to create your very own personalized salad tossed with your favorite vegetables, protein, croutons, nuts, and dressing. Use it as a topping on sandwiches, burgers, tacos, and more or simply enjoy it as a healthy side. Fill the wraps with hummus and vegetables for a vegetarian option or use your favorite deli meat slices, condiments, and vegetables for healthier lunch alternative. This lettuce is low in calories making it a perfect light, fresh addition to any healthy diet. Enjoy fresh from the farm taste with Iceberg Lettuce.', 'Iceberg Lettuce, 1 Each: Light, crisp, mild sweet taste Create your very own personalized salad tossed with your favorite vegetables, protein, croutons, nuts and dressing Use it as a topping on sandwiches, burgers, tacos, and more or simply enjoy it as a healthy side Fill the wraps with hummus and vegetables for a vegetarian option or use your favorite deli meat slices, condiments and vegetables for healthier lunch alternative', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6989391c-7793-442e-b937-f2d0562fef2b.7979218cc798806f9f713c77e3da4939.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6989391c-7793-442e-b937-f2d0562fef2b.7979218cc798806f9f713c77e3da4939.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6989391c-7793-442e-b937-f2d0562fef2b.7979218cc798806f9f713c77e3da4939.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (664033801, 'Walmart Produce Freshly Diced Yellow Onions', 2.88, 'deleted_074641015938', 'short description is not available', 'Walmart Produce Freshly Diced Yellow Onions', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (664035574, 'Fresh Green Seedless Grapes, 2 Lb', 4.94, 'deleted_852110003101', 'short description is not available', 'Fresh Green Seedless Grapes, 2 Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (664213260, 'Fresh Chilean Grown Cotton Candy Grapes', 2.5, '045255148626', 'short description is not available', 'Fresh Chilean Grown Cotton Candy Grapes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (664405507, 'Gala Apples, 2 Lb.', 6.98, '847473004209', 'Gala Apples, 2 Lb.', 'Gala Apples 2 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (664435026, 'AVO BAG 10/4 40 MXNR', 3.28, 'deleted_852324007292', 'Avocados', 'Large Avocado 4 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (664447382, 'Fresh Malanga Lila, lb.', 1.27, '000000047319', 'There are many other ways to consume Fresh Malanaga Lila it such as puree you can mash them after boiling with a little butter and garlic. Try slicing them thin and frying them in deep hot oil creating Malanaga chips. You can also add it to your soup. This taro is rich in dietary fiber. Find this in your Local Walmart!', 'Contains B vitamins Including riboflavin and folate Can improve energy levels, boost immune function vitamins', 'Raices', 'https://i5.walmartimages.com/asr/e5bac3df-4136-4331-bf55-06aefcfeed5a.c62b6d9398cbebe03fd62098c8c02172.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5bac3df-4136-4331-bf55-06aefcfeed5a.c62b6d9398cbebe03fd62098c8c02172.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5bac3df-4136-4331-bf55-06aefcfeed5a.c62b6d9398cbebe03fd62098c8c02172.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (664519749, 'Sliced Baby Bella Mushrooms, 8 oz', 2.18, 'deleted_631661999879', 'Add flavor and texture to your meals with Sliced Baby Bella Mushrooms. Baby Bella mushrooms are also known as portobello mushrooms. This versatile ingredient is perfect for a variety of dishes, whether it\'s for breakfast, lunch, or dinner. Mince some up and put them in your omelet with peppers and ham for a filling and nutritious breakfast. Add them to a healthy salad for lunch or use them to top off your next homemade pizza. Baby Bella mushrooms are an excellent source of niacin and are naturally low in fat and cholesterol-free. Enjoy the delicious taste of Sliced Baby Bella Mushrooms any way you prepare them.', 'Sliced Baby Bella Mushrooms, 8 oz: Adds flavor and texture to your meals Great for breakfast, lunch, or dinner Mince them for an omelet, put them in a salad, or use as a topping on pizza Naturally low in fat and cholesterol-free Rich source of niacin', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3e32c0f5-b81b-41d8-b810-15475fb95279.10e200b9442aef9d105550e3fead7b1e.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3e32c0f5-b81b-41d8-b810-15475fb95279.10e200b9442aef9d105550e3fead7b1e.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3e32c0f5-b81b-41d8-b810-15475fb95279.10e200b9442aef9d105550e3fead7b1e.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (664677584, 'Kabocha Squash', 1.48, '000000047692', 'Kabocha Squash is also known as Japanese pumpkin and is ideal for creating tasty Asian dishes. It features a dark green outer skin that is marked with uneven stripes. This organic kabocha squash has finely textured golden flesh on the inside that resembles a pumpkin or sweet potato in flavor. Like other winter squash, it\'s rich in nutrients that include fiber, beta carotene and potassium. Kabocha is a fat-free vegetable that can be cooked or baked as is with the skin on or used in pies, soups and more.', 'Kabocha squash is also known as Japanese pumpkin Ideal for creating tasty Asian dishes Features a dark green outer skin with uneven stripes Inside has a finely textured golden flesh Resembles pumpkin or sweet potato in flavor Rich in fiber, beta carotene and potassium Fat-free vegetable used in pies, soups and more', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5d1d068a-7b60-491c-9099-2ec9a29577d4.ecfea1f9c8a30e96c1c93045ae5944e4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5d1d068a-7b60-491c-9099-2ec9a29577d4.ecfea1f9c8a30e96c1c93045ae5944e4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5d1d068a-7b60-491c-9099-2ec9a29577d4.ecfea1f9c8a30e96c1c93045ae5944e4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (665150208, '120pc Grapefruit 5#', 717.6, '400094594117', 'short description is not available', '120pc Grapefruit 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (665169502, 'Hypermart Tierra Optical Green Bell Pepper', 2.97, '405874895286', 'Hypermart Tierra Optical Green Bell Pepper', 'Hypermart Tierra Optical Green Bell Pepper', 'Hypermart', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (665358069, 'Large Avocado 3 Count Bag', 4.48, 'deleted_845857000922', 'short description is not available', 'Large Avocado 3 Count Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (665626922, 'Fresh Red Seedless Grapes', 3.78, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (665834936, 'Fresh Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094250990', 'Fresh Grown Yellow Nectarines, 1 Lb.', 'Fresh Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (666078753, 'Fresh Organic Green Seedless Grapes from California, 2 lb Package', 6.88, '405526052951', 'Marketside Organic Green Seedless grapes are the perfect sweet snack that your whole family will enjoy. The fresh grapes are crisp and sweet and make an excellent addition to your breakfast, lunch, dinner or snack. A ¾ cup of grapes contains just 90 calories with no fat, no cholesterol, and virtually no sodium. Grapes are also a good source of Vitamin K and a natural source of antioxidants. This container conveniently contains two pounds of grapes making it easy to have your favorite fruit on hand for everyone in the house.', 'Fresh Organic Green Seedless Grapes Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Marketside', 'https://i5.walmartimages.com/asr/fa013e5f-88fd-4a2c-8453-144779f555b2.bb2574b03bc9fb4bebff615e492a97b1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa013e5f-88fd-4a2c-8453-144779f555b2.bb2574b03bc9fb4bebff615e492a97b1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa013e5f-88fd-4a2c-8453-144779f555b2.bb2574b03bc9fb4bebff615e492a97b1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (666196726, 'Yellow Onions, 3 Lb.', 1.94, 'deleted_400094875674', 'Yellow Onions, 3 Lb.', 'Yellow Onions 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (666243351, 'NY SPICE SHOP Apple Ring Dried - 10 Pound - Dry Fruit Slices - Great for Snaking and Baking - Fresh', 114.99, '768253245677', 'Dried Apple Rings are a favorite of snackers because they can be eaten on the run and they deliver chewy, apple goodness. Chewy, dehydrated apple ringsSliced into rings for easy snacking', 'Dried Apple Rings are a favorite of snackers because they can be eaten on the run and they deliver chewy, apple goodness. Chewy, dehydrated apple ringsSliced into rings for easy snacking', 'NY Spice Shop', 'https://i5.walmartimages.com/asr/c276d496-cc60-423c-9418-4729e6f4e849.d9f3913efc1d7df584ab824c4a47d529.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c276d496-cc60-423c-9418-4729e6f4e849.d9f3913efc1d7df584ab824c4a47d529.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c276d496-cc60-423c-9418-4729e6f4e849.d9f3913efc1d7df584ab824c4a47d529.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (666258186, 'Rockit Apple', 0.01, '405732739707', 'short description is not available', 'Rockit Apple', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (666531397, 'Tomato -Cherry', 3.98, '715339359070', 'short description is not available', 'Tomato -Cherry', 'Bonnie Braid', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (666686902, 'Watermelon Seedless', 4.48, '400094257937', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (667677667, 'China Fresca Mondada', 4.98, '826594105071', 'Enjoy the juicy goodness of Fresh Navel Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast Adds flavor to a variety or recipes', 'China Fresca', 'https://i5.walmartimages.com/asr/e39e5863-a82e-4342-b1ed-afb0c1dcf30a.879b01680d07730f2abb7cfc7284f91b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e39e5863-a82e-4342-b1ed-afb0c1dcf30a.879b01680d07730f2abb7cfc7284f91b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e39e5863-a82e-4342-b1ed-afb0c1dcf30a.879b01680d07730f2abb7cfc7284f91b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (667892999, 'Fresh Black Seedless Grapes', 2.08, 'deleted_814326010021', 'Treat yourself to the delicious, juicy flavor of Fresh Black Seedless Grapes. These grapes are bursting with flavor and are completely seedless, so you can easily enjoy a handful as a fresh snack any time of day. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the fresh taste of Fresh Black Seedless Grapes.', 'Fresh Black Seedless Grapes: Seedless black grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Incorporate into fruit salad Perfect for quick, easy and healthy snacks', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/afe6f179-14e7-45ab-b015-a069c18afd72.9ddad7f820d1981e1d57d83261a3ac74.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/afe6f179-14e7-45ab-b015-a069c18afd72.9ddad7f820d1981e1d57d83261a3ac74.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/afe6f179-14e7-45ab-b015-a069c18afd72.9ddad7f820d1981e1d57d83261a3ac74.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (668305688, 'Freshness Guaranteed Red Apple Slices, 14 oz', 2.98, '681131180047', 'Enjoy the sweet, refreshing taste of Freshness Guaranteed Red Apple Slices. These pre-cut slices are great for breakfast, lunch, dessert, or when you want a snack. Apples are a good source of vitamin C, fiber, and potassium making them an excellent healthy treat. You can eat the slices right out of the container, serve with a dollop of peanut butter for a sweet treat, or cover them in nutmeg and cinnamon and bake in the oven for a mouthwatering dish. With 14-ounces in each container, these apples are great for sharing with friends and family or keeping it for yourself. Them come in a reclosable container to help maintain freshness. Bring home Freshness Guaranteed Red Apples Slices today for a refreshing, healthy treat. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Red Apple Slices, 14 oz Sweet, refreshing treat Great for breakfast, lunch, dessert, or when you want a snack Good source of vitamin C, fiber, and potassium Enjoy right out of the container, serve with a dollop of peanut butter, or cover in nutmeg and cinnamon and bake Share with friends and family or keep for yourself Comes in a re-closable container to help maintain freshness', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/636ce479-bc80-4f01-a8ab-783ec183dd96.553dce4be0acae99770887255a538d7d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/636ce479-bc80-4f01-a8ab-783ec183dd96.553dce4be0acae99770887255a538d7d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/636ce479-bc80-4f01-a8ab-783ec183dd96.553dce4be0acae99770887255a538d7d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (668315281, 'Pure Green Farms Baby Green and Red Leaf Lettuce Salad, 4 oz Clam Shell, Fresh', 2.98, '850014580056', 'Our hydroponic Baby Green and Red lettuce is a baby red and green bold lettuce mix full of flavor', 'Baby red and green bold lettuce mix full of flavor', 'Pure Green Farms', 'https://i5.walmartimages.com/asr/78958970-767a-4cf2-a23e-4c04548b9c84.39281435bdaea00e647753c9071339cc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/78958970-767a-4cf2-a23e-4c04548b9c84.39281435bdaea00e647753c9071339cc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/78958970-767a-4cf2-a23e-4c04548b9c84.39281435bdaea00e647753c9071339cc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (668491012, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094170694', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', 'https://i5.walmartimages.com/asr/53ffd116-6b5b-4cc9-876c-bd428e44ebca.d6b6f35b426e13355b715dadfca45c64.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/53ffd116-6b5b-4cc9-876c-bd428e44ebca.d6b6f35b426e13355b715dadfca45c64.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/53ffd116-6b5b-4cc9-876c-bd428e44ebca.d6b6f35b426e13355b715dadfca45c64.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (668793836, 'Gills Onions Gills Red Onions, 7 oz', 2.58, '643550000412', 'Red Onions, Fresh Diced 7 oz (198 g) Quality. Convenience. Grower Direct. Product of USA. Keep refrigerated. 7 oz (198 g) Oxnard, CA 93030', 'Red Onions, Fresh Diced Quality. Convenience. Grower Direct. Product of USA.', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (668847405, 'Fieldpack Unbranded Bunch Beets', 2.24, 'deleted_885460000209', 'short description is not available', 'Fieldpack Unbranded Bunch Beets', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/4ab8346e-5f53-4f66-a0b3-1f548541f8fa.1e50553d136e29e006d7dc325067286e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ab8346e-5f53-4f66-a0b3-1f548541f8fa.1e50553d136e29e006d7dc325067286e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ab8346e-5f53-4f66-a0b3-1f548541f8fa.1e50553d136e29e006d7dc325067286e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (669127324, '240pc On Ylw 3# Tm', 465.6, '405537335258', 'short description is not available', '240pc On Ylw 3# Tm', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (669308748, 'Watermelon Seedless', 4.48, '400094407370', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (669561360, 'Fresh Cotton Candy Green Grapes, Bag (2.25 lbs/Bag Est.)', 3.98, '000000030939', 'Fresh Cotton Candy Grapes are a delightful and unique natural treat, offering a mouthwatering cotton candy flavor in every bite. These specially grown grapes perfectly capture the essence of the classic fairground treat, providing a sweet and satisfying experience that will surprise and delight both children and adults alike. Enjoy the whimsical taste sensation of cotton candy grapes - a fun, healthy, and deliciously indulgent snack that brings joy to your taste buds.', 'Fresh Produce Cotton Candy Green Grapes Grapes Candy Variety Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/816a789f-7e73-4bb4-b845-1791ccb3ee0c.689391eec53289a75ea863ac18caf7f6.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/816a789f-7e73-4bb4-b845-1791ccb3ee0c.689391eec53289a75ea863ac18caf7f6.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/816a789f-7e73-4bb4-b845-1791ccb3ee0c.689391eec53289a75ea863ac18caf7f6.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (669875200, '180pc Pto Idaho 10#', 799.2, '400094858592', 'short description is not available', '180pc Pto Idaho 10#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (670286307, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094145708', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (670791352, 'Fresh Pears Bosc , 3 lb. Bag', 9.47, '', 'The Bosc pear is a variety widely recognized for its sweet flavor, firm texture, and distinctive appearance. Its skin is cinnamon-brown or tan, often with a slightly rough texture. It has an elongated body and a well-defined neck, more slender than other pears. Its firm texture makes it perfect for warm cooking, where other pears fall apart. It doesn\'t change color much when ripe, unlike other varieties. It is very aromatic. Excellent for baking, roasting, or poaching because it maintains its shape. It is used in pies, compotes, salads, jams, or simply on its own with cheese.', 'Fresh Bosc Pears, 3 lb Bag It is used in pies, compotes, salads, jams, or simply on its own with cheese. It is very aromatic. It doesn\'t change color much when ripe, unlike other varieties. Sweet and spicy flavor, sometimes with a hint of honey or nuts.', 'Unbranded', 'https://i5.walmartimages.com/asr/3acbee8f-3b94-4380-ba0f-05a971cb5982.cbcf5a4fd03f6a8bf2d5aefabe6df3ff.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3acbee8f-3b94-4380-ba0f-05a971cb5982.cbcf5a4fd03f6a8bf2d5aefabe6df3ff.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3acbee8f-3b94-4380-ba0f-05a971cb5982.cbcf5a4fd03f6a8bf2d5aefabe6df3ff.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (671304754, '90pc Pto Rst 10#2 Ff', 444.6, '405530518443', 'short description is not available', '90pc Pto Rst 10#2 Ff', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (671465202, 'Bulk Sweet Onions', 1.48, 'deleted_887051000186', 'short description is not available', 'Bulk Sweet Onions', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (671874658, 'Fresh Orange Bell Pepper, Each', 2.47, '000000049504', 'Enhance your meals with the delicious flavor of Fresh Orange Bell Peppers. This fresh vegetable contains essential vitamins such as A and C, and minerals including calcium and magnesium. Orange bell pepper, also known as red capsicum, has a crisp flavor that enhances a variety of recipes. Dice bell peppers and put them in a hearty chili, slice them, sauté them with onions or stir-fry with thinly-sliced steak and serve with rice. A hollowed-out red bell pepper can be filled with sausage, mushrooms and rice to create a delicious stuffed pepper that will have the family asking for seconds. They also taste delicious raw alongside other vegetables. Add your favorite dip for a healthy, crunchy crudité. Cooked or uncooked, Orange Bell Peppers are an excellent item to have on hand.', 'This item has a large amounts of vitamins such as A, E, B6, B9, C & K. It also a great source of minerals such as zinc, magnesium, potassium and sodium. Fresh High on Vitamin A Large amounts of Vitamin E', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e3ac8bb7-bf73-407e-947a-5b10de54ddc7.b9c0a3d6f58069d8057b7daa38c62429.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e3ac8bb7-bf73-407e-947a-5b10de54ddc7.b9c0a3d6f58069d8057b7daa38c62429.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e3ac8bb7-bf73-407e-947a-5b10de54ddc7.b9c0a3d6f58069d8057b7daa38c62429.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (672030629, 'Fresh Medium Salad Tomatoes, 2 lb Bag', 0.5, '405533272694', 'Slicing Tomatoes are the leader when it comes to yummy, fresh tomatoes. The juicy tomato taste and meaty texture make these tomatoes the perfect choice for slicing up and topping your favorite slider and sandwiches. Use them to make a hearty grilled cheese and tomato sandwich that\'s bursting with flavor. Slice some up and pair with fresh mozzarella, basil, and balsamic vinegar for a delicious appetizer. You can even enjoy a slice topped with a sprinkle of salt and pepper for a fresh, healthy snack. Add Slicing Tomatoes to your fresh produce basket today for a delicious juicy addition.', 'Whole, Fresh, Whole Tomatoes picked at their peak Medium sized salad tomatoes, 1 lb. Approximately 2-3 tomatoes per lb Grown for peak flavor Slicing Tomatoes are the leader when it comes to yummy, fresh tomatoes. T he juicy tomato taste and meaty texture make these tomatoes the perfect choice for slicing up and topping your favorite slider and sandwiches. Use them to make a hearty grilled cheese and tomato sandwich that\'s bursting with flavor. Slice some up and pair with fresh mozzarella, basil, and balsamic vinegar for a delicious appetizer. You can even enjoy a slice topped with a sprinkle of salt and pepper for a fresh, healthy snack. Add Slicing Tomatoes to your fresh produce basket today for a delicious juicy addition.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2d15e187-76cb-45fd-ba51-efeb13ef44e9.5e8fe94af9ad13039b11a52194045401.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2d15e187-76cb-45fd-ba51-efeb13ef44e9.5e8fe94af9ad13039b11a52194045401.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2d15e187-76cb-45fd-ba51-efeb13ef44e9.5e8fe94af9ad13039b11a52194045401.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (672064922, 'Fieldpack Unbranded Autumn Colour Pumpkins', 4.98, 'deleted_729062048217', 'short description is not available', 'Fieldpack Unbranded Autumn Colour Pumpkins', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (672123793, 'Fieldpack Unbranded Green Onion Organic', 1.86, 'deleted_740695940754', 'short description is not available', 'Fieldpack Unbranded Green Onion Organic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (672259939, 'Fresh Pear Anjou, 2 lb Bag', 3.98, '847473004124', 'Indulge in the sumptuous taste of organic Anjou pears, a perfect addition to your fresh produce collection. Handpicked with care, these succulent fruits boast a sweet, juicy flavor that will delight your taste buds. Enjoy them sliced in a salad, roasted, or as a healthy snack. Our Anjou pears are grown and harvested with utmost responsibility, ensuring you get the finest produce every time. Treat yourself to a deliciously fresh, sweet delight!', 'These Danjou Pears are grown organically, ensuring you only get the best, most delicious fruit available. Our carefully grown Danjou Pears are fresh and juicy, plucked straight from the tree just for you. With their sweet, succulent flavor, these pears make for a perfect snack or addition to any dish. With high-quality, fresh produce like this, you\'ll taste the difference in every bite.', 'Unbranded', 'https://i5.walmartimages.com/asr/839ef2cf-9bc7-4d0f-8114-9baabde7d3e0_1.67fc2e931ea8169ab16d4b7e65a15578.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/839ef2cf-9bc7-4d0f-8114-9baabde7d3e0_1.67fc2e931ea8169ab16d4b7e65a15578.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/839ef2cf-9bc7-4d0f-8114-9baabde7d3e0_1.67fc2e931ea8169ab16d4b7e65a15578.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (672319176, 'Fieldpack Unbranded Fresh Strawberries 2#', 3.42, '400094496800', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 2#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (672410400, 'Fresh Grown Yellow Peaches, 1 Lb.', 1.58, '405505064173', 'Fresh Grown Yellow Peaches, 1 Lb.', 'Fresh Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (672419626, 'Watermelon Seedless', 4.48, '405504887865', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (672889089, 'Yellow Flesh Peaches, per Pound', 1.58, '400094450345', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (672908898, 'Fresh Mini Romaine Lettuce, Non-GMO, Sustainably Grown, 2 Heads', 2.97, '027918947234', 'Fresh Mini Romaine features two mini heads of romaine lettuce with a crisp, fresh texture and great classic romaine flavor. Romaine leaves are crisp and mild, and the crunchy midrib is particularly succulent and sweet making them choice for many meal occasions including chopped as a salad base, on top of your favorite sandwiches, and as a wrap or a bread substitute. This romaine is specially greenhouse grown, sustainable, and non-GMO, which makes it an excellent choice for your home. Bring home Fresh Mini Romaine today.', 'Young romaine lettuce heads Non-GMO and sustainably grown Crisp and mild romaine leaves Crunchy midrib is particularly succulent and sweet No pesticides or herbicides Great for salads, wraps, and more Fresh and delicious vegetable option Ideal for a healthy, balanced diet', 'Fresh Produce', 'https://i5.walmartimages.com/asr/42f7abf4-36ce-4083-92af-ac318a0fc3ae.d99274bb30f0591595a452eb5d9f7271.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42f7abf4-36ce-4083-92af-ac318a0fc3ae.d99274bb30f0591595a452eb5d9f7271.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42f7abf4-36ce-4083-92af-ac318a0fc3ae.d99274bb30f0591595a452eb5d9f7271.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (673386850, 'Athena Cantaloupe', 3.28, 'deleted_860005104536', 'short description is not available', 'Athena Cantaloupe', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (673424310, 'Services Reduced Program Dept 94', 0.01, '251692000001', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (673435619, 'Purple Asparagus', 3.98, '000000030793', 'short description is not available', 'Purple Asparagus', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (673671208, 'Fresh Green Seedless Grapes', 1.98, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (673680401, 'Mcdaniel & Chirico Wordwide Lemons', 4.88, 'deleted_850014851125', 'short description is not available', 'Mcdaniel & Chirico Wordwide Lemons', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/029a9343-aba4-439e-9520-2702241b314e.263848d0be66e2964930564765c75224.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/029a9343-aba4-439e-9520-2702241b314e.263848d0be66e2964930564765c75224.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/029a9343-aba4-439e-9520-2702241b314e.263848d0be66e2964930564765c75224.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (673713924, '180pc Pto Rst 10# Bw', 1074.6, '400094858806', 'short description is not available', '180pc Pto Rst 10# Bw', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (673714570, 'Watermelon Seedless', 4.48, '405517450155', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (673922032, 'Jonamac Apples 3 Lb Bag', 3.94, '033383091082', 'short description is not available', 'Jonamac Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (674047121, 'Forelle Pears, per Pound', 1.64, '000000044189', 'Forelle Pears, per Pound', 'Forelle Pears, Each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (674160451, 'Fresh Mango', 0.98, '405955703059', 'Mangoes are a tropical fruit known for their sweet, slightly tart flavor and buttery texture. They are a rich source of vitamins A and C, dietary fiber, and antioxidants, offering various health benefits such as improved digestion, heart health, and immune function. Mangoes are widely consumed globally, used in a variety of dishes ranging from smoothies and salads to curries and desserts. Their ripeness can be determined by a sweet aroma and slight softness to touch.', 'Mangoes are tropical fruits known for their sweet and slightly tangy flavor, buttery texture, and vibrant color. They are one of the most widely consumed fruits globally, particularly in Asia, Central and South America, and the Middle East. Mangoes offer a myriad of health benefits due to their rich nutrient profile and are versatile in their culinary uses, often being used in both sweet and savory dishes. Taste and Culinary Uses: Mangoes possess a unique flavor that is lusciously sweet with a hint of tartness and a rich, creamy texture. They are commonly eaten fresh, but they can also be incorporated into a variety of dishes. Mangoes are used in making smoothies, salads, salsas, curries, and desserts like ice cream and pastries. Also, dried and pickled mangoes are popular snacks in many cultures. Health Benefits: Mangoes are a nutritional powerhouse packed with vitamins A and C, dietary fiber, and antioxidants. They can support heart health, improve digestion, promote healthy skin and hair, and boost the immune system. The high levels of antioxidants in mangoes are linked to fighting against certain types of cancer. Cultivation and Harvest: Mango trees thrive in tropical climates and can grow quite large, often reaching heights of 100 feet. They bear fruit annually, with the major harvest season varying depending on the region. The fruit is harvested when mature, but not fully ripe, and it continues to ripen off the tree. The ripeness of a mango can usually be determined by its slightly sweet aroma and slight give when gently pressed.', 'Unbranded', 'https://i5.walmartimages.com/asr/d4993498-cb0a-4539-bee5-b3c0db4a6702.ee3057845556133bab8fb2cd8e56b1a1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4993498-cb0a-4539-bee5-b3c0db4a6702.ee3057845556133bab8fb2cd8e56b1a1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4993498-cb0a-4539-bee5-b3c0db4a6702.ee3057845556133bab8fb2cd8e56b1a1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (674219887, 'Medley Tomato, 12 oz Package', 4.48, 'deleted_816239011058', 'Bring the fresh, delicious taste of Grape Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Grape Tomatoes.', 'Tomato Medley', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (674292939, 'Melon Cantaloupe 12 Ct', 2.5, '405873138421', 'short description is not available', 'Melon Cantaloupe 12 Ct', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/ce6b6f5f-988e-4c7b-bf06-e0a60e2c4766.ced15d42798e0b77041e31127b53c5db.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ce6b6f5f-988e-4c7b-bf06-e0a60e2c4766.ced15d42798e0b77041e31127b53c5db.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ce6b6f5f-988e-4c7b-bf06-e0a60e2c4766.ced15d42798e0b77041e31127b53c5db.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (675046511, 'Marketside Spring Mix Salad 11oz', 3.98, '030223004066', 'short description is not available', 'Marketside Spring Mix Salad 11oz', 'Marketside', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (675213790, 'Taylor Farms Green Leaf Lettuce, 4LB, 1 Count, Fresh Vegetables', 23.78, '030223033424', 'Enjoy crisp, fresh, and versatile greens with Taylor Farms Green Leaf Lettuce. Perfect for sandwiches, wraps, burgers, and salads, this leafy green is harvested at peak freshness and packed with flavor. . Whether you’re creating a low-carb wrap, topping a juicy burger, or mixing a garden-fresh salad, green leaf lettuce is a go-to choice for home chefs and health-conscious eaters. It’s naturally low in calories and a good source of vitamins A and K, supporting a nutritious lifestyle. Rinse and serve or store in the fridge until ready to use. This product is Shellfish-free. Elevate your produce game with premium greens from Taylor Farms, a brand known for freshness and quality.', 'Premium quality Taylor Farms Green Leaf Lettuce in a 4LB package Harvested at peak freshness for superior taste and crisp texture Ideal for various dishes: sandwiches, salads, wraps, and burgers Naturally low in calories, rich in vitamins A and K for health benefits Food_condition is fresh; container_material can be breathable bags or bowls Free from dairy, eggs, soy, and shellfish ensuring allergen-safe consumption', 'Taylor Farms', 'https://i5.walmartimages.com/asr/f07dd0ec-aaea-4d09-9703-1889d2d1c7da.91ca74228629ff85fba664601dca45c8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f07dd0ec-aaea-4d09-9703-1889d2d1c7da.91ca74228629ff85fba664601dca45c8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f07dd0ec-aaea-4d09-9703-1889d2d1c7da.91ca74228629ff85fba664601dca45c8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (675259580, 'Organic Tuscan Kale Greens, 10oz', 3.97, '095829600210', 'short description is not available', 'Kale, Organic, Tuscan, Greens USDA Organic. Certified Organic by Quality Assurance International. Good source of vitamins A & C, calcium & fiber. Delivering Freshness since 1905. Fresh produce is vital to your family\'s meal. That\'s why since 1905, Robinson Fresh has been committed to making fresh produce the best it can be. Trust us to provide quality and freshness that exceeds your standards so your family can thrive today and tomorrow. how2recycle.info. Questions or concerns call 1-800-349-6639. Produce of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e2f131fc-bdf5-484b-a2e5-3aef0b7389ba.a97803b8485904598f9bfea3af107c47.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2f131fc-bdf5-484b-a2e5-3aef0b7389ba.a97803b8485904598f9bfea3af107c47.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2f131fc-bdf5-484b-a2e5-3aef0b7389ba.a97803b8485904598f9bfea3af107c47.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (675752938, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094484302', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (675857268, 'Yellow Flesh Peaches, per Pound', 1.58, '400094358306', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (676054309, 'AVO BAG 10/5 48 MXWP', 3.28, 'deleted_701080311085', 'Avocado Bagged', 'Large Avocado 5 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (676621979, 'Salad Bowl Chef', 2.98, '795631842883', 'short description is not available', 'Salad Bowl Chef', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (676653710, 'Fresh Red Seedless Grapes', 2.88, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (676685423, 'California Grown Peaches, per Pound', 1.58, '400094006634', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (676795280, 'Fresh Dark Sweet Cherries', 3.97, '', 'short description is not available', 'Fresh Dark Sweet Cherries', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (676821849, 'Fresh Peach, 2lb Bag', 3.97, '095829210853', 'Fresh Peaches, 2lb Bag offers a delicious and juicy treat for peach lovers. These peaches are carefully selected to ensure optimal ripeness and flavor. With their vibrant orange color and sweet aroma, these peaches are the perfect addition to your breakfast, desserts, or simply enjoyed on their own. Each bag contains approximately 8 to 10 peaches, making it convenient for sharing or enjoying over several days. Indulge in the natural goodness and refreshing taste of Fresh Peaches, 2lb Bag.', 'Are you craving the sweet taste of summer? Look no further than our Fresh Peaches, 2lb Bag! Bursting with flavor and hand-picked at the peak of ripeness, these peaches are a delightful treat for any peach lover. Our dedicated team of experts carefully selects each peach to ensure optimal ripeness, so you can enjoy the perfect balance of sweetness and juiciness in every bite. The vibrant orange color and irresistible aroma will instantly transport you to a sunny orchard, making these peaches a visual and olfactory delight. Whether you\'re looking to enhance your breakfast, create mouthwatering desserts, or simply enjoy a refreshing snack, these peaches are an excellent choice. Add them to your morning yogurt, oatmeal, or pancakes for a burst of natural sweetness. Create delectable peach cobblers, pies, or smoothies that will impress your family and friends. Or savor their juicy goodness on their own for a guilt-free snack that will leave you feeling refreshed and satisfied. Each bag contains approximately 8 to 10 peaches, providing you with plenty to enjoy and share. Their convenient packaging ensures that your peaches stay fresh for longer, allowing you to savor their flavor over several days. Don\'t miss out on the natural goodness and refreshing taste of our Fresh Peaches, 2lb Bag. Experience the joy of biting into a perfectly ripe and juicy peach, and let its sweet, tangy flavors transport you to a summer paradise. Order your bag today and discover why these peaches are truly a taste of perfection.', 'Welch\'s', 'https://i5.walmartimages.com/asr/bc3534f0-ae80-4129-a4c7-fa43dae33448.b9b7f2622d71ba8acc3e341323dc1ad1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc3534f0-ae80-4129-a4c7-fa43dae33448.b9b7f2622d71ba8acc3e341323dc1ad1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc3534f0-ae80-4129-a4c7-fa43dae33448.b9b7f2622d71ba8acc3e341323dc1ad1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (676927718, 'Sable Seedless Grapes, 1 lb', 2.98, 'deleted_405512624759', 'short description is not available', 'Sable Seedless Grapes, 1 lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/e261d0a5-e8c1-4a86-b6a0-387eaee7e246_1.bc05ba38859e3978ddaf5f613b3a7742.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e261d0a5-e8c1-4a86-b6a0-387eaee7e246_1.bc05ba38859e3978ddaf5f613b3a7742.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e261d0a5-e8c1-4a86-b6a0-387eaee7e246_1.bc05ba38859e3978ddaf5f613b3a7742.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (677075380, 'Fieldpack Unbranded Cello Iceberg Lettuce', 1.58, 'deleted_033383650029', 'Large wrapped iceberg lettuce head.', 'Crisp,Fresh,Delicious,Grown in United States', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/b6457f40-fbf0-4995-a484-2ae6c3445993.36f07a56b56de233c7d261a3154f7d5f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b6457f40-fbf0-4995-a484-2ae6c3445993.36f07a56b56de233c7d261a3154f7d5f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b6457f40-fbf0-4995-a484-2ae6c3445993.36f07a56b56de233c7d261a3154f7d5f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (677143847, 'California Grown Peaches, per Pound', 1.58, '400094949528', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (678087044, 'Jicama And Lime', 2.48, '782796010790', 'short description is not available', 'Jicama And Lime', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (678157081, '175pc Pto Rst Org Co', 794.5, '405535971137', 'short description is not available', '175pc Pto Rst Org Co', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (678343082, 'Sweet Onion 2 Lb Bag', 4.68, 'deleted_856725001422', 'short description is not available', 'Sweet Onion 2 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (678572497, 'Baby Blonde Bella Potatoes, 3 Lb.', 4.88, 'deleted_852883004442', 'Baby Blonde Bella Potatoes, 3 Lb.', 'Baby Blonde Bella Potatoes 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (678723527, 'Zucchini Squash', 2.34, '072132800070', 'short description is not available', 'Zucchini Squash', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (678936555, 'Fresh Organic Green Beans, 12 oz', 3.98, '681131160599', 'Introducing our Organic Green Beans, pre-washed and ready to eat for your convenience. These premium green beans are grown without synthetic pesticides or fertilizers, ensuring a delicious side dish for any occasion. Boasting a Pero Fresh vibrant green color, crisp texture, and fresh taste, our organic green beans are perfect for steaming, sautéing, or adding to your favorite recipes. With a commitment to quality and sustainability, enjoy the best of nature\'s bounty with our Organic Green Beans.', 'Fresh organic green beans Washed and ready to eat 25 calories per serving 12oz (340g) bag of green beans contains about 4 servings USDA certified organic', 'Marketside', 'https://i5.walmartimages.com/asr/108105ea-055e-47ce-980e-2f385213c59f_3.1b3824547ef26ea24b675df6114243f8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/108105ea-055e-47ce-980e-2f385213c59f_3.1b3824547ef26ea24b675df6114243f8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/108105ea-055e-47ce-980e-2f385213c59f_3.1b3824547ef26ea24b675df6114243f8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (679155484, 'Seedless Cucumber', 1.38, 'deleted_628458001013', 'short description is not available', 'Seedless Cucumber', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/84e4c826-4180-49c8-b5a4-63d4702821fb_2.52bdcecdb76b49c1e13d5c8a26964e88.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/84e4c826-4180-49c8-b5a4-63d4702821fb_2.52bdcecdb76b49c1e13d5c8a26964e88.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/84e4c826-4180-49c8-b5a4-63d4702821fb_2.52bdcecdb76b49c1e13d5c8a26964e88.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (679531660, 'Dark Sweet Cherries, Half Pint', 2.98, '804305001409', 'Dark Sweet Cherries, Half Pint', 'Dark Sweet Cherries 1/2 Dry Pint', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (679777271, '180pc Apple Mac 3# 8', 709.2, '405747486955', 'short description is not available', '180pc Apple Mac 3# 8', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (680313210, '200pc Pto Ykn/red 5#', 1044, '405536654664', 'short description is not available', '200pc Pto Ykn/red 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (680592175, 'Services Reduced Program Dept 94', 0.01, '251709000000', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (680825860, 'BrightFarms Mixed Greens 4 oz', 2.29, '857062004541', 'BFarms Mixed Greens 4 Oz.', 'This mix of bold flavors, textures and colors is a combination of our favorite greens, both mild and spicy. Locally Grown Non-GMO Project Certified Pesticide Free', 'BrightFarms', 'https://i5.walmartimages.com/asr/4fbdcc57-2a72-478b-a585-95afc09416ad_1.c35c449cbf46670a726c28deffd78f11.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4fbdcc57-2a72-478b-a585-95afc09416ad_1.c35c449cbf46670a726c28deffd78f11.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4fbdcc57-2a72-478b-a585-95afc09416ad_1.c35c449cbf46670a726c28deffd78f11.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (680871990, 'Red Potatoes, 3 Lb.', 3.64, 'deleted_024617510035', 'Red Potatoes, 3 Lb.', 'Red Potatoes 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (680953615, 'Romaine Mix Salad, 4.5 oz', 2.98, '860000030656', 'Better Fields Farm Romaine Mix, 4.5 oz', 'Baby Lettuce Blend Packed Fresh Locally Grown Non-GMO Hydroponically Grown Perishable; keep refrigerated Net weight 4.5 oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/62564f56-2068-418f-bfb6-cc85b3a2f461_1.4957a9ae99c00dcc45817dc39825bf0b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/62564f56-2068-418f-bfb6-cc85b3a2f461_1.4957a9ae99c00dcc45817dc39825bf0b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/62564f56-2068-418f-bfb6-cc85b3a2f461_1.4957a9ae99c00dcc45817dc39825bf0b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (680976335, 'Crunch Pak Family Snack Pack with 5 2oz bag of Sweet Apple Slices', 4.97, '732313001763', 'A Healthy Crunch Pak Family Snack Pack with 5 2oz bag of Sweet Apple Slices. Provides an optimal choice for on-the-go, between meals, lunchtime, or anytime during the day snack! Pick your family treat up today!', 'Crunch Pak Family Snack Pack with 5 2oz bag of Sweet Apple Slices 40 Calories per Serving Good Source of Vitamin C', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c0e10ef6-bcf9-4d95-aaae-8d5da3933b2c.a7e5a98ba6732f97c9399f3de8d4b4d1.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c0e10ef6-bcf9-4d95-aaae-8d5da3933b2c.a7e5a98ba6732f97c9399f3de8d4b4d1.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c0e10ef6-bcf9-4d95-aaae-8d5da3933b2c.a7e5a98ba6732f97c9399f3de8d4b4d1.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (681216192, 'Red Bell Pepper, each', 1.38, 'deleted_816053020045', 'Enhance your meals with the delicious flavor of Red Bell Peppers. This vegetable contains essential vitamins such as A and C, and minerals including calcium and magnesium. Red bell pepper, also known as red capsicum, has a crisp flavor that enhances a variety of recipes. Dice bell peppers and put them in a hearty chili, slice them and add to a deli sandwich, saute them with onions and serve on a hoagie roll with a bratwurst, or stir-fry with thinly-sliced steak and serve with rice. A hollowed-out red bell pepper can be filled with sausage, mushrooms and rice to create a delicious stuffed pepper that will have the family asking for seconds. Lunches and dinners are more scrumptious when fresh red peppers are part of the meal. They also taste delicious raw alongside other vegetables. Add your favorite dip for a healthy, crunchy crudite. Cooked or uncooked, Red Bell Peppers are an excellent item to have on hand.', 'Red Bell Pepper, 1 each: Naturally low in calories Exceptionally rich in vitamin C and other antioxidants Delicious cooked or uncooked Create delicious recipes with fresh red peppers', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/3e7798c2-b396-47ca-af17-78dfa3ce2b4a_2.013ab2925acb792bc065227f97aac0da.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3e7798c2-b396-47ca-af17-78dfa3ce2b4a_2.013ab2925acb792bc065227f97aac0da.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3e7798c2-b396-47ca-af17-78dfa3ce2b4a_2.013ab2925acb792bc065227f97aac0da.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (681566638, 'Red Bell Pepper', 1.48, 'deleted_850010807003', 'short description is not available', 'Red Bell Pepper', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (681582077, 'Golden Sensation Potatoes, 3 Lb.', 2.38, '842281099430', 'Golden Sensation Potatoes, 3 Lb.', 'Golden Sensation Potatoes 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (681582968, 'Fresh Red Seedless Grapes', 1.84, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (681690800, 'Small Bagged Oranges', 4.96, 'deleted_605049491972', 'short description is not available', '3# Bag Navel Oranges', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/dbabdb16-ea02-404a-aa0e-7a98c122a5f0.79e003afba833e5a3af7e8f2c83ce2bd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dbabdb16-ea02-404a-aa0e-7a98c122a5f0.79e003afba833e5a3af7e8f2c83ce2bd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dbabdb16-ea02-404a-aa0e-7a98c122a5f0.79e003afba833e5a3af7e8f2c83ce2bd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (681782609, 'Organic Micro Mustard Greens', 1.98, '768573417624', 'The spice is right! This is the perfect blend of sweet and heat. Microgreens are baby greens only 7-14 days old. Why do we harvest them so young? When they are harvested that young, all of the flavor potential of that plant is condensed into the young microgreen. This means you get a TON of flavor in the smallest tiny green! Talk about bang for your buck!', 'Organic Micro Mustard Greens', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ee84f5c5-f496-4865-b4c2-d18f6325ba6a_2.6f1f19624922d0fb0eb62647869a1556.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ee84f5c5-f496-4865-b4c2-d18f6325ba6a_2.6f1f19624922d0fb0eb62647869a1556.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ee84f5c5-f496-4865-b4c2-d18f6325ba6a_2.6f1f19624922d0fb0eb62647869a1556.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (682854086, '256pc On Ylw 3# Wd', 496.64, '405564158059', 'short description is not available', '256pc On Ylw 3# Wd', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (683705157, 'Fresh Dragon Fruit Puerto Rico, Each', 4.97, '405873138513', 'Dragon fruit, also known as pitaya, is a vibrant tropical fruit native to Central America. Recognizable for its bright pink or yellow, spiky skin and creamy pulp filled with tiny seeds, it offers a subtly sweet taste reminiscent of kiwi or pear. Dragon fruit is a nutritional powerhouse, providing high amounts of fiber, vitamin C, essential minerals, and antioxidants. Grown on a climbing cactus, this refreshing fruit is harvested when its skin color fully develops, offering a unique and healthful treat.', 'Dragon fruit, also known as pitaya, is a tropical fruit that belongs to the cactus family. Native to Central America but now grown all over the world, dragon fruit is known for its unique appearance, vibrant color, and a wealth of health benefits. The fruit has a leathery, slightly leafy skin that is bright pink or yellow in color, while the inside boasts a sweet, creamy pulp dotted with tiny, crunchy seeds. Appearance and Taste: Dragon fruit stands out for its flamboyant appearance, with its bright pink or yellow, spiky skin, and white or red flesh speckled with small black seeds. The taste of dragon fruit is subtly sweet and often compared to that of a kiwi or pear, with the seeds providing a satisfying crunch. Its texture is wonderfully juicy and creamy, making it a refreshing treat on a hot day. Health Benefits: Dragon fruit is a nutritional powerhouse, packed with a range of beneficial compounds. It\'s high in fiber, vitamin C, and several essential minerals like iron and magnesium. Dragon fruit is also rich in antioxidants, which help fight off free radicals and prevent cell damage. Moreover, it contains prebiotics, which promote the growth of beneficial bacteria in your gut, contributing to a healthy digestive system. Cultivation and Harvest: Dragon fruit grows on a cactus plant that climbs up trees or walls with the help of its aerial roots. It thrives best in a dry tropical climate with a moderate amount of rain. The fruit is harvested when its skin color changes from bright green to pink or yellow, depending on the variety. Despite its exotic appearance, dragon fruit is easy to eat; simply slice it in half and scoop out the flesh with a spoon.', 'Unbranded', 'https://i5.walmartimages.com/asr/6d46cc06-b9ab-4e6d-9b17-e1382991294d.55a0a0edc7c44b84f29bd065c7d43da4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6d46cc06-b9ab-4e6d-9b17-e1382991294d.55a0a0edc7c44b84f29bd065c7d43da4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6d46cc06-b9ab-4e6d-9b17-e1382991294d.55a0a0edc7c44b84f29bd065c7d43da4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (683743845, 'Prico Papaya Chunks, 12OZ', 4.27, '794504171624', 'Papaya is a tropical fruit that originated in the tropics of the Americas and is known to be a great source of vitamins C, A, fiber, and antioxidants. When ripe, this fruit has a butter-like texture with a fairly sweet flavor similar to cantaloupe and can be eaten raw, without skin or seeds. Papaya can be prepared in a variety of ways; you can mix them with grapefruit and avocado for a bright summer salad, add them to a zesty salsa for some sweetness, freeze them and turn them into refreshing popsicle spears, or bake them in the oven with a melted brown sugar mixture. The sky\'s the limit! Get ready for a taste-bud party with Fresh Papaya.', 'Creamy, butter-like flavor when ripe Rich in vitamins A, C, fiber, and antioxidants Fairly sweet flavor like cantaloupe and mango Great addition to smoothies, salads, salsa, and more Delicious and nutritious Saves time', 'Prico', 'https://i5.walmartimages.com/asr/6b0b4bf5-d45a-4a1b-9cf4-74339d69df11.58deea78e570ba5906cc3b66311d6a46.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6b0b4bf5-d45a-4a1b-9cf4-74339d69df11.58deea78e570ba5906cc3b66311d6a46.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6b0b4bf5-d45a-4a1b-9cf4-74339d69df11.58deea78e570ba5906cc3b66311d6a46.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (683903123, 'Services Reduced Program Dept 94', 0.01, '251698000005', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (684050857, 'Ogp Red Cherry Samples', 0.01, '405963277511', 'short description is not available', 'Ogp Red Cherry Samples', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (684065864, '180pcberry & Grape', 900, '030641035109', 'short description is not available', '180pcberry & Grape', 'VZ_WM', 'https://i5.walmartimages.com/asr/bd2b7e57-59af-44e1-b224-3f00613c63c0_1.54a909efacefd4d14f1f0f230018cc77.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd2b7e57-59af-44e1-b224-3f00613c63c0_1.54a909efacefd4d14f1f0f230018cc77.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd2b7e57-59af-44e1-b224-3f00613c63c0_1.54a909efacefd4d14f1f0f230018cc77.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (684139548, 'Fresh Carnival Treat Whole Golden Seedless Grapes from California, 1 lb Bag', 3.48, '854957001258', 'Treat yourself to the delicious, juicy flavor of Fresh Carnival Treat Golden Whole Seedless Grapes. These grapes are bursting with flavor and are a wonderful addition to your diet. Enjoy a handful as a fresh snack any time of day or dry them for scrumptious raisins. You can even use them to make refreshing grape juice. They are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with cheese, crackers, or delectable meats like prosciutto. If you want to be creative, you can freeze them and use them as ice cubes in your favorite drinks. Treat yourself to the fresh taste of Carnival Treat Golden Whole Seedless Grapes.', 'Fresh Carnival Treat Whole Golden Seedless Grapes from California, 1 lb Bag Enjoy a handful as a satisfying snack Add to a stunning cheese board or charcuterie plate Use to make a delectable fruit salad Whole and healthy option for a natural treat Dry them to make raisins', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c3bba3d3-a80e-4e99-bf42-181c4cd58bc2.42bb2ecaeb04e47418c4b911e54f312f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c3bba3d3-a80e-4e99-bf42-181c4cd58bc2.42bb2ecaeb04e47418c4b911e54f312f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c3bba3d3-a80e-4e99-bf42-181c4cd58bc2.42bb2ecaeb04e47418c4b911e54f312f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (684392217, '200pc Pto Rst 5# Ph', 594, '405531135113', 'short description is not available', '200pc Pto Rst 5# Ph', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (685063472, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094343623', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (685289306, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094343135', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (685310427, 'Avo Mex HA LB 10/5 48 1', 3.48, 'deleted_887214145488', 'Bag of 5 Avocados', 'Large Avocado 5 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (686321553, 'Strawberry Peach, Each', 2.48, '000000031950', 'Fresh Caifornia Grown Strawberry Peach', 'Fresh Caifornia Grown Strawberry Peach', 'Fresh Produce', 'https://i5.walmartimages.com/asr/25d5df1f-e07a-4c70-b825-8260f52b14b5_1.92db031291468d7682f58c0a0f7f630a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/25d5df1f-e07a-4c70-b825-8260f52b14b5_1.92db031291468d7682f58c0a0f7f630a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/25d5df1f-e07a-4c70-b825-8260f52b14b5_1.92db031291468d7682f58c0a0f7f630a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (686410910, 'Honeycrisp Apples 3 lb Bag', 6.47, 'deleted_883391000121', 'Your order will contain 9-10 honeycrisp apples. Crunchy and sweet, honeycrisp apples are a juicy and refreshing snack when eaten raw. When cooked, this white-fleshed apple makes fine pies, breads, crisps and sauce. Honeycrisp is a cross between Macoun and Honeygold. The skin color is mostly red over a yellow background. The flavor ranges from mild and well balanced to strongly aromatic, depending on the maturity.', 'Honeycrisp Apples 3 Lb Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/625a0e3d-e9c3-443f-b527-360b29fe7b97.792e995b7b74827a9645bec9d8ed4148.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/625a0e3d-e9c3-443f-b527-360b29fe7b97.792e995b7b74827a9645bec9d8ed4148.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/625a0e3d-e9c3-443f-b527-360b29fe7b97.792e995b7b74827a9645bec9d8ed4148.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (686784846, 'Fresh Roma Tomato, Each Weight', 1.97, '000000017657', 'With Fresh Roma Tomatoes from Walmart, it\'s easy to make a wholesome, delicious meal. Roma tomatoes are a fresh produce ingredient for whipping up a variety of wonderful dishes. You can use them to create a zesty tomato sauce for stirring into a homemade pasta dish, crush them up to make a delightful Roma tomato bruschetta, or simply enjoy them on their own as a nutritious snack or as a party platter option for dipping in your favorite vegetable dipping sauce. If you\'re feeling a classic tomato dish, Roma tomatoes can even lend themselves in making a comforting and appetizing tomato soup or a flavorful salsa. However you choose to use them, each Roma tomato will add stunning flavor to your meal. Just find the recipe and experience the tasty results for yourself! Elevate your recipes with Roma Tomatoes.', 'Wholesome and delicious fresh produce Ideal ingredient for a variety of dishes Perfect for making zesty tomato sauces Enjoyable as a nutritious snack Excellent for homemade salsa', 'Hypermart', 'https://i5.walmartimages.com/asr/ecef8a3e-ab96-445e-a16a-d639b40eb5fb.93fcc627f542f02488e5ee9d8e26f152.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecef8a3e-ab96-445e-a16a-d639b40eb5fb.93fcc627f542f02488e5ee9d8e26f152.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecef8a3e-ab96-445e-a16a-d639b40eb5fb.93fcc627f542f02488e5ee9d8e26f152.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (687204092, 'Fresh Express Dole Spring Mix Salad 5 oz', 6.88, '071279231006', 'Experience the freshness of our Spring Mix, meticulously crafted with a selection of delicate baby lettuces and greens. Each leaf is hand-picked at its peak, ensuring a perfect and wholesome product. With vibrant colors and a garden-fresh appearance, our salads are not only flavorful but visually stunning. Indulge in the beauty and taste of our Spring Mix, a true feast for the senses.', 'Spring Mix', 'Dole', 'https://i5.walmartimages.com/asr/2d83c5be-b812-484d-b541-70eafe68a074.d701a98105b1f13a787c9d74da6bbb2d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2d83c5be-b812-484d-b541-70eafe68a074.d701a98105b1f13a787c9d74da6bbb2d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2d83c5be-b812-484d-b541-70eafe68a074.d701a98105b1f13a787c9d74da6bbb2d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (687407125, '180pc Pto Rst 10# Wd', 799.2, '400094862797', 'short description is not available', '180pc Pto Rst 10# Wd', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (687495340, 'Wild Twist Frehs Apples, Each', 0.62, '000000035194', 'Indulge in a unique twist of flavor with our Apple Wild Twist! This delicious snack combines the sweetness of fresh apples with the tangy taste of wild berries for a taste bud-tingling experience. Our Wild Twist is made with real fruit and contains no artificial flavors or preservatives, making it a healthy snack option. Perfect for on-the-go or as a midday snack, our Apple Wild Twist is sure to satisfy your cravings. Order now and experience the perfect balance of sweet and tangy!', 'Looking for a fresh delicious and unique apple variety to add to your fruit bowl or recipe? Look no further than our Wild Twist Apples! These apples are hand-selected for their distinctive flavor and appearance - each one has a unique combination of sweet and tart notes, with a beautiful marbled appearance that makes them stand out from other apple varieties. Perfect for snacking or baking, our Wild Twist Apples are sure to add a burst of flavor to any dish. And with our bulk option, you\'ll have plenty to share with friends and family. Plus, they\'re packed with essential nutrients and antioxidants, making them a healthy choice for any time of day. So why settle for ordinary apples when you can enjoy the unique taste and appearance of our Wild Twist Apples? Order yours today and experience the deliciousness for yourself! Make a creamy smoothie or a nutritious juice blend Perfect as a healthy treat or seasonal baking ingredient Great for packing in lunches Make a creamy smoothie or a nutritious juice blend Adds flavor to a variety of recipes', 'Unbranded', 'https://i5.walmartimages.com/asr/273a4d10-e113-4fde-84f4-dd405828c3ae.3fd08fe27fc4df5b996c57b1aac5b289.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/273a4d10-e113-4fde-84f4-dd405828c3ae.3fd08fe27fc4df5b996c57b1aac5b289.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/273a4d10-e113-4fde-84f4-dd405828c3ae.3fd08fe27fc4df5b996c57b1aac5b289.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (687555865, 'Black Seedless Grapes, 2 lb', 3.44, '014668760190', 'short description is not available', 'Black Seedless Grapes, 2 lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/e261d0a5-e8c1-4a86-b6a0-387eaee7e246_1.bc05ba38859e3978ddaf5f613b3a7742.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e261d0a5-e8c1-4a86-b6a0-387eaee7e246_1.bc05ba38859e3978ddaf5f613b3a7742.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e261d0a5-e8c1-4a86-b6a0-387eaee7e246_1.bc05ba38859e3978ddaf5f613b3a7742.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (687881823, 'White Onions Whole Fresh, 3 lb Bag', 3.87, 'deleted_851573002010', 'Add flavor to your next meal with Fresh White Onions. For breakfast, you could dice them and add to an omelet loaded with cheese, ham, and mushrooms. You can dice these onions and add them to a fresh garden salad for a satisfying crunch or sprinkle them on top of your fish tacos. White onions also make delicious golden onion rings to serve alongside juicy hamburgers and hot dogs at your next backyard barbecue. You can keep these onions at room temperature until ready to use. Stock your pantry with this three-pound bag of Fresh White Onions.', 'Fresh whole white onions, 3-lb bag Ideal ingredient in a variety of recipes Can be sauteed and put in your favorite foods for added flavor Use to top sandwiches, hamburgers, and hot dogs Fresh onions can be stored in a cabinet or pantry and are easy to prepare', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b95e770c-eb8e-4e06-9c1b-36b90b738afe.b6cc942976970bdd7de1352696b4b2b9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95e770c-eb8e-4e06-9c1b-36b90b738afe.b6cc942976970bdd7de1352696b4b2b9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95e770c-eb8e-4e06-9c1b-36b90b738afe.b6cc942976970bdd7de1352696b4b2b9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (688154772, 'Fresh Blackberries, 18 oz Container', 5, '815887010208', 'Fresh Blackberries, 18 oz', 'Fresh Blackberries, 18 oz: Best when enjoyed at room temperature Light, refreshing taste Healthy sweet treat Prior to serving gently wash them with cool water Refrigerate your berries in the original container to maintain freshness, they should approximately last 3-5 days after purchase Keep dry for optimal freshness', 'Unbranded', 'https://i5.walmartimages.com/asr/0de4f591-8f87-4918-9e83-69613f7863db.d8d580f91a7574e66d5443c83f4a2a86.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0de4f591-8f87-4918-9e83-69613f7863db.d8d580f91a7574e66d5443c83f4a2a86.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0de4f591-8f87-4918-9e83-69613f7863db.d8d580f91a7574e66d5443c83f4a2a86.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (688251077, 'Yellow Flesh Peaches, per Pound', 1.58, '400094345511', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (688461871, 'Fresh Red Seedless Grapes', 2.48, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (688834310, 'Thai Chile 4oz', 3.48, 'deleted_883616008345', 'Small, but is quite hot. It measures around 50,000 - 100,000 Scoville units, which is at the lower half of the range for the hotter habanero but still many times more spicy than a jalapeno', 'Thai Chile 4oz', 'Frontera', 'https://i5.walmartimages.com/asr/7070f244-6147-41d0-8132-d2b14aacba81_1.8a79d20d29f3ea8176f2ec4443d5e64e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7070f244-6147-41d0-8132-d2b14aacba81_1.8a79d20d29f3ea8176f2ec4443d5e64e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7070f244-6147-41d0-8132-d2b14aacba81_1.8a79d20d29f3ea8176f2ec4443d5e64e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (688922411, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094909676', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (688963902, 'Haralson Apples 3 Lb Bag', 3.94, '033383044293', 'short description is not available', 'Haralson Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (689422818, 'Organic Bartlett Pear, 2 Lb Bag', 4.12, 'deleted_883391003504', 'Savor the sweet taste of Fresh Organic Bartlett Pears. Bartlett Pears are aromatic and have a definitive pear flavor that make them great for breakfast, lunch, dinner, and dessert. Chop the organic pears up and add them to muffins with walnuts and vanilla for a sweet treat that’s great for breakfast to get your morning started on a high note. Slice them up and top a pizza with prosciutto, goat cheese, and arugula for a mouthwatering meal perfect for a family dinner or dinner party. Cut the organic pear in half and cook it in a skillet with butter, brown sugar, and vanilla and serve with a scoop of vanilla ice cream for a decadent dessert. Enjoy tasty meals any time of day with Fresh Organic Bartlett Pears.', 'Organic Barlett Pear 2lb Bag Sweet, crisp, and juicy Excellent snacking pear Make a creamy smoothie or a nutritious juice blend Add to your salad for extra crunch and flavor Adds flavor to a variety of recipes Make pear butter or poached pears Make sweet desserts like organic pear cobbler, organic pear crisp or organic pear tarts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a6fbdd1e-9ba0-4018-be9e-e103a7aff0c8_1.7bea0e2f51b084242fcf154eeae372d0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6fbdd1e-9ba0-4018-be9e-e103a7aff0c8_1.7bea0e2f51b084242fcf154eeae372d0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6fbdd1e-9ba0-4018-be9e-e103a7aff0c8_1.7bea0e2f51b084242fcf154eeae372d0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (689574375, 'Grape Tomatoes 10oz', 1.98, '812997020028', 'short description is not available', 'Grape Tomatoes 10oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bba50d7b-3847-429d-b8e8-ae7c0fa7e825.609e4e7206cf3d0344084357836b4a15.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bba50d7b-3847-429d-b8e8-ae7c0fa7e825.609e4e7206cf3d0344084357836b4a15.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bba50d7b-3847-429d-b8e8-ae7c0fa7e825.609e4e7206cf3d0344084357836b4a15.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (690128215, 'Fresh California Grown Red Grapes', 1.78, '014668760138', 'short description is not available', 'Fresh California Grown Red Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (690971680, 'California Grown Peaches, per Pound', 1.58, '400094688779', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (691002811, 'Large Avocado 3 Count Bag', 4.48, 'deleted_850758006362', 'short description is not available', 'Large Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (691074621, 'Freshly Diced Red Onions', 2.58, '090223022392', 'short description is not available', 'Freshly Diced Red Onions', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (691085042, '192pc On Vid 3# Ga', 629.76, '405539281379', 'short description is not available', '192pc On Vid 3# Ga', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (691405267, 'Earthbound Farms Fresh Organic Broccoli Slaw, 9 oz Bag', 3.48, '032601952709', 'Pick up a package of Earthbound Farms Fresh Organic Broccoli Slaw and make something delicious. This nine-ounce bag includes just the fresh and tender heart of the broccoli stem and shredded carrots - all organic and equally simple and delicious as salad, stir fry, or a side dish. Use as a crunchy garnish for tacos or saute with garlic, olive oil, and a meaty tomato sauce - it?s a good substitute for pasta. Give it a quick pulse in the food processor, it?s a healthy stand in for rice or couscous. Discover all the ways to enjoy our Earthbound Farms Fresh Organic Broccoli Slaw.', 'Earthbound Farms Fresh Organic Broccoli Slaw includes just the fresh and tender heart of the broccoli stem and shredded carrots Delicious in salads, stir fries, or as a side dish Washed and ready to eat Grown without GMOs About 3 servings per 9-ounce package 35 calories per serving Keep refrigerated until ready to enjoy', 'Earthbound Farm', 'https://i5.walmartimages.com/asr/11992d9d-1a2b-4437-b379-694de68a054a.96028f4c9ceaad7374c126e499f632c9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/11992d9d-1a2b-4437-b379-694de68a054a.96028f4c9ceaad7374c126e499f632c9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/11992d9d-1a2b-4437-b379-694de68a054a.96028f4c9ceaad7374c126e499f632c9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (691460146, 'Watermelon Seedless', 4.98, '400094425503', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (692092919, 'Pure Green Farms Baby Spring Mix Salad Blend, 4 oz Clam Shell, Fresh', 2.98, '850014580001', 'Our hydroponic Baby Spring Mix Lettuce is a crispy baby lettuce mix with a peppery bite', 'Keep Refrigerated, Greenhouse Grown in the USA, Pesticide Free', 'Pure Green Farms', 'https://i5.walmartimages.com/asr/36735808-a1f6-4856-bd18-3dd009cae5d5.2b071b0caf9d31d850529881a06ffcce.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/36735808-a1f6-4856-bd18-3dd009cae5d5.2b071b0caf9d31d850529881a06ffcce.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/36735808-a1f6-4856-bd18-3dd009cae5d5.2b071b0caf9d31d850529881a06ffcce.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (692171164, 'Ready Pac Bistro Beets Salad Bowl Seasonal, 4.75 Oz.', 2.98, '077745299259', 'Ready Pac Bistro Beets Salad Bowl Seasonal, 4.75 Oz.', 'Bistro Beets 6/4.75 Oz. (seasonal)', 'Ready Pac Foods', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (692467255, 'Fresh Cotton Candy Grapes, 2 Lb', 3.48, '814563010488', 'short description is not available', 'Fresh Cotton Candy Grapes, 2 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (692577962, 'Green Plum, Each', 1.78, '683953044354', 'short description is not available', 'Green Plum, Each', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (692697485, 'Marketside Organic Fresh Garlic, 3 Count', 2.33, 'deleted_681131180733', 'Spice up your meal by adding some Marketside Organic Fresh Garlic. Each sleeve contains three bulbs, and they are certified organic as per USDA standards. Mince them to the desired size or use a clove and enjoy a zesty flavor that you will love. It can be applied to different kinds of bread in butter or oil to create a variety of classic dishes, such as garlic bread, garlic toast, bruschetta, crostini, and canape. You can also add them to soups, stews, sauces, dressings, gravy, meat, fish, pizza and more. Enhance the flavor of your cooked meals with Marketside Organic Fresh Garlic.Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Fresh Garlic, 3 Count: Certified organic as per USDA standards Sleeve contains three bulbs Provides the classic zesty garlic flavor that you love Use to make garlic bread or bruschetta Add to pasta, stew, pizza, and more', 'Marketside', 'https://i5.walmartimages.com/asr/b555b30e-bec4-47fb-8e4c-feb93db5fec6.9143fb8b62fb90fee36d4e8c35966c75.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b555b30e-bec4-47fb-8e4c-feb93db5fec6.9143fb8b62fb90fee36d4e8c35966c75.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b555b30e-bec4-47fb-8e4c-feb93db5fec6.9143fb8b62fb90fee36d4e8c35966c75.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (693055912, 'Fresh Slicing Tomato, 2 Pack', 2.48, '679508081363', 'Bring the fresh, delicious taste of Slicing Tomatoes into your home. These tomatoes deliver sweet and juicy flavor with each bite and are an ideal ingredient in a variety of recipes. They would make a tasty, garden-inspired addition to salads, burgers, gourmet sandwiches, and so much more. They are picked at peak freshness and specially bred for deep red color, intense flavor, and higher lycopene content than standard tomatoes. Whether you slice or dice them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with these fresh Slicing Tomatoes.', 'Slicing Tomato, 2 Pack: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, burgers, gourmet sandwiches, and more Add to party trays or school lunches Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e648291f-0ccf-4ef5-a8f8-7fbe8d8686bb.192e42a5f946db220a42352ce18ef6f8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e648291f-0ccf-4ef5-a8f8-7fbe8d8686bb.192e42a5f946db220a42352ce18ef6f8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e648291f-0ccf-4ef5-a8f8-7fbe8d8686bb.192e42a5f946db220a42352ce18ef6f8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (693670835, 'Freshness Guaranteed Fruit Cup To Go Fresh Fruit Blend', 2.28, '263028000005', 'short description is not available', 'Freshness Guaranteed Fruit Cup To Go Fresh Fruit Blend', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (694286682, 'Microwaveable Sweet Potatoes Per Each', 1.38, '661061000448', 'short description is not available', 'Microwaveable Sweet Potatoes Per Each', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (694426357, 'Freshness Guaranteed Fresh Black Seedless Grapes', 2.28, '', 'short description is not available', 'Freshness Guaranteed Fresh Black Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (694521279, 'Avocado 4 Ct Bag', 3.76, 'deleted_636442970078', 'short description is not available', 'Avocado 4 Ct Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (695120799, '90pc Pto Rst 10# Tx', 537.3, '405530543278', 'short description is not available', '90pc Pto Rst 10# Tx', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (695330894, 'Freshly Diced Red Onions', 2.58, '643550000641', 'short description is not available', 'Freshly Diced Red Onions', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (695951315, 'Cucumber Salad/pickling', 3.68, 'deleted_852966005472', 'short description is not available', 'Cucumber Salad/pickling', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (696263989, 'Fresh Limes, 2lb Bag', 3.67, '826594105125', 'Add zest and flavor to your meals and beverages with these Limes (LIMA). Freshly squeezed limes provide a healthy dose of vitamin C to your diet and are a key ingredient in many recipes, from homemade salsa to chicken dishes. The citrusy tropical flavor of these limes are sure to add a zing to all your cooked meals. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use them when baking cakes, cookies, and tarts. These limes are sold in a two-pound bag, so you\'ll have plenty for all your culinary creations. Enjoy the refreshing, tart flavor of Limes.', 'Juicy and fresh, packed with vitamin C Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies and tarts Refreshing, tart flavor', 'Unbranded', 'https://i5.walmartimages.com/asr/4c195d67-0b07-46f8-b242-b80ee435ccdb.9646b96390ea44bad3467705da9a11bb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4c195d67-0b07-46f8-b242-b80ee435ccdb.9646b96390ea44bad3467705da9a11bb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4c195d67-0b07-46f8-b242-b80ee435ccdb.9646b96390ea44bad3467705da9a11bb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (696326497, 'Sliced Baby Bella Mushrooms, 8 Oz.', 2.37, 'deleted_405672644185', 'Sliced Baby Bella Mushrooms, 8 Oz.', 'Mushroom Sliced Baby Bella 8 Oz.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (696653395, 'Shishito Peppers 8oz Bag', 2.44, 'deleted_615435435053', 'Shishito Peppers are a snacker\'s delight. Cooks in minutes. Savory with a hint of smokiness. A total crowd pleaser, and packed with Vitamins A and C. Bite-size and snackable. You will be hooked.', 'Cooks in minutes Savory with a hint of smokiness Packed with Vitamins A and C Bite-size and snackable Mild and tasty, 1 in 10 have heat', 'ark foods', 'https://i5.walmartimages.com/asr/7f3ff6fb-2ce0-4641-830d-95fb478ce498_1.914068bb4be4bdeea44fbd1e4cb46472.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7f3ff6fb-2ce0-4641-830d-95fb478ce498_1.914068bb4be4bdeea44fbd1e4cb46472.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7f3ff6fb-2ce0-4641-830d-95fb478ce498_1.914068bb4be4bdeea44fbd1e4cb46472.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (696746463, 'Yellow Onions, 3 Lb.', 1.94, 'deleted_400094082966', 'Yellow Onions, 3 Lb.', 'Yellow Onions 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/496364fc-43dc-4f28-b368-3c1c9038e6fe.5edfc4a4501e40cfc6c4713335667001.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/496364fc-43dc-4f28-b368-3c1c9038e6fe.5edfc4a4501e40cfc6c4713335667001.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/496364fc-43dc-4f28-b368-3c1c9038e6fe.5edfc4a4501e40cfc6c4713335667001.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (697137095, 'Pacific Rose Apples 2 Ct Pouch Bag', 1.97, '847473006357', 'short description is not available', 'Pacific Rose Apples 2 Ct Pouch Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (697322977, 'California Grown Peaches, per Pound', 1.58, '400094696330', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (697379739, 'Okra', 3.28, '405873145443', 'short description is not available', 'Okra', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e4e34a58-b607-400b-9d4a-6af912891c6b.0a7373f83c943a13220ab834f76d32ab.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4e34a58-b607-400b-9d4a-6af912891c6b.0a7373f83c943a13220ab834f76d32ab.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4e34a58-b607-400b-9d4a-6af912891c6b.0a7373f83c943a13220ab834f76d32ab.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (697422632, 'Services Reduced Program Dept 94', 0.01, '251870000007', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (697850796, 'Fresh Candy Snap Grapes, 1 Lb', 3.48, 'deleted_854957001265', 'Savor the sweet crunch of Fresh Candy Snap Grapes. Each 1 Lb bag is brimming with plump, juicy grapes, known for their unique candy-like flavor. These grapes are naturally sweet, seedless, and have a satisfying snap when bitten into. Each grape is carefully selected to ensure the highest quality, delivering a truly delicious eating experience. Perfect for snacking, salads, or adding a burst of natural sweetness to your favorite recipes. Enjoy the mouthwatering taste of Fresh Candy Snap Grapes today!', 'Fresh Candy Snap Grapes, 1 Lb Savor the sweet crunch of Fresh Candy Snap Grapes. Each 1 Lb bag is brimming with plump, juicy grapes, known for their unique candy-like flavor. These grapes are naturally sweet, seedless, and have a satisfying snap when bitten into. Each grape is carefully selected to ensure the highest quality, delivering a truly delicious eating experience. Perfect for snacking, salads, or adding a burst of natural sweetness to your favorite recipes. Enjoy the mouthwatering taste of Fresh Candy Snap Grapes today! Find these in your local Walmart today!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/da7810bf-fd66-4618-b44b-3529b31fb218_1.8aca6d650a64334ff32f56054492fe76.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/da7810bf-fd66-4618-b44b-3529b31fb218_1.8aca6d650a64334ff32f56054492fe76.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/da7810bf-fd66-4618-b44b-3529b31fb218_1.8aca6d650a64334ff32f56054492fe76.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (698009326, 'Services Reduced Program Dept 94', 0.01, '251673000006', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (698034023, '170pc Pie Pumpkin', 455.6, '405714894325', 'short description is not available', '170 Ppkn Pie Cc', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (698098572, '100pc Pto Rst 10# #2', 597, '405552366060', 'short description is not available', '100pc Pto Rst 10# #2', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (698129798, 'Tri Pepper Diced 7 Oz', 2.58, '030223022756', 'short description is not available', 'Tri Pepper Diced 7 Oz', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (698543197, '160pc On Vid 4# Gabf', 630.4, '400094634578', 'short description is not available', '160pc On Vid 4# Gabf', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (698798315, 'Local Bounti Spring Mix, Lettuce, Baby Leafy Greens, Packaged Salad, Greenhouse Grown, 9.5 oz', 4.98, '850018385497', 'Local Bounti Spring Mix is a fresh and flavorful blend of premium greens, including varieties like red leaf, green leaf, romaine, and butter lettuces. Grown locally in Washington State, this mix is perfect for creating vibrant salads, delicious sandwiches, or adding a fresh touch to any meal. Thanks to our greenhouse-protected growing methods, Local Bounti Spring Mix is non-GMO, clean, and ready to enjoy straight from the package. Plus, it stays fresh longer, so you can count on it whenever you need it. Sustainably grown using 90% less land and water than traditional farming, it’s a choice you can feel good about. Add Local Bounti Spring Mix to your cart today and elevate your meals with this beautiful blend of greens!', 'A Delightful Blend of Colorful and Tender Greens Perfect for Salads, Sandwiches, Bowls, and Wraps Washington State Grown Stays Fresh Longer Greenhouse Protected and Clean Ready to Eat Non-GMO Sustainably Greenhouse Grown', 'Local Bounti', 'https://i5.walmartimages.com/asr/e4b46894-f4be-4205-afde-5e69917ca6a8.a5207d6f9c40f4091be06628758d9156.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4b46894-f4be-4205-afde-5e69917ca6a8.a5207d6f9c40f4091be06628758d9156.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4b46894-f4be-4205-afde-5e69917ca6a8.a5207d6f9c40f4091be06628758d9156.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (698980293, 'Organic Potato Tray Kit Mediterranean Herb', 4.96, '097419041199', 'Organic Garden Fresh Balsamic Potato, 1 Each', 'Organic Potato Tray Balsamic Garden Fresh', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ed432430-762f-4a35-bde0-b30dd3468bc6_1.f51d9d32a5708406b1797360767f43dd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed432430-762f-4a35-bde0-b30dd3468bc6_1.f51d9d32a5708406b1797360767f43dd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed432430-762f-4a35-bde0-b30dd3468bc6_1.f51d9d32a5708406b1797360767f43dd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (699597111, 'Services Reduced Program Dept 94', 0.01, '251684000002', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (699731381, 'Jumbo White Onions Per Pound', 1.24, 'deleted_050269046639', 'short description is not available', 'Jumbo White Onions Per Pound', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (699853549, 'Miedema Produce For You Radish Chips, 8 oz', 1.67, '074515000121', 'Radish Chips, Fresh 8 oz (227 g) Like freshness? Then like us! Facebook: /MiedemaProduce. Sealed for freshness! Known by our For You brand, Miedema Produce is your year-around resources for more than 50 different varieties. Colorful, crisp and nutrient rich - For You brand fruits and vegetables are a delicious addition to any meal or snack! Use your imagination at breakfast, lunch and dinner - or just plain reach for the freshness as a healthy snack. Make For You part of your healthy life style. Visit our website for a few of our favorite recipes or share yours. miedemaproduce.com. Product of USA. Keep refrigerated. 8 oz (227 g) Hudsonville, MI 49426', 'Radish Chips, Fresh Sealed for freshness! Known by our for you brand, Miedema produce is your year-around resource for more than 50 different varieties. Colourful, crisp and nutrient rich-for you brand fruits and vegetables are a delicious addition to any meal or snack! Use your imagination at breakfast, lunch and dinner or just plain reach for the freshness as a healthy snack. Make for you part of your healthy life style. miedemaproduce.com. Like freshness? Then like us! Facebook/MiedemaProduce. Like freshness? then like us! Facebook facebook.com/miedema produce. Visit our website for a few of our favorite recipes or shareyours miedemaproduce.com. Product of USA.', 'For You', 'https://i5.walmartimages.com/asr/fff8aa18-1f7c-46bd-a4c8-b42795de7289.bc5f477b5a5bddbb8f35101652f18884.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fff8aa18-1f7c-46bd-a4c8-b42795de7289.bc5f477b5a5bddbb8f35101652f18884.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fff8aa18-1f7c-46bd-a4c8-b42795de7289.bc5f477b5a5bddbb8f35101652f18884.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (700771360, 'Sweet Mini Peppers 1 Lb Bag', 2.88, 'deleted_044416840010', 'short description is not available', 'Sweet Mini Peppers 1 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (700866905, 'Fresh Whole Micro Tomato, 4 oz Cup', 1.98, '057836022607', 'Add color and flavor to your next salad with these personal-sized Fresh Whole Micro Tomatoes. Similar to larger tomatoes, micro tomatoes have a lower water content than other snacking tomatoes, making them meatier and more flavorful, as well as less likely to make a mess when you bite into them. They are perfectly bite-sized which makes them not only ideal in salads and salsas but also perfect as a delicious and convenient snack all on their own. Plus, these small tomatoes also have a longer shelf-life, making it easy to store them for several days at a time and they are hardier and less fragile than a traditional tomato, meaning you no longer have to worry about bruising. Be sure to pick up Fresh Whole Micro Tomatoes and experience just how convenient enjoying tomatoes can be.', 'Fresh Whole Micro Tomato, 4 oz Cup Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/40f21b9e-08a7-481b-91e7-b19bb6c65463.e961d19908517b841a58511dde3f6dbe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/40f21b9e-08a7-481b-91e7-b19bb6c65463.e961d19908517b841a58511dde3f6dbe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/40f21b9e-08a7-481b-91e7-b19bb6c65463.e961d19908517b841a58511dde3f6dbe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (700950331, '240pc On Ylw 3# Uo', 465.6, '400094915851', 'short description is not available', '240pc On Ylw 3# Uo', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (700994874, 'Fresh Green Seedless Grapes', 3.27, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (701023939, 'Yellow Onions, 3 Lb.', 2.88, '795631334609', 'Yellow Onions, 3 Lb.', 'Yellow Onions 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (701132730, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094319949', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (701151005, 'Freshness Guaranteed Sliced Portabella Mushroom Caps 6oz', 2.6, 'deleted_084348676011', 'short description is not available', 'Freshness Guaranteed Sliced Portabella Mushroom Caps 6oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (701454161, 'That\'s Tasty Puree Basil 2.8 oz', 3.94, '768573300315', 'Our Organic Basil 2.8 oz Puree is the perfect addition to your Italian dishes. It adds quick and robust flavor with ease. Whether a recipe demands fresh or dried basil, our puree is a versatile option. Need a last-minute pesto fix? Our organic basil puree will save the day. Experience the convenience and taste of our puree in all your favorite recipes.', 'Organic Basil Puree 2.8oz Our Organic Basil 2.8 oz Puree is the perfect addition to your Italian dishes. It adds quick and robust flavor with ease. Whether a recipe demands fresh or dried basil, our puree is a versatile option. Need a last-minute pesto fix? Our organic basil puree will save the day. Experience the convenience and taste of our puree in all your favorite recipes.', 'Shenandoah Growers', 'https://i5.walmartimages.com/asr/044fdb8b-c690-44bb-bb92-665a75c4e499_1.83041a766504fa1359aaff75912a3c4e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/044fdb8b-c690-44bb-bb92-665a75c4e499_1.83041a766504fa1359aaff75912a3c4e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/044fdb8b-c690-44bb-bb92-665a75c4e499_1.83041a766504fa1359aaff75912a3c4e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (701560552, 'Services Reduced Program Dept 94', 0.01, '251702000007', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (701567723, 'Marketside Organic Broccoli Florets & Cauliflower, 12oz', 3.98, '681131179409', 'Marketside Organic Broccoli Florets and Cauliflower are packed fresh, washed and ready to eat for your convenience. They have a great fresh taste that is loaded with nutrients, and a vibrant green and white colors that are sure to add a pop to all your dishes. Serve with ranch dressing or hummus for a tasty and healthy snack any time of the day. Enjoy them as a wholesome side or use them in all your favorite recipes. They are also a great addition to Asian stir-fry. Season them with salt, pepper and garlic and serve with grilled steak, mashed potatoes and bread rolls for a hearty dinner. Dinner sides are made easy with Marketside Organic Broccoli Florets and Cauliflower. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Broccoli Florets & Cauliflower, 12 oz USDA Organic Washed and ready to eat Serve with ranch dressing or hummus for a delicious snack 30 calories per serving Net weight 12 oz', 'Marketside', 'https://i5.walmartimages.com/asr/110c94e2-5cd0-4533-8778-267491aae5c1_3.2c59ad35b5a04f8331216daa73bf19d8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/110c94e2-5cd0-4533-8778-267491aae5c1_3.2c59ad35b5a04f8331216daa73bf19d8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/110c94e2-5cd0-4533-8778-267491aae5c1_3.2c59ad35b5a04f8331216daa73bf19d8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (702754398, 'California Grown Peaches, per Pound', 1.58, '400094111697', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (703007418, 'Services Reduced Program Dept 94', 0.01, '251668000004', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (703312861, 'Broccoli Florets 24z', 5.98, '782796012305', 'short description is not available', 'Broccoli Florets 24z', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (703601231, 'California Grown Peaches, per Pound', 1.58, '400094858738', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (704050400, 'California Grown Peaches, per Pound', 1.58, '400094989074', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (704071940, 'Taco Salad Kit', 4.98, '016741000629', 'short description is not available', 'Taco Salad Kit', 'Unbranded', 'https://i5.walmartimages.com/asr/e66f7f68-0190-4888-87ad-fd51e37aa8bc_1.18f1d7ff9067a9942a5fbb1de42bb98a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e66f7f68-0190-4888-87ad-fd51e37aa8bc_1.18f1d7ff9067a9942a5fbb1de42bb98a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e66f7f68-0190-4888-87ad-fd51e37aa8bc_1.18f1d7ff9067a9942a5fbb1de42bb98a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (704363065, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094111550', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (704777981, 'Organic Grape Tomatoes, 10 oz Package', 2.48, '751666156708', 'Organic Medley Tomatoes are an exciting summer treat, and they\'re the perfect size for skewers, salads and roasting. These bite-sized medley tomatoes look and taste great. Medley tomatoes are a low-calorie treat that are also low in sodium and are a good source of fiber. Whether you are snacking or adding them to your favorite dish. their uses are almost limitless. Try these grape tomatoes with feta cheese, fresh dill and a drizzle of olive oil for a light and delicious Mediterranean treat. Or make a caprese salad with medley tomatoes, fresh basil, fresh mozzarella and balsamic vinegar. With 10-ounces of tomatoes in each package, you\'ll have plenty to make mouthwatering meals. Use your imagination to create delicious dishes with Organic Medley Tomatoes.', 'Organic Medley Tomatoes, 10 oz Package: Perfect size for skewers, salads and roasting Low-calorie, low in sodium, and a good source of fiber Pair with feta cheese, fresh dill, and a drizzle of olive oil for a Mediterranean dish Certified organic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c12abd1f-2dcc-48ec-8f2f-7ae68c5c7191.f5ee8743ba711fe48df16e3eadf72686.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c12abd1f-2dcc-48ec-8f2f-7ae68c5c7191.f5ee8743ba711fe48df16e3eadf72686.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c12abd1f-2dcc-48ec-8f2f-7ae68c5c7191.f5ee8743ba711fe48df16e3eadf72686.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (705215844, 'Fresh Red Seedless Grapes', 1.66, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (705581913, 'Watermelon Chunks 32oz', 10.98, '045009891242', 'Experience a burst of summertime goodness with this delicious Freshness Guaranteed Watermelon. This pre-cut ripe watermelon is juicy, sweet, and refreshing to the taste. In addition, watermelons are a great natural source of vitamins A and C. Carry them with you and eat them straight out of the tray any time you want, at home, or on-the-go. Pair them with a tasty salad or sandwich for a nutritious and delicious lunch. You can also use them as a naturally sweet ingredient in a fruit salad. Add some fresh fruit to your daily menu with this Freshness Guaranteed Watermelon.Freshness Guaranteed provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Watermelon Chunks, 32 oz: Ready to eat watermelon Bag Great for fruit salad Summer treat Net weight 32 oz Sweet and Juicy', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a6977c73-d8a5-4514-9b4d-93002d2c49dc.2a7856e7d56baaf2f00551e23bb98e55.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6977c73-d8a5-4514-9b4d-93002d2c49dc.2a7856e7d56baaf2f00551e23bb98e55.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6977c73-d8a5-4514-9b4d-93002d2c49dc.2a7856e7d56baaf2f00551e23bb98e55.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (705848836, 'Dried Mushroom Kibble by Its Delish, 8 Oz Large Jar Dark Chilean Dehydrated and Chopped Boletus Luteus Mushrooms for Cooking and Flavoring', 36.99, '799137109228', 'Dried Kibbled Mushrooms by Its Delish Boletus Luteus mushrooms is a wild-grown dark mushroom with a deep and earthy flavor, commonly called the brown or Chilean mushroom, sorted, washed, trimmed, and air-dried. There are a good source of vitamin, minerals and protein. These are 100% all-natural with no added ingredients or preservatives. These chopped mushroom flakes are used in a wide variety of applications for rich-flavored mushroom for including sauces, gravy, soups, vegetable stock, broth and stews, pasta products, meats and sausages, seasoning blends, salad products, pot pies, and casseroles and ready meals. Prep Instruction Ideas: Add these mushrooms while slow cooking soups, stews, sauces, casseroles and other foods with sufficient liquid content. In other applications, hydrate by using 1 part dried mushroom and 5 parts water. Simmer for 10-15 minutes. Add water if necessary. Yields 1 oz equals about 1/2 cup dry. Generally, air dried vegetables double in volume when hydrated. Dry/Fresh Ratio 1 lb of air dried boletus luteus mushrooms, once rehydrated, equals approximately 6 lbs of fresh prepared boletus luteus mushrooms. Storage Suggestion Best if used within 18 months. Store tightly sealed in a dry location away from sunlight. Tip: For ready to use mushrooms, soak the dry mushrooms in a sealed container and store in the refrigerator. Stock up and enjoy! About It\'s Delish! It\'s Delish was established in 1992 and is located in North Hollywood, California. It\'s Delish is a food manufacturer and distributor who produces over 500 gourmet food products including licorice, sour belts, taffies, caramels, Jordan almonds, chocolates, nuts, fruits, trail mixes, spices, and the spice blends. It\'s Delish also produces organics and all-natural products. We give you the opportunity to order from the factory direct!', 'PREMIUM - Gourmet Dried Mushrooms Kibble Similar to Porcini and chopped into small dices VALUE SIZE - Half Pound 8 Oz Convenient Large Jar by the Its Delish brand ENHANCE your culinary experience with hearty flavor, bold taste and vibrant aroma. Add rich flavors paired with vitamins, minerals and protein to your favorite recipes and dishes AWESOME in sauces, gravy, soups, vegetable stock, broth and stews, pasta products, meats and sausages, seasoning blends, salad products, pot pies, risottos and casseroles and ready meals. QUALITY - Certified Kosher OU Parve, Non-Dairy, Vegan, All-Natural, No MSG, No preservatives, Gluten Free, Packaged in the USA and Shipped to you Direct!', 'It\'s Delish', 'https://i5.walmartimages.com/asr/94d643da-b2b9-451f-978f-24dbcfaeca10.d300a6a22aaefdc274c993786857c5b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/94d643da-b2b9-451f-978f-24dbcfaeca10.d300a6a22aaefdc274c993786857c5b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/94d643da-b2b9-451f-978f-24dbcfaeca10.d300a6a22aaefdc274c993786857c5b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (705849456, 'Revol Greens Organic Spring Mix Salad Blend, 9 oz Clam Shell, Fresh', 4.48, '850024486171', 'Revol Greens® Organic Spring Mix is a blend of tender and crisp baby lettuce. All Revol Greens® lettuce is grown inside a greenhouse and harvested daily, 365 days a year. Our regional greenhouse locations allow us to reach nearly all our customers within 24-48 hours of harvest, so that our greens arrive incredibly fresh and at peak nutritional value.', 'USDA Organic Certified Grown in a protected greenhouse environment Sustainably grown with 90% less water than field grown lettuce', 'Revol Greens', 'https://i5.walmartimages.com/asr/d213b536-605c-4966-b60c-e15aeb79ba22.b1aa0b41e676162f536ff0dc11fc1ecc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d213b536-605c-4966-b60c-e15aeb79ba22.b1aa0b41e676162f536ff0dc11fc1ecc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d213b536-605c-4966-b60c-e15aeb79ba22.b1aa0b41e676162f536ff0dc11fc1ecc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (706044763, 'Fresh Bitter Melon, Each', 1.73, '000000047838', 'Our fresh Bitter Melon is the perfect veggie to balance out any meal. Also known as the bitter squash and goya, this vegetable has a unique flavor. To prepare this vegetable, you\'ll want to peel it to get to the flesh inside. You can steam it and serve as a tasty side to any meal. A popular ingredient in Chinese cuisine, the bitter melon may be used in a variety of soups and stir-fry recipes. Explore new recipes and discover all the delicious ways to prepare this tasty and nutritious vegetable. With our fresh Bitter Melon, you know you\'re getting the bounty of nature\'s goodness.', 'Bitter Melon, each: Extremely versatile vegetable Also known as the bitter squash & goya Perfect ingredient for Chinese cuisine Try them steamed as a delicious side dish Good source of vitamins Explore delicious new recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/13e16ee1-cc8e-4e6f-befc-58310f9b9514.6767c787c7cb8e6202c90e2b4dbd85ec.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13e16ee1-cc8e-4e6f-befc-58310f9b9514.6767c787c7cb8e6202c90e2b4dbd85ec.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13e16ee1-cc8e-4e6f-befc-58310f9b9514.6767c787c7cb8e6202c90e2b4dbd85ec.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (706049230, 'Fresh Broccoli Bunch, Each', 2.97, '405984606871', 'Getting your daily servings of vegetables is tastier than ever with Braga Farms Broccoli. This bunch broccoli has everything a broccoli-lover could want, from its healthy green color to its even ratio of florets to stem. The consumption of broccoli has tripled over the past 25 years. Its popularity is due to an aesthetic appeal, delightful taste, versatile-culinary applications, and the fact that it is packed full of nutrition. Whether you are in the mood to steam, roast, or sauté, broccoli is a great way to get your daily dose of greens in for the day.', 'Bright-green color Healthy side to any meal Excellent steamed, roasted, sautéed, in soups or served raw with a favorite dip Even ratio of florets to stem; approximately 2 per bunch', 'Foxy', 'https://i5.walmartimages.com/asr/5abee835-5f35-48f5-aca8-6b261fe1b244.616a2c73d9eecce6d38f94f28e9fcde0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5abee835-5f35-48f5-aca8-6b261fe1b244.616a2c73d9eecce6d38f94f28e9fcde0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5abee835-5f35-48f5-aca8-6b261fe1b244.616a2c73d9eecce6d38f94f28e9fcde0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (706328401, 'Fresh Grown Green Seedless Grapes 32oz', 3.48, 'deleted_095829210716', 'short description is not available', 'Fresh Grown Green Seedless Grapes 32oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (706599657, 'Marketside Dark Leafy Greens Mix 5oz', 2.88, '681131221436', 'Marketside Dark Leafy Greens Mix is made with a wholesome medley of baby spinach, baby red chard, baby kale, baby green romaine lettuce, and baby arugula. This mix is picked fresh, washed, and ready to eat for your convenience. Use it to create your very own personalized salad tossed with your favorite vegetables, protein, nuts, and dressing, use it as a topping on sandwiches and pizzas, or simply enjoy it as a healthy side. It offers nutritional benefits such as being an excellent source of dietary fiber, iron, calcium, and potassium. Enjoy fresh from the farm taste with Marketside Dark Leafy Greens Mix today.Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Dark Leafy Greens Mix, 5 oz: Refreshing mix of baby spinach, baby red chard, baby kale, baby green romaine lettuce, and baby arugula Washed and ready to eat35 calories per serving Great addition to any meal', 'Marketside', 'https://i5.walmartimages.com/asr/e1be4e64-0553-4531-9dc2-0e43e303b29d_3.c3fa41a361ac4d6a753cc07772a069cb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e1be4e64-0553-4531-9dc2-0e43e303b29d_3.c3fa41a361ac4d6a753cc07772a069cb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e1be4e64-0553-4531-9dc2-0e43e303b29d_3.c3fa41a361ac4d6a753cc07772a069cb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (707143838, 'Marketside Organic Super Blend, 10 oz', 3.98, '681131179423', 'Marketside Super Blend is packed with a wholesome blend of broccoli, colored carrots, green cabbage and kale. This crisp medley is packed fresh, washed and ready to eat for your convenience. Use this blend to make our delicious super blend with apples recipe located on the back of the packaging. All you need is one small organic apple, half a cup of organic almonds and half a cup of organic balsamic vinaigrette. In a large bowl, combine super blend, chopped apple and almonds. Pour balsamic vinaigrette over bowl, toss ingredients, cover and chill. Serve this prepared side with baked chicken and grilled asparagus for a delicious and healthy meal. Dinner sides are made easy with Marketside Organic Super Blend Slaw. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Super Blend, 10 oz: Blend of broccoli, colored carrots, green cabbage and kale USDA Organic Washed and ready to eat Net weight 10 oz', 'Marketside', 'https://i5.walmartimages.com/asr/0da279ea-3878-457b-9b22-b67cbd383681_2.2e61c037b7fc45cf67dd21ba247f88f2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0da279ea-3878-457b-9b22-b67cbd383681_2.2e61c037b7fc45cf67dd21ba247f88f2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0da279ea-3878-457b-9b22-b67cbd383681_2.2e61c037b7fc45cf67dd21ba247f88f2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (707589801, 'WHOLLY GUACAMOLE Minis Snack Cup, Classic, 2.8 oz', 1.98, '616112810323', 'WHOLLY GUACAMOLE Classic Snack Cup features our signature guacamole, perfectly portioned and paired with crunchy, bite-size tortilla rounds. Let’s guac and roll! WHOLLY GUACAMOLE is a trademark of Avomex, Inc.', 'Made using 100% Hass avocados for 100% snacking greatness America’s #1 selling refrigerated guacamole Keep refrigerated 220 calories per serving No Preservatives added and gluten free', 'WHOLLY GUACAMOLE', 'https://i5.walmartimages.com/asr/baa84967-3ec9-4d0d-bb35-d4a9bd77c7bc.6a6240d1422402ef1bd8fe8963a5024d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/baa84967-3ec9-4d0d-bb35-d4a9bd77c7bc.6a6240d1422402ef1bd8fe8963a5024d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/baa84967-3ec9-4d0d-bb35-d4a9bd77c7bc.6a6240d1422402ef1bd8fe8963a5024d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (707913139, 'Shrink Cap | Gold/Black Grapes (100/Pack)', 19.95, '776982330083', 'Elevate Your Wine Experience with Our European Crafted Shrink Caps Enhance Bottle Presentation and Ensure Freshness with Our Shrink Caps! Our Premium Shrink Caps are the perfect addition to any wine bottle, combining elegance with functionality. These caps, expertly crafted in Europe, not only enhance the visual appeal of your bottles but also play a crucial role in maintaining the cork\'s integrity. Our shrink caps are ideal for winemakers, wine enthusiasts, or those who love to gift homemade wine. They are a simple yet effective way to elevate your wine\'s presentation and ensure freshness. Key Features: High-Quality Material:Manufactured in Europe, guaranteeing premium quality and durability. Universal Fit:Designed to fit 375ml, 750ml, and 1500ml wine bottles perfectly. Easy Tear-Off Design:Facilitates a smooth bottle-opening experience. Precise Dimensions:Measuring 30.5mm x 55mm for a flawless fit. Elevated Presentation:Adds a sophisticated touch to any wine bottle. Usage Guide: Slide the Cap:Place the shrink cap over the neck of the wine bottle. Apply Heat:Use a heat gun or steam to shrink the cap around the bottleneck securely. Tear & Pour:Enjoy the easy tear-off design for quick access to your wine. FAQs: Q:Can these shrink caps be used for beverages other than wine?A:They are versatile for any bottled beverage with compatible dimensions. Q:How resistant are these caps to external factors like moisture?A:Crafted with high-quality materials, they resist moisture and other external elements effectively. Q:Are special tools required for application?A:A heat gun or steam source is needed to secure the cap\'s shrinking. Q:Do these caps leave any residue upon removal?A:No, they are designed for clean and residue-free removal.', 'High-Quality Corks and Stoppers for Wine Bottles – Designed to provide a secure seal, preserving the freshness and flavor of your wine with every use. Perfect for Home and Professional Winemakers – Whether for DIY projects or commercial bottling, our corks and stoppers ensure reliable performance and a professional finish. Durable and Easy to Use – Made from premium materials, our wine corks and stoppers are easy to insert and remove, making them ideal for sealing and storing your homemade beverages.', 'ABC Cork', 'https://i5.walmartimages.com/asr/30c329d1-b7c9-44a4-9d4d-98f14ce09e06.fe32b0577d180ddf4ca91013b5c6f226.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/30c329d1-b7c9-44a4-9d4d-98f14ce09e06.fe32b0577d180ddf4ca91013b5c6f226.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/30c329d1-b7c9-44a4-9d4d-98f14ce09e06.fe32b0577d180ddf4ca91013b5c6f226.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (708117188, 'Spring Mix Salad 11oz', 3.98, '077745243399', 'short description is not available', 'Spring Mix Salad 11oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (708164915, 'Plum 1 lb Pack', 3.98, '683953001906', 'short description is not available', 'Green Plums 1 Lb Clamshell', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (708171750, 'Large Avocado 3 Count Bag', 4.48, '', 'short description is not available', 'Large Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (708290238, 'Gold Nugget Sampler Pouch', 4.88, '405911077248', 'short description is not available', 'Gold Nugget Sampler Pouch', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (708455082, 'Fresh Organic Pineapple', 4.34, '', 'Enjoy a burst of tropical flavor with this Fresh Organic Pineapple. This pineapple can be a satisfying afternoon snack, or you can use it in a variety of recipes. For breakfast, use this pineapple to make a rich and creamy smoothie or serve it alongside your pancakes, sausage, and eggs. Slice it up and use to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. For dessert, you could make a crowd-pleasing pineapple upside down cake or a comforting pineapple crisp. However you choose to use it, this Fresh Organic Pineapple will add flavor to any meal or beverage.', 'Fresh Organic Pineapple Enjoy a burst of tropical flavor Healthy and delicious fruit Enjoy on its own or as a part of your favorite meals Make a rich and creamy smoothie or serve it alongside your pancakes, sausage, and eggs Slice it up and use to add flavor to a lunchtime salad or as a garnish for your favorite cocktail Make a crowd-pleasing pineapple upside down cake or a comforting pineapple crisp', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8289f171-d578-44bd-bd17-d8174ed7e43e.7cf7dfadbc2034e47872c405ad8e3969.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8289f171-d578-44bd-bd17-d8174ed7e43e.7cf7dfadbc2034e47872c405ad8e3969.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8289f171-d578-44bd-bd17-d8174ed7e43e.7cf7dfadbc2034e47872c405ad8e3969.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (708743669, 'Organic Green Leaf Lettuce', 1.96, 'deleted_033383904078', '', '', '', 'https://i5.walmartimages.com/asr/39e52c0a-350c-44ae-8d1d-226bf2f5cce3_1.024aa0ba302d0701a6cde28cd3c80264.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39e52c0a-350c-44ae-8d1d-226bf2f5cce3_1.024aa0ba302d0701a6cde28cd3c80264.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39e52c0a-350c-44ae-8d1d-226bf2f5cce3_1.024aa0ba302d0701a6cde28cd3c80264.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (709553568, 'Whole Nopalitos, 16 oz', 2.84, '825645003786', 'Our fresh Whole Nopalitos will add delicious flavor and texture to your next meal. This 16-ounce resealable bag of whole peeled cactus is a popular ingredient in Mexican cuisine. They offer a wonderful crunch and a slightly citrusy taste. Use them to make Nopalitos with Tomatoes and Onions, Sopa de Nopal, Enchiladas Rojas with Nopales and Black Beans, and many more savory recipes. However you choose to use it, nopales will add a unique flavor to any meal. Explore new recipes and discover all the delicious ways to prepare this tasty cactus. Add something delicious and nutritious to your next meal with our fresh Whole Nopalitos.', 'Whole Nopalitos, 16 oz: May be used in a variety of recipes Crunchy with a slightly citrusy taste Use in Mexican cuisine such as Sopa de Nopal Season & grill Good source of vitamins & minerals Explore delicious new recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9bcd0863-ebef-4206-9b3b-f43ffa185844.1e3991dbcbe423c8a36a2831ad0ac211.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9bcd0863-ebef-4206-9b3b-f43ffa185844.1e3991dbcbe423c8a36a2831ad0ac211.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9bcd0863-ebef-4206-9b3b-f43ffa185844.1e3991dbcbe423c8a36a2831ad0ac211.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (709642781, 'California Grown Peaches, per Pound', 1.58, '400094989210', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (710319131, 'AVO BAG 10/5 48 MXNR', 3.28, 'deleted_852324007308', 'Avocados', 'Large Avocado 5 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (710449142, 'Plantains', 0.1, '', 'short description is not available', 'Plantains', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/d26b801a-b344-4035-8caf-7668e6042632_2.f954130b42458aaaeac172512e00bc19.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d26b801a-b344-4035-8caf-7668e6042632_2.f954130b42458aaaeac172512e00bc19.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d26b801a-b344-4035-8caf-7668e6042632_2.f954130b42458aaaeac172512e00bc19.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (710563176, 'Fresh Red Seedless Grapes', 1.99, 'deleted_895321002013', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (711124868, 'Grape Tomato, 10 oz Package', 9.94, '044419510019', 'Fresh grape tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Grape Tomatoes are the perfect choice.', 'Grape Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (711394063, 'Services Reduced Program Dept 94', 0.01, '251693000000', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (711495797, 'Spinach Blend Salad, 4 Oz.', 2.98, '405642700453', 'Spinach Blend Salad, 4 Oz.', 'Sld Spinach Blnd 4 Oz.', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (711595329, 'Sweet Potato Oriental Yam', 1.28, '000000014946', 'short description is not available', 'Sweet Potato Oriental Yam', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (712332499, 'AVO BAG 36 9/4 MXMP', 3.28, 'deleted_761010147771', '4ct Large Avocado Bag', 'Large Avocado 4 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (712841703, 'Fingerling Potatoes 1.5 Lb Bag', 3.47, '661438524126', 'short description is not available', 'Fingerling Potatoes 1.5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (713841801, 'Grape Tomato, 2 oz Bag', 0.01, 'deleted_405674544520', 'short description is not available', 'Display Sun Snack Grape Tomato Cups', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (713843634, 'Watermelon Seedless', 4.98, '400094425220', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (714093104, 'Fieldpack Unbranded Fresh Strawberries 4#', 7.98, '671704000063', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 4#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (714135904, 'Dole Spring Mix Salad 11oz', 4.12, '071430010686', 'short description is not available', 'Dole Spring Mix Salad 11oz', 'Dole', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (714434166, 'Services Reduced Program Dept 94', 0.01, '251910000004', 'short description is not available', 'Services Reduced Program Dept 94', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (715363420, 'Fresh Pineapple, Each', 3.57, '405698173997', 'Enjoy a burst of tropical flavor with this Fresh Pineapple. This pineapple can be a satisfying afternoon snack, or you can use it in a variety of recipes. For breakfast, use this pineapple to make a rich and creamy smoothie or serve it alongside your pancakes, sausage, and eggs. Slice it up and use to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. For dessert, you could make a crowd-pleasing pineapple upside down cake or a comforting pineapple crisp. However you choose to use it, this Fresh Pineapple will add flavor to any meal or beverage.', 'Pineapples are more than just a tropical fruit; they are a treasure trove of health benefits. This juicy, sweet fruit is loaded with vitamins and minerals, including vitamin C, manganese, copper, and folate. Pineapples are also the only source of the unique enzyme, bromelain, which aids digestion, reduces inflammation, and can help to fight against cancer and heal wounds. They are also packed with antioxidants, known for boosting the immune system, and their high fiber content helps to maintain a healthy digestive system. With a high water content, pineapples also contribute to hydration and can support weight loss by promoting feelings of fullness.', 'Unbranded', 'https://i5.walmartimages.com/asr/1f8bda13-cca8-42e7-8de8-07b8f9bb9380.b372efb198082dfe0bcb33cbbf786e57.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1f8bda13-cca8-42e7-8de8-07b8f9bb9380.b372efb198082dfe0bcb33cbbf786e57.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1f8bda13-cca8-42e7-8de8-07b8f9bb9380.b372efb198082dfe0bcb33cbbf786e57.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (716066698, 'Organic Marketside Fresh Celery Stalk, Each', 2.87, '294070000002', 'Marketside Organic Celery is flavorful and tender; the ideal vegetable for your kitchen. Celery can be used in a variety of ways in the kitchen and are perfect for health-conscious individuals, since they are USDA Organic and serve as a satisfying snack with many health benefits. Celery is great for juicing, braised, in soups or served raw with a favorite dip. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Tender & Flavorful USDA Organic Excellent juiced, braised, in soups or served raw with a favorite dip Keep refrigerated', 'Marketside', 'https://i5.walmartimages.com/asr/f2cc9284-53fa-4c72-88d7-387b61742ec2.01cfc558033dc659c7a4cc33568ea3ed.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f2cc9284-53fa-4c72-88d7-387b61742ec2.01cfc558033dc659c7a4cc33568ea3ed.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f2cc9284-53fa-4c72-88d7-387b61742ec2.01cfc558033dc659c7a4cc33568ea3ed.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (716698539, 'Fresh Seedless Red Grape Puerto Rico, Bag', 2.17, '405705810952', 'Indulge in the irresistible sweetness of our fresh seedless red grapes, conveniently packed in a bag. These plump and juicy grapes are a delightful treat for any occasion. Each grape is carefully hand-picked to ensure the highest quality and optimal ripeness. With a vibrant red color, these grapes are visually enticing and will add a pop of color to any fruit platter or dessert. The absence of seeds makes them a hassle-free snacking option, allowing you to enjoy the pure, juicy goodness without any interruptions. The firm yet juicy texture of these grapes creates a satisfying burst of flavor with every bite. Whether enjoyed as a quick and healthy snack, added to salads, or used in desserts, our fresh seedless red grapes are a delicious and versatile fruit that will leave your taste buds craving for more.', 'Uva Roja Sin Semilla', 'Unbranded', 'https://i5.walmartimages.com/asr/20529a01-44a5-46fb-b7c4-26a769f28069.a8df8537d9e01c6d9c08ebdb227bd1aa.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20529a01-44a5-46fb-b7c4-26a769f28069.a8df8537d9e01c6d9c08ebdb227bd1aa.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20529a01-44a5-46fb-b7c4-26a769f28069.a8df8537d9e01c6d9c08ebdb227bd1aa.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (716759215, 'Yellow Flesh Peaches, per Pound', 1.58, '400094129388', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (717169641, 'Ready Pac Foods Bistro Caprese Salad with Basil Balsamic Vinaigrette, 5 oz', 6.74, '077745296654', 'Arugula, Baby Greens, Grape Tomatoes, Fresh Mozzarella Pearls, with Basil Balsamic Vinaigrette Fresh Air Seal - Lets Veggies Breathe™', 'Suitable for Vegetarians 220 Calories 5g Protein Gluten free - Made without gluten-containing ingredients', 'Ready Pac Foods', 'https://i5.walmartimages.com/asr/dd6da9f9-f2d2-4423-96b3-9c7cd1244784.99a71e853adf2d7a9cc8269f970b73b6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dd6da9f9-f2d2-4423-96b3-9c7cd1244784.99a71e853adf2d7a9cc8269f970b73b6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dd6da9f9-f2d2-4423-96b3-9c7cd1244784.99a71e853adf2d7a9cc8269f970b73b6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (717180050, 'Marketside Peeled Red Apple Slices, 10 oz, 4 Count', 3.78, '681131161305', 'There is nothing better than a serving of fresh fruits everyday. With Marketside Peeled Red Apples, experience the crisp, sweet taste of apples that are peeled, cut and ready for you. Eat them on the go, or put them in custards, oats, desserts or yogurts. They provide you with a range of vitamins and minerals, including 2g of fibers, in a light and flavorful way. With 4 small cups of apples, you can share them with your family or enjoy them over more than once. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Peeled Red Apple Slices Delicious cut and peeled red apple slices Contains 2g of fiber per serving Contains 4-2.5 oz cups', 'Marketside', 'https://i5.walmartimages.com/asr/124243e2-3415-425d-bc82-37b28a349ee2_3.6a5790db0f65f3ee168f9e3acb251c32.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/124243e2-3415-425d-bc82-37b28a349ee2_3.6a5790db0f65f3ee168f9e3acb251c32.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/124243e2-3415-425d-bc82-37b28a349ee2_3.6a5790db0f65f3ee168f9e3acb251c32.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (717380138, 'Organic Kiwi Clamshell', 3.97, 'deleted_818849020093', 'short description is not available', 'Kiwifruit, Organic, Green USDA Organic. Certified by CCOF. Good source of dietary fiber. Refreshing original taste. Cut. Scoop. Enjoy. zesprikiwi.com. Please recycle. Product of New Zealand.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0abbf758-66f1-484a-9083-e3762fa9bae4_2.48b411b17dab2777334c30636abefaac.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0abbf758-66f1-484a-9083-e3762fa9bae4_2.48b411b17dab2777334c30636abefaac.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0abbf758-66f1-484a-9083-e3762fa9bae4_2.48b411b17dab2777334c30636abefaac.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (717513461, 'Navel Oranges, each', 0.97, 'deleted_898157002011', 'Navel Oranges, each', 'Navel Oranges', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/a6054c7f-7e7b-4de8-9f04-1f87bafa4c3e.76cf34255799375020421060def8bb2e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6054c7f-7e7b-4de8-9f04-1f87bafa4c3e.76cf34255799375020421060def8bb2e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6054c7f-7e7b-4de8-9f04-1f87bafa4c3e.76cf34255799375020421060def8bb2e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (717627317, 'Cherry on the Vine Tomato, 9 oz Package', 1.98, 'deleted_867858000183', 'Fresh Cherry on the Vine Tomatoes are the perfect cooking tomato. Because of their notable flavor and thicker skin, they are a versatile tomato option that\'s fit for grilling, sauteing, roasting, or baking. Their small size also makes them a quick and simple addition to a fresh salad as well as an excellent finger food for whenever you\'re in the mood for a light snack. Packed with nutrients, cherry on the vine tomatoes are a deliciously healthy ingredient that adds both vibrant color and mouthwatering flavor to any recipe. For the best flavor and freshness, store these tomatoes at room temperature on your kitchen counter. Make your next meal a marvelous one with Cherry on the vine Tomatoes from Walmart.', 'Cherry On The Vine Tomatoes 9 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (718070820, 'Services Reduced Program Dept 94', 0.01, '251669000003', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (718174074, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094232989', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (718494396, 'Rockit Apple 4ct', 2.97, '888289403442', 'short description is not available', 'Rockit Apple 4ct', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (718644096, 'Watermelon Seedless', 6.48, 'deleted_850212002213', 'short description is not available', 'Watermelon Seedless', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (718853776, 'Yellow Flesh Peaches, per Pound', 1.58, '400094129111', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (719161506, 'Granny Smith Apples 3 Lb Bag', 3.96, '882648000600', 'short description is not available', 'Granny Smith Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (719838605, 'Freshness Guaranteed Diced Fresh Mirepoix Blend, 10 oz', 2.88, '030223022947', 'Add a little color and texture to your next dish with our Freshness Guaranteed Diced Mirepoix Mix. With yellow onion, carrots, and celery all diced up and mixed together in this one convenient package, you can skip the prep work and have just what you need to create a flavorful soup stock or a savory sauce. Just throw this mix into a pan with some butter or oil, cook on low heat until beautifully caramelized, and you\'ll have the perfect base ready to enhance the flavor profile in a wide variety of recipes. Casseroles, chicken noodle soup, stews, and more are quickly and easily perfected when you use our Freshness Guaranteed Diced Mirepoix Mix. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Diced Mirepoix Mix, 10 oz Includes diced yellow onion, carrots, and celery Convenient prep free mix for quick cooking Perfect for soup stock, sauces, stews, and casseroles Creates a flavorful base when sauteed with butter or oil Great for enhancing a wide variety of recipes', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/aa93816d-5665-453d-9522-95000e5d46cd.1b4021e7c77aa345defbfd88c2247e95.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa93816d-5665-453d-9522-95000e5d46cd.1b4021e7c77aa345defbfd88c2247e95.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa93816d-5665-453d-9522-95000e5d46cd.1b4021e7c77aa345defbfd88c2247e95.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (720147005, 'Fresh Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094357767', 'Fresh Grown Yellow Nectarines, 1 Lb.', 'Fresh Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (720160610, 'Tasteful Selections Tasteful Fingeling Ruby Gusset Bag', 4.68, '826088720124', 'short description is not available', 'Tasteful Selections Tasteful Fingeling Ruby Gusset Bag', 'Tasteful Selections', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (720205113, 'Fresh White Turnip, 1 LB', 4.97, '405946892595', 'The white turnip is a food of neutral thermal nature, with a sweet and bitter flavor at the same time. It improves the body\'s energy circulation, helps mobilize and rebuild blood, relieves cough and helps eliminate accumulations of moisture from the body. Turnip leaves can be consumed raw, in a salad, or cooked with potatoes or in an omelette. . The root can be consumed grated in salads, as if they were radishes, or cooked with rice or legumes. And added in the preparation of broths, they provide an extra dose of minerals.', 'Sweet and bitter taste at the same time They provide an extra dose of minerals Promotes intestinal regularity and provides fiber', 'Unbranded', 'https://i5.walmartimages.com/asr/de171ad6-6b44-4f0b-9ea6-2e3d613d3a20.2ba5b257a7d1c9f243c60bb5de0860b8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/de171ad6-6b44-4f0b-9ea6-2e3d613d3a20.2ba5b257a7d1c9f243c60bb5de0860b8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/de171ad6-6b44-4f0b-9ea6-2e3d613d3a20.2ba5b257a7d1c9f243c60bb5de0860b8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (720337666, 'Garlic Bulb Whole Fresh, Each', 4.97, 'deleted_000000046084', 'Take your culinary creations to the next level with this flavorful fresh Jumbo Garlic. Garlic\'s signature flavors become caramelized and sweeter when cooked, making it a perfect accompaniment to many dishes such as pasta, shrimp, chicken, stews, and more. Garlic also goes great in creamed soups, on all types of roasts, in a variety of egg dishes, or used simply with sauteed or roasted vegetables. To prepare garlic for cooking, you\'ll need to break it up into individual cloves and peel the skin. Once you\'ve done this, you can mince the garlic by chopping it into fine pieces. Or take the flavor profile to the next level and slice the top off the bulb, drizzle with olive oil, wrap in foil, and roast in the oven. When cool, it makes a delicious spread for crusty French bread or a tasty addition to recipes. Spice up your next meal with a tasty clove of fresh Jumbo Garlic.', 'Jumbo Garlic, Per Pound: Ideal addition to every pantry Flavorful addition to many recipes Add to pasta, shrimp, chicken, stews, and more Try sauteed with roasted vegetables Explore all the delicious ways to add fresh garlic to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4716545a-144b-4403-90ae-59957d9138e1.3a80708ae95b71cb102d0793e1d47bba.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4716545a-144b-4403-90ae-59957d9138e1.3a80708ae95b71cb102d0793e1d47bba.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4716545a-144b-4403-90ae-59957d9138e1.3a80708ae95b71cb102d0793e1d47bba.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (720609646, 'Fresh Grapefruit, 5 lb Bag', 5.98, 'deleted_848163004639', 'Indulge in the tangy and refreshing taste of fresh grapefruit, straight from the citrus groves. Our hand-picked grapefruits come in a convenient bag, perfectly ripe and bursting with juicy goodness. Loaded with vitamin C and antioxidants, grapefruit is the ideal choice for a healthy snack or a zesty addition to salads and cocktails. Order now and savor the delightful taste of freshly picked grapefruit!', 'Nutrient-Rich: Grapefruits are tangy, juicy, and packed with vitamins and minerals like vitamin C, potassium, and fiber for a healthy diet. Versatile Taste: With a sweet-tart flavor, enjoy grapefruits alone, in salads, smoothies, or as a fresh addition to recipes. Health Benefits: Grapefruits support immune function, hydration, and may assist in weight loss, making them a nutritious choice for a healthy lifestyle.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5d884a7b-342e-4b8e-b90d-9cb6631d48c6.5dff8264816983a82b7ebefdf0192a26.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5d884a7b-342e-4b8e-b90d-9cb6631d48c6.5dff8264816983a82b7ebefdf0192a26.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5d884a7b-342e-4b8e-b90d-9cb6631d48c6.5dff8264816983a82b7ebefdf0192a26.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (720640702, 'Organic Green Bell Pepper, Each', 2.96, '814780010315', 'Organic Green Bell Peppers are an extremely versatile vegetable that is a must-have for every cook. Bell peppers are exceptionally rich in vitamin C and other antioxidants, and our green bell peppers are certified organic by the U.S. Department of Agriculture. You can choose to eat them raw and dip them in ranch, or you can incorporate them into a variety of recipes. Dice them and put them in a hearty chili, slice them and add to a deli sandwich, sauté them with onions and serve on a hoagie roll with a bratwurst, or stir-fry with thinly-sliced steak and serve with rice. A hollowed-out green bell pepper can be filled with sausage, mushrooms and rice to create a delicious stuffed pepper that will have the family asking for seconds. The culinary possibilities are endless with Organic Green Bell Peppers.', '2-pack of organic bell peppers Naturally low in calories Exceptionally rich in vitamin C and other antioxidants Create delicious recipes with these organic bell peppers', 'Marketside', 'https://i5.walmartimages.com/asr/ffc87c0e-b5c8-4a0b-b143-2cabfc9c8b95.e93357c16c94f681c369a1debfaa684e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ffc87c0e-b5c8-4a0b-b143-2cabfc9c8b95.e93357c16c94f681c369a1debfaa684e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ffc87c0e-b5c8-4a0b-b143-2cabfc9c8b95.e93357c16c94f681c369a1debfaa684e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (720788359, 'Organic Red Potatoes 3 Lb Bag', 4.46, '028733052080', 'short description is not available', 'Organic Red Potatoes 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (721102421, 'Ready Pac Foods Ready Pac Complete Salad Kit, 11 oz', 6.97, '077745247472', 'Complete Salad Kit, Chopped, Mediterranean, Bag 11.5 OZ Salad & Toppings: 8.75 oz (248 g). Dressing: 2.25 oz (2 fl oz) 59 ml. Robust escarole, endive, radicchio, shredded broccoli stalks, sweet carrots, shredded cauliflower stalks, tangy red cabbage, herb seasoned flatbread strips, feta cheese, basil balsamic dressing. Thoroughly washed. Mediterranean cuisine combines simple and fresh ingredients to bring out exciting flavors from healthy food. Ready Pac does the same in this exciting and flavorful restaurant-style Mediterranean Chopped kit. We carefully select and chop escarole, endive, radicchio and combine with shredded broccoli stalks, sweet carrots, shredded cauliflower stalks and tangy red cabbage. Then, add crunchy herb-seasoned flatbread strips, feta cheese, and a delightful, refreshing basil balsamic dressing for a true Mediterranean experience at home. Ready Pac Mediterranean Chopped Salad Kit has everything you need right in the bag! Ready Pac Chopped Salad Kits follow techniques that provide the highest level of freshness and quality. We trim our fresh produce with care, wash it thoroughly, and then place it in special pillow-packaging that protects against bruising and keeps the salad crisper. Ready Pac Foods is committed to providing the highest quality fresh salads. Visit our website at www.readypac.com for more information. For questions or comments, please call 1-800-800-7822. Ready Pac Foods - Giving people the freedom to eat healthier. Keep refrigerated. Perishable. For Optimum Freshness: For the freshest taste, use within two days of opening and keep refrigerated in this breathable bag. Contains: milk, wheat. 11 oz (312 g) Irwindale, CA 91706 800-800-7822 Ready Pac Foods, Inc., 2016', 'Complete Salad Kit, Mediterranean, Chopped Salad & Toppings: 8.75 oz (248 g). Dressing: 2.25 oz (2 fl oz) 59 ml. Robust escarole, endive, radicchio, shredded broccoli stalks, sweet carrots, shredded cauliflower stalks, tangy red cabbage, herb seasoned flatbread strips, feta cheese, basil balsamic dressing. Thoroughly washed. Mediterranean cuisine combines simple and fresh ingredients to bring out exciting flavors from healthy food. Ready Pac does the same in this exciting and flavorful restaurant-style Mediterranean Chopped kit. We carefully select and chop escarole, endive, radicchio and combine with shredded broccoli stalks, sweet carrots, shredded cauliflower stalks and tangy red cabbage. Then, add crunchy herb-seasoned flatbread strips, feta cheese, and a delightful, refreshing basil balsamic dressing for a true Mediterranean experience at home. Ready Pac Mediterranean Chopped Salad Kit has everything you need right in the bag! Ready Pac Chopped Salad Kits follow techniques that provide the highest level of freshness and quality. We trim our fresh produce with care, wash it thoroughly, and then place it in special pillow-packaging that protects against bruising and keeps the salad crisper. Ready Pac Foods is committed to providing the highest quality fresh salads. Visit our website at www.readypac.com for more information. For questions or comments, please call 1-800-800-7822. Ready Pac Foods - Giving people the freedom to eat healthier.', 'Ready Pac Foods', 'https://i5.walmartimages.com/asr/87d8f578-0525-486c-b358-da6455feb7a2.455371f7b6a4d8c3ddff14e66ced6dbf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/87d8f578-0525-486c-b358-da6455feb7a2.455371f7b6a4d8c3ddff14e66ced6dbf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/87d8f578-0525-486c-b358-da6455feb7a2.455371f7b6a4d8c3ddff14e66ced6dbf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (721112635, 'Bako Sweet Organic Sweet Potatoes Bag, 48 Oz', 5.28, 'deleted_819614010080', 'Grown from the sweet spot of California, our organic sweet potatoes are the sweetest you have ever tasted. They are packaged in a 3lb bag and thoroughly washed which means they are ready for you to cook and enjoy! This sweet potato is orange on the outside and orange on the inside, delivering a sweet and earthy flavor. Load up and enjoy! Our organic sweet potatoes are certified by both CCOF Organic and the USDA. Working with these organizations ensures that our farming practices are up to standards so that we can provide the safest and best tasting produce for your family. Sweet potatoes are a pantry essential that you should have always in your kitchen. Just one sweet potato is an excellent source of vitamin containing 368% Vitamin A daily value. They are loaded with beta carotene which acts as a potent antioxidant, making it easy to feel good about what you are about to enjoy! And when you just can’t get enough of them, this bag is pretty sweet.', 'Sweet Potatoes Organic. Certified Organic by CCOF. Gluten free. Vegan. GMO free. From California\'s sweet spot. Grown with pride form Valpredo Farms bakersfield, CA. Since 1944. bakosweet.com. Produce of USA.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/89c43d89-000b-43c2-8b51-00dadd15494a.94b88372286835480ba240444c760abc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/89c43d89-000b-43c2-8b51-00dadd15494a.94b88372286835480ba240444c760abc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/89c43d89-000b-43c2-8b51-00dadd15494a.94b88372286835480ba240444c760abc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (721210464, 'Broccoli Slaw 16z', 2.58, '782796012244', 'short description is not available', 'Broccoli Slaw 16z', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (721449543, 'Organic Green Lettuce, 1 Each', 2.44, '768573710022', 'Organic Green Lettuce, 1 Each', 'Organic Lettuce Green', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (722097817, 'Freshness Guaranteed Fresh Black Seedless Grapes', 1.88, '', 'short description is not available', 'Freshness Guaranteed Fresh Black Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (722417907, 'Fresh Grapefruit, lb', 1.57, '405999074221', 'Grapefruit (Toronja) is the perfect balance between tart and sweet. The balance between tart and sweet is great for both savory and sweet dishes any time of day. Enjoy half of a grapefruit sprinkled with sugar with some eggs in the morning for a light, sweet breakfast. Slice it up and put in a salad with spinach, avocado, and red onion topped with a mustard and balsamic vinegar dressing for lunch or dinner. Make delicious grapefruit bars that showcase the sweet and tartness of this versatile fruit. For an adult recipe juice the grapefruit and pair with some simple syrup and alcohol for a refreshing cocktail. This fruit is the perfect addition to a healthy diet as it is a great source of vitamin C and vitamin A. With such versatility, Grapefruit will become a pantry staple in your home', 'Great for both savory and sweet dishes Enjoy it for breakfast, lunch, dinner, or dessert Enjoy half a grapefruit sprinkled with sugar in the morning, slice it up and put it in salad for lunch or dinner, or make grapefruit bars Great source of vitamin C and vitamin AToronja Blanca', 'Unbranded', 'https://i5.walmartimages.com/asr/03d2d8cf-e487-4ed0-b45b-02f860ea6695.eef891593ed974f21dac604986f62180.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/03d2d8cf-e487-4ed0-b45b-02f860ea6695.eef891593ed974f21dac604986f62180.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/03d2d8cf-e487-4ed0-b45b-02f860ea6695.eef891593ed974f21dac604986f62180.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (722758914, 'Bowery Farming Spring Mix Pesticide-Free, Locally Grown Salad Greens, 10oz', 4.48, '851536007595', 'Spring Mix is a classic, sweet, and zesty salad blend. It\'s perfect in a wrap or as a beautiful, fresh salad.Bowery Farming grows positively tasty, fresh produce in a cleaner, more sustainable way: in local, indoor smart farms. Every Bowery leaf is grown and handled with care, without pesticides. Bowery\'s smart farms use less water & create less waste on less land. Because Bowery\'s farms are local, you can trust that your produce is freshly harvested, picked at peak freshness 365 days a year, and available on shelf in just a few days.', 'Bowery Farming Spring Mix Pesticide-Free, Locally Grown Salad Greens, 10oz: 100% Pesticide-free 100% Locally grown 100% Fully traceable Indoor-grown Protected Produce Clean & ready to eat Non-GMO Project Verified Recycled Packaging', 'Bowery Farming', 'https://i5.walmartimages.com/asr/73a51b94-7996-48e1-ab2d-8b681189e72c.1e52f29e83b0b34851b61f575ac98db7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/73a51b94-7996-48e1-ab2d-8b681189e72c.1e52f29e83b0b34851b61f575ac98db7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/73a51b94-7996-48e1-ab2d-8b681189e72c.1e52f29e83b0b34851b61f575ac98db7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (722904900, '240pc On Ylw 3# Fab', 465.6, '405509623857', 'short description is not available', '240pc On Ylw 3# Fab', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (723232516, 'Watermelon Seedless', 4.48, '400094407516', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (723467179, 'Fresh Squash Chunks, 24oz', 2.48, '794504174427', 'Add some fresh flavor to your meal with \"Calabaza en Trozos\" fresh squash. This versatile vegetable can be used in a variety of dishes to create delicious and decadent meals. You place in the slow cooker with chicken breast, kidney beans, and spices. Create tasty and flavorful meals with this vegetable.', 'Versatile ingredient Roast the whole squash for the perfect side dish put into a slow cooker, and mix with chicken breast, beans, and spices for a flavorful dish Use it to create a sweet pie or even creamy soup', 'Prico', 'https://i5.walmartimages.com/asr/69146953-5bf8-4099-adc8-ee461f9d8254.816251eab03818d82ff8017cd29ce60d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/69146953-5bf8-4099-adc8-ee461f9d8254.816251eab03818d82ff8017cd29ce60d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/69146953-5bf8-4099-adc8-ee461f9d8254.816251eab03818d82ff8017cd29ce60d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (724108263, 'Greens Red Chard Saute 12z', 3.98, '688962016255', 'short description is not available', 'Greens Red Chard Saute 12z', 'Green\'s Bakery', 'https://i5.walmartimages.com/asr/90e1327f-d7d0-403c-b34f-79d6d217cd6c_2.beba6088da8a2adcf36720eaaa2676dc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/90e1327f-d7d0-403c-b34f-79d6d217cd6c_2.beba6088da8a2adcf36720eaaa2676dc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/90e1327f-d7d0-403c-b34f-79d6d217cd6c_2.beba6088da8a2adcf36720eaaa2676dc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (724418008, 'Cantaloupe', 1.88, '400094420607', 'short description is not available', 'Cantaloupe', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (724449708, 'Red Apples 3 Lb Bag', 3.97, 'deleted_888289401875', 'short description is not available', 'Red Apples 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6a3cdd28-f6bb-4d4d-b8a1-4b4fad333101.cde2fd3846f444b1c59d02ff4abb2d08.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a3cdd28-f6bb-4d4d-b8a1-4b4fad333101.cde2fd3846f444b1c59d02ff4abb2d08.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a3cdd28-f6bb-4d4d-b8a1-4b4fad333101.cde2fd3846f444b1c59d02ff4abb2d08.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (725132044, 'California Grown Peaches, per Pound', 1.58, '400094006146', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (725442947, 'Fresh Dragon Fruit , lb', 2.48, '861010000141', 'Dragon fruit, also known as pitaya, is a vibrant tropical fruit native to Central America. Recognizable for its bright pink or yellow, spiky skin and creamy pulp filled with tiny seeds, it offers a subtly sweet taste reminiscent of kiwi or pear. Dragon fruit is a nutritional powerhouse, providing high amounts of fiber, vitamin C, essential minerals, and antioxidants. Grown on a climbing cactus, this refreshing fruit is harvested when its skin color fully develops, offering a unique and healthful treat.', 'Dragon fruit, also known as pitaya, is a tropical fruit that belongs to the cactus family. Native to Central America but now grown all over the world, dragon fruit is known for its unique appearance, vibrant color, and a wealth of health benefits. The fruit has a leathery, slightly leafy skin that is bright pink or yellow in color, while the inside boasts a sweet, creamy pulp dotted with tiny, crunchy seeds. Appearance and Taste: Dragon fruit stands out for its flamboyant appearance, with its bright pink or yellow, spiky skin, and white or red flesh speckled with small black seeds. The taste of dragon fruit is subtly sweet and often compared to that of a kiwi or pear, with the seeds providing a satisfying crunch. Its texture is wonderfully juicy and creamy, making it a refreshing treat on a hot day. Health Benefits: Dragon fruit is a nutritional powerhouse, packed with a range of beneficial compounds. It\'s high in fiber, vitamin C, and several essential minerals like iron and magnesium. Dragon fruit is also rich in antioxidants, which help fight off free radicals and prevent cell damage. Moreover, it contains prebiotics, which promote the growth of beneficial bacteria in your gut, contributing to a healthy digestive system. Cultivation and Harvest: Dragon fruit grows on a cactus plant that climbs up trees or walls with the help of its aerial roots. It thrives best in a dry tropical climate with a moderate amount of rain. The fruit is harvested when its skin color changes from bright green to pink or yellow, depending on the variety. Despite its exotic appearance, dragon fruit is easy to eat; simply slice it in half and scoop out the flesh with a spoon.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/09bd462f-cb64-43a5-a554-705fda26532d.2f24c1400f856dcbd27c10a1e672ea93.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/09bd462f-cb64-43a5-a554-705fda26532d.2f24c1400f856dcbd27c10a1e672ea93.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/09bd462f-cb64-43a5-a554-705fda26532d.2f24c1400f856dcbd27c10a1e672ea93.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (726735591, 'Local Roots Mars Mix, 4.5 oz', 2.98, '853911006247', 'A galactically delicious blend of fresh heritage baby greens.', 'Grown locallyGrown with zero pesticides or herbicidesGrown with up to 99% less waterHigh in Antioxidants, Chlorophyll, and Vitamins', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d7147ca7-a708-4347-9d28-b6f5ea4c0aad.ded22585d1ef94954bac460f5d50b626.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d7147ca7-a708-4347-9d28-b6f5ea4c0aad.ded22585d1ef94954bac460f5d50b626.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d7147ca7-a708-4347-9d28-b6f5ea4c0aad.ded22585d1ef94954bac460f5d50b626.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (726810451, '200pc Pto Idaho 5#', 794, '405551645470', 'short description is not available', '200pc Pto Idaho 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (727132669, 'Yellow Flesh Peaches, per Pound', 1.58, '400094362075', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (727744868, 'Sunset Tomatoes Organic Angel Sweet, 1lb Packet', 4.37, '057836900165', 'Organic Tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily complements your recipes. Juicy and delicious, tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Tomatoes are the perfect choice.', 'A mix of our grape tomato Cherubs, sweet yellow Comets, mini-heirloom Twilights, and orange cherry tomatoes Certified Equitable Food Initiative Non-GMO', 'Fresh Produce', 'https://i5.walmartimages.com/asr/56d1f686-6487-4606-a8b5-1b06a22dfe59.369910b2f3fe6fae370a10060f7266c4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/56d1f686-6487-4606-a8b5-1b06a22dfe59.369910b2f3fe6fae370a10060f7266c4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/56d1f686-6487-4606-a8b5-1b06a22dfe59.369910b2f3fe6fae370a10060f7266c4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (727773134, 'Services Reduced Program Dept 94', 0.01, '251672000007', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (728013665, 'Fieldpack Marketside Organic Celery MX', 1.96, '681131377423', 'Marketside Organic Celery Stalks are more than just a side dish to a plate of hot wings. Every crunch is packed with minerals, vitamins C, K and A to support a strong immune system and clear vision. When celery is cooked, it boasts a more subtle flavor that can complement many other foods.', 'The ancient Romans believed celery had healing powers and used it as a remedy for headaches. In ancient Greece, bunches of celery served as the original celebratory bouquet of flowers given to victorious athletes.', 'FIELDPACK MARKETSIDE', 'https://i5.walmartimages.com/asr/0b746fbd-324f-40d0-886c-7435fafd8fbc_2.ce754b60abe43a71168ba6358d36a75f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0b746fbd-324f-40d0-886c-7435fafd8fbc_2.ce754b60abe43a71168ba6358d36a75f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0b746fbd-324f-40d0-886c-7435fafd8fbc_2.ce754b60abe43a71168ba6358d36a75f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (728124576, 'Petite Russet Potatoes Whole Fresh, 3 lb Bag', 3.97, '847597010599', 'Create something wholesome and delicious with these fresh Sweet Potatoes. Sometimes referred to as yams, these versatile fresh produce vegetables can be used multiple ways: to make savory sides or sweet treats. Try them roasted or baked for a tasty addition to any dish. You could also use them to make seasoned sweet potato fries or a flavorful hummus dip for your next party. If you want to satisfy your sweet tooth, try them in a traditional sweet potato casserole or use them to make sweet potato and brown sugar ice cream. The mouthwatering possibilities are endless with this hearty vegetable. Add something amazing to your meals with this three-pound bag of Organic Sweet Potatoes.', 'Fresh Petite Russet Potatoes 3 Lb Bag Ideal ingredient as a versatile, flavorful kitchen staple Perfect for a Baked Potato Bar at your next party. Make a classic baked potato to pair with your favorite cut of meat Idaho Homegrown Potato Rich in potassium, vitamin C and B6', 'Fresh Produce', 'https://i5.walmartimages.com/asr/202efa81-88a9-48df-be33-adb92b06ef0b.2e8931e286feb9d156441de32b9bdd3f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/202efa81-88a9-48df-be33-adb92b06ef0b.2e8931e286feb9d156441de32b9bdd3f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/202efa81-88a9-48df-be33-adb92b06ef0b.2e8931e286feb9d156441de32b9bdd3f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (728307519, 'French Green Beans 8 Oz', 2.98, 'deleted_631203200104', 'short description is not available', 'French Green Beans 8 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (728590366, 'Bowery Farming Mixed Greens Salad Blend, 4 oz Clam Shell, Fresh Salad Lettuce', 2.98, '851536007564', 'A delicious blend of super velvety, subtly sweet, perfectly crunchy lettuce to plus up any salad, wrap, or veggie bowl. Every Bowery leaf is grown and handled with care, without pesticides. Bowery\'s smart farms use less water and create less waste on less land. All Bowery produce is freshly harvested, picked at peak freshness 365 days a year, and available on shelf in just a few days.', 'Produce grown smarter for better flavor: less wasteful, more tasteful. Vertically Grown Fresher Longer Zero-Pesticide Greens No Need to Wash Bowery Farming Salad Greens Lettuce', 'Bowery Farming', 'https://i5.walmartimages.com/asr/1245fb6f-b73e-4b40-b1df-3eb2790e0c90.4b42f925103fa183cf08aeb3f1237084.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1245fb6f-b73e-4b40-b1df-3eb2790e0c90.4b42f925103fa183cf08aeb3f1237084.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1245fb6f-b73e-4b40-b1df-3eb2790e0c90.4b42f925103fa183cf08aeb3f1237084.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (729521730, 'Mann\'s Steakhouse Caulilini Baby Cauliflower, 10 oz', 4.67, '716519009853', 'Caulilini soaks up more sun as it grows, allowing it to become sweeter, more tender and colorful than regular cauliflower. It is 100% edible with an elongated stem and a sweet and delicious mild flavor.', '100% usable product Sweet, tender stalk turns bright green when cooked Microwave in bag', 'Mann\'s', 'https://i5.walmartimages.com/asr/52ece6d5-6bbc-4ca1-b711-9d466b8cfc26.eca7981c8625785827d749c451e3384f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/52ece6d5-6bbc-4ca1-b711-9d466b8cfc26.eca7981c8625785827d749c451e3384f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/52ece6d5-6bbc-4ca1-b711-9d466b8cfc26.eca7981c8625785827d749c451e3384f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (729702959, 'Watermelon Seedless', 4.98, '400094544785', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (729844539, 'Fresh Tomatoes on the Vine, 1 lb Carton', 2.98, '699058455124', 'Keep your recipes simple and classic with Fresh Tomatoes on the Vine. With their vibrant red color, firm and juicy flesh, and unmistakably delicious flavor, these fresh tomatoes on the vine are sure to impress more than just your taste buds. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. The list is endless! Plus, they come right to your kitchen still on the vine that they grew on, meaning that their mouthwatering taste and freshness will be long-lasting for your culinary convenience. Stock up on Fresh Tomatoes on The Vine and keep your dishes looking great and tasting delicious.', 'Fresh Tomatoes on the Vine, 1 lb Carton: Vibrant red color Firm and juicy flesh Unmistakably delicious flavor Tomatoes come still on the vine for maximum freshness and taste Slice them to garnish a sandwich or burger Dice them to top a pizza or some pasta Crush them to make a decadent bruschetta or sauce Blend them to create homemade salsa', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (731307960, '75pc Orange Navel 8#', 597.75, '400094637951', 'short description is not available', '75pc Orange Navel 8#', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (731315558, 'Fieldpack Unbranded Collard Greens', 0.98, 'deleted_855829002236', 'short description is not available', 'Fieldpack Unbranded Collard Greens', 'FIELDPACK UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (732109224, 'Marketside Organic Broccoli & Carrots, 12 oz', 3.98, '681131179447', 'Marketside Organic Broccoli and Carrots are packed fresh, washed and ready to eat for your convenience. They have a great fresh taste that is loaded with nutrients and a vibrant green and orange color that are sure to add a pop to all your dishes. Enjoy them as a healthy side or use them in all your favorite recipes. Season them with salt, pepper and garlic and serve with grilled steak, mashed potatoes and bread rolls for a filling dinner. They come packaged inside a microwaveable bag that cooks in less than five minutes. Dinner is made easy with Marketside Organic Broccoli & Carrots. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes. Microwave in bag: Place bag on a microwave-safe dish. Microwave on high for 3 to 4 minutes or until desired tenderness. Carefully remove bag from microwave. Be cautious when opening the bag as the vegetables and steam will be very hot. Season to taste and enjoy.', 'Marketside Organic Broccoli & Carrots, 12 oz: Microwave in bag Washed and ready to eat USDA Organic Net weight 12 oz', 'Marketside', 'https://i5.walmartimages.com/asr/46ae1270-c8d5-4d17-ac30-746d9599950b_2.b13542b75740e57e4c2584737e7f2cba.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/46ae1270-c8d5-4d17-ac30-746d9599950b_2.b13542b75740e57e4c2584737e7f2cba.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/46ae1270-c8d5-4d17-ac30-746d9599950b_2.b13542b75740e57e4c2584737e7f2cba.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (732301465, 'Prico Pineapple cut 24oz', 7.67, '794504172126', 'Enjoy the sweet, tropical flavor of Fresh Pineapple Chunks (Piña). These pre-cut chunks are great for breakfast, lunch, dessert, or when you want a snack. Pineapple is a good source of vitamin C, vitamin A and vitamin B6 making them an excellent healthy treat. You can eat the chunks right out of the container, infuse them with water and mint for a refreshing drink, or chop them up and make a mouthwatering pineapple salsa with jalapenos, tomatoes, and red onion.', 'Sweet, refreshing treat Great for breakfast, lunch, dessert, or when you want a snack Good source of vitamin C, vitamin A, and vitamin B6 Enjoy right out of the container, infuse with water and mint, or mix with jalapenos, tomatoes, and red onion for salsa Share with friends and family or keep for yourself Comes in a reclosable container to help maintain freshness Saves Times', 'Prico Produce', 'https://i5.walmartimages.com/asr/91036ed1-bac7-476a-a40a-0fdb7be5c8b8.2442038c2055ba38ad0b756e505a002f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/91036ed1-bac7-476a-a40a-0fdb7be5c8b8.2442038c2055ba38ad0b756e505a002f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/91036ed1-bac7-476a-a40a-0fdb7be5c8b8.2442038c2055ba38ad0b756e505a002f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (732568001, '50pc Pto Idaho 20#', 324, '405913690902', 'short description is not available', '50pc Pto Idaho 20#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (732858266, 'Fresh Black Seedless Grapes, 1 Lb', 3.98, '854957001272', 'short description is not available', 'Fresh Black Seedless Grapes, 1 Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ade17cfd-b528-426e-a4e8-1744cd837766.971df50b9d7a3b0325702e7ad6e46907.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ade17cfd-b528-426e-a4e8-1744cd837766.971df50b9d7a3b0325702e7ad6e46907.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ade17cfd-b528-426e-a4e8-1744cd837766.971df50b9d7a3b0325702e7ad6e46907.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (733176536, 'Fresh Red Seedless Grapes', 1.87, 'deleted_014668790029', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (733227902, '240pc On Ylw 3# Tx', 475.2, '405552883963', 'short description is not available', '240pc On Ylw 3# Tx', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (733256689, 'Fresh Green Seedless Grapes', 3.14, '000000034982', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (733860051, 'Gala Apples, Each', 1.07, '', 'short description is not available', 'Gala Apples, Each', 'FIELDPACK UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (734287546, 'Plenty Baby Arugula, Fresh Zero Pesticides, 4.5oz resealable', 2.97, '810567030439', 'Let\'s get spicy. Plenty Baby Arugula has the natural bite to add fresh, zingy flavor to any dish. With softer, more velvety leaves than your typical arugula, this will become your Zero Pesticides staple for salads that feel like they walked out of a restaurant. Better yet? No need to wash this gorgeous green, just peel back the resealable lid, crunch, and go. At Plenty, we\'re reimagining what a farm can be. It’s no secret–farming can be a little dirty. Like dirt under your nails, but also dirty like land use, water waste, pollution, and contaminants on your food. We grow fresh, flavorful produce vertically indoors – so everything is a little… cleaner. From a controlled, indoor environment to zero-pesticide greens on your table – Plenty is cleaner for the world and cleaner for you.', 'Plenty Baby Arugula, 4.5 oz : Zingy, spicy taste you\'ll crave Zero Pesticides and no need to wash Sick of salads? Plenty arugula makes a great base for Pesto or garnish for chicken dishes Indoor and vertically grown for peak-season freshness all year long Convenient 4.5oz peel and reseal packaging', 'PLENTY', 'https://i5.walmartimages.com/asr/4fd4289a-c596-49c9-aedd-85fe132616ba.090820fd201485990dc42c31e616538d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4fd4289a-c596-49c9-aedd-85fe132616ba.090820fd201485990dc42c31e616538d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4fd4289a-c596-49c9-aedd-85fe132616ba.090820fd201485990dc42c31e616538d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (734460659, 'SWEET TAMARINDO', 6.97, '885900120016', 'SWEET TAMARINDO', '', '', 'https://i5.walmartimages.com/asr/2066f2d6-b632-477b-97cb-1054a712b50b.4b01468ce3faf911ddc2d002e98fd82b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2066f2d6-b632-477b-97cb-1054a712b50b.4b01468ce3faf911ddc2d002e98fd82b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2066f2d6-b632-477b-97cb-1054a712b50b.4b01468ce3faf911ddc2d002e98fd82b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (734495150, '200pc Pto Ykn 5# Co', 694, '400094033562', 'short description is not available', '200pc Pto Ykn 5# Co', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (734562425, 'Sunset Wild Wonders Medley Tomato, 16 oz Package, Fresh', 3.5, '057836021785', 'SUNSET Wild Wonders Gourmet Tomato Medley is 16 ounces of mixed color snacking tomatoes! Perfect for snacking, lunch, or dinner - fresh or cooked. Try them in salads, pastas, omelets, flatbreads, and more. Discover the world\'s flavors! This gourmet medley features a delightful array of shapes and colors with a sweet and juicy flavor. Hothouse grown to ensure consistent quality and freshness. Certified non-GMO tomatoes. Store at room temperature for optimal flavor, and wash before enjoying. Plastic tray featuring a peel and reseal film to help keep tomatoes fresh. Enjoy SUNSET Wild Wonders Gourmet Tomato Medley all year long.', 'SUNSET fresh Wild Wonders Tomato Medley Discover the world\'s flavors A delightful array of shapes and colors with a sweet and juicy flavor Perfect for snacking, lunch, or dinner - fresh or cooked Try them in salads, pastas, omelets, flatbreads, and more Wash and enjoy Available all-year-long Non-GMO certified Hothouse grown to ensure consistent quality and freshness 16-oz plastic container featuring a peel and reseal film to help keep tomatoes fresh Store at room temperature for optimal flavor\"', 'SUNSET', 'https://i5.walmartimages.com/asr/90285596-2ec5-4d6b-b152-faa563e17303_1.88a0a78e31a5612b98cb622203a9e5b5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/90285596-2ec5-4d6b-b152-faa563e17303_1.88a0a78e31a5612b98cb622203a9e5b5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/90285596-2ec5-4d6b-b152-faa563e17303_1.88a0a78e31a5612b98cb622203a9e5b5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (734633197, 'Fresh Red Grapefruit, 5 lb Bag', 5.98, 'deleted_072240754852', 'Red Grapefruit is the perfect balance between tart and sweet. The balance between tart and sweet is great for both savory and sweet dishes any time of day. Enjoy half of a grapefruit sprinkled with sugar with some eggs in the morning for a light, sweet breakfast. Slice it up and put in a salad with spinach, avocado, and red onion topped with a mustard and balsamic vinegar dressing for lunch or dinner. Make delicious grapefruit bars that showcase the sweet and tartness of this versatile fruit. For an adult beverage, juice the grapefruit and pair with some simple syrup and alcohol for a refreshing cocktail. This fruit is the perfect addition to a healthy diet as it is a great source of vitamin C and vitamin A. With such versatility, Red Grapefruit will become a pantry staple in your home.', 'Great for both savory and sweet dishes Enjoy it for breakfast, lunch, dinner, or dessert Enjoy half a grapefruit sprinkled with sugar in the morning, slice it up and put it in salad for lunch or dinner, or make grapefruit bars Great source of vitamin C and vitamin A', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2f5ff23c-604f-465f-9f24-798aa67f5bb3_1.adb2d52364be4bcc35aed4da0e54a52d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f5ff23c-604f-465f-9f24-798aa67f5bb3_1.adb2d52364be4bcc35aed4da0e54a52d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2f5ff23c-604f-465f-9f24-798aa67f5bb3_1.adb2d52364be4bcc35aed4da0e54a52d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (734734841, '240pc On Ylw 3# Ca', 475.2, '405544170576', 'short description is not available', '240pc On Ylw 3# Ca', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (734926689, 'Crunch Pak Family Sized Sweet Apple Slice Bag 32oz', 5.97, '732313001077', 'A Healthy Crunch Pak Family Sized 32oz Bag of Sweet Sliced Apples. Provides an optimal choice in your favorite recipes, on-the-go, between meals, lunchtime, or anytime during the day snack! Pick your family treat up today!', 'Crunch Pak Family Sized 32oz Bag of Sweet Sliced Apples 80 Calories per serving Excellent Souce of Vitamin C', 'Fresh Produce', 'https://i5.walmartimages.com/asr/41adf758-ce8b-4ef8-a09c-a0266784fab7.61c0c99173402b2eaf7706a96b4c9a99.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/41adf758-ce8b-4ef8-a09c-a0266784fab7.61c0c99173402b2eaf7706a96b4c9a99.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/41adf758-ce8b-4ef8-a09c-a0266784fab7.61c0c99173402b2eaf7706a96b4c9a99.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (735063314, 'Gesex Smart Fruit Nectarines', 3.97, '814746010830', 'Gesex Smart Fruit Nectarines', 'Gesex Smart Fruit Nectarines', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (735324298, '200pc Pto Idaho 5#', 794, '405540274896', 'short description is not available', '200pc Pto Idaho 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (735464499, 'Koru Apples 2 Lb Bag', 4.94, '879329003432', 'short description is not available', 'Koru Apples 2 Lb Bag', 'Koru Mat', 'https://i5.walmartimages.com/asr/f1e4b048-7b64-47c4-86be-5e067e3b049a.15611fdd08e9a03576e735f49e7c5165.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f1e4b048-7b64-47c4-86be-5e067e3b049a.15611fdd08e9a03576e735f49e7c5165.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f1e4b048-7b64-47c4-86be-5e067e3b049a.15611fdd08e9a03576e735f49e7c5165.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (735596417, 'Fresh Burro Banana, Each', 1.58, '821783042298', 'Our fresh bananas are made with organic ingredients and are the perfect healthy snack! These sweet and delicious fruits are filled with essential vitamins and minerals that provide energy and help maintain a balanced diet. Enjoy them as a quick on-the-go snack or add them to smoothies and desserts for a delicious treat. Trust us, you won\'t be disappointed!', 'Fresh and whole burro banana is typically shorter and thicker than a regular banana. Flavor is similar to a sweet lemon with it\'s sour, tangy kick. This is great for a snack or a quick side to a meal! Mix with other Fresh produce for a delicious fruit salad. Find this in your local stores!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a706f0ef-46f7-4ac8-b365-c0a722a92ea9.841da2e10162341c2e7912dfcad6c581.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a706f0ef-46f7-4ac8-b365-c0a722a92ea9.841da2e10162341c2e7912dfcad6c581.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a706f0ef-46f7-4ac8-b365-c0a722a92ea9.841da2e10162341c2e7912dfcad6c581.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (735797888, '96pc Jce Lemon/lime', 84.48, '405576212688', 'short description is not available', '96pc Jce Lemon/lime', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (736291379, 'Marketside Beyond Spring Mix Salad, 8 oz Clam Shell, Fresh', 4.98, '194346001477', 'Enjoy the fresh flavor of Marketside Beyond Spring Mix. These greens are indoor and vertically grown for peak-season freshness all year long. Indoor vertical farms are a controlled growing environment giving each plant the optimal amount of light and nutrients for fresh and flavorful produce any time of the year. Farming vertically means our produce can be grown using significantly less water and land than traditional outdoor farms. Create something delicious with Marketside Beyond Spring Mix. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Beyond Spring Mix, 8 oz: Baby spinach, baby romaine, baby leaf lettuce, baby red lettuce (ingredients may vary) Indoor and vertically grown for peak-season freshness all year long No pesticides, herbicides or fungicides applied to our greens Convenient peel and reseal packaging Keep refrigerated until ready to enjoy', 'Marketside Beyond', 'https://i5.walmartimages.com/asr/5720a866-f2b6-4bd4-b762-4379fbdbd67d.6999b9bd53b50ab6eeae3ee9be328352.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5720a866-f2b6-4bd4-b762-4379fbdbd67d.6999b9bd53b50ab6eeae3ee9be328352.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5720a866-f2b6-4bd4-b762-4379fbdbd67d.6999b9bd53b50ab6eeae3ee9be328352.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (736871775, 'Watermelon Seedless', 4.98, '400094912553', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (736892151, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094260562', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (737098460, '120pc On Tx1015 3#', 472.8, '405537970398', 'short description is not available', '120pc On Tx1015 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (737261539, 'Cantaloupe', 1.88, '400094420676', 'short description is not available', 'Cantaloupe', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (737704039, 'Brindisa Garlic Cloves - 235g (0.52lbs)', 20.12, '617588708893', 'Brindisa Garlic Cloves - 235g (0.52lbs)', 'Brindisa Garlic Cloves - 235g (0.52lbs)', 'Brindisa', 'https://i5.walmartimages.com/asr/d8410fee-d6cd-4152-aabc-b90a8916d2a4.db7e26a0a5317ca1e1b7a0ed98e8e19c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d8410fee-d6cd-4152-aabc-b90a8916d2a4.db7e26a0a5317ca1e1b7a0ed98e8e19c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d8410fee-d6cd-4152-aabc-b90a8916d2a4.db7e26a0a5317ca1e1b7a0ed98e8e19c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (737953622, 'Green Beans 32oz', 5.98, 'deleted_854026006320', 'short description is not available', 'Green Beans 32oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (738641733, 'Dole California Chopped Dates 8 oz (Pack of 4)', 31.14, '783399664229', 'Feel revitalized with the fresh taste of sun-ripened dole all-natural fruit. Rich in nutrients, fruit gives you healthy energy so you feel refreshed and ready to shine. They are grown under the california sun. dole dates are picked at the peak of ripeness for maximum sweetness and flavor. They\'re delicious, 100% natural, and contain more nutritious antioxidants than many other common fruits, for more than 100 years, dole has been committed to our environment, our employees and the communities in which we operate.', 'California Chopped Dates', 'Dole', 'https://i5.walmartimages.com/asr/f60b7af8-b009-4c38-b52c-ced7d2603207.fb82d53f64a28030b97475e1937241c3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f60b7af8-b009-4c38-b52c-ced7d2603207.fb82d53f64a28030b97475e1937241c3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f60b7af8-b009-4c38-b52c-ced7d2603207.fb82d53f64a28030b97475e1937241c3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (738642606, 'Pepper Hot Hatch Chili RW Bag', 2.58, '851533003804', 'Unique flavored pepper, which is highly desirable. Grown in the hatch valley of New Mexico', 'Pepper Hot Hatch Chili RW Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7b56c084-70ec-4bbe-8c88-fbae229b4af9_1.6c64fa28cc7180d2c9f212eef457f839.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7b56c084-70ec-4bbe-8c88-fbae229b4af9_1.6c64fa28cc7180d2c9f212eef457f839.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7b56c084-70ec-4bbe-8c88-fbae229b4af9_1.6c64fa28cc7180d2c9f212eef457f839.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (738883023, 'Small Avocado 5 Count Bag', 4.28, 'deleted_845857001325', 'short description is not available', 'Small Avocado 5 Count Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (738901619, 'Fresh Organic Yellow Squash, 2 Count', 2.96, '681131091343', 'Wholesum\'s fresh organic yellow squash is as delicious as it is versatile, making it the perfect addition to healthy and hearty meals. With its mildly sweet flavor and tender, edible skin, this bright and nutritious vegetable is easy to prepare and does not require long cooking. For more savory options, try them grilled, roasted, or air fried. They are also a perfect addition to vegetable, pasta dishes and skewers. If craving something on the sweet side, you may even feature this lovely vegetable on the dessert table. Try grating them into a fluffy yellow squash Bundt cake or bread. Any way that you enjoy it, yellow squash promises to deliver on flavor and is rich in essential vitamins, nutrients, and antioxidants. Wholesum is committed to bringing you a variety of premium Wrapped organic produce that is fresh, flavorful, and responsibly grown.', 'Wholesum Organic Yellow Squash Certified Organic 2 Count Squash Great for salads Great for grilling Responsibly grown', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9fc8525e-988b-403e-bfc3-0b167a416b49.f4edfaea061d4ed3c2f4af843208498d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9fc8525e-988b-403e-bfc3-0b167a416b49.f4edfaea061d4ed3c2f4af843208498d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9fc8525e-988b-403e-bfc3-0b167a416b49.f4edfaea061d4ed3c2f4af843208498d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (739446588, 'Organic Tomato on the Vine, 1 lb Bag', 2.84, '000000031493', 'Keep your recipes simple and classic with fresh tomatoes on the vine. With their vibrant red color, firm and juicy flesh, and unmistakably delicious flavor, this fresh produce item is sure to impress more than just your taste buds. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. The list is endless! Plus, they come right to your kitchen still on the vine that they grew on, meaning that their mouthwatering taste and freshness will be long-lasting for your culinary convenience. Stock up on Walmart\'s Tomatoes On The Vine and keep your dishes looking great and tasting equally as excellent.', 'Tomatoes On The Vine, 1 lb: 1-pound bag of tomatoes on the vine Vine helps tomatoes maintain peak freshness and flavor Perfect for slicing, dicing, crushing and blending Great for sandwiches, pastas, pizzas and salsas Essential ingredient in every home-cook\'s kitchen', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e5cd9099-5b09-4cec-bf7b-2d63171f2a34.5f61dc1fc2b1fa276fbdc2e1158994a3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5cd9099-5b09-4cec-bf7b-2d63171f2a34.5f61dc1fc2b1fa276fbdc2e1158994a3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e5cd9099-5b09-4cec-bf7b-2d63171f2a34.5f61dc1fc2b1fa276fbdc2e1158994a3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (739652890, 'Walmart Produce Mango Spears 32 Oz', 8.98, '826766252091', 'DEL MONTE CHNK SNGL FRT MNG MLDD TRY', 'Mango Spears, 32 oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/599864a3-7c7a-4c18-abd8-680f0b251293.b6a85c55899c676b37c18490a43f861a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/599864a3-7c7a-4c18-abd8-680f0b251293.b6a85c55899c676b37c18490a43f861a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/599864a3-7c7a-4c18-abd8-680f0b251293.b6a85c55899c676b37c18490a43f861a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (739967574, 'Freshness Guaranteed Fresh Black Seedless Grapes', 1.83, 'deleted_000000035057', 'short description is not available', 'Freshness Guaranteed Fresh Black Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (740393866, 'White Onions, 2 Lb.', 2.24, '795631335514', 'White Onions, 2 Lb.', 'White Onions 2 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (740718083, 'Fresh Green Seedless Grapes', 2.37, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (740832090, 'Organic Parsley Puree 2.8oz', 3.98, '768573300384', 'Your order will contain 2.8 ounces of organic Parsley puree.', 'Stir-in Puree, Organic, Parsley Pure organic flavor. USDA Organic. Certified Organic by CCOF. Don\'t let flavor parsley by! Flavor beef, pasta, veggies & soups. Amazing Fresh Flavor; prepared with fresh, organic ingredients for best taste & texture! Fresh without the mess - no chopping! May contain sulfites. thatstasty.com. Facebook. Instagram. Pinterest. Twitter. Made in France.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9da1a3be-e1b0-4cf9-81ac-5346dbe94045.2918e01fba0c949a800e296eff76514e.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9da1a3be-e1b0-4cf9-81ac-5346dbe94045.2918e01fba0c949a800e296eff76514e.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9da1a3be-e1b0-4cf9-81ac-5346dbe94045.2918e01fba0c949a800e296eff76514e.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (742179181, '200pc Pto Idaho 5#', 588, '405508050968', 'short description is not available', '200pc Pto Idaho 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (742294208, 'Fieldpack Unbranded Fresh Organic Strawberries 1#', 4.48, 'deleted_811334020288', 'short description is not available', 'Fieldpack Unbranded Fresh Organic Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/dd7491e8-5267-4493-9e9c-13e36492b8de.f22ba1e55f40b2169a3544503c13186b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dd7491e8-5267-4493-9e9c-13e36492b8de.f22ba1e55f40b2169a3544503c13186b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dd7491e8-5267-4493-9e9c-13e36492b8de.f22ba1e55f40b2169a3544503c13186b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (743516266, 'Cilantro Lime Ranch Primal Box', 4.88, '818148021487', 'short description is not available', 'Cilantro Lime Ranch Primal Box', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (743685152, 'Watermelon Seedless', 4.48, '405503699889', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (744534611, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '405521536715', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (744848582, '50pc Pto Russet 20#', 324, '405890862514', 'short description is not available', '50pc Pto Russet 20#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (744989810, 'Chilean Grown Peaches, per Pound', 1.58, '405528609825', 'Chilean Grown Peaches, per Pound', 'Fresh Chilean Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (745131827, 'Organic Golden Delicious Apples, 2 lbs', 3.96, '847473004865', '', '', 'Generic', 'https://i5.walmartimages.com/asr/669f87d4-4755-4732-9c0b-ea30ebad2d14.84e1397589f4d1bafd2ce5c74d470bd7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/669f87d4-4755-4732-9c0b-ea30ebad2d14.84e1397589f4d1bafd2ce5c74d470bd7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/669f87d4-4755-4732-9c0b-ea30ebad2d14.84e1397589f4d1bafd2ce5c74d470bd7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (745625797, 'Melissas Dried New Mexico Chile 8 Oz', 3.64, '045255114836', 'short description is not available', 'Melissas Dried New Mexico Chile 8 Oz', 'Melissa\'s', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (745667830, '192pc On Swt 3# Ga', 572.16, '405555069401', 'short description is not available', '192pc On Swt 3# Ga', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (745730563, 'Plenty Sweet Sunrise Greens and Herbs Salad Blend, 4 oz Clam Shell, Fresh', 2.48, '810567030514', 'short description is not available', 'Plenty Sweet Sunrise Salad 4oz', 'PLENTY', 'https://i5.walmartimages.com/asr/fa482652-79e7-42b7-a0b5-32b243c43d2f.47ffa078b8a8eec126af11de3f6c6cee.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa482652-79e7-42b7-a0b5-32b243c43d2f.47ffa078b8a8eec126af11de3f6c6cee.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa482652-79e7-42b7-a0b5-32b243c43d2f.47ffa078b8a8eec126af11de3f6c6cee.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (746664021, 'Sweet Onions, 4 Lb.', 4.68, 'deleted_091434001329', 'Sweet Onions Whole Bag', 'Vidalia Onions 4 Lb Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/cab91a7a-6882-4a71-b043-07a628cd4f6c_1.c4a3e16ddcc2aa0babfc110ca7cd2e05.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cab91a7a-6882-4a71-b043-07a628cd4f6c_1.c4a3e16ddcc2aa0babfc110ca7cd2e05.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cab91a7a-6882-4a71-b043-07a628cd4f6c_1.c4a3e16ddcc2aa0babfc110ca7cd2e05.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (746704964, 'Marketside Chicken Nugget, Carrrot, Apple', 2.98, '859216007248', 'short description is not available', 'Marketside Chicken Nugget, Carrrot, Apple', 'Marketside', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (747312032, 'Fresh Organic Roma Tomatoes, 1 lb Package', 2.36, '405744830706', 'Organic Grape Tomatoes are an exciting summer treat, and they\'re the perfect size for skewers, salads and roasting. These bite-sized grape tomatoes look and taste great. Grape tomatoes are a low-calorie treat that are also low in sodium and are a good source of fiber. Whether you are snacking or adding them to your favorite dish. their uses are almost limitless. Try these grape tomatoes with feta cheese, fresh dill and a drizzle of olive oil for a light and delicious Mediterranean treat. Or make a caprese salad with grape tomatoes, fresh basil, fresh mozzarella and balsamic vinegar. With 10-ounces of tomatoes in each package, you\'ll have plenty to make mouthwatering meals. Use your imagination to create delicious dishes with Organic Grape Tomatoes.', 'Organic Grape Tomatoes, 10 oz Package: Perfect size for skewers, salads and roasting Low-calorie, low in sodium, and a good source of fiber Pair with feta cheese, fresh dill, and a drizzle of olive oil for a Mediterranean dish Certified organic', 'Fresh Produce', 'https://i5.walmartimages.com/asr/eb0806e6-701a-435c-9172-99daede19227.47e8216fd6b38ea4fdbf0250bf52a6f4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eb0806e6-701a-435c-9172-99daede19227.47e8216fd6b38ea4fdbf0250bf52a6f4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eb0806e6-701a-435c-9172-99daede19227.47e8216fd6b38ea4fdbf0250bf52a6f4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (747397288, 'Yellow Flesh Peaches, per Pound', 1.58, '400094466995', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (747703350, 'LEMON 2# SK CA POUCH', 3.92, 'deleted_605049458425', 'Lemons are a kitchen essential, known for their bright yellow color and tangy, refreshing flavor. Perfect for cooking, baking, and beverages, they add a zesty touch to both sweet and savory dishes. Packed with vitamin C and natural antioxidants, lemons are not only delicious but also a nutritious choice for enhancing your meals and drinks with vibrant freshness. Available in a 2 lb bag.', 'Two pound pouch bag lemons.', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bd8ccbd9-f056-4a8d-8c8e-2ac394f22f97.4b275a35b7dfe7d97c45f67052cac2e8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd8ccbd9-f056-4a8d-8c8e-2ac394f22f97.4b275a35b7dfe7d97c45f67052cac2e8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd8ccbd9-f056-4a8d-8c8e-2ac394f22f97.4b275a35b7dfe7d97c45f67052cac2e8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (747707629, '250pc Pto Idaho 8#', 1480, '405518780626', 'short description is not available', '250pc Pto Idaho 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (747944231, 'Seedless Green Grapes, 2 lb bag', 4.42, '', 'short description is not available', 'Green Grapes Seedless Bag, 2 lbs.', '', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (748219524, 'Fresh Whole White Mushrooms, Bulk', 0.87, '000000040853', 'Add flavor and texture to your meals with the White Mushrooms. This versatile ingredient is perfect for a variety of dishes, whether its for breakfast, lunch, or dinner. Mince some up and put them in your omelet with peppers and ham for a filling breakfast. Slice them and add them to a healthy salad for lunch or stuff them with cream cheese, parmesan, and sharp cheddar cheese for a delicious, mouthwatering meal. Fresh white mushrooms are an excellent source of riboflavin and are naturally fat-free, cholesterol-free, and are low in calories and sodium. Enjoy the delicious taste of White Mushrooms any way you prepare them.', 'Fresh Whole White Mushrooms, Bulk: Adds flavor and textures to your meals Great for breakfast, lunch, or dinner Mince them for an omelet, slice them for a salad, or stuff them with cheese Naturally fat-free and cholesterol-free Low in sodium and calories', 'Monterey Mushrooms', 'https://i5.walmartimages.com/asr/821caa43-bd35-4de4-a46b-be8e42009692.e72b294c8373e5c6f1c4770426c8ad13.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/821caa43-bd35-4de4-a46b-be8e42009692.e72b294c8373e5c6f1c4770426c8ad13.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/821caa43-bd35-4de4-a46b-be8e42009692.e72b294c8373e5c6f1c4770426c8ad13.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (748505017, 'Fresh Red Seedless Grapes', 1.88, 'deleted_841139100045', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (748615523, 'California Grown Peaches, per Pound', 1.58, '400094601105', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (750499074, 'Fresh Figs, 12 oz Package', 7.84, '898249002011', 'Enjoy the delicious sweetness of these Fresh Figs. These figs taste wonderful raw, but you could also use them in a wide variety of recipes. Use them to make a tasty fig jam that you can spread on toast or biscuits. Blend them with some honey to make a creamy smoothie for breakfast. If you\'re looking for something more on the savory side, try wrapping them in bacon for an appetizer that all your guests will love. For dessert, you could use them to make cookies, bars, and even ice cream. However you choose to prepare them, everyone is sure to enjoy the taste of these Fresh Figs.', 'Fresh Figs, 12 oz Clamshell Enjoy them fresh or use them in a variety of recipes Use to make fig jam or a creamy smoothie Wrap them in bacon for a crowd-pleasing appetizer Add to a fresh salad Make sweet cookies, bars, and even ice cream', 'Unbranded', 'https://i5.walmartimages.com/asr/803287b0-3d38-47e8-b840-6505c6844ebe.a297ca01b7f7d79491ac22d821a89af2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/803287b0-3d38-47e8-b840-6505c6844ebe.a297ca01b7f7d79491ac22d821a89af2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/803287b0-3d38-47e8-b840-6505c6844ebe.a297ca01b7f7d79491ac22d821a89af2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (751027624, 'California Grown Peaches, per Pound', 1.58, '400094861745', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (751078701, 'Sunny Sweet Pepper', 2.98, '846764008186', 'Sunny Sweet Pepper', 'Sunny Sweet Pepper', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (751556348, 'White Peach, Each', 2.36, 'deleted_683953002217', 'White Peaches, 2 Lb.', 'White Peaches, each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d7d2370e-3576-4d87-973a-0e2d361981d0_1.024d8850ba3392cdbbf0d9d598e593b2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d7d2370e-3576-4d87-973a-0e2d361981d0_1.024d8850ba3392cdbbf0d9d598e593b2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d7d2370e-3576-4d87-973a-0e2d361981d0_1.024d8850ba3392cdbbf0d9d598e593b2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (751690120, 'Premium Grape Tomato, 1.5 lb Package', 5.24, 'deleted_699058796920', 'Premium Grape Tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily complements your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Premium Grape Tomatoes are the perfect choice.', 'Premium Grape Tomato, 1.5 lb Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (752752485, 'Fresh Tomate Grape, 10oz Clamshell', 3.47, '882035500393', 'Fresh grape tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Grape Tomatoes are the perfect choice.', 'Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious', 'NONBRANDED', 'https://i5.walmartimages.com/asr/5e2de05b-5da5-47c9-97f5-1b1815cddc76.be4860417f458f21738c485b78ceb74e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5e2de05b-5da5-47c9-97f5-1b1815cddc76.be4860417f458f21738c485b78ceb74e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5e2de05b-5da5-47c9-97f5-1b1815cddc76.be4860417f458f21738c485b78ceb74e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (752914255, 'Aerofarms Broccoli Microgreens Salad, 2 oz Clam Shell, Fresh', 3.98, '815063021257', 'Mighty and balanced, AeroFarms broccoli microgreens have earthy notes and a slightly sweet finish. Our Micro Broccoli falls in the forest green portion of the AeroFarms FlavorSpectrum™, representing a grassy and green flavor profile with earthy notes. Microgreens can contain considerably higher levels of vitamins and carotenoids—about 5X greater—than their mature plant counterparts, according to the United States Department of Agriculture. AeroFarms greens are grown with zero pesticides and are ready to enjoy right out of the container. Taste the AeroFarms difference - enjoy Micro Broccoli by adding a heaping handful to boost any meal including sandwiches, wraps, soups, salads, takeout, and more.', 'Bursting With Flavor No Pesticides Ever No Washing Needed', 'AeroFarms', 'https://i5.walmartimages.com/asr/23c01bf9-ce50-477d-ab3c-6d4e32723da7.4d87a6b8dc2fae86bda6802f1d5bd19a.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/23c01bf9-ce50-477d-ab3c-6d4e32723da7.4d87a6b8dc2fae86bda6802f1d5bd19a.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/23c01bf9-ce50-477d-ab3c-6d4e32723da7.4d87a6b8dc2fae86bda6802f1d5bd19a.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (753009255, 'Black Seedless Grapes, per lb', 3.54, 'deleted_895321002235', 'short description is not available', 'Black Seedless Grapes, per lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/4fcbb3e7-b768-4d3c-b48f-9584248da35b_2.3e21a00d3f31e2fc15c1caecf2329fe3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4fcbb3e7-b768-4d3c-b48f-9584248da35b_2.3e21a00d3f31e2fc15c1caecf2329fe3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4fcbb3e7-b768-4d3c-b48f-9584248da35b_2.3e21a00d3f31e2fc15c1caecf2329fe3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (753409267, 'Fresh Manzana (Apples) Jazz, 2lb', 4.97, '066022005355', 'Introducing Fresh Jazz apples, the perfect combination of sweet and tangy flavors! With a crisp texture and beautiful red and yellow coloration, these apples are a delicious treat for any occasion. They are easy to pack for a satisfying snack while on the go, or as an ingredient for baking your favorite desserts. Jazz apples are sure to become a household favorite for their exceptional taste and versatility. Order now and taste the difference!', 'Organic apples that are great for snack time or a side to a meal! Introducing Jazz apples, the perfect combination of sweet and tangy flavors! With a crisp texture and beautiful red and yellow coloration, these apples are a delicious treat for any occasion. They are easy to pack for a satisfying snack while on the go, or as an ingredient for baking your favorite desserts. Jazz apples are sure to become a household favorite for their exceptional taste and versatility. Order now and taste the difference! Adds flavor to a variety of recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c078850a-6f0c-46cc-8b5f-2a1dec772192.ce6be4c8c366f70b2677796b16e3e009.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c078850a-6f0c-46cc-8b5f-2a1dec772192.ce6be4c8c366f70b2677796b16e3e009.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c078850a-6f0c-46cc-8b5f-2a1dec772192.ce6be4c8c366f70b2677796b16e3e009.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (753496165, 'MRS. WAGES ONE STEP COLESLAW, VINEGAR, DIY MIX, 12.7OZ', 3.22, '072058622183', 'Fresh, homemade coleslaw without the hassle! Simply pour Mrs. Wages 1 Step Coleslaw over shredded cabbage. With two mouth-watering flavors, your freshly-made coleslaw can be enjoyed as a side dish, sandwich topper or snack. We do the work. You take the credit.', 'DIY: Pour over fresh veggies No artificial flavor or preservatives You will need 1 14 to 16oz bag of coleslaw', 'Mrs. Wages', 'https://i5.walmartimages.com/asr/0e773270-bbb5-4595-a61e-241306f64b3f.cc3f5da72d188ee91c7e28219819897b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0e773270-bbb5-4595-a61e-241306f64b3f.cc3f5da72d188ee91c7e28219819897b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0e773270-bbb5-4595-a61e-241306f64b3f.cc3f5da72d188ee91c7e28219819897b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (753652402, 'Organic Red Potatoes, 3 Lb.', 6.48, 'deleted_095829400018', 'Organic Red Potatoes, 3 Lb.', 'Organic Red Potatoes 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (753742607, 'Fresh Black Seedless Grapes', 2.78, '', 'Fresh Black Seedless Grapes', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/4078821a-06db-4c51-a6ac-be885c9746bd_2.d25f54da1fb5322cdad12da5d65a8d99.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4078821a-06db-4c51-a6ac-be885c9746bd_2.d25f54da1fb5322cdad12da5d65a8d99.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4078821a-06db-4c51-a6ac-be885c9746bd_2.d25f54da1fb5322cdad12da5d65a8d99.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (754113136, 'Mann\'s Fresh Cauliflower Veggie Sides, 8.8 oz', 4.47, '716519009822', 'Elevate mealtime with the Mann\'s Cauliflower Veggie Sides. Made with a parmesan peppercorn sauce, this side of veggies is a perfect addition to your meals. Pair them with a perfectly cooked steak and potatoes for a delicious meal that will have you feeling like you dined at the best steakhouse in town. You can also serve them with grilled chicken, rolls, and sweet potatoes for a well-rounded dinner your friends and family is sure to love. In just three minutes, you can be enjoying the delicious taste of this cauliflower. Simply place the bag in the microwave, microwave on high for three minutes, stir until combined, and enjoy. Complete your meals with the Mann\'s Cauliflower Veggie Sides.', 'Cauliflower with a parmesan peppercorn sauce Pair with steak and potatoes for a mouthwatering meal Serve with grilled chicken, rolls, and sweet potatoes for a well-rounded meal Ready in just 3 minutes Perfect addition to your meals', 'Mann\'s', 'https://i5.walmartimages.com/asr/3a89e52a-d9e6-4a9e-9316-d4dc45ccc866.90604e0371f93fdc4381dffaaa96872c.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3a89e52a-d9e6-4a9e-9316-d4dc45ccc866.90604e0371f93fdc4381dffaaa96872c.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3a89e52a-d9e6-4a9e-9316-d4dc45ccc866.90604e0371f93fdc4381dffaaa96872c.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (754214482, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094275023', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (754471518, 'Fieldpack Unbranded Bagged Poblano Pepper', 2.64, 'deleted_823874000903', 'Enjoy the fresh and delicious flavor of Poblano Peppers. Poblano peppers are known for their mild heat and rich flavor. Best of all this versatile pepper can be used in a myriad of recipes. Use them to make delicious Mexican inspired recipes like chile relleno. Stuff some with sausage, rice and spices to make a hearty, healthy and delicious dinner. Pan roast some with your favorite cheese and herbs for a yummy side, add them to your hearty chili recipes or turn some into a wonderful autumn soup. Any way you slice, dice, or cook them, Poblano Peppers are a refreshing, healthy addition to any meal.', 'Poblano Peppers, 16 oz: Includes 1 lb of poblano peppers Known for their mild heat and rich flavor Versatile pepper can be used in a myriad of recipes Use them to make delicious Mexican inspired recipes like chile relleno Stuff some with sausage, rice and spices to make a hearty, healthy and delicious dinner Create a variety of yummy recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/59bf999a-1f85-49ad-952e-088efaefb6a2_1.12cf264a49dd7b491c6e300309dc5f10.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59bf999a-1f85-49ad-952e-088efaefb6a2_1.12cf264a49dd7b491c6e300309dc5f10.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59bf999a-1f85-49ad-952e-088efaefb6a2_1.12cf264a49dd7b491c6e300309dc5f10.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (754553336, 'Aprium, 1 lb Pack', 4.88, '896460002919', 'Treat everyone to the sweet taste of Fresh Grown Apriums. Part apricot and part plum, this fruit is great to hand out to the kids as a tasty after-school snack. Add these apriums to a fruit salad to serve at your next party or to a delectable salad as a sweet topping. Serve them with cheese, salami, and almonds for a wonderful picnic cheese plate. You could also slice them to top your yogurt and granola for a healthy breakfast, or even make a tasty aprium crumble dessert for your next dinner party. The culinary opportunities are endless with Fresh Grown Apriums.', 'Fresh Grown Apriums, 16 oz: Part apricot and part plum Sweet and juicy Subtle sweetness and faint tartness Hand out to the kids as a tasty after-school snack Use to make a delicious fruit salad Slice and use to top your yogurt and granola for a healthy breakfast', 'Fresh Produce', 'https://i5.walmartimages.com/asr/476b1382-b89f-4580-998f-56a281642478.f35436b1ae3df515ddec10b1b1cd592a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/476b1382-b89f-4580-998f-56a281642478.f35436b1ae3df515ddec10b1b1cd592a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/476b1382-b89f-4580-998f-56a281642478.f35436b1ae3df515ddec10b1b1cd592a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (754693566, 'Cucumber', 0.68, 'deleted_819800010375', 'short description is not available', 'Cucumber', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (754746628, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094814888', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (754766243, 'Butternut Squash', 1.18, 'deleted_823298000466', 'short description is not available', 'Butternut Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/c732818d-323f-4425-bbb2-423e1402edba.a2ff79aa40bcd1e93ba637196c590a55.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c732818d-323f-4425-bbb2-423e1402edba.a2ff79aa40bcd1e93ba637196c590a55.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c732818d-323f-4425-bbb2-423e1402edba.a2ff79aa40bcd1e93ba637196c590a55.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (754837432, 'Fresh Yeong Suks Wakame Salad, 12 oz Jar', 6.28, '633750628660', 'Yeong Suks Wakame Salad 12-ounce jar is a treasure trove of taste and texture. Its secret? Responsibly harvested wakame seaweed, married to a dressing that hits all the right notes. Dive into a world of wellness as Yeong Suks spotlights its nutritional prowess, catering to diverse diets while making mealtime magic. The jar isn\'t just about the salad - it\'s a sleek testament to the essence of gourmet greens.', 'Premium Wakame: Sustainably sourced, top-quality wakame seaweed Exquisite Dressing: Perfectly balanced, enhancing the salad\'s flavors Diet-Friendly: Versatile for various dietary preferences and needs', 'YEONG SUKS', 'https://i5.walmartimages.com/asr/329fc9e0-96ab-4488-a586-42e3d249395d.150b7075a8757102d3d0d86f09b7a73e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/329fc9e0-96ab-4488-a586-42e3d249395d.150b7075a8757102d3d0d86f09b7a73e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/329fc9e0-96ab-4488-a586-42e3d249395d.150b7075a8757102d3d0d86f09b7a73e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (755693559, 'Fresh Grape Tomato, 1 pt.', 3.97, '850019660104', 'Fresh grape tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Grape Tomatoes are the perfect choice.', 'Great in salads, pastas, salsas and sauces Sweet, juicy flavor in each bite Thick skin Low water content and a long shelf-life Low in calories and are a good source of fiber Contain vitamins A and C, lycopene and other vitamins and minerals Wholesome, versatile, and delicious Delicious and nutritious', 'Hypermart', 'https://i5.walmartimages.com/asr/e008c0d6-bdbb-4438-9aae-062f383302ef.089b46b9d850dd54b5ed6248634f1ecb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e008c0d6-bdbb-4438-9aae-062f383302ef.089b46b9d850dd54b5ed6248634f1ecb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e008c0d6-bdbb-4438-9aae-062f383302ef.089b46b9d850dd54b5ed6248634f1ecb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (756467066, 'Marketside Sugar Snap Peas 16oz', 5.98, '', 'short description is not available', 'Marketside Sugar Snap Peas 16oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (756918503, 'Services Reduced Program Dept 94', 0.01, '251697000006', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (756932528, 'Organic Petite Medley Potatoes', 3.97, '629307123658', 'Savor the rich taste of Organic Creamer Variety Potatoes! Our 1.5 Lb. bag features a delightful mix of tender, bite-sized creamer potatoes, carefully selected for their exceptional flavor and texture. Grown using organic farming practices, these versatile potatoes are perfect for roasting, boiling, or sautéing. Packed with nutrients and free from harmful chemicals, our Organic Creamer Variety Potatoes promise a wholesome, delicious addition to your favorite meals.', 'Organic Creamer Variety Potatoes Savor the rich taste of Organic Creamer Variety Potatoes! Our 1.5 Lb. bag features a delightful mix of tender, bite-sized creamer potatoes, carefully selected for their exceptional flavor and texture. Grown using organic farming practices, these versatile potatoes are perfect for roasting, boiling, or sautéing. Packed with nutrients and free from harmful chemicals, our Organic Creamer Variety Potatoes promise a wholesome, delicious addition to your favorite meals.', 'Unbranded', 'https://i5.walmartimages.com/asr/b74fdffe-f0a9-4d38-878f-a560bbe58a2b.302afc35ee8c34b9797ae4075916689e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b74fdffe-f0a9-4d38-878f-a560bbe58a2b.302afc35ee8c34b9797ae4075916689e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b74fdffe-f0a9-4d38-878f-a560bbe58a2b.302afc35ee8c34b9797ae4075916689e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (756977948, 'Butternut Squash', 1.18, '850002526301', 'Butternut Squash', 'Butternut Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (757469789, 'Microwave in Bag Red Potatoes, 1 Each', 2.97, '834344001313', 'Microwave in Bag Red Potatoes, 1 Each', '1 Lb. Microwave In Bag Red Potatoes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8754636d-5b91-4bca-bf58-5049b90aed6d.a8ea8f2b13279556fc80d8f233a82272.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8754636d-5b91-4bca-bf58-5049b90aed6d.a8ea8f2b13279556fc80d8f233a82272.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8754636d-5b91-4bca-bf58-5049b90aed6d.a8ea8f2b13279556fc80d8f233a82272.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (758733837, 'Watermelon Seedless', 4.48, '400094407653', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (758884830, 'Robinson Fresh Yellow Onions 3 Lb Bag', 1.88, 'deleted_095829601002', 'Yellow Onions 3 lb Bag', 'Fresh Yellow Onions 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7591f63b-b709-4256-b54a-ce271957da33_1.6ba08bcc08bc66d5e400088956812122.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7591f63b-b709-4256-b54a-ce271957da33_1.6ba08bcc08bc66d5e400088956812122.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7591f63b-b709-4256-b54a-ce271957da33_1.6ba08bcc08bc66d5e400088956812122.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (759012200, 'Chayote Squash', 1.04, 'deleted_045255179743', 'Chayote Squash', 'Chayote Squash A member of the gourd family, this versatile produce item from Mexico is quickly becoming a produce department standard. Roughly pear-sized in shape and light apple-green in color, Chayote Squash has a smooth skin with slight ridges running from stem to end. The average Chayote weighs about 1/2 pound and measures approximately 5 inches in length. Though similar to summer squash, Chayote usually requires a longer cooking time because of its firmer texture. Chayote makes a wonderful addition to soups or stir-fries and may be sliced or chopped and used raw like a cucumber. The seeds are also edible. Store Chayote Squash at 45°-50°F. At home, Chayote Squash stays freshest lightly wrapped and refrigerated for up to one week. No need to peel before using.', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/959afd12-4158-4bc9-af71-d08e3132768c_1.fd677f077b9cc5f60bc00f20baac6d04.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/959afd12-4158-4bc9-af71-d08e3132768c_1.fd677f077b9cc5f60bc00f20baac6d04.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/959afd12-4158-4bc9-af71-d08e3132768c_1.fd677f077b9cc5f60bc00f20baac6d04.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (759083105, 'Grimmway Farms Cal Organic Farms Radishes, 1 ea', 1.24, 'deleted_033383904139', '', '', 'CAL-ORGANIC', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (759319325, 'Fresh Green Seedless Grapes', 2.28, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (759487618, 'Field Roast Apple & Maple Plant-Based Breakfast Sausage', 4.98, '638031611805', 'Bring a hit of sweet and savory indulgence to your plant-based breakfast with Field Roast Apple & Maple Plant-Based Breakfast Sausage. Perfect as a side for pancakes or chopped up in breakfast burritos and quiches, these fully cooked vegan sausages deliver a satisfying taste and texture as a breakfast protein alternative. Simply brown the meatless sausages in a sauté pan to bring the welcoming flavors of apple, maple syrup, and nutmeg to your favorite morning dishes. Since 1997, the Field Roast brand has crafted plant-based meats and cheeses from grains, fresh-cut vegetables, herbs, and spices, honoring our culinary roots to create authentic sensory experiences people crave.', 'FULLY COOKED VEGAN BREAKFAST SAUSAGES: A satisfying meat alternative for plant-based meals SWEET AND SAVORY: The classic breakfast flavors of apple, maple syrup, and nutmeg QUICK PREPARATION: Simply brown the sausage in a pan with some oil or break apart to use in scrambles, breakfast burritos, and more CERTIFIED VEGAN AND NON-GMO: Non-GMO Project Verified and Certified Vegan for delicious taste and texture without the guilt FOR ALL THE FLAVOR TRAILBLAZERS: Dedicated to crafting bold flavor profiles, Field Roast brand transforms everyday meals into seriously delicious creations', 'Field Roast', 'https://i5.walmartimages.com/asr/326159d5-f18f-4d15-82e5-1306c9d88e44.5c854c85ece77befdda56a69eb33d95e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/326159d5-f18f-4d15-82e5-1306c9d88e44.5c854c85ece77befdda56a69eb33d95e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/326159d5-f18f-4d15-82e5-1306c9d88e44.5c854c85ece77befdda56a69eb33d95e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (759551820, '75pc Pto Rst 10# Wa', 340.5, '405500365459', 'short description is not available', '75pc Pto Rst 10# Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (759599285, 'Large Avocado 3 Count Bag', 3.98, '', 'short description is not available', 'Large Avocado 3 Count Bag', 'Walmart', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (760283165, '200pc Pto Red 5# Wd', 794, '405509123043', 'short description is not available', '200pc Pto Red 5# Wd', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (760372407, 'Multi-Color Onions, 3 Count', 1.88, '661061000516', 'Multi-Color Onions, 3 Count', 'Multi-color Onions 3 Ct Sleeve', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (760647194, '500lb Cabbage Green', 340, '405794521661', 'short description is not available', '500lb Cabbage Green', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (760719302, 'Freshness Guaranteed Seasonal Fruit Blend 16 oz', 7.97, 'deleted_681131037228', 'short description is not available', 'Freshness Guaranteed Seasonal Fruit Blend 16 oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (761180357, 'Yellow Flesh Peaches, per Pound', 1.58, '400094845332', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (761338066, 'Anjou Pears Organic Bag, 3lb', 4.97, '888289402384', 'Treat your family to the amazing taste of Anjou Pears. Tantalizingly crisp, these pears are deliciously sweet and juicy. These are excellent snacking pears, but you can also use them in a variety of recipes. For breakfast, use these pears to make a rich and creamy yogurt parfait or a nutritious juice blend. Slice these pears and use them to add flavor and crunch to a lunchtime salad or spread peanut butter on them for a protein-filled snack', 'Anjou Pears Organic,3lb Bag:•Thin skin•Juicy pulp and sweet flavor•It\'s a good source of fiber•Add to your salad for extra crunch & flavor•Excellent snacking pear', 'Chelan Fresh', 'https://i5.walmartimages.com/asr/ce722610-ff85-4c95-b51b-0a086d8278f4.fd0731c0af9bfed9a032bb20826bce6e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ce722610-ff85-4c95-b51b-0a086d8278f4.fd0731c0af9bfed9a032bb20826bce6e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ce722610-ff85-4c95-b51b-0a086d8278f4.fd0731c0af9bfed9a032bb20826bce6e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (761384587, 'Fresh California Grown Red Grapes', 1.98, '', 'short description is not available', 'Fresh California Grown Red Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/fa0e6c66-3537-4064-b657-b55eae926823_2.4b69a4add94048ac4b50517cc7afdd69.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa0e6c66-3537-4064-b657-b55eae926823_2.4b69a4add94048ac4b50517cc7afdd69.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fa0e6c66-3537-4064-b657-b55eae926823_2.4b69a4add94048ac4b50517cc7afdd69.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (761972830, 'Watermelon Seedless', 4.48, '405504821814', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (762431649, 'Yellow Flesh Peaches, per Pound', 1.58, '400094918708', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (762731355, 'Gourmet212 Ricotta and Black Olive Cherry Peppers 10.5oz (12 Pack), Glass, Jarred, Fresh', 112.95, '191822004243', 'Ricotta and black olive stuffed cherry peppers are coming to be the jewel in the crown on your tables! This delicious and as well different food will amaze you the first moment you taste the savory pepper, cheese, and black olives blend. You can consume those pepper on your breakfast tables, as garniture with your dishes, or as great mezzes with your beverages. We use delicious cherry peppers to fill up with our premium recipe of cream cheese and ricotta feta cheese mix. At Gourmet 212, we add flavor to your tables by carefully filling the cut peppers with Ricotta cheese and our specially prepared naturally fermented black olive blend. You will love this wonderful combination of cheese olive and cherry pepper. Ricotta Cheese & Olive Filled Cherry Pepper will be one of the sought-after flavors of your kitchens. Consume within 5 days after opening the package and conserve it at dry and cool places. It is ready to eat whenever you want with its practical small jar. What can you expect more to buy it?', 'Gourmet212 Ricotta and Black Olive Stuffed Cherry Peppers 10.5oz (12 Pack), Fresh, Glass, Jarred. This delicious Ricotta and Black Olive with different food will amaze you the first moment you taste the pepper, cheese, and black olives blend. You can consume these pepper on your breakfast tables, as garniture with your dishes, or as great messes with your beverages. Ricotta Cheese & Olive Filled Cherry Pepper will be one of the sought-after flavors of your kitchens. Consume within five days after opening the package and conserve it at dry and cool places.', 'Gourmet212', 'https://i5.walmartimages.com/asr/524089fd-170b-409e-8cbd-a1fad184578f.2cfbb7e2731cd92ff6c9958c829da7a6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/524089fd-170b-409e-8cbd-a1fad184578f.2cfbb7e2731cd92ff6c9958c829da7a6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/524089fd-170b-409e-8cbd-a1fad184578f.2cfbb7e2731cd92ff6c9958c829da7a6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (762828327, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_405507137073', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (763544221, 'Organic Ginger, 1 Lb.', 1.8, '045255244878', 'Organic Ginger, 1 Lb.', 'Organic Ginger', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (763653464, 'GoodHealthy Organic Spicy Crunch Blend 3 oz', 3.48, '856642007415', 'GoodHealthy Organic Spicy Crunch Blend is the perfect mix of nutrient-packed arugula and zesty radishes. A good source of calcium, this peppery blend is perfect in salads, soups, and sandwiches. Spice up your lunch with Spicy Crunch! At GoodHealthy, we’re changing the way you think about farming! Every seed we plant is nurtured in organic soil, rich in nutrients, and cared for by our sustainable SmartFarm technology. Grown locally 365 days a year, our AI-driven farms are turning less into more; using less water, less land, and less energy to produce more of the farm-fresh organic veggies you love! Going beyond organic, our regenerative greenhouses restore nutrients to the soil with every harvest, reducing our carbon footprint and supporting the local environment. Making the world GoodHealthy, one plant at a time!', 'GoodHealthy Organic Spicy Crunch Blend 3 oz', 'Good Healthy', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (764030139, 'Freshness Guaranteed Fresh Black Seedless Grapes', 2.28, '', 'short description is not available', 'Freshness Guaranteed Fresh Black Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (764099685, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094208861', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (764133838, 'Marketside Cauliflower and Colored Carrot Blend, 12oz', 2.98, '681131221795', 'Add fresh and ready to eat vegetables to your meal with Marketside Cauliflower and Colored Carrot Blend. These veggies are a great source of calcium, potassium, and dietary fiber. Marketside Cauliflower and Colored Carrots are a quick and healthy side dish and a great addition to any meal. Marketside Cauliflower and Colored Carrots are packed fresh, washed and ready to eat for your convenience. They have a delicious crisp texture and a vibrant color that is sure to add a pop to all your dishes. Enjoy them as a healthy side or use them in all your favorite recipes. Eat them raw with some dip or roast in the oven for a fresh twist on the usual roasted veggies. Steam and season them with salt, pepper and butter and serve with grilled chicken breast, grilled squash and bread for a filling dinner. Snacking is made healthy with Marketside Cauliflower and Colored Carrot Blend. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Cauliflower and Colored Carrot Blend, 12 oz: Washed and ready to eat Great addition to any meal Healthy side Net weight 12 oz', 'Marketside', 'https://i5.walmartimages.com/asr/70030b03-37e4-49a7-8184-dd2ee3fc2bb0_2.4f8cdbdabdfa14357a646fbe490cd25d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/70030b03-37e4-49a7-8184-dd2ee3fc2bb0_2.4f8cdbdabdfa14357a646fbe490cd25d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/70030b03-37e4-49a7-8184-dd2ee3fc2bb0_2.4f8cdbdabdfa14357a646fbe490cd25d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (764462009, 'Green Bell Pepper', 0.76, '708789000012', 'Green Bell Pepper', 'Green Bell Pepper', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/acc4e0b0-3a75-4d28-9510-abec0362c30c.7df5d073559cf7e400de787628aa13fb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/acc4e0b0-3a75-4d28-9510-abec0362c30c.7df5d073559cf7e400de787628aa13fb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/acc4e0b0-3a75-4d28-9510-abec0362c30c.7df5d073559cf7e400de787628aa13fb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (764898117, 'Red Seedless Grapes, per lb', 2.88, 'deleted_066022040233', 'short description is not available', 'Red Seedless Grapes, per lb', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (765459991, '125pc Pto Rst 15# Wa', 640, '405530584608', 'short description is not available', '125pc Pto Rst 15# Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (765715972, 'Organic Whole Carrots, 1 Lb.', 1.16, 'deleted_085497964004', 'Organic Whole Carrots, 1 Lb.', 'Organic Whole Carrots 1 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (765724019, 'Mns Veg Medley', 5.98, 'deleted_716519020155', 'short description is not available', 'Mns Veg Medley', 'Mann\'s', 'https://i5.walmartimages.com/asr/e668ead3-2541-4cfd-b080-aa0c93413a6d.aeb2cdc0a05707e5e65031e48426cda3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e668ead3-2541-4cfd-b080-aa0c93413a6d.aeb2cdc0a05707e5e65031e48426cda3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e668ead3-2541-4cfd-b080-aa0c93413a6d.aeb2cdc0a05707e5e65031e48426cda3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (765817999, 'Steamables Sweet Potatoes 1.5 Lb Bag', 3.38, 'deleted_757404000067', 'short description is not available', 'Steamables Sweet Potatoes 1.5 Lb Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (765866209, 'Services Reduced Program Dept 94', 0.01, '251683000003', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (765980098, 'White Onions, 2 Lb.', 2.54, 'deleted_033383603032', 'White Onions, 2 Lb.', 'White Onions 2 Lb Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (766429870, 'Organic Green Beans 12 Oz', 3.98, 'deleted_854026006337', 'short description is not available', 'Organic Green Beans 12 Oz', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (767358819, '225pc On Tx1015 3#', 923, '405515745062', 'short description is not available', '225pc On Tx1015 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (767403267, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094005798', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (767417176, 'Marketside Beyond Zero Pesticides Baby Arugula, 4 oz Clam Shell, Fresh', 3.73, '194346001446', 'Enjoy the fresh flavor of Marketside Beyond Baby Arugula. These greens are indoor and vertically grown for peak-season freshness all year long. Indoor vertical farms are a controlled growing environment giving each plant the optimal amount of light and nutrients for fresh and flavorful produce any time of the year. Farming vertically means our produce can be grown using significantly less water and land than traditional outdoor farms. Create something delicious with Marketside Beyond Baby Arugula. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Beyond Baby Arugula, 4 oz: Fresh and flavorful baby arugula Indoor and vertically grown for peak-season freshness all year long No pesticides, herbicides or fungicides applied to our greens Convenient peel and reseal packaging Keep refrigerated until ready to enjoy', 'Marketside Beyond', 'https://i5.walmartimages.com/asr/a4ccd1ce-4e8f-46e8-b1b6-1a8bc1b1099a.2516732c8b32472df828b24a6de85b86.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a4ccd1ce-4e8f-46e8-b1b6-1a8bc1b1099a.2516732c8b32472df828b24a6de85b86.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a4ccd1ce-4e8f-46e8-b1b6-1a8bc1b1099a.2516732c8b32472df828b24a6de85b86.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (767434809, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094345658', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (767545262, 'Jumbo Russet Potatoes 8 Lb Bag', 4.97, '856417005332', 'short description is not available', 'Jumbo Russet Potatoes 8 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (767702436, 'Little Leaf Farms Baby Spring Mix Salad Blend, 4 oz, Fresh', 2.98, '857394006121', 'Little Leaf Farms Baby Spring Mix combines our signature crispy green leaf with the peppery additions of arugula and mizuna to take your salad to the next level. Our deliciously crisp, wonderfully fresh, and uniquely long-lasting greens are grown in a state-of-the-art, sustainable greenhouse that harnesses sunlight and fresh rainwater. With an a fully automated, hands-free growing process to seeding to packaging, there’s no need to wash. Just open the container and enjoy!', 'Cultivated in controlled greenhouse environments to maintain optimal growing conditions and superior taste Convenient pre-mixed greens for quick meal preparation Pesticide, Herbicide, and Fungicide Free Non GMO- Naturally cultivated without genetic modification Versatile for salads, sandwiches, wraps, and more Distinctive flavor profile enhanced by peppery arugula and mizuna', 'Little Leaf Farms', 'https://i5.walmartimages.com/asr/577cf0f5-9271-4a34-bec8-17461dd38ec3.857e4547e4575395af9385c58e162d02.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/577cf0f5-9271-4a34-bec8-17461dd38ec3.857e4547e4575395af9385c58e162d02.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/577cf0f5-9271-4a34-bec8-17461dd38ec3.857e4547e4575395af9385c58e162d02.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (767858113, 'Freshness Guaranteed Cantaloupe Small', 4.67, '262817000004', 'Enjoy the sweet, refreshing taste of Freshness Guaranteed Cantaloupe Chunks. This pre-cut cantaloupe is great for breakfast, lunch, dessert, or when you want a snack. You can eat them right out of the container, use them to infuse water for a refreshing drink. This cantaloupe is great for sharing with friends and family or keeping it for yourself. It comes in a reclosable container to help maintain freshness. Bring home Freshness Guaranteed Cantaloupe Chunks today for a refreshing, healthy treat.Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Cantaloupe Small Contains Cantaloupe Packed in a secure plastic bowl with lid Portable and convenient Provides many essential nutrients', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (767905460, 'Fresh Long Stem Strawberries, 1 lb Container', 7.48, '852298002071', 'The sweet, juicy flavor of Fresh Long Stem Strawberries make them a refreshing and delicious treat. These strawberries are larger than normal strawberries, making them perfect for dipping in chocolate. Decorate them with white-chocolate drizzle, crushed nuts, chocolate sprinkles for a special touch. They contain essential vitamins and nutrients like vitamin C, dietary fiber, potassium, vitamin B and magnesium, making them perfect for a healthy diet. Prior to serving simply gently wash the strawberry, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh Long Stem Strawberries today and savor the delectable flavor.', 'Fresh Long Stem Strawberries, 1 lb: Larger than normal strawberries Prior to serving gently wash the strawberries and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Decorate with chocolate to serve on their own, or top strawberry desserts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/36c5ea4c-2c0d-4d7c-ba6d-ed84b37385ea_1.7a6295c6421572ca726dfc0c34f838dd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/36c5ea4c-2c0d-4d7c-ba6d-ed84b37385ea_1.7a6295c6421572ca726dfc0c34f838dd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/36c5ea4c-2c0d-4d7c-ba6d-ed84b37385ea_1.7a6295c6421572ca726dfc0c34f838dd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (768025137, 'Yellow Flesh Peaches, per Pound', 1.58, '400094845547', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (768110923, 'Watermelon Seedless', 4.48, '400094974780', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (768410352, 'Watermelon Seedless', 4.98, '400094437186', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (768431178, 'Yellow Flesh Peaches, per Pound', 1.58, '400094562000', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (769249415, 'Blaze Bumpy Pumpkins', 2.48, '850781007503', 'short description is not available', 'Blaze Bumpy Pumpkins', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (769307402, '(6 pack) (6 Pack) CIRIO Cherry Tomatoes, 14 Oz', 8.88, '822356000219', 'Irresistibly sweet and intense in flavor, Cirio Cherry Tomatoes are aromatic and distinctive. Ripened in the hot and dry climate of?Southern Italy, the tomatoes are picked and canned in a rich tomato juice to preserve their natural and unmistakable taste.', 'CIRIO Cherry Tomatoes, 14 Oz', 'Cirio', 'https://i5.walmartimages.com/asr/19063834-115b-4e9a-8e07-2010b5409921_1.286fe5a57a188a27f9b8bde7627d26e4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19063834-115b-4e9a-8e07-2010b5409921_1.286fe5a57a188a27f9b8bde7627d26e4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19063834-115b-4e9a-8e07-2010b5409921_1.286fe5a57a188a27f9b8bde7627d26e4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (769447579, 'Fresh Black Seedless Grapes', 1.88, 'deleted_855199008425', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (769945528, 'Fresh Rave Apples, Each', 1.1, '000000034876', 'Fresh Rave Apples are the perfect combination of sweet and tart in every bite. These crisp and juicy apples are hand-picked at the peak of ripeness to ensure maximum flavor and quality. With their vibrant red and green skin, Fresh Rave Apples are sure to stand out in any fruit bowl. Whether you enjoy them as a snack or use them in your favorite recipes, Fresh Rave Apples are a delicious and healthy choice.', 'Rave Apples are a premium fresh apple variety that will take your taste buds on an adventure. Each Rave Apple is medium to large in size, with a round shape and a bright red color that fades into a green-yellow background. The flesh of the Rave Apple is crisp, juicy and has an explosively sweet and tangy flavor that will make your taste buds dance. This apple variety is perfect for snacking, but also holds up well in cooking and baking, maintaining its shape and flavor. Rave Apples are a good source of fiber, vitamin C, and antioxidants, and can be enjoyed as a healthy and flavorful addition to any meal or snack. With their distinctive taste and appearance, Rave Apples are a premium choice for apple lovers and foodies who are looking for something unique and delicious.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3ea73f13-2671-4bb5-96ab-48bbd330ebd8_1.d78156982aa3ed7728f6243858567a26.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3ea73f13-2671-4bb5-96ab-48bbd330ebd8_1.d78156982aa3ed7728f6243858567a26.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3ea73f13-2671-4bb5-96ab-48bbd330ebd8_1.d78156982aa3ed7728f6243858567a26.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (770059776, 'Yellow Flesh Peaches, per Pound', 1.58, '400094219430', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (770268499, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094601624', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (770489489, 'Fresh Blood Oranges, 2 lb Bag', 3.93, 'deleted_092148219642', 'Enjoy the fresh sweetness of Blood Oranges. These crimson-fleshed oranges have a tangy and sweet flavor with hints of berry. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite adult beverage. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Blood Oranges add flavor to any meal or beverage.', 'Fresh Blood Oranges, 2 lb Bag Great source of vitamin C Crimson-fleshed citrus fruit have a tangy and sweet flavor with a hint of berry Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast Adds flavor to a variety or recipes Use as a garnish for your favorite adult beverage Make sweet desserts like ambrosia, orange bars, and orange pie', 'Fresh Produce', 'https://i5.walmartimages.com/asr/aefd395d-cef4-4601-a3f1-54791e11f517.998b17436f0c6a1f49c0c02872508fa3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aefd395d-cef4-4601-a3f1-54791e11f517.998b17436f0c6a1f49c0c02872508fa3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aefd395d-cef4-4601-a3f1-54791e11f517.998b17436f0c6a1f49c0c02872508fa3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (770549881, 'German Butterball Potato - 6 Tubers', 9.99, '811332033815', 'Butter-me-not! So versatile -- great for baking, frying, or mashing. 100 days. An heirloom russet with flavor so rich and sweet it would be a crime to smother it in butter, German Butterball is an all-around potato you can rely on as your \"main crop\" for great year-round eating. You will fall in love with the creamy-sweet flavor even before you appreciate the heavy yields and long storage ability of this favorite! German Butterball sets medium-sized oblong to round russets with yellow flesh, as if they\'d already been covered in melted butter. Resistant to disease and scab, these taters look as good as they taste, maturing late in potato season on plants that refuse to be confined to their allotted space, but wander gloriously instead! This plant grows tall, providing great shade protection for the potatoes with large, abundant foliage. Give it plenty of space (because it will take it even if you don\'t!) and let these flavor-filled roots mature slowly to perfection. You will absolutely love the flavor. German Butterball consistently wins taste tests, but it\'s also quite versatile, as happy being mashed as it is fried, baked, or boiled. Rely on it for homegrown potato goodness!', 'An heirloom russet with flavor so rich and sweet An all-around potato you can rely on as your \"main crop\" for great year-round eating Ideal for microwave, frying or baking Easy to grow, Prefers well drained soil, high in organic matter', 'Hirt\'s Gardens', 'https://i5.walmartimages.com/asr/de189a10-79a0-4ae6-bcb0-e5547928e635.e4e33ed66bb7a2e6a840ea9bc69e515f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/de189a10-79a0-4ae6-bcb0-e5547928e635.e4e33ed66bb7a2e6a840ea9bc69e515f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/de189a10-79a0-4ae6-bcb0-e5547928e635.e4e33ed66bb7a2e6a840ea9bc69e515f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (770585228, 'Sample-fire Roasted Fajita Minced Garlic', 0.01, '405965175532', 'short description is not available', 'Sample-fire Roasted Fajita Minced Garlic', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (771662322, 'Jumbo Idaho Potatoes, 8 Lb.', 6.42, 'deleted_405518790274', 'Jumbo Idaho Potatoes, 8 Lb.', 'Jumbo Idaho Potatoes 8 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (771743988, 'Melon De Agua', 0.68, '406515318560', 'short description is not available', 'Melon De Agua', 'Unbranded', 'https://i5.walmartimages.com/asr/17f2b97e-bb24-4ac3-9b1f-917d1c0e82aa.6235a9f9e6a5526f0e66e41a021ab694.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/17f2b97e-bb24-4ac3-9b1f-917d1c0e82aa.6235a9f9e6a5526f0e66e41a021ab694.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/17f2b97e-bb24-4ac3-9b1f-917d1c0e82aa.6235a9f9e6a5526f0e66e41a021ab694.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (772012362, 'Yellow Flesh Peaches, per Pound', 1.58, '400094943632', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (772055836, 'Fresh Red Seedless Grapes', 1.84, 'deleted_816426013735', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (772113550, 'Sweet Onions 3 Lb Bag', 6.28, '050269020844', 'short description is not available', 'Sweet Onions 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (772915658, 'Bowery Farming Bowery Salad Baby 4oz', 2.98, '851536007533', 'short description is not available', 'Bowery Farming Bowery Salad Baby 4oz', 'Bowery Farming', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (772971242, 'Tomato on the Vine, Bag', 1.97, 'deleted_626074777718', 'Keep your recipes simple and classic with fresh tomatoes on the vine. With their vibrant red color, firm and juicy flesh, and unmistakably delicious flavor, this fresh produce item is sure to impress more than just your taste buds. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. The list is endless! Plus, they come right to your kitchen still on the vine that they grew on, meaning that their mouthwatering taste and freshness will be long-lasting for your culinary convenience. Stock up on Walmart\'s Tomatoes On The Vine and keep your dishes looking great and tasting equally as excellent.', 'Tomato on the Vine, Bag: Wholesome, versatile, and delicious Ideal ingredient for a variety of dishes Make a zesty tomato sauce to go along with your favorite pasta Enjoy on their own as a nutritious snack Make a flavorful salsa or add some pop to your guacamole', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (772984012, 'Red Mangoes, 1 Each', 0.96, 'deleted_095829552601', 'Red Mangoes, 1 Each', 'Red Mango', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/3551451e-524a-4f56-a262-1e1ce32952b9_3.93435e5c6e53e40b32077d32027ab0a6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3551451e-524a-4f56-a262-1e1ce32952b9_3.93435e5c6e53e40b32077d32027ab0a6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3551451e-524a-4f56-a262-1e1ce32952b9_3.93435e5c6e53e40b32077d32027ab0a6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (774255117, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094170786', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (774344130, 'Fresh Hidroponico Del Pais Lechuga Oakleaf, Each', 2.97, '036446046128', 'Introducing Fresh Lechuga Oakleaf, an exquisite variety of lettuce that adds a touch of elegance and vibrant flavor to your salads and culinary creations. With its unique, oakleaf-shaped leaves in a beautiful mix of green and burgundy hues, this lettuce provides a delightful visual appeal and a tender, crisp texture. Grown with care and harvested at the peak of freshness, our Fresh Lechuga Oakleaf offers a subtle, sweet taste that pairs well with a variety of dressings and ingredients. Elevate your salads and dishes with the unmatched quality and flavor of Fresh Lechuga Oakleaf.', 'Introducing Fresh Lechuga Oakleaf, an exquisite variety of lettuce that adds a touch of elegance and vibrant flavor to your salads and culinary creations. With its unique, oakleaf-shaped leaves in a beautiful mix of green and burgundy hues, this lettuce provides a delightful visual appeal and a tender, crisp texture. Grown with care and harvested at the peak of freshness, our Fresh Lechuga Oakleaf offers a subtle, sweet taste that pairs well with a variety of dressings and ingredients. Elevate your salads and dishes with the unmatched quality and flavor of Fresh Lechuga Oakleaf.', 'Hidroponico Del Pais', 'https://i5.walmartimages.com/asr/101ee8c0-c31f-4276-a1bb-c3fdff231cc7.dfd17ee7600cb5750658e899daa79d84.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/101ee8c0-c31f-4276-a1bb-c3fdff231cc7.dfd17ee7600cb5750658e899daa79d84.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/101ee8c0-c31f-4276-a1bb-c3fdff231cc7.dfd17ee7600cb5750658e899daa79d84.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (774373437, 'Marketside Cauliflower Florets 12oz', 2.58, 'deleted_803944307118', 'short description is not available', 'Marketside Cauliflower Florets 12oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (774776781, 'Fresh Cara Cara Oranges, 3 lb Bag', 3.46, '605049366720', 'Enjoy the fresh sweetness of Oranges. These pink-fleshed oranges are very sweet and have a lower acidity than Navel oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite adult beverage. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Cara Cara Oranges add flavor to any meal or beverage.', 'Fresh Oranges, 3 lb Bag Great source of vitamin C Pink-fleshed citrus fruit with a very sweet flavor; low acidity', 'Unbranded', 'https://i5.walmartimages.com/asr/47d05605-2c2f-481f-9e4c-efe91f91983e.86520f5b60326d7316dfc033677d2190.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/47d05605-2c2f-481f-9e4c-efe91f91983e.86520f5b60326d7316dfc033677d2190.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/47d05605-2c2f-481f-9e4c-efe91f91983e.86520f5b60326d7316dfc033677d2190.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (774854012, 'Freshness Guaranteed Fruit Blend Medium', 6.4, '263033000007', 'Freshness Guaranteed Fruit Blend in plastic tray with lid. Has a delicious blend of mixed fruits ready to be opened and shared.', 'Freshness Guaranteed Fruit Blend Medium', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (774867150, 'Kanzi Apples 2 Lb Bag', 4.44, '847473005954', 'short description is not available', 'Kanzi Apples 2 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (775309833, 'Fuji Apples 5 Lb Bag', 4.97, 'deleted_080153541315', 'short description is not available', 'Fuji Apples 5 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (775660027, 'AVO BAG 48 10/5 MXMP', 3.28, 'deleted_761010147634', 'AVO BAG 48 10/5 MXMP', 'AVO BAG 48 10/5 MXMP', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (775672746, 'Whole Fresh Yellow Onions 3 lb Bag', 3.58, 'deleted_851343004183', 'Introducing our versatile and flavorful Yellow Onions 3 Lb Bag - a pantry staple for every home cook! Carefully selected for their firmness, golden-brown skin, and pungent aroma, these onions offer a delightful balance of sweetness and sharpness, making them the ideal ingredient for a wide range of dishes. With three full pounds of premium quality onions at your fingertips, you\'ll have ample supply for sautéing, caramelizing, or adding a savory crunch to your favorite recipes. Our Yellow Onions are packed with essential nutrients, antioxidants, and immune-boosting properties, providing both taste and nourishment in every bite. Elevate your culinary creations with the rich and aromatic flavor of our Yellow Onions 3 Lb Bag.', 'Yellow Onions 3 Lb Bag Introducing our versatile and flavorful Yellow Onions 3 Lb Bag - a pantry staple for every home cook! Carefully selected for their firmness, golden-brown skin, and pungent aroma, these onions offer a delightful balance of sweetness and sharpness, making them the ideal ingredient for a wide range of dishes. With three full pounds of premium quality onions at your fingertips, you\'ll have ample supply for sautéing, caramelizing, or adding a savory crunch to your favorite recipes. Our Yellow Onions are packed with essential nutrients, antioxidants, and immune-boosting properties, providing both taste and nourishment in every bite. Elevate your culinary creations with the rich and aromatic flavor of our Yellow Onions 3 Lb Bag.', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (775731521, 'Services Reduced Program Dept 94', 0.03, '251993000007', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (775847707, 'Fieldpack Unbranded Fresh Strawberries 1#', 4.87, '405972859500', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/467b54d4-aead-4b0c-8d30-a48d49246a41.c242f6d596503380a853be10cb5d1539.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (776986623, '200pc Pto Idaho 5#', 794, '405540274865', 'short description is not available', '200pc Pto Idaho 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (777248779, 'Fresh Juici Apples, 2lb Bag', 3.43, '887434002707', 'JUICI™ apples feel heavy for their size and are known for their aqueous nature. The flesh also contains high sugar content with acidity, creating a balanced, sweet-tart flavor. The taste is initially sweet and tangy with a sharp but not overpowering zest, dissipating quickly to a pleasant, sweet aftertaste.', 'Fresh Juici Apple, Each: Sweet, crisp & juicy Mild lemon-citrus undertones Excellent snacking apple Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp & apple pie', 'Fresh Produce', 'https://i5.walmartimages.com/asr/06623c49-e563-406e-b174-6c0e9f3727cb.c6a0dad61c41442577550a28f570aaa6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/06623c49-e563-406e-b174-6c0e9f3727cb.c6a0dad61c41442577550a28f570aaa6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/06623c49-e563-406e-b174-6c0e9f3727cb.c6a0dad61c41442577550a28f570aaa6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (777720391, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094033814', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (777795624, 'Fresh Organic Whole Brown Mushrooms, 16 oz', 5.82, '682693675651', 'Experience the fresh taste of our Whole Organic Brown Mushrooms. Brown Mushrooms give you that same earthy taste you love about mushrooms but take it up a notch with their firm, meaty texture. Similar in size and shape to white mushrooms, Brown mushrooms are hardier and provide a deeper earthy taste. They\'re the same portabella mushrooms you\'ve enjoyed before - they\'ve just been harvested a few days earlier before becoming those large caps you\'ve seen in vegetarian and vegan cuisines. With their hearty, full-bodied taste, brown mushrooms are an excellent addition to beef, wild game, and vegetable dishes. Plus, these whole brown mushrooms are certified USDA Organic, making them a wholesome addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try out our Whole Organic Brown Mushrooms.', 'Fresh Whole Organic Brown Mushrooms, 16 oz tray: 16-ounce package of sliced white mushrooms USDA Organic Naturally fat free Cholesterol free Low in calories, carbs and sodium Fresh and all natural Pre-cleaned Natural source of the antioxidant selenium Excellent addition to beef, wild game and vegetable dishes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/11155007-676c-4e07-af46-111a1c9bf13a.9a8f907acdf6f9e60dfba72d86fa9402.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/11155007-676c-4e07-af46-111a1c9bf13a.9a8f907acdf6f9e60dfba72d86fa9402.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/11155007-676c-4e07-af46-111a1c9bf13a.9a8f907acdf6f9e60dfba72d86fa9402.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (777909175, 'Goya Yucca, 24 Ounce - 20 per case.', 161.54, '', 'YUCA 24 OZ', 'Brand: Goya Yuca Cassava 24 Ounce 20 per Case Fresh & Frozen Vegetables', 'GOYA', 'https://i5.walmartimages.com/asr/b8e60468-5938-4af7-b962-d8de786681eb.c2cbe69dd26d28129bcab7fa2094bab3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b8e60468-5938-4af7-b962-d8de786681eb.c2cbe69dd26d28129bcab7fa2094bab3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b8e60468-5938-4af7-b962-d8de786681eb.c2cbe69dd26d28129bcab7fa2094bab3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (778071569, 'Valencia Oranges, 4 Lb.', 6.14, 'deleted_014668120086', 'Valencia Oranges, 4 Lb.', 'Orange, Cello 4lb Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/d90980cb-6535-42c2-bde6-955882b7e0ba.84d22bed3b28de42352ad1c0f4f2d72f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d90980cb-6535-42c2-bde6-955882b7e0ba.84d22bed3b28de42352ad1c0f4f2d72f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d90980cb-6535-42c2-bde6-955882b7e0ba.84d22bed3b28de42352ad1c0f4f2d72f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (778379150, 'Dippin Stix Sweet Apple with Chocolate', 1.57, '649632001728', 'Discover the ultimate snacking delight with Dippin Stix Sweet Apple & Chocolate! This treat features crisp, juicy apple slices paired with a rich, velvety chocolate dip. Our apples are carefully selected for their natural sweetness, ensuring a delectable and satisfying bite every time. The smooth chocolate dip adds a luxurious touch, elevating your snacking experience. Perfect for on-the-go indulgence or a fun after-school snack, Dippin Stix guarantees a winning combination of flavors that will have you craving more.', 'Dippin Stix Sweet Apple/chocolate Discover the ultimate snacking delight with Dippin Stix Sweet Apple & Chocolate! This treat features crisp, juicy apple slices paired with a rich, velvety chocolate dip. Our apples are carefully selected for their natural sweetness, ensuring a delectable and satisfying bite every time. The smooth chocolate dip adds a luxurious touch, elevating your snacking experience. Perfect for on-the-go indulgence or a fun after-school snack, Dippin Stix guarantees a winning combination of flavors that will have you craving more.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/37b43501-b008-4feb-9e6c-e6dafec43102.1eefb36bbf12064f64fa5b7194c47d98.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/37b43501-b008-4feb-9e6c-e6dafec43102.1eefb36bbf12064f64fa5b7194c47d98.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/37b43501-b008-4feb-9e6c-e6dafec43102.1eefb36bbf12064f64fa5b7194c47d98.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (778440406, 'That\'s Tasty Organic Power Up Supergreens 4.5oz', 2.18, '768573710176', 'short description is not available', 'That\'s Tasty Organic Power Up Supergreens 4.5oz', 'That\'s Tasty', 'https://i5.walmartimages.com/asr/68f40bec-ffc2-40bb-94a2-4867e763218e.3e91053cd0939e0571a47b7cda715337.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68f40bec-ffc2-40bb-94a2-4867e763218e.3e91053cd0939e0571a47b7cda715337.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68f40bec-ffc2-40bb-94a2-4867e763218e.3e91053cd0939e0571a47b7cda715337.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (778592705, 'Fresh Organic Green Leaf, 1 Each', 1.96, '000000940764', 'Introducing Organic Green Leaf Lettuce, a nutritious and versatile addition to your kitchen. This single head of lettuce boasts lush, tender leaves packed with vitamins and minerals, making it a healthy choice for your salads, wraps, or sandwiches. Grown organically and sourced responsibly, our green leaf lettuce is free from harmful chemicals, ensuring a fresh and natural taste. Experience the crisp texture and delectable flavor of this wholesome, earth-friendly ingredient, elevating your meals to new heights of deliciousness.', 'Fresh Organic Green Leaf Lettuce Introducing Organic Green Leaf Lettuce, a nutritious and versatile addition to your kitchen. This single head of lettuce boasts lush, tender leaves packed with vitamins and minerals, making it a healthy choice for your salads, wraps, or sandwiches. Grown organically and sourced responsibly, our green leaf lettuce is free from harmful chemicals, ensuring a fresh and natural taste. Experience the crisp texture and delectable flavor of this wholesome, earth-friendly ingredient, elevating your meals to new heights of deliciousness.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a31c2f76-b5fa-44d6-b5b8-7c94ff293c0c.a1f1315d0954a885c4e0ea302bc547ed.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a31c2f76-b5fa-44d6-b5b8-7c94ff293c0c.a1f1315d0954a885c4e0ea302bc547ed.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a31c2f76-b5fa-44d6-b5b8-7c94ff293c0c.a1f1315d0954a885c4e0ea302bc547ed.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (778947127, 'Fieldpack Unbranded Bok Choy', 1.47, '885460000278', 'short description is not available', 'Fieldpack Unbranded Bok Choy', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/67a9298b-f558-4166-8375-fb985b585c86.7da2aa8ad2fda75b2fb9a2195d427213.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/67a9298b-f558-4166-8375-fb985b585c86.7da2aa8ad2fda75b2fb9a2195d427213.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/67a9298b-f558-4166-8375-fb985b585c86.7da2aa8ad2fda75b2fb9a2195d427213.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (779246410, 'California Grown Peaches, per Pound', 1.58, '400094006771', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (779280700, 'Lakeside Produce Lakeside Cucumbers, 6 ea', 2.5, '884051060011', 'Cucumbers, Mini Cukes 6 cucumbers Produce perfected. www.lakesideproduce.com. Product of Canada. 6 cucumbers Leamington, ON N8H 3V5', 'Cucumbers, Mini Cukes Produce perfected. www.lakesideproduce.com. Product of Canada.', 'Lakeside', 'https://i5.walmartimages.com/asr/21ee5e01-8204-40cc-ae09-72ef124ad851.6f316d4de463f95fe0741f142e1ae6dc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/21ee5e01-8204-40cc-ae09-72ef124ad851.6f316d4de463f95fe0741f142e1ae6dc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/21ee5e01-8204-40cc-ae09-72ef124ad851.6f316d4de463f95fe0741f142e1ae6dc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (779895464, 'California Grown Peaches, per Pound', 1.58, '400094987186', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (780743993, 'Fresh Grape Tomato, 10 oz Package', 1.98, 'deleted_814369011214', 'Fresh grape tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Grape Tomatoes are the perfect choice.', 'Grape Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/181e4761-da8e-4fb2-98a2-3800ce8cba71.5ce881af59a551cf4241cb0b817c274a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/181e4761-da8e-4fb2-98a2-3800ce8cba71.5ce881af59a551cf4241cb0b817c274a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/181e4761-da8e-4fb2-98a2-3800ce8cba71.5ce881af59a551cf4241cb0b817c274a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (781062348, '125pc Pto Rst 15# Co', 640, '405529264023', 'short description is not available', '125pc Pto Rst 15# Co', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (781123809, 'Valencia Oranges, 4 Lb.', 6.58, 'deleted_036315110523', 'Valencia Oranges, 4 Lb.', 'Valencia Orange 4 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (781187868, 'Slicer Tomato', 1.98, '626074010105', 'short description is not available', 'Slicer Tomato', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (781593404, 'Fresh Apple Autumn Glory, 2lb Bag', 4.44, '883391003078', 'Indulge in the crisp sweetness of Autumn Glory Fresh Apples, the perfect autumn treat! These apples are grown in the Pacific Northwest where the unique climate and soil create the perfect environment for the apples to thrive. Bursting with juicy, caramel flavor, these apples are perfect for snacking, baking or as an addition to your favorite fall recipes. Grab a bag today and savor the taste of the season!', 'Fresh Autumn Glory apples are a distinct variety with a unique flavor profile that sets them apart from other apples. Autumn Glory apples are high in dietary fiber and contain antioxidants, making them a healthy snacking choice. The 2lb bag size is convenient for families and individuals looking for a longer-lasting supply of fresh apples. Autumn Glory apples are harvested at their peak ripeness and packed immediately for maximum freshness, ensuring a delicious and crisp eating experience. - Unique flavor profile sets them apart from other apples - High in dietary fiber and antioxidants for a healthy snack - Convenient 2lb bag size for families and individuals - Harvested at peak ripeness for maximum flavor and freshness - Packed immediately to ensure crisp and delicious eating experience- Ideal for snacking, baking, and cooking.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a6091b27-b437-46fe-89d3-6dd2627843c4.86c5fb0c0dacfbd6293d945a57a7ec20.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6091b27-b437-46fe-89d3-6dd2627843c4.86c5fb0c0dacfbd6293d945a57a7ec20.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6091b27-b437-46fe-89d3-6dd2627843c4.86c5fb0c0dacfbd6293d945a57a7ec20.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (782202669, 'Freshness Guaranteed Fresh Black Seedless Grapes', 2.66, '', 'short description is not available', 'Freshness Guaranteed Fresh Black Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (782242311, 'Fresh Rainier Cherries', 7.48, '741839720010', 'short description is not available', 'Fresh Rainier Cherries', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3b88dbe5-783e-472f-8b0a-1cbaababa6a9.3dc14ce6c4c2580648eefc2a3e8ba91a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3b88dbe5-783e-472f-8b0a-1cbaababa6a9.3dc14ce6c4c2580648eefc2a3e8ba91a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3b88dbe5-783e-472f-8b0a-1cbaababa6a9.3dc14ce6c4c2580648eefc2a3e8ba91a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (782483917, 'Services Reduced Program Dept 94', 0.01, '251694000009', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (782672121, 'Red Bell Pepper', 5.07, '', 'short description is not available', 'Red Bell Pepper', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/862cad3c-4f8f-4aba-a6fb-787b7635c25f.7ee5cc3b53b8bc630e7caf60dd6b3c75.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/862cad3c-4f8f-4aba-a6fb-787b7635c25f.7ee5cc3b53b8bc630e7caf60dd6b3c75.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/862cad3c-4f8f-4aba-a6fb-787b7635c25f.7ee5cc3b53b8bc630e7caf60dd6b3c75.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (782704294, 'Fresh Sour Orange, Each', 0.58, 'deleted_000000043892', 'Get a burst of citrus flavor with our fresh sour oranges, perfect for snacking, cooking, or adding a tangy twist to your favorite recipes.', 'Fresh Sour Orange, Each', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (783138876, 'Watermelon Seedless', 4.98, '400094373972', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (783268602, 'Pineapple 10 Oz', 7.88, '045009891136', 'short description is not available', 'Pineapple 10 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/dfe6ad4c-3526-4aa1-8522-784006f1d358.fe005f1b7ffbb906d53177c1843f54e5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dfe6ad4c-3526-4aa1-8522-784006f1d358.fe005f1b7ffbb906d53177c1843f54e5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dfe6ad4c-3526-4aa1-8522-784006f1d358.fe005f1b7ffbb906d53177c1843f54e5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (783466461, 'Cello Lettuce, 1 Each', 1.48, '811857021359', 'Cello Lettuce, 1 Each', 'Cello Lettuce', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (784284959, 'Steamables Sweet Potatoes 1.5 Lb Bag', 1.98, 'deleted_790132000107', 'short description is not available', 'Steamables Sweet Potatoes 1.5 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (784338229, 'Fresh Organic Roma Tomato, 1 lb Bag', 2.98, '711069548753', 'Bring the fresh, delicious taste of Organic Roma Tomatoes into your home. These meaty tomatoes deliver sweet and juicy flavor with each bite and are an ideal ingredient in a variety of recipes. They would make a tasty, garden-inspired addition to salads, burgers, gourmet sandwiches, and so much more. They are picked at peak freshness and specially bred for deep red color, intense flavor, and higher lycopene content than standard tomatoes. Whether you slice or dice them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with these Fresh Organic Roma Tomatoes.', 'Fresh Organic Roma Tomato, 1 lb Bag Wholesome, fresh, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, burgers, gourmet sandwiches, and more Add to party trays or school lunches Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/78e6bdaa-8c81-4a59-8ab2-196846bdb8ff.c23aa5a9a6298b3bf1bd67a37fed0cf3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/78e6bdaa-8c81-4a59-8ab2-196846bdb8ff.c23aa5a9a6298b3bf1bd67a37fed0cf3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/78e6bdaa-8c81-4a59-8ab2-196846bdb8ff.c23aa5a9a6298b3bf1bd67a37fed0cf3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (784816933, 'Fresh Grown Yellow Peaches', 2.28, 'deleted_845792040380', 'short description is not available', 'Fresh Grown Yellow Peaches', 'Farm2You', 'https://i5.walmartimages.com/asr/9602e625-f765-49cc-b5cf-a420eca7396a.486be8ce6d081ae871e90e945fa28e20.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9602e625-f765-49cc-b5cf-a420eca7396a.486be8ce6d081ae871e90e945fa28e20.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9602e625-f765-49cc-b5cf-a420eca7396a.486be8ce6d081ae871e90e945fa28e20.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (784817592, 'Fresh Yellow Name Root per Pound', 3.28, 'deleted_851502006171', 'Fresh Yellow Name Root per Pound', 'Fresh Yellow Name Root per Pound', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (784896733, 'Minced Garlic, 8 oz Jar', 3.27, 'deleted_023562010515', 'Add bold flavor to your homemade meals with Fresh Minced Garlic in Water. Ready to use, this garlic is gluten and salt free. Brush or spread on meats, fish, or poultry; stir or blend easily into sauces, dressings, and gravies; or blend with softened butter and parsley for out-of-this-world garlic bread. The possibilities are almost endless with this versatile spice. Packed in a convenient glass jar with a screw-on top, you can keep a bottle of this seasoning in your fridge ready to go at any moment. Flavor up your meals with Garland Foods Minced Garlic in Water.', 'Minced garlic 8-ounce jar Refrigerate after opening Ready to use Brush or spread on meats, fish, or poultry Garlic becomes caramelized and sweeter when cooked A flavorful addition to many dishes Stir or blend easily into sauces, dressings, and gravies', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4239dc06-61c4-4b54-8cf3-5559541af5c9.d8e601eede7199e2d2e8ad400371bb40.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4239dc06-61c4-4b54-8cf3-5559541af5c9.d8e601eede7199e2d2e8ad400371bb40.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4239dc06-61c4-4b54-8cf3-5559541af5c9.d8e601eede7199e2d2e8ad400371bb40.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (785308328, 'Organic Sungold Kiwifruit 2lb Clamshell', 9.98, 'deleted_818849020079', 'short description is not available', 'Organic Sungold Kiwifruit 2lb Clamshell', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/21f82649-c113-485a-ad95-f0fa4137e2ac.6737c6efda88623bc9787124551834db.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/21f82649-c113-485a-ad95-f0fa4137e2ac.6737c6efda88623bc9787124551834db.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/21f82649-c113-485a-ad95-f0fa4137e2ac.6737c6efda88623bc9787124551834db.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (786343527, 'Fresh Klondike Potatoes, Each', 2.47, '000000047296', 'These Fresh, Klondike Potatoes are hand selected for excellent quality. Firm, well-shaped, and smooth, these potatoes can be cooked in almost any way imaginable. They have a wonderful, buttery texture and flavor when baked, roasted, boiled, steamed, sauteed, or mashed. Feature them in a potato salad or cook them up and serve as a savory side dish to your favorite protein. To preserve the nutrients, leave the skins on and simply scrub gently in water before cooking. Always store potatoes in a cool, well-ventilated area rather than in the refrigerator. Enjoy nutrients, flavor, and all-around deliciousness when you cook up Klondike Potatoes.', 'Klondike Limited Potato Tote Per Pound', 'Klondike', 'https://i5.walmartimages.com/asr/8ec0507b-0fe3-43b6-a2fa-e38061d0c8fd.9d25dc0c23a825edc2c3dbc92cc330b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ec0507b-0fe3-43b6-a2fa-e38061d0c8fd.9d25dc0c23a825edc2c3dbc92cc330b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ec0507b-0fe3-43b6-a2fa-e38061d0c8fd.9d25dc0c23a825edc2c3dbc92cc330b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (786481614, 'California Grown Peaches, per Pound', 1.58, '400094859087', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (786697092, 'Display Box For Halos', 0.01, '405520018762', 'short description is not available', 'Display Box For Halos', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (786751768, 'Fresh Red Seedless Grapes', 1.84, 'deleted_000000020237', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (786898850, 'Large Avocado 3 Count Bag', 39, '', 'short description is not available', 'Large Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (786995933, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094657270', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (787114458, 'Tasteful Selections Ruby Sensation Potato Bag, 24oz', 4.88, '826088519155', 'If you love red potatoes, you will love our Ruby Sensation® baby red potatoes! A light fresh flavor complements this potato’s creamy flesh and tender skin. Perfect for summer salads or even a quick weeknight meal. They are available in multiple bite sizes and packaging types. These baby red potatoes are very versatile and can be cooked any way your heart desires to have them.', 'Creamy flesh and Tender skin perfect for summer salads or quick weeknight meal light fresh flavor', 'Tasteful Selections', 'https://i5.walmartimages.com/asr/c018804e-378c-4d70-a972-e8ea088f6ef5.eb1e78d23badb67e1b051475989bc63d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c018804e-378c-4d70-a972-e8ea088f6ef5.eb1e78d23badb67e1b051475989bc63d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c018804e-378c-4d70-a972-e8ea088f6ef5.eb1e78d23badb67e1b051475989bc63d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (787372879, 'Fresh Acorn Squash, Each', 1.77, '405998737066', 'Add some fresh flavor to your meal with Acorn Squash. This versatile vegetable can be used in a variety of dishes to create delicious and decadent meals. Roast the whole squash for a simple and flavorful side dish, chop it into cubes and put it in the slow cooker with chicken breast, kidney beans, and spices, or make butternut noodles for a gluten-free pasta alternative. For a sweet treat turn the squash into a rich and spicy pie, perfect for the holiday season. With so many uses, this vegetable will become a pantry staple. Create tasty and flavorful meals with Acorn Squash.', 'Versatile ingredient Roast the whole squash for the perfect side dish or chop into cubes, put into a slow cooker, and mix with chicken breast, beans, and spices for a flavorful dish Use it to create a sweet and decadent pie Make acorn squash noodles for a gluten free pasta alternative Will become a pantry staple Fresh Product', 'Unbranded', 'https://i5.walmartimages.com/asr/8f099e61-fc05-4490-9757-21889b0c0a45.6cf9f32cd41ef0fc8c92086406355b83.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8f099e61-fc05-4490-9757-21889b0c0a45.6cf9f32cd41ef0fc8c92086406355b83.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8f099e61-fc05-4490-9757-21889b0c0a45.6cf9f32cd41ef0fc8c92086406355b83.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (787375565, 'Fresh Eggplant Small', 2.52, '000000046039', 'Introducing our Fresh Whole small eggplants, the perfect ingredient for a wide variety of delectable dishes. These little gems are bursting with flavor, offering a rich, slightly sweet taste and a creamy texture when cooked. Ideal for grilling, roasting, or sautéing, our small eggplants are a versatile and delicious addition to your culinary repertoire. Sourced from quality farms, these beauties are ready to make a big impact on your plate.', 'Introducing our Fresh Whole small eggplants, the perfect ingredient for a wide variety of delectable dishes. These little gems are bursting with flavor, offering a rich, slightly sweet taste and a creamy texture when cooked. Ideal for grilling, roasting, or sautéing, our small eggplants are a versatile and delicious addition to your culinary repertoire. Sourced from quality farms, these beauties are ready to make a big impact on your plate', 'Unbranded', 'https://i5.walmartimages.com/asr/4bdcdf62-5e91-4027-b158-fd689583e71c.7b73230c82633a0cea46427d82980b98.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4bdcdf62-5e91-4027-b158-fd689583e71c.7b73230c82633a0cea46427d82980b98.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4bdcdf62-5e91-4027-b158-fd689583e71c.7b73230c82633a0cea46427d82980b98.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (787802074, 'Yellow Peach, Each', 0.01, '405851259544', 'short description is not available', 'Peach Sample', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (787943278, 'Ogp Red Cherry Samples', 0.01, '405836139304', 'short description is not available', 'Ogp Red Cherry Samples', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (787944175, '180pc Apple Fuji 3#', 894.6, '405665853785', 'short description is not available', '180pc Apple Fuji 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (788487974, 'Fresh Peruvian Grown Black Grapes', 1.88, '', 'short description is not available', 'Fresh Peruvian Grown Black Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (788719345, 'Organic Whole White Mushrooms 8oz', 2.57, 'deleted_699058820151', 'short description is not available', 'Organic Whole White Mushrooms 8oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (788738446, '100pc Pto Rst 10# #2', 444, '405552001312', 'short description is not available', '100pc Pto Rst 10# #2', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (788820608, 'Lunds & Byerlys Riblets 1 ea', 0.01, '251951000001', 'Lunds & Byerlys Riblets', 'Premium all-natural pork (Minimally processed, no artificial ingredients). Tradition since 1939 service quality. No antibiotics or hormones. Sea fresh - stays fresh longer. U.S. inspected and passed by Department of Agriculture. Product of USA. Riblets', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a22b2749-72b7-4791-88f9-31ab21c34887.360923e93832f2aba7ff7c2b971fa040.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a22b2749-72b7-4791-88f9-31ab21c34887.360923e93832f2aba7ff7c2b971fa040.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a22b2749-72b7-4791-88f9-31ab21c34887.360923e93832f2aba7ff7c2b971fa040.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (788855805, 'Yellow Flesh Peaches, per Pound', 1.58, '405502157038', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (789005024, 'Cauliflower Crumbles, 16 oz Bag', 2.78, '681131148351', 'Add fresh and ready to eat chopped cauliflower to your meal with Marketside Chopped Cauliflower. Serve as is, or add your favorite spices for additional flavor. Add onion, thyme, garlic, olive oil, parmesan cheese, salt and pepper to cauliflower to create a yummy side dish. Marketside Chopped Cauliflower are a quick and healthy side dish and a great addition to any meal. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes. Microwave: Pierce holes in bag with fork. Place on a microwave safe dish and microwave on high for 2 or 3 minutes. Using caution as the steam from the bag will be very hot.', 'Marketside Chopped Cauliflower, 16 oz Microwave in bag Washed and ready to eat Ready in 4 minutes Picked fresh for you', 'Marketside', 'https://i5.walmartimages.com/asr/adecc32d-c9dd-4727-acc5-0cc5e1bfff46_4.6c0ba8e0240278d2cf61d993ad50b686.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/adecc32d-c9dd-4727-acc5-0cc5e1bfff46_4.6c0ba8e0240278d2cf61d993ad50b686.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/adecc32d-c9dd-4727-acc5-0cc5e1bfff46_4.6c0ba8e0240278d2cf61d993ad50b686.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (789011308, 'Tomatillo 20oz', 1.88, 'deleted_711069545127', 'short description is not available', 'Tomatillo 20oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (789769516, 'California Grown Peaches, per Pound', 1.58, '400094989289', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (789833856, 'Fresh USDA Organic Raspberries, 6 oz. Container', 4.76, '059165502003', 'The sweet, juicy flavor of Fresh Raspberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes or yogurt, bake them into mouthwatering raspberry crumble bars, mix them with other fruit for a light and flavorful salad, or add them to a creamy smoothie. They contain essential vitamins and nutrients like vitamin C, fiber, potassium, vitamin K and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them with cool water and enjoy the fresh taste. Refrigerate the berries to keep them fresh and ready for use. Pick up a Fresh Raspberry container today and savor the delectable flavor.', 'Are you ready to experience the vibrant taste and health benefits of Fresh Raspberries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Raspberries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. The versatility of raspberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these tasty gems into your baking endeavors, whether it\'s muffins, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Not only are raspberries delicious, but they also offer an array of health benefits. Loaded with vitamins and dietary fiber, raspberries are are a nutritious choice that will keep you feeling good from the inside out. Our Fresh Raspberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness. Treat yourself to the delightful taste and nutritional benefits of Fresh Raspberries. Elevate your dishes, satisfy your cravings, and experience the joy of these plump and juicy berries. Order your batch today and unlock a world of flavor and wellness.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f06bed7e-c7f2-49e4-8886-6f3f0a3396ff_1.30a3636e6f83d199d33631766c1c790d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f06bed7e-c7f2-49e4-8886-6f3f0a3396ff_1.30a3636e6f83d199d33631766c1c790d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f06bed7e-c7f2-49e4-8886-6f3f0a3396ff_1.30a3636e6f83d199d33631766c1c790d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (789855464, '75pc Orange Navel 8#', 589.5, '400094963319', 'short description is not available', '75pc Orange Navel 8#', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (791237345, 'Yellow Flesh Peaches, per Pound', 1.58, '400094345443', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (791415179, 'Green Beans 12z', 2.78, '782796012541', 'short description is not available', 'Green Beans 12z', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (791556977, 'Services Reduced Program Dept 94', 0.01, '251690000003', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (792260193, 'Marketside Organic Red Seedless Grapes 32z Clam', 5.98, 'deleted_079893441122', 'short description is not available', 'Marketside Organic Red Seedless Grapes 32z Clam', 'Marketside', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (792421255, 'Fresh Green Seedless Grapes', 2.98, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (792658915, 'GRAPE TOMATO', 2.48, '064143291244', 'GRAPE TOMATO', '', '', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (792721884, 'Watermelon Seedless', 4.48, '400094985076', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e9d5d244-e736-4ca9-aa23-0b938471c338.06dfbb37d511915ca84f09e37d1a925f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9d5d244-e736-4ca9-aa23-0b938471c338.06dfbb37d511915ca84f09e37d1a925f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9d5d244-e736-4ca9-aa23-0b938471c338.06dfbb37d511915ca84f09e37d1a925f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (793027233, 'Yellow Flesh Peaches, per Pound', 1.58, '400094634721', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (793051417, 'Yellow Flesh Peaches, per Pound', 1.58, '400094345795', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (793087702, 'Fresh Black Seedless Grapes', 1.74, '', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (793468809, 'Aloe Vera Natural Pulp', 4, '858231000807', 'Aloe Vera Pure Ntrl Plp 14 oz', 'Natural Pulp Pure Aloe', 'Fresh Produce', 'https://i5.walmartimages.com/asr/205724a7-32ca-40fd-91d1-fd4f5b7d7494.3f1f448e4507b7e69472cd5aeb31afc8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/205724a7-32ca-40fd-91d1-fd4f5b7d7494.3f1f448e4507b7e69472cd5aeb31afc8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/205724a7-32ca-40fd-91d1-fd4f5b7d7494.3f1f448e4507b7e69472cd5aeb31afc8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (793597065, '120pc Pto Red 5# Ca', 476.4, '405507399808', 'short description is not available', '120pc Pto Red 5# Ca', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (794291744, '200pc Pto Rst 5# Ff', 648, '405507544444', 'short description is not available', '200pc Pto Rst 5# Ff', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (794426523, 'Call of Cthulhu LCG: Necronomicon Draft Starter', 2.48, '000000043229', 'The medium-sized to large Melon Crenshaw is a cross between the muskmelon and the casaba melon. The Crenshaw fruit is a sweet-tasting creamy white to yellow melon harvested in autumn. It has a smooth texture and will delight the melon fan with a hint of spice in its taste. Because it is a cross of melons, it is slightly more oblong than most other melons. Choose the scrumptious Crenshaw Melon as a healthy part of your regular fruit supply.', 'Crenshaw Melon Bag: Creamy white melon with smooth texture Hybrid melon increases the variety in your fruit intake Oblong fruit has sweet taste with a little added zest Cross between casaba and muskmelon', 'Fantasy Flight Games', 'https://i5.walmartimages.com/asr/466a262f-c177-4aa3-880e-56d14254c25a.aafee50280209579bf571d1c80f2c640.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/466a262f-c177-4aa3-880e-56d14254c25a.aafee50280209579bf571d1c80f2c640.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/466a262f-c177-4aa3-880e-56d14254c25a.aafee50280209579bf571d1c80f2c640.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (794912320, 'Fresh Pears, Each', 1.97, '000000044196', 'Indulge in the sweet and buttery flavor of our miscellaneous pears, featuring a variety of pear types and textures. perfect for snacking, baking, or adding to salads, these pears are a delicious and healthy treat. buy by the pound and enjoy the perfect pear for your taste buds!', 'Miscellaneous Pears Bulk', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (795251312, 'Granny Organic Manzana, 1 Each', 7.98, '741839080039', 'Granny Organic Manzana, 1 Each', 'Manzana Granny Organic Artisan 12/3', 'Stemilt', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (795704944, '120pc Grapefruit 5#', 717.6, '405785128732', 'short description is not available', '120pc Grapefruit 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (795873483, 'Fieldpack Unbranded Fresh Strawberries 2#', 4.74, 'deleted_854151002686', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 2#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7b731147-acb8-48df-8c43-c711f550bbcc.1096d150f89a6c9bcf2dff7aadc14d51.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7b731147-acb8-48df-8c43-c711f550bbcc.1096d150f89a6c9bcf2dff7aadc14d51.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7b731147-acb8-48df-8c43-c711f550bbcc.1096d150f89a6c9bcf2dff7aadc14d51.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (796196067, 'Fresh Whole Medley Tomato, 10 oz Package', 1.42, '684924050701', 'Bring the delicious taste of Fresh Whole Medley Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Fresh Whole Medley Tomatoes.', 'Fresh Whole Medley Tomato, 10 oz Package Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c7ede83f-b8fe-4651-a689-c1fd2d62c6d2.72513d64ad7bb3a4c5490082646cd67a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (796252583, 'Regent Apples 3 Lb Bag', 2.97, '080153341144', 'short description is not available', 'Regent Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (796599141, 'Fruit Medley 16oz', 4.68, '095309421014', 'short description is not available', 'Fruit Medley 16oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (796980349, 'Taylor Farms Fresh Teriyaki Vegetable Meal Kit with Noodles, 23 oz', 5.18, '824862006365', 'The Taylor Farms Teriyaki Vegetable Meal Kit with Noodles allows you to become a first-class chef in a matter of minutes. A fresh mix of broccoli, Brussels sprouts, carrots, red cabbage, kale, and peas are tossed with Yakisoba noodles and coated in a drool-worthy teriyaki sauce for a meal that\'s sure to make a regular appearance at your dinner table. Serve as is, or beef it up with your favorite protein. It cooks in seven minutes, so you\'ll have dinner on the table in no time. It\'s dairy-free, nut-free, vegetarian, and vegan. Keep refrigerated until ready to enjoy. Treat the entire family to the delicious taste of Taylor Farms Teriyaki Vegetable Meal Kit with Noodles. Contains: Soy, Wheat.', 'A fresh mix of broccoli, Brussels sprouts, carrots, red cabbage, kale, and peas are tossed with Yakisoba noodles Includes a drool-worthy teriyaki sauce May contain snap peas or snow peas Ready in 7 minutes Dairy-free, nut-free, vegetarian, and vegan 4.5 servings per package 130 calories per serving Keep refrigerated', 'Taylor Farms', 'https://i5.walmartimages.com/asr/3e32ae39-a4c3-4f5c-bd3d-19692b356a90.c59e604013fc108ad70c1ee058e5d5d7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3e32ae39-a4c3-4f5c-bd3d-19692b356a90.c59e604013fc108ad70c1ee058e5d5d7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3e32ae39-a4c3-4f5c-bd3d-19692b356a90.c59e604013fc108ad70c1ee058e5d5d7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (797493573, 'Freshness Guaranteed Mango 10 Oz', 4.37, 'deleted_681131036535', 'short description is not available', 'Freshness Guaranteed Mango 10 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (798217651, '200pc Pto Ykn/red Id', 824, '405539017220', 'short description is not available', '200pc Pto Ykn/red Id', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (798255558, 'Ambrosia Apples 2 Ct Pouch Bag', 2.47, '847473006340', 'short description is not available', 'Ambrosia Apples 2 Ct Pouch Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (798283100, 'Tomatoes On The Vine Per Lb', 2.48, '400094427699', 'short description is not available', 'Tomatoes On The Vine Per Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (798320587, '125pc Pto Idaho 8#', 802.5, '405551394927', 'short description is not available', '125pc Pto Idaho 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (798538211, 'Cinderella Pumpkin, 1 Each', 6.98, '000000071178', 'Cinderella Pumpkin, 1 Each', 'Cinderella Pumpkin', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (798860455, 'California Grown Peaches, per Pound', 1.58, '405549915639', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (799427964, 'Whole Fresh Yellow Onion, 2 lb Bag', 1.48, 'deleted_405873145030', 'short description is not available', 'Whole Fresh Yellow Onion, 2 lb Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/a36631cd-0581-4a21-b2e5-ca313dd660d2.66f2db9855811ae5c3ffe8c1f71e939e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a36631cd-0581-4a21-b2e5-ca313dd660d2.66f2db9855811ae5c3ffe8c1f71e939e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a36631cd-0581-4a21-b2e5-ca313dd660d2.66f2db9855811ae5c3ffe8c1f71e939e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (799600958, 'Marketside Mks Sweet Kale Chopped Salad Kit', 3.63, '681131093132', 'short description is not available', 'Marketside Mks Sweet Kale Chopped Salad Kit', 'Marketside', 'https://i5.walmartimages.com/asr/a90a4b59-ae61-49a5-a880-52496bd987f4.d8b480bc4110c533f948f8ab472dfd6e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a90a4b59-ae61-49a5-a880-52496bd987f4.d8b480bc4110c533f948f8ab472dfd6e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a90a4b59-ae61-49a5-a880-52496bd987f4.d8b480bc4110c533f948f8ab472dfd6e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (799688653, '165pc On Tx1015 3#', 676, '405538922426', 'short description is not available', '165pc On Tx1015 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (800039896, 'Granny Smith Apples, Each', 1.38, 'deleted_031654440171', 'short description is not available', 'Granny Smith Apples, Each', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (800250471, 'Driscoll\'s Berry Big Strawberries Fraises, 18 Oz', 3.26, '715756211296', 'Berry Big Strawberries are Big Berries for more versatile uses. A bigger strawberry that is perfect for everyday eating possibilities. With the same great delicious Driscoll\'s flavor, this special berry gives you multiples bites from just one berry. The pop in size is all from Mother Nature . The sweet, juicy flavor of Fresh and big Strawberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. These strawberries contain essential vitamins and nutrients like, vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet.', 'Big Berries perfect for dipping, slicing, filling, or sharing with loved ones Big juicy flavor and naturally large (non-GMO) Available for limited time in the beginning of the strawberry season.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8b7971a6-07f9-471f-ae83-87400cf098ba.9f7213627de5c1b56056a85a5d0c5e7d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8b7971a6-07f9-471f-ae83-87400cf098ba.9f7213627de5c1b56056a85a5d0c5e7d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8b7971a6-07f9-471f-ae83-87400cf098ba.9f7213627de5c1b56056a85a5d0c5e7d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (800282145, 'Stemilt Lil Snappers Apples Pinata!', 6.97, '033383310428', 'Apples, Pinata! 3 lb (1.36 kg) 2-1/2 inch min dia. Classic flavors with a tropical twist. Kid size fruit. World famous fruit. Meets or exceeds US Extra Fancy. Responsible choice. Fruits & Veggies - More matters. www.stemilt.com. Fresh from our family farms. Kid friendly varieties. Fun ways to eat apples. Resealable zipper. Produce of USA. 3 lb (1.36 kg) Wenatchee, WA 98801', 'Apples, Pinata! 2-1/2 inch min dia. Classic flavors with a tropical twist. Kid size fruit. World famous fruit. Meets or exceeds US Extra Fancy. Responsible choice. Fruits & Veggies - More matters. www.stemilt.com. Fresh from our family farms. Kid friendly varieties. Fun ways to eat apples. Resealable zipper. Produce of USA.', 'Lil Snappers', 'https://i5.walmartimages.com/asr/524caebc-abad-4e25-8994-73294938b036.ca6bb29ff4356cfafade93389b90f84c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/524caebc-abad-4e25-8994-73294938b036.ca6bb29ff4356cfafade93389b90f84c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/524caebc-abad-4e25-8994-73294938b036.ca6bb29ff4356cfafade93389b90f84c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (800901637, 'Freshness Guaranteed Mango Small', 5.58, '262821000007', 'Freshness Guaranteed Mango small in a plastic tray. Has delicious fresh cut Mango slices that are ready to eat.', 'Freshness Guaranteed Mango Small', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (801312049, 'Organic Roma Tomatoes 1# Bag', 2.56, '826920001879', 'short description is not available', 'Organic Roma Tomatoes 1# Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (801713757, 'Fresh Organic Whole Grape Tomato, 1 lb Package', 4.92, '751666562059', 'With the perfect balance of sweetness and acidity, these Fresh Fair Trade Organic Whole Grape Tomatoes deliver versatile flavor to take you from sauces to salads and beyond. These grape tomatoes are Fair Trade certified and USDA organic, meaning that you can enjoy a healthy, flavorful addition to elevate the taste and texture of any meal. You can combine these tasty little tomatoes with fresh mozzarella and basil drizzled with olive oil or slice them up and add them to a freshly tossed salad. If you\'re feeling something classic, you can always cut one up to add that fresh tomato taste to a sandwich or dice up a few to make a delightful pizza topping. Be sure to add Fresh Fair Trade Organic Whole Grape Tomatoes to your inventory of ingredients.', 'Fresh Fair Trade Organic Whole Grape Tomato, 1 lb Package Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches USDA organic Fair Trade certified Fresh produce in a convenient package', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9c425c65-57ac-4399-ac2c-9eaffda63387.f35b50c7f4d0d39f57284e0e71dfcf5e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9c425c65-57ac-4399-ac2c-9eaffda63387.f35b50c7f4d0d39f57284e0e71dfcf5e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9c425c65-57ac-4399-ac2c-9eaffda63387.f35b50c7f4d0d39f57284e0e71dfcf5e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (801754250, 'Freshness Guaranteed Strawberries & Blueberries 10 Oz', 6.47, 'deleted_681131036498', 'short description is not available', 'Freshness Guaranteed Strawberries & Blueberries 10 Oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (802236983, 'Minced Garlic, 10 Lb Bag', 78.43, '687080067897', 'Minced Garlic, 10 Lb Bag', 'Minced garlic is a convenient way to add the pungent, savory flavor of garlic to a recipe without the time and hassle of preparing fresh garlic It is a flavorful addition to meat rubs, seasoning mixes, sauces, marinades, salad dressings and more. A natural alternative for pest control. Use anywhere you would use fresh garlic Gluten Free, KOF-K Kosher Certified', 'It\'s Delish', 'https://i5.walmartimages.com/asr/3ec737a2-936f-4655-bc78-b2e5126ac449.6fd99c2dbf86e57812340fcfc27dd432.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3ec737a2-936f-4655-bc78-b2e5126ac449.6fd99c2dbf86e57812340fcfc27dd432.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3ec737a2-936f-4655-bc78-b2e5126ac449.6fd99c2dbf86e57812340fcfc27dd432.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (802807284, 'Fresh Red Seedless Grapes', 1.98, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (803434352, 'California Grown Peaches, per Pound', 1.58, '400094859223', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (803584440, 'Personal Yellow Watermelon', 3.98, '000000034944', 'Produce', 'Selected and stored fresh,Sourced with high quality standards,Recommended to wash before consuming,Delicious on their own as a healthy snack or as part of a recipe', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3214fe42-de0d-4198-944c-f0f56adccd90.9840b900f497e5ab475b9160d4feb8bc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3214fe42-de0d-4198-944c-f0f56adccd90.9840b900f497e5ab475b9160d4feb8bc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3214fe42-de0d-4198-944c-f0f56adccd90.9840b900f497e5ab475b9160d4feb8bc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (803788727, '3lb Bag Of Red Delicious Apples', 3.74, 'deleted_750253905873', '', '', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (804248510, 'Apple Mix 10oz', 2.98, '074641043290', '', 'Walmart Apple Blend Fresh Fruit: Includes apples, cantaloupe, honeydew melon, grapes Packed in its own juice*NEW_LINE*', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (804683635, 'Fieldpack Unbranded Turnip Greens 2# Bag', 4.34, 'deleted_659389000165', 'short description is not available', 'Fieldpack Unbranded Turnip Greens 2# Bag', 'FIELDPACK UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (804874742, 'Fresh Organic Whole White Mushrooms, 8 oz', 2.57, 'deleted_678286888508', 'Add flavor and texture to your meals with the Organic Whole White Mushrooms. This versatile ingredient is perfect for a variety of dishes, whether its for breakfast, lunch, or dinner. Mince some up and put them in your omelet with peppers and ham for a filling breakfast. Slice them and add them to a healthy salad for lunch or stuff them with cream cheese, parmesan, and sharp cheddar cheese for a delicious, mouthwatering meal. White mushrooms are an excellent source of riboflavin and are naturally fat-free, cholesterol-free, and are low in calories and sodium. Enjoy the delicious taste of Organic Whole White Mushrooms any way you prepare them.', 'Fresh Organic Whole White Mushrooms, 8 oz tray: Adds flavor and textures to your meals Great for breakfast, lunch, or dinner Mince them for an omelet, slice them for a salad, or stuff them with cheese Naturally fat-free and cholesterol-free Low in sodium and calories', 'Phillips Mushroom Farms', 'https://i5.walmartimages.com/asr/c176b631-4c4a-4501-b991-4a7b81ee4609.f42f0fbc7292a01a10f1cc3211e89f49.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c176b631-4c4a-4501-b991-4a7b81ee4609.f42f0fbc7292a01a10f1cc3211e89f49.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c176b631-4c4a-4501-b991-4a7b81ee4609.f42f0fbc7292a01a10f1cc3211e89f49.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (805134883, 'Valley Fruit Pulp Passion Fruit Pouch', 4.97, '040232568398', 'short description is not available', 'Valley Fruit Pulp Passion Fruit Pouch', 'VALLEY FRUIT', 'https://i5.walmartimages.com/asr/74747670-ffe5-450a-9d95-4ff11d4fd6f4.17287ed3631b5cc8bc92dde5b18ced8d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/74747670-ffe5-450a-9d95-4ff11d4fd6f4.17287ed3631b5cc8bc92dde5b18ced8d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/74747670-ffe5-450a-9d95-4ff11d4fd6f4.17287ed3631b5cc8bc92dde5b18ced8d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (805547312, 'Butternut Squash', 3.05, 'deleted_711069447599', 'Butternut squash', 'Butternut Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/89a59782-01f1-4c3b-874f-d5b6fa731af8_1.63582447b8d1265a93b232226461d13f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/89a59782-01f1-4c3b-874f-d5b6fa731af8_1.63582447b8d1265a93b232226461d13f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/89a59782-01f1-4c3b-874f-d5b6fa731af8_1.63582447b8d1265a93b232226461d13f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (806006443, 'Louisiana Pepper Exchange 4oz Orange Habanero Pepper Puree Sauce', 2.89, '850014104030', 'Louisiana Pepper Exchange 4oz Orange Habanero Pepper Puree Sauce Discover the vibrant flavors of our Orange Habanero Pepper Puree, a sweet and spicy habanero pepper sauce that brings a perfect balance of heat and tropical fruitiness to your dishes. With its smooth, thin consistency, this habanero salsa easily blends into your favorite recipes, elevating them with bold flavor. Our habanero seasoning offers a convenient alternative to chopping and deseeding fresh peppers, providing consistent heat without the hassle. Made with only orange habanero peppers and a pinch of salt, it’s gluten-free, calorie-free, and bursting with natural flavor. Perfect for pairing with mango, coconut, fresh fish, or even Peruvian ceviche, this versatile habanero hot sauce is the secret to creating delicious, flavor-packed meals.', 'EXOTIC TROPICAL FLAVOR: Add a burst of vibrant, fruity heat with our Orange habanero pepper seasoning, perfect for enhancing any dish. NO CHOPPING NEEDED: Skip the prep with our easy-to-use hot and sweet habanero sauce, offering quick flavor without the hassle. TWO SIMPLE INGREDIENTS: Made with just orange habanero peppers and a pinch of salt, this spicy sauce is gluten-free and calorie-free for guilt-free enjoyment. EASY PEPPER SUBSTITUTE: Replace habanero powder with 1-3 teaspoons of our habanero puree for a quick and simple recipe boost. VERSATILE HEAT: Ideal for fish, ground meats, or creative cocktails like margaritas, this habanero spicy seasoning brings the perfect mix of sweet heat.', 'Louisiana Pepper Exchange', 'https://i5.walmartimages.com/asr/ee585289-7a1a-4429-a2e6-4c582a60d08e.0b43192ef2d294bbad41339996cd3959.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ee585289-7a1a-4429-a2e6-4c582a60d08e.0b43192ef2d294bbad41339996cd3959.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ee585289-7a1a-4429-a2e6-4c582a60d08e.0b43192ef2d294bbad41339996cd3959.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (806136474, 'Bagged Avocado Hass', 4.48, 'deleted_405561852615', 'short description is not available', 'Bagged Avocado Hass', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (806584737, 'Medley Tomato, 10 oz Package', 4.48, '679508071043', 'Bring the fresh, delicious taste of Medley Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Medley Tomatoes.', 'Medley Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed6a8bd2-fe74-41cc-ab71-a490692de4ca.233a3367c52ebed8e8129d2546c9a195.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (807215728, 'Fresh Black Seedless Grapes', 2.58, '', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/79743a91-61a1-4244-8a5f-3d9fba0793c3_2.d0cedaee0d94ed63754206729207d77c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/79743a91-61a1-4244-8a5f-3d9fba0793c3_2.d0cedaee0d94ed63754206729207d77c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/79743a91-61a1-4244-8a5f-3d9fba0793c3_2.d0cedaee0d94ed63754206729207d77c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (808107649, 'Organic Limes 1# Bag', 2.92, 'deleted_744430275705', 'short description is not available', 'Organic Limes 1# Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (808160630, 'Services Reduced Program Dept 94', 0.01, '251975000001', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (808369590, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094006429', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (808446561, 'Fresh Red Seedless Grapes', 3.78, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (808998890, '120pc Apl Gala 5# Wa', 600, '405539878203', 'short description is not available', '120pc Apl Gala 5# Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (809451919, 'Display Box For Halos', 0.01, '405520019295', 'short description is not available', 'Display Box For Halos', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (809469704, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094688205', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (809787761, 'Watermelon Seedless', 4.48, '400094137376', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (810485842, 'Tomato on the Vine, Bag', 4.38, 'deleted_000000048033', 'Keep your recipes simple and classic with fresh tomatoes on the vine. With their vibrant red color, firm and juicy flesh, and unmistakably delicious flavor, this fresh produce item is sure to impress more than just your taste buds. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. The list is endless! Plus, they come right to your kitchen still on the vine that they grew on, meaning that their mouthwatering taste and freshness will be long-lasting for your culinary convenience. Stock up on Walmart\'s Tomatoes On The Vine and keep your dishes looking great and tasting equally as excellent.', 'Tomatoes On The Vine, 1 lb: 1-pound bag of tomatoes on the vine Vine helps tomatoes maintain peak freshness and flavor Perfect for slicing, dicing, crushing and blending Great for sandwiches, pastas, pizzas and salsas Essential ingredient in every home-cook\'s kitchen', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (810557183, 'California Grown Peaches, per Pound', 1.58, '400094006849', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (810639115, 'Limes, Each', 0.98, 'deleted_851264003685', 'Persian Limes, 1 Each', 'Bulk Persian Limes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/0c72b8d0-a4bc-4590-a19c-8e1b4a555a30.16ff07e3c111df9be4158853c2e505ef.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0c72b8d0-a4bc-4590-a19c-8e1b4a555a30.16ff07e3c111df9be4158853c2e505ef.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0c72b8d0-a4bc-4590-a19c-8e1b4a555a30.16ff07e3c111df9be4158853c2e505ef.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (810783217, 'California Grown Peaches, per Pound', 1.58, '400094006702', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (810976594, 'Fresh Clementines, 3lb Bag', 6.47, 'deleted_860399001923', 'Enjoy the juicy goodness of citrus when you eat a Fresh Clementines (Mandarinas). Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Among the smallest fruits in the orange family, clementines have a pleasing sweet-tart flavor and are typically seedless. Generally a winter fruit, clementines are now available year-round in most markets. Clementines are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the mandarins hang out in a bowl on your counter or table to breathe. Compact and portable, clementines are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious Fresh Clementines on hand for an easy, healthy treat.', 'Delicious, sweet, juicy fresh citrus Pleasing sweet-tart flavor Easy to peel and segment Excellent source of vitamin C, potassium, and folic acid For maximum flavor, do not refrigerate', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/c711153d-a264-4a89-9a62-0c97c266d737.ca96745337570cf66f4f2e051e891ace.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c711153d-a264-4a89-9a62-0c97c266d737.ca96745337570cf66f4f2e051e891ace.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c711153d-a264-4a89-9a62-0c97c266d737.ca96745337570cf66f4f2e051e891ace.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (811499875, 'Red Delicious Apples Bulk', 1.27, '891658001163', 'short description is not available', 'Red Delicious Apples Bulk', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (811592695, 'White Onions, 1 Each', 0.98, 'deleted_661061110833', 'White Onions, 1 Each', 'White Onion Bulk Ea', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9829c316-f713-4e59-92ba-5675f434b0cd_3.1ce6c46d2b2b1e719685a7a99f5e6aad.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9829c316-f713-4e59-92ba-5675f434b0cd_3.1ce6c46d2b2b1e719685a7a99f5e6aad.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9829c316-f713-4e59-92ba-5675f434b0cd_3.1ce6c46d2b2b1e719685a7a99f5e6aad.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (811656677, 'Freshness Guaranteed Pineapple Rings 12 Oz', 4.7, '681131036689', 'short description is not available', 'Freshness Guaranteed Pineapple Rings 15 Oz', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (811762108, 'Tomatillo Milpero', 2.52, 'deleted_860001220629', 'short description is not available', 'Tomatillo Milpero', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (811976189, 'Marketside Butternut Squash Cubes 24oz', 3.98, '681131377386', 'short description is not available', 'Marketside Butternut Squash Cubes 24z', 'Marketside', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (812036170, 'Fresh Champagne Grapes, 1 Lb', 2.98, '081899401017', 'IceCool Technology Keeps Your Hands CoolExclusive dual-sided motherboard design places hot components on the underside and away from users. Combined with heatpipes and vents, palm rests and typing surfaces stay cooler than the body temperature so they\'re cool even during the longest computing sessions.Palm Proof Technology Prevents Accidental InputIntelligent touchpad distinguishes between palm and finger contact to prevent inadvertent cursor movements during typing.', 'Fresh Champagne Grapes, 1 Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b241477d-7bda-4f60-82cd-2fa3056a0a61.5969c65636ad8a86dea50bc9729b3fb5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b241477d-7bda-4f60-82cd-2fa3056a0a61.5969c65636ad8a86dea50bc9729b3fb5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b241477d-7bda-4f60-82cd-2fa3056a0a61.5969c65636ad8a86dea50bc9729b3fb5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (812174538, 'Services Reduced Program Dept 94', 0.01, '251864000006', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (812531426, 'Robinson Gold Pineapple Chunks', 2.28, '717524513168', 'short description is not available', 'Robinson Gold Pineapple Chunks', 'Robinson', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (812543722, 'Watermelon Seedless', 4.88, '405504886042', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (812560586, '180pc Pto Rst 10# Nv', 889.2, '400094860489', 'short description is not available', '180pc Pto Rst 10# Nv', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (812674386, 'Watermelon Seedless', 4.48, '400094750025', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bf055f6c-4d73-4a65-b0ef-506e74180816.520dd40e3d8c83a5ce49602b44ed0288.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bf055f6c-4d73-4a65-b0ef-506e74180816.520dd40e3d8c83a5ce49602b44ed0288.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bf055f6c-4d73-4a65-b0ef-506e74180816.520dd40e3d8c83a5ce49602b44ed0288.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (813542633, 'Fresh Caramel Apple with Sprinkles, Each', 1.97, '035107604813', 'Looking for a fun and delicious way to treat yourself or your loved ones? Look no further than our Caramel Fresh Apples with Sprinkles, 1 Pack. We start with a fresh and juicy apple that is dipped into a velvety smooth caramel coating. Then, we sprinkle on a generous amount of rainbow-colored sprinkles, turning a classic caramel apple into a party on the outside! The result is a visually stunning treat that is just wacky enough to satisfy the kid in all of us. Our Caramel Apples with Sprinkles, 1 Pack is perfect for any occasion, whether you\'re looking for a tasty snack or a fun dessert to share with family and friends. Plus, with Halloween just around the corner, it\'s the perfect healthy treat to indulge in without feeling guilty. So go ahead and treat yourself to a little sweetness with our Caramel Apples with Sprinkles, 1 Pack, and enjoy the perfect balance of sweet, crunchy, and colorful flavors in every bite.', '/li>Fresh Apples are used for this snack, mostly Granny Apples, but another varieties with the right level of sweetness will also make the work! /li> Caramel apple on the inside, party on the outside! A crazy amount of rainbow-colored sprinkles turns our classic caramel apple into a beautiful bonanza. It’s just wacky enough to satisfy the kid in all of us. Caramel Apples with Sprinkles, 1 Pack Fresh Apple dipped in caramel and rolled in sprinkles, in a plastic tray Perfect for a Halloween healthy treat!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/80bdfeec-0501-43f8-9d77-3a6de9cc92a3.04c7f3c2aa5c35893965dafdd47e455d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/80bdfeec-0501-43f8-9d77-3a6de9cc92a3.04c7f3c2aa5c35893965dafdd47e455d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/80bdfeec-0501-43f8-9d77-3a6de9cc92a3.04c7f3c2aa5c35893965dafdd47e455d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (813687558, 'Fresh Sweet Chilean Rainier Cherries, 1 Lb.', 4.97, '848768000012', 'Fresh Sweet Chilean Rainier Cherries, 1 Lb.', 'Fresh Sweet Chilean Rainier Cherries', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (813868867, 'Services Reduced Program Dept 94', 0.01, '251872000005', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (814168010, 'Taylor Farms Breakfast Snack Bistro Box 5.45 Oz', 3.98, '030223019817', 'short description is not available', 'Taylor Farms Breakfast Snack Bistro Box 5.45 Oz', 'Taylor Farms', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (814196967, 'Steamables Sweet Potatoes 1.5 Lb Bag', 2.54, 'deleted_108532970058', 'short description is not available', 'Steamables Sweet Potatoes 1.5 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (815062490, 'Fresh Premium Grape Tomato, 1.5 lb Package', 5.28, '884051050135', 'Premium Grape Tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily complements your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Premium Grape Tomatoes are the perfect choice.', 'Premium Grape Tomato, 1.5 lb Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ef2dcbc7-1fc9-40cd-bf3e-09d72a0218d9.1d2f7b812b05175eccc5c66761b3fa2e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ef2dcbc7-1fc9-40cd-bf3e-09d72a0218d9.1d2f7b812b05175eccc5c66761b3fa2e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ef2dcbc7-1fc9-40cd-bf3e-09d72a0218d9.1d2f7b812b05175eccc5c66761b3fa2e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (815248966, '2pc Apple Koru 2 Dcr', 3.54, '405743307360', 'short description is not available', '2pc Apple Koru 2 Dcr', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (815416407, 'Fresh California Grown Red Grapes', 1.98, '', 'short description is not available', 'Fresh California Grown Red Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/6ddde670-829e-452d-a82e-a434acb632cb_2.9d2d20669a54285394b2fe5dd533f439.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6ddde670-829e-452d-a82e-a434acb632cb_2.9d2d20669a54285394b2fe5dd533f439.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6ddde670-829e-452d-a82e-a434acb632cb_2.9d2d20669a54285394b2fe5dd533f439.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (815422385, 'Yellow Flesh Peaches, per Pound', 1.58, '400094744611', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (815499124, 'Brussel Sprout, 16 Oz.', 2.98, 'deleted_033383449876', 'Brussel Sprout, 16 Oz.', 'Brussel Sprout 1# Bag', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/e99211e0-a65f-4613-9449-e4c85f71f025.8a6d8d158b32c51e381c596cfeb67c11.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e99211e0-a65f-4613-9449-e4c85f71f025.8a6d8d158b32c51e381c596cfeb67c11.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e99211e0-a65f-4613-9449-e4c85f71f025.8a6d8d158b32c51e381c596cfeb67c11.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (815637363, 'Fresh Tricolor Peppers, 3count', 2.5, '689259000230', 'Enhance your meals with the delicious flavor of Fresh Color Bell Peppers (Pimiento Tricolor). Dice these colorful bell peppers and put them in a hearty chili, slice them and add to a deli sandwich, saute them with onions and serve on a hoagie roll with a bratwurst, or stir-fry with thinly sliced steak and serve with rice. A hollowed-out bell pepper can be filled with sausage, mushrooms, and rice to create a delicious stuffed pepper that will have the family asking for seconds. With so many ways to prepare them, Fresh Color Bell Peppers are an excellent fresh produce vegetable to have on hand', 'Fresh Color Bell Peppers are an excellent addition to any meal Dice them and put them in chili Add to a deli sandwich Slice and serve with your favorite dip Loaded with vitamin C High in vitamin A Wash before eating', 'Unbranded', 'https://i5.walmartimages.com/asr/5a48f422-798a-445d-b93f-0e7542635607.5b6279bf203b58e61293db96e9b6bee9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a48f422-798a-445d-b93f-0e7542635607.5b6279bf203b58e61293db96e9b6bee9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a48f422-798a-445d-b93f-0e7542635607.5b6279bf203b58e61293db96e9b6bee9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (815677081, 'Red Free Apples 3 Lb Bag', 3.94, '033383047454', 'short description is not available', 'Red Free Apples 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (815891467, 'Fresh Lady Alice Apples 2 Lb Bag', 4.94, '804305001126', 'Discover the fresh and nutritious Apple Lady 3lb at Walmart. Packed with flavor and health benefits, these apples are perfect for snacking, baking, or adding to your favorite salads. Each bag contains approximately 3lbs of juicy, crispy apples that are pesticide-free and carefully picked for their quality. Stored in the fresh produce aisle, these apples promise a delightful addition to your daily diet. Explore the Apple Lady 3lb at your nearest Walmart or online.', 'Premium Quality: The Apple Lady Alice 3lb is packed with premium-grade apples, ensuring each piece is fresh, juicy, and packed with natural goodness. Nutrient-Rich: These apples are a great source of dietary fiber, vitamin C, and antioxidants, promoting overall health and well-being. Versatile Use: Perfect for snacking, cooking, baking, or adding to salads. Their crisp texture and sweet flavor make them a delightful addition to various dishes.', 'Unbranded', 'https://i5.walmartimages.com/asr/4d02b234-06d6-4a3c-b09b-ddab6d5b12bf.2c9c2e1af09b7145ad9bb22b2fc767da.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4d02b234-06d6-4a3c-b09b-ddab6d5b12bf.2c9c2e1af09b7145ad9bb22b2fc767da.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4d02b234-06d6-4a3c-b09b-ddab6d5b12bf.2c9c2e1af09b7145ad9bb22b2fc767da.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (816184743, 'Fresh Organic Mangoes, 3 lb Bag', 4.98, '732966936214', 'Savor the irresistible taste of these Fresh Organic Mangoes. Mangoes are an excellent fruit to add to your breakfast, lunch, dinner, or dessert. For breakfast, you can chop the mango up and add it to yogurt or a smoothie for a sweet treat that\'s sure to get your morning started on a high note. For dessert, you could use a mango to make a refreshing sorbet or put a tropical twist on a cobbler. You can also use it to make creamy milkshakes or delicious juices that everyone is sure to enjoy. The culinary possibilities are endless when you keep your kitchen stocked with Fresh Organic Mangoes.', 'Irresistibly sweet and juicy Fresh Organic Mangoes Delicious on their own or in a variety of recipes Make a creamy milkshake or a nutritious juice blend Add to yogurt or a smoothie Use to top your salad for a tropical twist', 'Unbranded', 'https://i5.walmartimages.com/asr/37420ed9-7e76-43f7-88cb-77799e5fd0dd.82fbb80503486826447ccc864c7c7dcd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/37420ed9-7e76-43f7-88cb-77799e5fd0dd.82fbb80503486826447ccc864c7c7dcd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/37420ed9-7e76-43f7-88cb-77799e5fd0dd.82fbb80503486826447ccc864c7c7dcd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (816377601, '1.5pt Tomato Julietgraperd Jiffy Logo', 2.88, '024719389508', 'short description is not available', '1.5pt Tomato Julietgraperd Jiffy Logo', 'Jiffy', 'https://i5.walmartimages.com/asr/bd2b7e57-59af-44e1-b224-3f00613c63c0_1.54a909efacefd4d14f1f0f230018cc77.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd2b7e57-59af-44e1-b224-3f00613c63c0_1.54a909efacefd4d14f1f0f230018cc77.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd2b7e57-59af-44e1-b224-3f00613c63c0_1.54a909efacefd4d14f1f0f230018cc77.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (817135702, '120pc Pto Ykn/red Ca', 494.4, '405540544807', 'short description is not available', '120pc Pto Ykn/red Ca', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (817288991, 'Mann\'s Creamy Roasted Garlic & Kale Bowl, 6.5oz', 4.98, '716519007842', 'Butter squash, kale,kohlrabi, and brown rice tossed in a creamy roasted garlic sauce provide the perfect layer of flavors.', 'Mann\'s Creamy Roasted Garlic & Kale Bowl, 6.5oz• Microwavable in just 3 minutes• 5 grams of protein• 310 calories• Vegetarian• Contains egg and Milk', 'Mann\'s', 'https://i5.walmartimages.com/asr/0b8e5466-65ec-442c-80b1-37ddbebd1bc9.9621ecd2aabe6bf58f02c84640419b32.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0b8e5466-65ec-442c-80b1-37ddbebd1bc9.9621ecd2aabe6bf58f02c84640419b32.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0b8e5466-65ec-442c-80b1-37ddbebd1bc9.9621ecd2aabe6bf58f02c84640419b32.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (817395859, 'Marketside Organic Fresh Spinach and Spring Mix, 5.5 oz', 2.66, '681131354790', 'Marketside Organic Spinach and Spring Mix is made with a wholesome medley of fresh baby lettuce, baby greens, and spinach leaves. This mix is packed fresh, washed, and ready to eat for your convenience. Use it to create your very own personalized salad tossed with your favorite vegetables, protein, nuts, croutons, and dressing. Use it as a topping on sandwiches, subs, or simply enjoy it as a healthy side. Enjoy fresh-from-the-farm taste with Marketside Organic Spinach and Spring Mix. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Spinach and Spring Mix, 5.5 oz Wholesome mix of fresh baby lettuce blend, baby greens, and baby spinach Use it to create your very own personalized salad or as a topping on sandwiches and subs Washed and ready to eat USDA certified organic', 'Marketside', 'https://i5.walmartimages.com/asr/411182fa-abaf-4d72-b6b0-7eed5867eaaf.86de4a51c3e281e7e965d018da1759dd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/411182fa-abaf-4d72-b6b0-7eed5867eaaf.86de4a51c3e281e7e965d018da1759dd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/411182fa-abaf-4d72-b6b0-7eed5867eaaf.86de4a51c3e281e7e965d018da1759dd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (817773702, 'Marketside Fresh Sweet Potato Cubes, 16 oz', 3.47, '681131305334', 'Marketside Sweet Potato Cubes are a delicious and easy side dish that is perfect when you\'re looking for a nutritious side that\'s quick to prepare; it steams right in the bag! These sweet potato cubes allow you all the convenience of your canned vegetables with no can openers or pantry-cramming necessary. Use them to whip up a delicious side, or incorporate them into your favorite meals from soups and casseroles to stir fries and more. With Marketside Sweet Potato Cubes, your friends and family can enjoy food without having to worry about artificial ingredients. For tasty, vegetables from a brand you can trust, Marketside Sweet Potato Cubes. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Contains 1 lb of delicious diced, fresh sweet potato cubes Perfect for a healthy side Incorporate into your favorite dishes from soups and casseroles to stir fries and more Steams right in the bag', 'Marketside', 'https://i5.walmartimages.com/asr/b248390d-42ee-4414-aab6-febc23c91f18.683b2e2f51387e2dfa3b9511a80648af.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b248390d-42ee-4414-aab6-febc23c91f18.683b2e2f51387e2dfa3b9511a80648af.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b248390d-42ee-4414-aab6-febc23c91f18.683b2e2f51387e2dfa3b9511a80648af.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (817820311, 'Freshness Guaranteed Fresh Black Seedless Grapes', 1.88, 'deleted_083477010321', 'short description is not available', 'Freshness Guaranteed Fresh Black Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (817931619, 'Marketside Chopped Cauliflower Medley, 12 oz', 2.98, '681131221801', 'Marketside Chopped Cauliflower Medley is packed fresh, washed, chopped and ready to eat for your convenience. This Chopped Cauliflower Medley has a great fresh taste and is loaded with nutrients. This medley consists of cauliflower, broccoli, carrots and green onions. This medley is packaged in a convenient microwave safe bag that allows you to cook them in just three minutes. Try serving with ranch dressing or hummus for a tasty and healthy snack any time of the day. Enjoy them as a wholesome side or use them in all your favorite recipes. Season them with salt, pepper and garlic and serve with grilled steak, mashed potatoes and bread rolls for a hearty dinner. Dinner sides are made easy and healthy with Marketside Cauliflower Medley.', 'All natural Washed, chopped and ready to eat Contains chopped cauliflower, broccoli, carrots and green onion', 'Marketside', 'https://i5.walmartimages.com/asr/3aad45be-7444-4e94-8c58-510b0158782d_1.2061c2a6a0643b154ee48f1d05bff3b7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3aad45be-7444-4e94-8c58-510b0158782d_1.2061c2a6a0643b154ee48f1d05bff3b7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3aad45be-7444-4e94-8c58-510b0158782d_1.2061c2a6a0643b154ee48f1d05bff3b7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (818343845, 'Fuji Apples Bulk', 1.27, 'deleted_897049002122', '', '', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (818980242, 'California Grown Peaches, per Pound', 1.58, '400094561935', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (819110515, '75pc Orange Navel 8#', 7.97, '400094634387', 'short description is not available', '75pc Orange Navel 8#', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (819561812, 'Red Plumcot, Each', 3.97, 'deleted_813187010607', 'short description is not available', 'Jubilee Plumcot 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/58231102-f943-4142-8f9a-534efddceef3.38a6bf19674c86aee605c9a5033ef752.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58231102-f943-4142-8f9a-534efddceef3.38a6bf19674c86aee605c9a5033ef752.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58231102-f943-4142-8f9a-534efddceef3.38a6bf19674c86aee605c9a5033ef752.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (819592578, 'Marketside Kosher Ruby Grapefruit Segments with Monk Fruit, 64 oz Jar', 8.97, '681131161459', 'Marketside Ruby Grapefruit Segments are peeled and soaked in water and sweetened with monk fruit and stevia extract. This tasty citrus fruit is perfect for fruit cocktails, salsas, desserts, salads and can also be used as a garnish for meat and vegetable dishes. Enjoy them chilled for a refreshing snack that you can enjoy at anytime of the day. They have only 45 calories per serving and have no added sugars. They offer a nutritional benefit as they are a low calorie source of vitamin C. This large four pound container makes it easy to stock up on your favorite fruit. Enjoy a healthy and delicious snack with the wholesome taste of Marketside Ruby Grapefruit Segments.Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Kosher Ruby Grapefruit Segments With Monk Fruit, 64 Oz Jar Ruby grapefruit segments soaked in water and sweetened with monk fruit and stevia extract serve chilled for a refreshing snack High in vitamin C Net weight 4 pounds', 'Marketside', 'https://i5.walmartimages.com/asr/46ec7555-ef3f-48aa-80ed-313711f08bef_3.ffeb89ea972768045c9e7b6e09e59394.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/46ec7555-ef3f-48aa-80ed-313711f08bef_3.ffeb89ea972768045c9e7b6e09e59394.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/46ec7555-ef3f-48aa-80ed-313711f08bef_3.ffeb89ea972768045c9e7b6e09e59394.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (819856046, 'Marketside Butternut Squash, 12 oz Bag', 2.48, 'deleted_831129000790', 'Marketside Butternut Squash is all natural and packed fresh in a microwaveable bag. Steams in minutes and makes a great side dish or main ingredient to many recipes.', 'Marketside Butternut Squash, 12 oz', 'Marketside', 'https://i5.walmartimages.com/asr/d3b01b24-04b1-4fa1-9f3b-3367eee237f0_1.0b565097358daa53310049d065299221.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d3b01b24-04b1-4fa1-9f3b-3367eee237f0_1.0b565097358daa53310049d065299221.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d3b01b24-04b1-4fa1-9f3b-3367eee237f0_1.0b565097358daa53310049d065299221.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (820196952, 'GRAPE TOMATOES', 2.48, '684924010774', 'GRAPE TOMATOES', '', 'FINEST FLAVORS', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (820238897, 'Melon De Agua Sin Semilla 65#', 0.88, '405873138384', 'short description is not available', 'Melon De Agua Sin Semilla 65#', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (820397107, 'Lime Thyme Potato Tray', 1.97, '847597010469', 'short description is not available', 'Lime Thyme Potato Tray', 'Fresh Produce', 'https://i5.walmartimages.com/asr/dc89e5d9-d420-427c-9a10-9803262dd5f9.3bc3f863de35be83682cf3ae70ded93b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dc89e5d9-d420-427c-9a10-9803262dd5f9.3bc3f863de35be83682cf3ae70ded93b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dc89e5d9-d420-427c-9a10-9803262dd5f9.3bc3f863de35be83682cf3ae70ded93b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (820726107, 'Organic Celery Stalk, 1 Each', 1.76, '000651967714', 'Organic Celery Stalk, 1 Each', 'Organic Celery Stalk', 'Ocean Mist Farms', 'https://i5.walmartimages.com/asr/374bb4c7-55d8-4c8f-8921-8eb80062cf54_2.256b7909aa553e447a3da70753230918.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/374bb4c7-55d8-4c8f-8921-8eb80062cf54_2.256b7909aa553e447a3da70753230918.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/374bb4c7-55d8-4c8f-8921-8eb80062cf54_2.256b7909aa553e447a3da70753230918.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (820828966, 'Romaine Hearts', 3.14, 'deleted_405965264793', 'short description is not available', 'Romaine Hearts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (820964767, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094008669', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (820975721, 'Fresh Black Seedless Grapes', 1.88, 'deleted_014668790036', 'short description is not available', 'Fresh Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (821740554, 'Serrano Peppers, per lb', 0.05, '400094160251', 'short description is not available', 'Serrano Peppers', 'Fresh Produce', 'https://i5.walmartimages.com/asr/723b2cf6-0188-4a9d-b8ad-5903d902e073.916956e8cabd15269a6ce8a3e03a34f8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/723b2cf6-0188-4a9d-b8ad-5903d902e073.916956e8cabd15269a6ce8a3e03a34f8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/723b2cf6-0188-4a9d-b8ad-5903d902e073.916956e8cabd15269a6ce8a3e03a34f8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (821741848, 'Freshness Guaranteed Fresh Red Seedless Grapes', 1.98, 'deleted_841139100014', 'short description is not available', 'Freshness Guaranteed Fresh Red Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (821785241, 'Whole Baby Bella Mushrooms, 16 oz', 4.08, 'deleted_678286271683', 'Kast-a-Way Lures 1/8oz - 3 Pack', 'Whole Baby Bella Mushrooms, 16 oz: Natural source of selenium, an antioxidant Excellent source of riboflavin Naturally fat free, cholesterol free and low in calories and sodium', 'Giorgio', 'https://i5.walmartimages.com/asr/218a38d7-575f-4d53-bec7-dcf2677fd424.6432ec0f59ef3443c8112db9f4f1ce87.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/218a38d7-575f-4d53-bec7-dcf2677fd424.6432ec0f59ef3443c8112db9f4f1ce87.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/218a38d7-575f-4d53-bec7-dcf2677fd424.6432ec0f59ef3443c8112db9f4f1ce87.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (821871748, 'White Onions, 2 Lb.', 1.94, 'deleted_885677610208', 'White Onions, 2 Lb.', 'White Onions 2 Lb Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (822719423, 'Small Avocado 6 Count Bag', 3.6, '689854126120', 'Small Avocado 6 count', 'Small Avocado 6 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/25aafd5f-3f05-4caa-9909-be8a64bd1151.d01a023dbc13ee1e5300912558a254ad.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/25aafd5f-3f05-4caa-9909-be8a64bd1151.d01a023dbc13ee1e5300912558a254ad.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/25aafd5f-3f05-4caa-9909-be8a64bd1151.d01a023dbc13ee1e5300912558a254ad.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (822868790, 'Fresh Green Seedless Grapes', 3.27, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (823323618, 'Jumbo White Onions Per Pound', 0.98, 'deleted_811289020012', 'short description is not available', 'Jumbo White Onions Per Pound', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c80f12e4-54d7-47e1-8f07-7af4daad7504_3.cbbe9e2c390c3fa57c617e44e4d56bc2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c80f12e4-54d7-47e1-8f07-7af4daad7504_3.cbbe9e2c390c3fa57c617e44e4d56bc2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c80f12e4-54d7-47e1-8f07-7af4daad7504_3.cbbe9e2c390c3fa57c617e44e4d56bc2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (823684439, 'Fresh Green Seedless Grapes, 2 Lb', 5.47, 'deleted_813577010538', 'short description is not available', 'Fresh Green Seedless Grapes, 2 Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (823940120, 'Large Avocado 3 Count Bag', 4.48, '', 'short description is not available', 'Large Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (824183397, '200pc Pto Ylw/red 5#', 824, '405536422249', 'short description is not available', '200pc Pto Ylw/red 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (824251743, '90pc Pto Rst 10# D1', 399.6, '405546808972', 'short description is not available', '90pc Pto Rst 10# D1', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (824261875, 'Kiku Apples 3 Lb Bag', 4.47, '840156101004', 'short description is not available', 'Kiku Apples 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (824430773, 'Fresh Grown Yellow Nectarines', 1.98, 'deleted_845792043787', 'short description is not available', 'Fresh Grown Yellow Nectarines', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/60ed4d0d-62c7-4cde-aa25-bfbcc183a3c2.1526a68655e085dc1d93b397c1cb6bd5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/60ed4d0d-62c7-4cde-aa25-bfbcc183a3c2.1526a68655e085dc1d93b397c1cb6bd5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/60ed4d0d-62c7-4cde-aa25-bfbcc183a3c2.1526a68655e085dc1d93b397c1cb6bd5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (824468092, 'Watermelon Seedless', 4.48, '400094920749', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (825044528, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094409602', 'short description is not available', 'Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (825192931, 'Nectarines 2lb', 4.88, '', 'short description is not available', 'Nectarines 2lb', 'Unbranded', 'https://i5.walmartimages.com/asr/ecee5f5a-6458-438a-b8c7-78a26974ae98.5492556a3e46d4abe66f9ffc0fb22665.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecee5f5a-6458-438a-b8c7-78a26974ae98.5492556a3e46d4abe66f9ffc0fb22665.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecee5f5a-6458-438a-b8c7-78a26974ae98.5492556a3e46d4abe66f9ffc0fb22665.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (825595553, 'Bowery Farming Arugula Mix Pesticide-Free, Locally Grown Salad Greens, 4oz', 2.98, '851536007618', 'Arugula Mix is popular for its peppery, zesty, and high-definition flavor. This salad blend adds a spicy and refreshing punch to your favorite salad, wrap, and vegetable bowl recipes.Bowery Farming grows positively tasty, fresh produce in a cleaner, more sustainable way: in local, indoor smart farms. Every Bowery leaf is grown and handled with care, without pesticides. Bowery\'s smart farms use less water & create less waste on less land. Because Bowery\'s farms are local, you can trust that your produce is freshly harvested, picked at peak freshness 365 days a year, and available on shelf in just a few days.', 'Bowery Farming Arugula Mix Pesticide-Free, Locally Grown Salad Greens, 4oz: 100% Pesticide-free 100% Locally grown 100% Fully traceable Indoor-grown Protected Produce Clean & ready to eat Non-GMO Project Verified Recycled Packaging', 'Bowery Farming', 'https://i5.walmartimages.com/asr/fec0367c-fb23-484f-8da6-144aca39a03e.4e9cb2e4f1885c839ec5fda9c7542e3d.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fec0367c-fb23-484f-8da6-144aca39a03e.4e9cb2e4f1885c839ec5fda9c7542e3d.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fec0367c-fb23-484f-8da6-144aca39a03e.4e9cb2e4f1885c839ec5fda9c7542e3d.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (825906052, '180pc Apple Fuji 3#', 894.6, '405665851330', 'short description is not available', '180pc Apple Fuji 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (826014545, 'Grape Tomato, 10 oz', 1.67, '860004084303', 'Fresh grape tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Grape Tomatoes are the perfect choice.', 'Grape Tomatoes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (826056438, '240pc On Ylw 3# Tf', 465.6, '405509691290', 'short description is not available', '240pc On Ylw 3# Tf', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (826177391, 'Red Potatoes, 10 Lb.', 6.94, 'deleted_030921080102', 'Red Potatoes, 10 Lb.', 'Red Potatoes 10 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (826203615, 'Pure Green Farms Baby Green and Red Leaf Lettuce Salad, 8 oz Clam Shell, Fresh', 4.48, '850014580070', 'Our hydroponic Baby Green and Red lettuce is a baby red and green bold lettuce mix full of flavor.', 'Keep Refrigerated, Greenhouse Grown in the USA, Pesticide Free', 'Pure Green Farms', 'https://i5.walmartimages.com/asr/b30eb81b-d0f1-4901-b67f-39aee5aa05b6.cfa51595acd7138d6841c1b08352d24e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b30eb81b-d0f1-4901-b67f-39aee5aa05b6.cfa51595acd7138d6841c1b08352d24e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b30eb81b-d0f1-4901-b67f-39aee5aa05b6.cfa51595acd7138d6841c1b08352d24e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (826229465, '50/50 Mix', 3.98, 'deleted_071279275062', 'Love the flavor, tenderness and variety in our Spring Mix? Want the extra nutrition that?s in our Baby Spinach? Now you can get the best of both salads in our 50/50 Mix', 'Ready to Eat Thoroughly Washed Non-GMO', 'Fresh Express', 'https://i5.walmartimages.com/asr/20a36802-8e22-499e-9d13-17d494e16304.e36f3a712eea59daa42e9936d1d6d24e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20a36802-8e22-499e-9d13-17d494e16304.e36f3a712eea59daa42e9936d1d6d24e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20a36802-8e22-499e-9d13-17d494e16304.e36f3a712eea59daa42e9936d1d6d24e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (826440861, 'Bay Baby Produce Bumpy Citrouille Pumpkin 1 ea', 3.18, '816237000832', 'Bay Baby Produce Pmpkn Ctrl Bmpy', 'Bay Baby produce USA. Pumpkin, Citrouille, Bumpy', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6d3835c5-b792-414f-a72d-193e1eea2f69.e20843d307945a667936dcbc91d5429f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6d3835c5-b792-414f-a72d-193e1eea2f69.e20843d307945a667936dcbc91d5429f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6d3835c5-b792-414f-a72d-193e1eea2f69.e20843d307945a667936dcbc91d5429f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (826495231, 'Fresh Red Grapefruit, 5 lb Bag', 5.92, 'deleted_605049465768', 'Sunkist Ruby Grapefruit pack a bold citrus flavor with its signature tartness that is sure to help kick start your day. Slice this grapefruit in half and enjoy it with your breakfast for a burst of juicy flavor. Sprinkle it with sugar for a touch of sweetness. This grapefruit is also perfect for juicing and enjoying any time of day; you can even use the juice as a mixer for your favorite cocktails or mocktails. Slice it up and serve with avocado and a tangy vinaigrette for a fresh and light appetizer at your next dinner party or use it to create stunning desserts like baked brown sugar glazed grapefruit or tangy grapefruit meringue pie. The possibilities are endless with the juicy, fresh taste of Sunkist Ruby Grapefruit.', 'Sunkist Ruby Grapefruit, 5 lbs: Juicy, deliciously tart and citrusy flavor Enjoy as a healthy breakfast side or use it to make yummy juice Use it to make a fresh, light avocado and grapefruit summer salad with a tangy vinaigrette Incorporate into your favorite desserts like grapefruit meringue pies and grapefruit cakes Comes in a 5 lb bag giving you plenty of grapefruit to enjoy', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c2090fc4-545e-4ae7-8609-d30b1fde36b6_1.14cf15c2e83ff8bab247392d43d2e384.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c2090fc4-545e-4ae7-8609-d30b1fde36b6_1.14cf15c2e83ff8bab247392d43d2e384.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c2090fc4-545e-4ae7-8609-d30b1fde36b6_1.14cf15c2e83ff8bab247392d43d2e384.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (826497108, 'Spice World Jumbo Garlic Bulb Whole Fresh, Each', 0.66, 'deleted_070969101360', 'Take your culinary creations to the next level with this flavorful fresh Jumbo Garlic. Garlic\'s signature flavors become caramelized and sweeter when cooked, making it a perfect accompaniment to many dishes such as pasta, shrimp, chicken, stews, and more. Garlic also goes great in creamed soups, on all types of roasts, in a variety of egg dishes, or used simply with sauteed or roasted vegetables. To prepare garlic for cooking, you\'ll need to break it up into individual cloves and peel the skin. Once you\'ve done this, you can mince the garlic by chopping it into fine pieces. Or take the flavor profile to the next level and slice the top off the bulb, drizzle with olive oil, wrap in foil, and roast in the oven. When cool, it makes a delicious spread for crusty French bread or a tasty addition to recipes. Spice up your next meal with a tasty clove of fresh Jumbo Garlic.', 'Jumbo Garlic, per Pound: Fresh garlic Ideal for pastas, stews, soups, and more Adds delicious flavor to a variety of meals Combine with other fresh herbs to create a gourmet meal Take your culinary creations to the next level', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4716545a-144b-4403-90ae-59957d9138e1.3a80708ae95b71cb102d0793e1d47bba.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4716545a-144b-4403-90ae-59957d9138e1.3a80708ae95b71cb102d0793e1d47bba.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4716545a-144b-4403-90ae-59957d9138e1.3a80708ae95b71cb102d0793e1d47bba.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (826616539, 'Aerofarms Micro Spicy Mix 2 Oz', 3.98, '815063020632', 'AeroFarms Micro Spicy Mix (2 oz) is a bold and zesty blend of spicy mustard greens, peppery arugula & juicy bok choy for an instant pop of heat. Add a heaping handful to any meal for a delicious and nutritious boost: dress up salads, sandwiches + wraps, boost soups, snacks + smoothies, & top pizza + takeout, or have the whole container as a bite-sized personal salad. In addition to bursting with flavor and crunch, our microgreens can contain more nutrition than mature leafy greens—about 5X more vitamins, according to the United States Department of Agriculture. AeroFarms is an award-winning vertical farming company passionately growing real food for elevated flavor and a brighter future for all. We select the most flavorful varietals of microgreens and baby greens, then perfect them in our indoor vertical farms for optimal quality and a unique, signature FlavorSpectrum™: our kale is sweet + tender, our arugula is perfectly peppery, and we’re harvesting millions of data points to make them even more delicious. Taste our difference.', 'Sustainably grown indoors No pesticides ever Non-GMO Verified No Washing Needed B Corporation Certified Grown using up to 95% less water, 99% less land than field farming 40% Less Plastic, Post-Consumer Recycled Trays OU Kosher', 'AeroFarms', 'https://i5.walmartimages.com/asr/ac33369b-97a8-4b95-acab-5109fb08c9fe.2e7474e445a7376b9081f19eff41b05d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac33369b-97a8-4b95-acab-5109fb08c9fe.2e7474e445a7376b9081f19eff41b05d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac33369b-97a8-4b95-acab-5109fb08c9fe.2e7474e445a7376b9081f19eff41b05d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (826730740, 'Fresh Whole Baby Bella Mushrooms', 0.87, '000000046480', 'Experience the fresh taste of our Whole Baby Bella Mushrooms. Baby Bella Mushrooms give you that same earthy taste you love about mushrooms, but take it up a notch with their firm, meaty texture. Similar in size and shape to white mushrooms, baby bellas are hardier and provide a deeper earthy taste. They\'re the same portabella mushrooms you\'ve enjoyed before, they\'ve just been harvested a few days earlier before becoming those large caps you\'ve seen in vegetarian and vegan cuisines. With their hearty, full-bodied taste, baby bellas are an excellent addition to beef, wild game, and vegetable dishes. Plus, mushrooms are a natural source of the antioxidant selenium, making them an excellent addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try out our Whole Baby Bella Mushrooms.', 'Fresh Whole Baby Bella Mushrooms tray: Naturally fat free Cholesterol free Low in calories, carbs and sodium Fresh and all natural Pre-cleaned Natural source of the antioxidant selenium Excellent addition to beef, wild game and vegetable dishes', 'Unbranded', 'https://i5.walmartimages.com/asr/3010d164-4cc1-43d1-b02a-a1678d73ec8d.45ce903d1a0d6fa027e4903213c5d8b4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3010d164-4cc1-43d1-b02a-a1678d73ec8d.45ce903d1a0d6fa027e4903213c5d8b4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3010d164-4cc1-43d1-b02a-a1678d73ec8d.45ce903d1a0d6fa027e4903213c5d8b4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (826955171, 'Fresh Red Seedless Grapes', 2.88, 'deleted_816426013650', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (827222453, 'Watermelon Seedless', 4.48, '400094205716', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (827233830, 'Gourmet212 Ricotta Cherry Peppers 10.5oz (12 Pack), Glass Jar', 112.95, '191822004182', 'Ricotta and smoked pepper came together and made a great compound within cherry peppers. Then, the surprising flavor of ricotta and smoked pepper stuffed cherry peppers showed up.? You can consume those peppers at your meals or present this delicious taste to your guests. Ricotta and smoke pepper stuffed cherry peppers are also able be great appetizers because of the fact that smoked peppers will increase your appetite and add flavor with its mild bitterness. Smoked peppers are also known as isot or Urfa red peppers. Our cherry peppers which are originally African are grown in our own field in Akhisar, Manisa. The sweet, sharp, and bitter taste that comes with the end makes the product very special. If you add some different tastes, you can fill the peppers with cheese, tuna, or vegetables. Our product does not contain any kind of preservatives. You must keep it in a cool and dry place and consume it within a few days after opening. If you have second thoughts, just try once. You will be amazed when you taste the savory pepper and cheese blend with the gentle touch of smoked pepper.', 'Gourmet212 Ricotta and Smoked Pepper Stuffed Cherry Peppers 10.5oz (12 Pack), Glass Jar, and Fresh. Ricotta and smoked pepper comes together and make a great compound within cherry peppers. The sweet, sharp, and bitter taste that comes with the end makes the product very special. You must keep it in a cool and dry place and consume it within a few days after opening. Our product does not contain any kinds of preservatives.', 'Gourmet212', 'https://i5.walmartimages.com/asr/6ce69a0a-dcdb-4de5-8916-ed54925031f5.f7be45ea45626f3c906b469fffa8a380.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6ce69a0a-dcdb-4de5-8916-ed54925031f5.f7be45ea45626f3c906b469fffa8a380.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6ce69a0a-dcdb-4de5-8916-ed54925031f5.f7be45ea45626f3c906b469fffa8a380.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (827370398, '12pcsldpiz O.cran 4', 9, '', 'short description is not available', '12pcsldpiz O.cran 4', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (827429997, 'Jumbo Yellow Onions', 0.88, '735718000034', 'short description is not available', 'Jumbo Yellow Onions', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/84543160-ac60-454a-bcd9-b921d96edd20_3.59a604fbc52265131f923c66a094a840.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/84543160-ac60-454a-bcd9-b921d96edd20_3.59a604fbc52265131f923c66a094a840.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/84543160-ac60-454a-bcd9-b921d96edd20_3.59a604fbc52265131f923c66a094a840.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (827645292, 'Chilean Grown Yellow Peaches, per Pound', 1.58, '400094137529', 'Chilean Grown Yellow Peaches, per Pound', 'Fresh Chilean Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (828013492, '150pc Pto Red 5# Or', 865.5, '405518369821', 'short description is not available', '150pc Pto Red 5# Or', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (828106127, 'GRAPE TOMATO', 2.68, '333836655855', 'GRAPE TOMATO', '', '', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (828625046, 'Sunset Sugar Bombs Grape Tomatoes on the Vine, 12 oz', 4.98, 'deleted_057836021891', 'Flavor Rocks™', 'Sunset Sugar Bombs! Grape Tomatoes on the Vine, 12 oz: Wholesome, versatile, and delicious Greenhouse grown for a sweet, juicy flavor Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and snacking 12 oz per package Delicious and nutritious', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/04b11f7c-04b7-497c-b4d8-020037dca9ce.1e1738f97e5c65d29ea4eece36d6e4b4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/04b11f7c-04b7-497c-b4d8-020037dca9ce.1e1738f97e5c65d29ea4eece36d6e4b4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/04b11f7c-04b7-497c-b4d8-020037dca9ce.1e1738f97e5c65d29ea4eece36d6e4b4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (829097095, 'Yellow Flesh Peaches, per Pound', 1.58, '400094711668', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (829329648, '192pc On Swt 3# Pe', 788, '405534206681', 'short description is not available', '192pc On Swt 3# Pe', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (829634260, 'Marketside Sugar Snap Peas 16oz', 5.98, 'deleted_854026006351', 'short description is not available', 'Marketside Sugar Snap Peas 16oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (829835324, 'Red Seedless Grapes 24 oz Bag, Fresh', 3.94, '052901635096', 'Treat yourself to the delicious, juicy flavor of Fresh Red Seedless Grapes. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the fresh taste of Fresh Red Seedless Grapes.', 'Fresh Red Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4e760aff-5b4d-4b6e-8318-ae827b014b02.17d45450028262b99470e5bccd7bfb28.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4e760aff-5b4d-4b6e-8318-ae827b014b02.17d45450028262b99470e5bccd7bfb28.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4e760aff-5b4d-4b6e-8318-ae827b014b02.17d45450028262b99470e5bccd7bfb28.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (829937436, 'Fresh Multi Color Grapes, 3 Lb', 5.98, '850550002258', 'Experience the burst of flavors with our Fresh Multi Color Grapes. This 3 lb package offers a variety of vibrant colors and juicy tastes. Perfect for snacking on the go, adding to your favorite fruit salad, or as a refreshing addition to any meal. Our grapes are carefully selected to ensure the highest quality and freshness. Whether you\'re enjoying them as a healthy snack or including them in a recipe, these grapes are sure to delight. Enjoy the natural goodness and freshness that comes with each grape in this selection.', 'Fresh and delicious multi-color grapes 3 lb package for convenience and value Excellent source of vitamins and antioxidants. Perfect for snacks, salads, and recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7170b1ca-0ab2-4747-bac3-eabdd2cde285.9719fb418bf88d69a85e654fda14a52b.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7170b1ca-0ab2-4747-bac3-eabdd2cde285.9719fb418bf88d69a85e654fda14a52b.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7170b1ca-0ab2-4747-bac3-eabdd2cde285.9719fb418bf88d69a85e654fda14a52b.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (829981541, 'Freshness Guaranteed Fresh Black Seedless Grapes', 1.83, '', 'short description is not available', 'Freshness Guaranteed Fresh Black Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (830130800, '175pc On Swt 4# Tm', 574, '405524834221', 'short description is not available', '175pc On Swt 4# Tm', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (830674146, 'Goverden Classic Guacamole 8oz', 4.43, '850002858020', 'short description is not available', 'Freshness Guaranteed Classic Guacamole 8oz', 'GoVerden', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (831334654, 'Fresh Gala Apples, 3lb', 4.67, 'deleted_033383027746', 'Gala fresh apples are sweet and mild with a subtle floral aroma making them perfect for breakfast, lunch, dinner, and dessert. Perfect for snacking, they have a creamy white flesh with low acidity. Chop the apples up and add them to a salad with walnut, mixed greens, and a poppy seed vinaigrette for a crunchy delicious salad that you can enjoy for lunch or dinner. Add it to your favorite smoothie or juice blend for a morning pick me up to get your day started right. Serve with a dollop of peanut butter and enjoy as a healthy snack that both kids and adults will love.', 'Sweet and mild with a subtle floral aroma Perfect for breakfast, lunch, dinner, and dessert Chop them up and add to a salad, add them to a smoothie or juice blend, or serve with peanut butter Perfect for snacking They have a creamy white flesh with low acidity', 'Fresh', 'https://i5.walmartimages.com/asr/af429a77-d9b3-492c-bdce-a37a1352127d.cb79424e07c374f20a2a09991c28b4bd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af429a77-d9b3-492c-bdce-a37a1352127d.cb79424e07c374f20a2a09991c28b4bd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af429a77-d9b3-492c-bdce-a37a1352127d.cb79424e07c374f20a2a09991c28b4bd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (831570632, '3# Bag Lemons', 3.92, '033383105024', 'short description is not available', '3# Bag Lemons', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (832291420, 'Microwave in Bag Red Potatoes, 1 Lb.', 2.1, '033383004761', 'Microwave in Bag Red Potatoes, 1 Lb.', 'Microwave In Bag Red Potatoes Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (832399624, 'Cucumber Salad/pickling', 3.68, 'deleted_605951027009', 'short description is not available', 'Cucumber Salad/pickling', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (833519180, 'Marketside Organic Honeycrisp Apples 2 Lb Bag', 7.48, 'deleted_813200015183', 'short description is not available', 'Marketside Organic Honeycrisp Apples 2 Lb Bag', 'Marketside', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (833611362, 'Watermelon Radish 1lb Bag', 3.48, '037842054762', 'This large radish is beige to green with occasional pink blush on the outside. The flesh inside is bright pink, giving it a watermelon-like appearance when cut. This tender-crisp cousin of the daikon radish is peppery with a hint of sweetness.', 'Watermelon Radish 1lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (833718310, 'Fresh Roma Tomato, Each', 0.98, 'deleted_070740060596', 'With Fresh Roma Tomatoes from Walmart, it\'s easy to make a wholesome, delicious meal. Roma tomatoes are a fresh produce ingredient for whipping up a variety of wonderful dishes. You can use them to create a zesty tomato sauce for stirring into a homemade pasta dish, crush them up to make a delightful Roma tomato bruschetta, or simply enjoy them on their own as a nutritious snack or as a party platter option for dipping in your favorite vegetable dipping sauce. If you\'re feeling a classic tomato dish, Roma tomatoes can even lend themselves in making a comforting and appetizing tomato soup or a flavorful salsa. However you choose to use them, each Roma tomato will add stunning flavor to your meal. Just find the recipe and experience the tasty results for yourself! Elevate your recipes with Roma Tomatoes.', 'Roma Tomato, Each: Wholesome, versatile, and delicious Rich, juicy flavor in each bite Ideal ingredient for a variety of dishes Use to make pasta sauce, tomato soup, or fresh salsa Make a tasty pesto or bruschetta to serve at your next dinner party Delicious and nutritious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1816695f-3a84-418d-96c1-86521eca7d38_2.48b201b3f23d17a6d8c5bb80b28020d1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1816695f-3a84-418d-96c1-86521eca7d38_2.48b201b3f23d17a6d8c5bb80b28020d1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1816695f-3a84-418d-96c1-86521eca7d38_2.48b201b3f23d17a6d8c5bb80b28020d1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (833945304, 'Collard Greens 2# Bag', 4.34, 'deleted_060556606026', 'short description is not available', 'Collard Greens 2# Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (834271776, 'Kale Greens', 1.48, 'deleted_885460000247', 'short description is not available', 'Kale Greens', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (834529103, 'Fresh Green Seedless Grapes, per lb', 2.12, 'deleted_814596010028', 'Treat yourself to the delicious, juicy flavor of Fresh Green Seedless Grapes. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be creative, you can freeze them and use them as ice cubes that won\'t melt and release water into your favorite drinks.', 'Fresh Green Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes Whole and healthy option for a natural treat', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f1ef697a-804a-4042-96b6-64672e5960cf.e1492c4e2d9e92acf4bc439400ad1125.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f1ef697a-804a-4042-96b6-64672e5960cf.e1492c4e2d9e92acf4bc439400ad1125.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f1ef697a-804a-4042-96b6-64672e5960cf.e1492c4e2d9e92acf4bc439400ad1125.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (834694586, 'Fresh Organic White Sliced Mushrooms, 8 oz', 3.69, '678286889017', 'Experience the fresh taste of Organic White Sliced Mushrooms. If you\'re looking for a traditional mushroom with a mild earthy taste, white mushrooms are just what you need. They\'ve remained the most popular mushroom for several decades and although all mushrooms are versatile, white mushrooms are the most versatile of them all. Pre-cleaned and sliced, they are perfect for adding to stir-fries, sauces, soups, pizzas, salads, and stews to create culinary works all your own. They are free of fat and cholesterol and are low in calories and sodium. Plus, mushrooms are a natural source of the antioxidant selenium, making them an excellent addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try out Organic White Sliced Mushrooms.', 'Organic White Sliced Mushrooms, 8 oz: 8-ounce package of organic white sliced mushrooms Naturally fat-free Cholesterol-free Low in calories, carbs and sodium Fresh and all natural Natural source of the antioxidant selenium Great for salads, pizzas, and much more', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/59cd9ef0-6414-4aa7-844c-199392cae9b0_5.28eeaa8513e26f74f689af963a0e191b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59cd9ef0-6414-4aa7-844c-199392cae9b0_5.28eeaa8513e26f74f689af963a0e191b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59cd9ef0-6414-4aa7-844c-199392cae9b0_5.28eeaa8513e26f74f689af963a0e191b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (835040558, 'Fresh Bulk Slicing Tomatoes', 1.98, 'deleted_816426010840', 'short description is not available', 'Fresh Bulk Slicing Tomatoes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (835043229, 'Fieldpack Unbranded Organic Celery Heart', 2.76, '811944022542', 'short description is not available', 'Fieldpack Unbranded Organic Celery Heart', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/19fcc5f8-1a30-4dfb-ba02-e62a23195fcd.05c8869d3c395d0e6b3b21dbfbfdde22.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19fcc5f8-1a30-4dfb-ba02-e62a23195fcd.05c8869d3c395d0e6b3b21dbfbfdde22.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19fcc5f8-1a30-4dfb-ba02-e62a23195fcd.05c8869d3c395d0e6b3b21dbfbfdde22.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (835119887, '180pc Apl Granny 3#', 822.6, '405665853464', 'short description is not available', '180pc Apl Granny 3#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (835392846, 'Valencia Oranges, 4 Lb.', 6.58, 'deleted_036315110509', 'Valencia Oranges, 4 Lb.', 'Valencia Oranges 4 Lb Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (835523658, 'Fresh Black Sable Seedless Grapes 1lb', 29.88, '', 'short description is not available', 'Fresh Black Sable Seedless Grapes 1lb', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (835860707, 'Lemons, 3 ct', 1.18, '072240540554', '3ct Lemons', 'Lemons, 3 ct', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b23c7185-7d92-4cf6-9622-06b039baa4c7_3.5aeb07b705563ea8a7c3081c9b842d64.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b23c7185-7d92-4cf6-9622-06b039baa4c7_3.5aeb07b705563ea8a7c3081c9b842d64.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b23c7185-7d92-4cf6-9622-06b039baa4c7_3.5aeb07b705563ea8a7c3081c9b842d64.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (836216240, 'Butternut Squash', 1.18, 'deleted_814563016657', 'short description is not available', 'Butternut Squash', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (836303521, 'Marketside Organic Red Potatoes Whole Fresh, 3 lb Bag', 5.28, '856417005493', 'When you\'re wondering what to have for supper, pick up some Marketside Organic Red Potatoes. You can use them to make a delicious and nutritious potato salad. They\'ll add a vibrant color to your meals with their red skins. These non-GMO potatoes will bake nicely and make a filling side to go with a grilled steak. They\'re certified organic by CCOF, so you can be confident they were grown in a pesticide-free environment. These fresh produce potatoes are all-natural and have not been genetically altered. They\'re rich in vitamins and minerals, so you will feel good feeding them to your family. Pick up this 3-pound bag of Marketside Organic Red Potatoes today.', 'Marketside Organic Red Potatoes, 3 pound Bag Plenty of potatoes for your next meal or gathering Premium potatoes with a red skin color Great for baking, frying, roasting, and more Delicious fresh produce', 'Marketside', 'https://i5.walmartimages.com/asr/9219d9f9-5447-45fb-9f57-03fcabb9c637.6cc8e59e73f6184f37832127f02a1a76.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9219d9f9-5447-45fb-9f57-03fcabb9c637.6cc8e59e73f6184f37832127f02a1a76.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9219d9f9-5447-45fb-9f57-03fcabb9c637.6cc8e59e73f6184f37832127f02a1a76.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (836324255, '125pc Pto Rst Jmb 8#', 802.5, '405546022408', 'short description is not available', '125pc Pto Rst Jmb 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (836396432, 'Serrano Pepper, 4oz', 1.58, 'deleted_857419005450', 'Enhance your meals with the delicious flavor of Serrano Peppers. Naturally low in calories, fat, and cholesterol, this vegetable is a great source of vitamins C, B6, and A, as well as iron and magnesium. Serrano peppers have a bright and biting flavor that enhances a variety of recipes. Make a zesty pico de gallo or salsa using fresh serrano peppers, add to a sweet peach jam to make a glaze for hot wings, or add to eggs for out of this world huevos rancheros. You can even add some diced serrano peppers and cheese to cornbread batter for a delectable chile cheese cornbread that will have everyone asking for seconds. Lunches and dinners are more scrumptious when fresh Serrano Peppers are part of the meal.', 'Serrano Pepper, 4oz bag Naturally low in calories Rich in Vitamins C, B6 and A Versatile and Delicious Fresh Whole Serrano Pepper', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b3ca1a55-2be4-495b-8743-9d32a1d6f141.d3467f5ce6bca1ef448523b56dceb495.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3ca1a55-2be4-495b-8743-9d32a1d6f141.d3467f5ce6bca1ef448523b56dceb495.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3ca1a55-2be4-495b-8743-9d32a1d6f141.d3467f5ce6bca1ef448523b56dceb495.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (836658379, 'That\'s Tasty Organic Butter Lettuce', 2.98, 'deleted_768573710039', 'That\'s Tasty Organic Butter Lettuce gives you truly delicious organic flavor that you can trust. This lettuce is hydroponically grown in Virginia and is USDA certified organic. It comes an entire head of lettuce with the roots, so you can see how fresh this lettuce really is. Use it to make delicious salads topped with your favorite croutons, nuts, cheese, vegetables, protein and dressing for a fresh taste in every bite. Use it to top sandwiches and burgers or make delicious lettuce wraps. Fill the wraps with hummus and vegetables for a vegetarian option or use your favorite deli meat slices, condiments and vegetables for healthier lunch alternative. Enjoy freshness you can see with That\'s Tasty Organic Butter Lettuce.', 'That\'s Tasty Organic Butter Lettuce: Pure USDA certified organic flavor Hydroponically grown in Virginia Contains 1 full head of lettuce with the roots for freshness you can see Make fresh salads with your favorite toppings, proteins and dressing Top burgers and sandwiches or make tasty lettuce wraps', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/71c22c77-7213-4410-98d2-1682555eb586_1.a51045197f51cf33e27fd29b8e05cdae.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71c22c77-7213-4410-98d2-1682555eb586_1.a51045197f51cf33e27fd29b8e05cdae.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/71c22c77-7213-4410-98d2-1682555eb586_1.a51045197f51cf33e27fd29b8e05cdae.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (836733428, 'Freshness Guaranteed Watermelon Large', 4.37, '262831000004', 'Freshness Guaranteed fresh cut Watermelon in Plastic Tray ready to be opened and shared. It includes a large sized amount of fresh sweet watermelon', 'Freshness Guaranteed Watermelon Large', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (836800783, 'Fresh Fuji Apples, 3 lb Bag', 4.99, 'deleted_887434007047', 'This is a wine-friendly apple, making it a good choice for recipes served as an appetizer or main course accompanied by wine. It pairs particularly well with Riesling, Chianti, Merlot and Pinot Noir wines', 'Super sweet Fresh and sophisticated flavor Hints of spice and savory earth character Juicy and aromatic Healthy snack', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/67b94e83-d24d-4f31-9e4a-e042839eb47f.b840e4c4b78508dda09e2f543b1329dd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/67b94e83-d24d-4f31-9e4a-e042839eb47f.b840e4c4b78508dda09e2f543b1329dd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/67b94e83-d24d-4f31-9e4a-e042839eb47f.b840e4c4b78508dda09e2f543b1329dd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (836832430, 'Fresh Green Beans', 1.68, 'deleted_846449000122', 'short description is not available', 'Fresh Green Beans', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/7756ccfc-edd6-4748-9a20-d71e39292b43_3.67c217703b48a93b85c4843174c2f179.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7756ccfc-edd6-4748-9a20-d71e39292b43_3.67c217703b48a93b85c4843174c2f179.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7756ccfc-edd6-4748-9a20-d71e39292b43_3.67c217703b48a93b85c4843174c2f179.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (836928947, 'Good Foods Pineapple Poblano Guacamole', 3.56, '736798901907', 'short description is not available', 'Guacamole, Pineapple Poblano Sweet & spicy deliciousness. Hand-scooped hass avocados. Gluten free. No artificial colors or flavors. www.goodfoods.com. Per Serving: 40 calories; 3 g fat.', 'Unbranded', 'https://i5.walmartimages.com/asr/681c9d8e-b9d3-4b29-b01e-ccaade2b8a2c.cffc0404433a7eeaeb08343a742284a9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/681c9d8e-b9d3-4b29-b01e-ccaade2b8a2c.cffc0404433a7eeaeb08343a742284a9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/681c9d8e-b9d3-4b29-b01e-ccaade2b8a2c.cffc0404433a7eeaeb08343a742284a9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (837150717, 'New Mexico Hatch Chili HOT! 2lb Bag', 3.94, '669212265272', 'Unique flavored pepper grown in the hatch valley of New Mexico. For amazing flavor, simply roast, peel and add to your favorite recipe. Perfect at breakfast in your burrito or omelette. Spice up your salsa and quacamole or add to your favorite dinner dish such as burgers, pizza, enchiladas, and much more.', 'New Mexico Hatch Chili Pepper', 'Fresh Produce', 'https://i5.walmartimages.com/asr/73225738-58e8-4de0-af06-f4a3e69e82da_1.de688b32640d5c837e71d458fce176d2.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/73225738-58e8-4de0-af06-f4a3e69e82da_1.de688b32640d5c837e71d458fce176d2.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/73225738-58e8-4de0-af06-f4a3e69e82da_1.de688b32640d5c837e71d458fce176d2.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (837171820, 'Watermelon Seedless', 4.98, '400094408490', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (837756933, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094763889', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (837849560, '200pc Pto Rst 5# Wd', 648, '405519018377', 'short description is not available', '200pc Pto Rst 5# Wd', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (838007809, 'Watermelon Seedless', 4.48, '405504835866', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (838017712, 'Mini Cucumber Pk', 2.48, 'deleted_626074004456', 'short description is not available', 'Mini Cucumber Pk', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (838887788, 'Mann\"s Organic Broccoli & Carrots', 3.46, '032601063009', 'Two of America?s favorites! These nutritional treats are full of vitamins A & C and great for snacking. You can also steam them in our microwaveable bag! Quick and convenient?with little mess to clean up.', 'Mann\"s Organic Broccoli & Carrots', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c5789be8-d27f-4b49-963f-eb208a45b3a1_1.241bea9fe5bee1dd6918f2f2c32a9198.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c5789be8-d27f-4b49-963f-eb208a45b3a1_1.241bea9fe5bee1dd6918f2f2c32a9198.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c5789be8-d27f-4b49-963f-eb208a45b3a1_1.241bea9fe5bee1dd6918f2f2c32a9198.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (839095813, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_400094172377', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (839892157, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094424933', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (840100526, 'Yellow Flesh Peaches, per Pound', 1.58, '400094633397', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (840494738, 'Delallo Lemon Feta Antipasti, 7 oz, Refrigerated, Plastic Tub', 4.18, '072368394336', 'Delallo Lemon Feta Antipasti is a tasty Greek-inspired dish featuring tangy feta cheese and pitted olives. This ready-to-eat antipasti comes in a refrigerated plastic tub, perfect for quick snacking or adding to Mediterranean recipes. With zesty pepperoncini and colorful peppers in a lemon marinade, it\'s a burst of flavor in every bite. Enjoy this delicious, vibrant salad that\'s ideal for any occasion. Keep it fresh in your fridge and enjoy the beloved tastes of Greece with ease. Brand: Delallo. Food Condition: Refrigerated.', 'Well-rounded antipasto medley featuring cubes of briny feta cheese. Stars beloved briny, tart, tangy, zesty and lemony Greek flavors. Pitted olives for convenient snacking, entertaining and cooking. Refrigerated for freshness. Presented in a convenient plastic tub. Ready to eat; just open and enjoy.', 'DELAIO', 'https://i5.walmartimages.com/asr/4d825155-7ee9-467c-8309-ee9133e05cf9.625f64e89323ac84e094d9a1255895a3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4d825155-7ee9-467c-8309-ee9133e05cf9.625f64e89323ac84e094d9a1255895a3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4d825155-7ee9-467c-8309-ee9133e05cf9.625f64e89323ac84e094d9a1255895a3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (840833191, 'California Grown Peaches, per Pound', 1.58, '400094111628', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (840913848, 'Dried Guajillo Chili, 3 Oz.', 2.98, '803944301178', 'Dried Guajillo Chili, 3 Oz.', 'Dried Guajillo 3 Oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (841038964, 'Calavo Bonus Bag 5ct Large AvoMX', 2.78, 'deleted_070740192006', 'no', 'Large Avocado 5 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (841045244, '192pc On Swt 3# Pe', 660.48, '405532616857', 'short description is not available', '192pc On Swt 3# Pe', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (841299907, 'Simplot Harvest Fresh Avocados - Avocado Dices, 2 Pound -- 12 per case.', 219.32, '', 'Features: Large, Satisfying Dices Of Rich Hass Avocado;Consistent Pricing, Quality And Availability All Year;Elevate Your Menu And Check Average;Say Goodbye To Labor And Waste;Satisfy Patrons Looking For Healthy Options', 'Simplot Harvest Fresh Avocados - Avocado Dices, 2 Pound -- 12 per case.', 'Simplot', 'https://i5.walmartimages.com/asr/c779c44f-6061-430d-90fa-1897e2835ae2.2b38ee507f8b0c1c34f7378165daf6f8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c779c44f-6061-430d-90fa-1897e2835ae2.2b38ee507f8b0c1c34f7378165daf6f8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c779c44f-6061-430d-90fa-1897e2835ae2.2b38ee507f8b0c1c34f7378165daf6f8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (841360435, 'Green Bell Pepper', 0.68, '857610005556', 'short description is not available', 'Green Bell Pepper', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/acc4e0b0-3a75-4d28-9510-abec0362c30c.7df5d073559cf7e400de787628aa13fb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/acc4e0b0-3a75-4d28-9510-abec0362c30c.7df5d073559cf7e400de787628aa13fb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/acc4e0b0-3a75-4d28-9510-abec0362c30c.7df5d073559cf7e400de787628aa13fb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (841516423, 'Bi-Color Seedless Grapes, 2 lb', 13.96, '850859002348', 'short description is not available', 'Bi-Color Seedless Grapes, 2 lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ac20bc3f-2c7e-43f8-a259-b6313b4f7d2b_1.f9875210e261388818a4ed495a62d0fc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (841599985, 'Bulk Collard Greens', 0.98, 'deleted_813098020023', 'short description is not available', 'Bulk Collard Greens', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (841648078, 'Yellow Flesh Peaches, per Pound', 1.58, '400094167885', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (841832654, 'NY SPICE SHOP Sour Tamarind Whole - 1 Pound - Tamarind Pods - Thai Sour Tamarind - Tamarind Candy', 12.99, '768253238365', 'NY Spice Shop sour tamarind is light brown in color sweet, tangy, and sour in taste. There are two special kinds of tamarinds “Sweet Tamarinds & Sour Tamarinds”, both are available at our NY Spice Shop. It is used to add in biryani, sweet and sour rice, and a variety of chickpeas chats. It is a strong base for varieties of chutneys, squashes, BBQ stew, and sauces. Sour tamarind is also used in Thai and other cuisines.', 'All-Natural Whole Tamarind Pods – NY Spice Shop sour tamarind pods are covered the fresh, delicious, edible fruit which is packed with healthy fibers, and antioxidants. Versatile Meal Enhancer – Our tamarind can be used for creating Thai pasts, Mexican candies or Agua Fresca, traditional Asian meals, amazing curry, Malaysian satay, and other exciting options friends and family will enjoy. HEALTHY & DELICIOUS – Sour tamarind chutney is naturally sour, no sugar added whole pods can make savory dishes and snacks. Delivered Fresh in Resealable Bag –Our tamarind comes in 3lbs. bags with a resealable top to ensure they’re fresh and taste great from start to finish. And because we’re focused on natural, organic ingredients you can trust they’re perfect. Trusted Quality in Every Bite – We want to make your meals, snacks, and sweet treats more memorable which is why we carefully source all our products to ensure they reach you ready to eat and with a stable shelf life.', 'NY Spice Shop', 'https://i5.walmartimages.com/asr/fffd7d96-5659-4f2a-b05c-8b9ee5a77595.1291c83787155c61e6f63ab47936a30c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fffd7d96-5659-4f2a-b05c-8b9ee5a77595.1291c83787155c61e6f63ab47936a30c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fffd7d96-5659-4f2a-b05c-8b9ee5a77595.1291c83787155c61e6f63ab47936a30c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (841977203, 'Marketside Organic Celery Hearts', 5.16, 'deleted_033383653266', 'short description is not available', 'BSKVC FARMS CLRY HRT ORGNC CRTFD ORGNC BY CF BAG FRESH VEGETABLE AND HERB', 'Marketside', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (842021999, '175pc Pto Red 5# Ff', 1009.75, '405507410343', 'short description is not available', '175pc Pto Red 5# Ff', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (842280555, 'Taylor Farms Mozzarella & Tomato Salad Bowl, 6.1 oz, Fresh', 2.98, '030223060314', 'Try this fresh Mozzarella and Tomato Salad from Taylor Farms. This on-the-go deli salad bowl will fill you up with six grams of protein. It contains crisp romaine lettuce, juicy grape tomatoes, mozzarella cheese, and a balsamic vinaigrette dressing. With no synthetic colors or high fructose corn syrup, it has only 150 calories per serving. This 6.1-ounce salad includes a fork and is ready to eat. Keep refrigerated until ready to enjoy. Reach for the Taylor Farms Mozzarella and Tomato Bowl that is sure to be your new favorite salad on the go.', 'Taylor Farms Mozzarella and Tomato Salad Bowl is ready when you are Crisp romaine lettuce, juicy grape tomatoes, mozzarella cheese, and a balsamic vinaigrette dressing Includes a fork 150 calories per 6.1-ounce serving No synthetic colors or high fructose corn syrup 6 grams of protein per serving Fresh produce is washed and ready to eat Keep refrigerated until ready to enjoy', 'Taylor Farms', 'https://i5.walmartimages.com/asr/28476927-aa04-4173-90ef-b370cf7d1fc7.91b4201b613bb7d3c5fd2e868f625d3c.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/28476927-aa04-4173-90ef-b370cf7d1fc7.91b4201b613bb7d3c5fd2e868f625d3c.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/28476927-aa04-4173-90ef-b370cf7d1fc7.91b4201b613bb7d3c5fd2e868f625d3c.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (842432737, 'Goya Purple Corn Beverage, Chicha Morada, 15 Oz', 7.5, '041331050531', 'This corn is grown in the Andes region on Peru, it is used in chicha morada (a drink made by boiling purple corn with pineapple, cinnamon, clove, and sugar) and mazamorra, a type of pudding. The kernels of Purple Corn have long been used by the people of the Peruvian Andes to color foods and beverages, a practice just beginning to become popularized in the industrialized world. Besides its use as food and dye, purple corn is thought to have many health benefits', 'Goya Purple Corn Beverage, Chicha Morada, 15 Oz', 'GOYA', 'https://i5.walmartimages.com/asr/5d80c736-54ea-4dc7-b64d-4cc26e1bfdab_2.41b63fcaec73d79bbf1bb2eb70cc6794.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5d80c736-54ea-4dc7-b64d-4cc26e1bfdab_2.41b63fcaec73d79bbf1bb2eb70cc6794.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5d80c736-54ea-4dc7-b64d-4cc26e1bfdab_2.41b63fcaec73d79bbf1bb2eb70cc6794.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (842782601, 'Regent Apples 5 Lb Bag', 4.92, '033383046679', 'short description is not available', 'Regent Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (842931823, 'Fresh Manzano Banana, Each', 1.24, '821783042335', 'Our fresh bananas are made with organic ingredients and are the perfect healthy snack! These sweet and delicious fruits are filled with essential vitamins and minerals that provide energy and help maintain a balanced diet. Enjoy them as a quick on-the-go snack or add them to smoothies and desserts for a delicious treat. Trust us, you won\'t be disappointed!', 'Taste is mildly sweet and - Whole Manzano bananas are a type of fresh produce that can be enjoyed in their natural, unprocessed form, offering a delightful and unique Taste experience compared to standard bananas. As a fresh produce item, Manzano bananas retain their full nutritional value, providing essential vitamins and minerals that contribute to overall health and well-being. When consumed Whole and fully ripe, Manzano bananas have a sweet, tangy Taste with hints of apple and strawberry flavors, making them a delicious and satisfying snack or addition to various recipes. tangy. This banana variety is compact and half the size of a regular banana which makes great for travel and day snacks.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9fd6c02a-7106-4ea8-9fa9-1f62d7c843e6.662ea636f6591b10adc33844938ee647.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9fd6c02a-7106-4ea8-9fa9-1f62d7c843e6.662ea636f6591b10adc33844938ee647.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9fd6c02a-7106-4ea8-9fa9-1f62d7c843e6.662ea636f6591b10adc33844938ee647.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (843278705, 'Fresh Organic Beefsteak Tomato, 2 Pack', 2.46, '078742051123', 'Create something wholesome and delicious with Fresh Organic Beefsteak Tomatoes. These ripe tomatoes are the ideal fresh produce ingredient for a variety of tasty dishes. Use them to make a zesty tomato sauce for a pasta dish, try using them to make a tomato bruschetta, or simply enjoy each of them on their own as a nutritious snack. They would make a comforting and appetizing tomato soup and a flavorful salsa. You could also serve them at your next party alongside your favorite vegetable dipping sauce or add them to your famous guacamole recipe. However you choose to use them, these tomatoes will add flavor and taste to any meal. Elevate your recipes with Fresh Organic Beefsteak Tomatoes.', 'Fresh Organic Beefsteak Tomato, 2 Pack Wholesome, versatile, and delicious Rich, juicy flavor in each bite Ideal ingredient for a variety of dishes Use to make pasta sauce, tomato soup, or fresh salsa Make a tasty pesto or bruschetta to serve at your next dinner party Delicious and nutritious fresh produce', 'Fresh Produce', 'https://i5.walmartimages.com/asr/3b3c245b-321c-442c-ad0e-7be6f57a0cd4.49cb3aad993bd0eb1c6ebc7267108c77.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3b3c245b-321c-442c-ad0e-7be6f57a0cd4.49cb3aad993bd0eb1c6ebc7267108c77.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3b3c245b-321c-442c-ad0e-7be6f57a0cd4.49cb3aad993bd0eb1c6ebc7267108c77.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (843464442, 'Fresh Red Seedless Grapes', 2.48, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (844307654, 'City Farms Spring Mix Clam 4oz', 6.43, '850010794013', 'short description is not available', 'City Farms Spring Mix Clam 4oz', 'Fresh City Farms', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (844380568, 'Idared Apples 5 Lb Bag', 4.92, '033383085524', 'short description is not available', 'Idared Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (844665579, 'Fresh Large Hass Avocado Bag, 3- 4 Count', 6.8, '849351000068', 'Large Whole Hass Avocados aren’t just great-tasting fresh produce items, but they are a nutrient-dense fruit that can be enjoyed throughout the year. Hass avocados are a versatile ingredient with a creamy texture and mild flavor that can be used in many different types of recipes and dishes that are perfect for enjoying at barbecues and outdoor gatherings with friends and family during the summer. Use avocados in flavorful recipes that everybody can share and enjoy while being together outside. Try avocados in individual Mexican food items like tacos or burritos, as part of appetizers like avocado crostini, or in a fresh guacamole or avocado dip so everybody can dip tortilla chips into something delicious. The possibilities are deliciously endless. Not only is a large avocado a great ingredient to use in numerous ways, but it is also a healthy food that contributes unsaturated \"good\" fats and almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9. A large ripe 1.7 lb avocado will have a dark green to nearly black skin color, a bumpy skin texture and should yield to gentle pressure without leaving indentations or feeling mushy. Avocados with a slightly bumpy texture should be ripe in 1 to 2 days. They will also be somewhat firm and have a dark green and black speckled color. Once you’ve selected the perfect bag of Large Hass Avocados, you’ll be ready to enjoy all kinds of different healthy foods and recipes for your next gathering with friends and families.', 'Fresh fruit with a creamy texture and mild flavor Fresh avocados are great for using in tacos, burritos, appetizers, avocado dip and fresh guacamole A cholesterol free fruit that contains almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9 Large Hass avocados are the lowest sugar fruit and provide unsaturated \"good fats\" that help absorb Vitamin A, Vitamin D, Vitamin K and Vitamin E Large ripe avocados will have dark green to nearly black skin color, a bumpy texture and should yield to gentle pressure without leaving indentations', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f7f54a85-4f77-4c30-ab80-f57352473347.da61567dd7da970e19efee00d4ba591c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f7f54a85-4f77-4c30-ab80-f57352473347.da61567dd7da970e19efee00d4ba591c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f7f54a85-4f77-4c30-ab80-f57352473347.da61567dd7da970e19efee00d4ba591c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (844864628, '200pc Pto Red 5# Ptd', 794, '405507900592', 'short description is not available', '200pc Pto Red 5# Ptd', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (845090238, 'Cherry Tomatoes', 5.24, '714581000785', 'short description is not available', 'FLVR PIC TMT CO CHRY WHL MLDD TRY FRESH VEGETABLE AND HERB', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (845843843, 'Cherry Tomato, 10 oz Package', 2.97, '057836021709', 'Bring the fresh, delicious taste of Cherry Tomatoes into your home. Because of their notable flavor and thicker skin, they are a versatile tomato that\'s great for grilling, sauteing, roasting, or baking. Their small size also makes them a quick and simple addition to a fresh salad as well as an excellent finger food for whenever you\'re in the mood for a light snack. Packed with nutrients, cherry tomatoes are a deliciously healthy ingredient that adds both vibrant color and mouthwatering flavor to any recipe. For the best flavor and freshness, store these tomatoes at room temperature on your kitchen counter. Make your next meal a marvelous one with these fresh Cherry Tomatoes.', 'Cherry Tomato, 10 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/39585953-8ae1-4909-a68a-40c3288c87ba.b7af54eb72069bdaca0bd4d3d88f9d2b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39585953-8ae1-4909-a68a-40c3288c87ba.b7af54eb72069bdaca0bd4d3d88f9d2b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39585953-8ae1-4909-a68a-40c3288c87ba.b7af54eb72069bdaca0bd4d3d88f9d2b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (845914949, 'Fresh Grower\'s Choice Weekly Harvest Specialty Stone Fruit, 1 lb', 3.77, '813187011222', 'Looking for a fun and exciting snack that\'s full of mystery and possibility? Look no further than our Grower\'s Choice Weekly Harvest Specialty Stone Fruit Variety! This mystery box item is filled with a delicious suprise of premium fresh stone fruits, carefully selected from our growers\' seasonal harvest. You might find juicy plums, sweet apricots, luscious nectarines, succulent peaches, or an intriguing set of plumcots - each one offering a unique taste experience. With over 20 distinct varieties that our grower may choose, you\'ll be in for a treat with each bite. Each fruit boasts its own unique appearance, color, and size, ensuring a fun and exciting snacking experience. Whether you enjoy them on their own as a healthy snack or incorporate them into your favorite recipes, these stone fruits are sure to bring a burst of flavor and nutrition to your day. Looking for some tasty ideas to get you started? Try substituting these fruits for a refreshing twist in your favorite recipes. From scrumptious cakes and crisps to roasted dishes with honey and goat cheese, the possibilities are endless! So why settle for just any snack when you can indulge in the surprise and delight of our Weekly Harvest Specialty Stone Fruit Variety? Stock up today and discover the joy of these delicious fruits in every bite!', 'Fresh Grower\'s Choice Weekly Harvest Specialty Stone Fruit, 1 lb Clamshell: Delight in a surprise selection of premium plums, apricots, nectarines, peaches, or plumcots Indulge in the unique flavors presented in these varieties that have been selected by our growers Rich in vitamins and nutrients, promoting a healthy diet Ideal for both sweet and savory dishes, showcasing their culinary versatility Add a burst of color and taste to fruit salads and charcuterie boards Create tantalizing jams, preserves, and chutneys with their unique flavor profile Perfect for incorporating into smoothies and juices for a refreshing twist Impress dinner guests with elegant desserts and appetizers A delightful addition to breakfast dishes, such as oatmeal, yogurt, and pancakes Explore the exciting world of premium stone fruits with many different varieties to try throughout the season', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f0e86178-8842-4111-8133-815350976f00.15a403d2d95c15afe36fe434b26b6449.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f0e86178-8842-4111-8133-815350976f00.15a403d2d95c15afe36fe434b26b6449.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f0e86178-8842-4111-8133-815350976f00.15a403d2d95c15afe36fe434b26b6449.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (846043395, 'Fresh Peruvian Grown Green Grapes', 1.98, '', 'short description is not available', 'Fresh Peruvian Grown Green Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (846497577, 'Fresh Red Plums, 2lb', 4.88, '', 'Discover the delightful sweetness of Red Plums. Enjoy them on their own as a sweet snack or use them in a variety of recipes. For breakfast, you could slice them to put into your oatmeal or use them to make a delicious yogurt parfait. You can also use these juicy plums in several baking recipes including a comforting crisp topped with ice cream, a tasty upside-down cake, or a scrumptious tart. You can even use them to make a jam or a smooth sorbet. However you choose to use them, their sweet flavor will bring a smile to everyone\'s face. Treat the family to the irresistible taste of Plums.', 'Sweet and juicy plums Enjoy on their own as a satisfying snack Use in a variety of baking recipes Make a tasty jam or a smooth sorbet Ideal snack to take to work or on a road trip', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (846738137, 'Colored Bell Pepper 4pk', 3.4, '699058001468', 'short description is not available', 'Colored Bell Pepper 4pk', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (847280484, 'Marketside Beyond Spring Mix Salad, 4 oz Clam Shell, Fresh', 3.73, '194346001460', 'Enjoy the fresh flavor of Marketside Beyond Spring Mix. These greens are indoor and vertically grown for peak-season freshness all year long. Indoor vertical farms are a controlled growing environment giving each plant the optimal amount of light and nutrients for fresh and flavorful produce any time of the year. Farming vertically means our produce can be grown using significantly less water and land than traditional outdoor farms. Create something delicious with Marketside Beyond Spring Mix. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Beyond Spring Mix, 4 oz: Baby spinach, baby romaine, baby leaf lettuce, baby red lettuce (ingredients may vary) Indoor and vertically grown for peak-season freshness all year long No pesticides, herbicides or fungicides applied to our greens Convenient peel and reseal packaging Keep refrigerated until ready to enjoy', 'Marketside Beyond', 'https://i5.walmartimages.com/asr/a173d1b6-1555-4c6a-8253-b6a6b25f0ad6.d29cdfdf95332ac94fb0e2fb033c2ceb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a173d1b6-1555-4c6a-8253-b6a6b25f0ad6.d29cdfdf95332ac94fb0e2fb033c2ceb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a173d1b6-1555-4c6a-8253-b6a6b25f0ad6.d29cdfdf95332ac94fb0e2fb033c2ceb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (847423512, '180pc Apple Gala 3#', 768.6, '405665840303', 'short description is not available', '180pc Apple Gala 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (847471282, 'Baker Farms Turnip Greens, 1lb, Bagged, Fresh', 2.94, 'deleted_813098020016', 'Baker Farms Kale Greens, 1LB, Bagged, Fresh', 'Baker Farms Kale Greens 1# Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0062d184-6bbf-4347-8c63-da4465ff1d60.41a154d23162231348e0be50e95ef471.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0062d184-6bbf-4347-8c63-da4465ff1d60.41a154d23162231348e0be50e95ef471.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0062d184-6bbf-4347-8c63-da4465ff1d60.41a154d23162231348e0be50e95ef471.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (848312911, 'Comets Fresh Yellow Grape Tomato, 10 oz Package', 2.98, '751666950054', 'Make snack time or salads even brighter with fresh NatureSweet Comets. The vibrant yellow color isn’t the only thing that makes these grape tomatoes so special. They’re also sweeter and less acidic than their popular red siblings. Plus, with the same signature Raised Right qualities of other NatureSweet goods, the same stellar satisfaction extends to whatever dish you choose to incorporate Comets into.', 'Wholesome, versatile, and delicious Colorful tomatoes with citrusy, floral notes Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Fresh produce in a convenient package Store at room temperature for best results', 'NatureSweet', 'https://i5.walmartimages.com/asr/e4adf34f-13f2-46cf-a614-a99708679d79.3d06234188bcf2c909a3331e055ccbec.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4adf34f-13f2-46cf-a614-a99708679d79.3d06234188bcf2c909a3331e055ccbec.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4adf34f-13f2-46cf-a614-a99708679d79.3d06234188bcf2c909a3331e055ccbec.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (848345995, 'Dole Dole Salad Kit, 1 ea', 3.63, '071430000724', 'KIT CH SUNFLWR 27.2Z', '', 'Dole', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (848709845, 'Fresh Black Mission Figs, 8 oz', 4.56, '045255148152', 'Dramatically dark and sinfully sweet, Black Mission Figs taste as good with your morning yogurt as they do for dessert. Sweet yet mild, mellow yet rich, Black Mission Figs deserve their reputation as the most consistently delicious fresh fig available. While they have a flavor all their own, the taste could be described as a mix of strawberry, melon, and banana flavors, with a pleasantly jammy, creamy texture. These figs can be enjoyed just as they are, or prepared and cooked. They make an excellent addition to cheese platters and are a welcome addition to salads with spicy greens. You can even stuff the figs with cheese or ham, or slice them up and include them in grilled cheese sandwiches. However you choose to enjoy them, Black Mission Figs are a decadent addition to your collection of fresh, fruity ingredients.', 'Fresh Black Mission Figs, 8 oz 8-ounce container of fresh Black Mission Figs Excellent flavor addition to a wide variety of recipes from baked goods to hot sandwiches Smell fresh and are fairly soft Ripen at room temperature or refrigerate for a few days Figs may also be sealed in a plastic bag and frozen for up to six months', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1ad789ba-9aca-4d91-be2c-23e55994af0a.ed124cd0103bfeef4a2189bc7ba15e39.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1ad789ba-9aca-4d91-be2c-23e55994af0a.ed124cd0103bfeef4a2189bc7ba15e39.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1ad789ba-9aca-4d91-be2c-23e55994af0a.ed124cd0103bfeef4a2189bc7ba15e39.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (849145846, 'Org Tomato Grapes', 4.97, 'deleted_854758002263', 'short description is not available', 'Org Tomato Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (849208334, 'AVO BAG 10/5 48 MXGF', 3.28, 'deleted_850758006607', 'Avocados aren’t just great-tasting fresh produce, but they are a nutrient-dense food enjoyed around the world. Because of the creamy texture and mild flavor of Hass avocados, they are a versatile ingredient that can be used in many different types of recipes and dishes. Not only are our jumbo avocado a great ingredient to use in numerous ways, but it is also a healthy food that contributes unsaturated “good” fats and almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9. Jumbo ripe avocados will have dark green to nearly black skin color, a bumpy skin texture and should yield to gentle pressure without leaving indentations or feeling mushy. Avocados with a slightly bumpy texture should be ripe in 1 to 2 days. They will also be somewhat firm and have a dark green and black speckled color. You’ll be ready to enjoy tasty avocados on their own or as part of a salad, fresh guacamole, taco, burrito or avocado toast. The possibilities are deliciously endless.', 'Large Avocado 5 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (849600095, 'Manzana Gala, 3 Lb.', 7.58, '741839040033', 'Manzana Gala, 3 Lb.', 'Manzana Gala Organic Artisan 12/3', 'Stemilt', 'https://i5.walmartimages.com/asr/f46d4fa7-6108-4450-a610-cc95a1ca28c5_3.38c2c5b2f003a0aafa618f3b4dc3cbbd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f46d4fa7-6108-4450-a610-cc95a1ca28c5_3.38c2c5b2f003a0aafa618f3b4dc3cbbd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f46d4fa7-6108-4450-a610-cc95a1ca28c5_3.38c2c5b2f003a0aafa618f3b4dc3cbbd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (849804189, '5# Bag Grapefruit', 6.48, 'deleted_073150133188', 'short description is not available', '5# Bag Grapefruit', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (849857180, 'California Grown Peaches, per Pound', 1.58, '400094008805', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (849923449, 'Freshness Guaranteed Watermelon Small', 4.97, '262819000002', 'Experience a burst of summertime goodness with this delicious Freshness Guaranteed Watermelon. This pre-cut ripe watermelon is juicy, sweet, and refreshing to the taste. In addition, watermelons are a great natural source of vitamins A and C. Carry them with you and eat them straight out of the tray any time you want, at home, or on-the-go. Pair them with a tasty salad or sandwich for a nutritious and delicious lunch. You can also use them as a naturally sweet ingredient in a fruit salad. Add some fresh fruit to your daily menu with this Freshness Guaranteed Watermelon.Freshness Guaranteed provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Watermelon, 10 oz: Pre-cut watermelon chunks Convenient take-and-go packaging Good source of vitamins A and C No preservatives, artificial colors or artificial flavors Perfect for your next backyard cookout Net weight: 10 oz Sweet and Juicy', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (849996714, 'Bowery Farming Spring Mix Salad Blend, 8 oz Clam Shell, Fresh', 4.48, '851536007571', 'Spring Mix is a classic, sweet, and zesty salad blend. It\'s perfect in a wrap or as a beautiful, fresh salad.Bowery Farming grows positively tasty, fresh produce in a cleaner, more sustainable way: in local, indoor smart farms. Every Bowery leaf is grown and handled with care, without pesticides. Bowery\'s smart farms use less water & create less waste on less land. Because Bowery\'s farms are local, you can trust that your produce is freshly harvested, picked at peak freshness 365 days a year, and available on shelf in just a few days.', 'Bowery Farming Spring Mix Pesticide-Free, Locally Grown Salad Greens, 8oz: 100% Pesticide-free 100% Locally grown 100% Fully traceable Indoor-grown Protected Produce Clean & ready to eat Non-GMO Project Verified Recycled Packaging', 'Bowery Farming', 'https://i5.walmartimages.com/asr/a2572fc2-fd2c-4fa8-a876-d82cd5908010.709450ff2912f4ba549255de122e1e82.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a2572fc2-fd2c-4fa8-a876-d82cd5908010.709450ff2912f4ba549255de122e1e82.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a2572fc2-fd2c-4fa8-a876-d82cd5908010.709450ff2912f4ba549255de122e1e82.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (850195782, 'Large Bagged Oranges', 7.14, 'deleted_033383122076', 'short description is not available', 'Large Bagged Oranges', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (850257155, 'Tomatillos', 1.68, 'deleted_812181022173', 'short description is not available', 'Tomatillos', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (850585483, 'California Grown Peaches, per Pound', 1.58, '400094032442', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (851641814, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094342923', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (851997049, 'California Grown Peaches, per Pound', 1.58, '405530113051', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (852338655, 'Fresh Cosmic Crisp Apples, 3 lb Bag', 4.57, '033383005263', 'Meet your new favorite apple, the Cosmic Crisp. Cosmic Crisp Apples are prized for their vibrant red color, pearl-colored flesh, perfectly balanced flavor and delightfully crisp texture. An excellent choice for baking, snacking and entertaining, Cosmic Crisp Apples are the delicious result of 20 years of research by Washington State University’s world-class tree fruit breeding program. The Cosmic Crisps is a cross of the Enterprise and Honeycrisp varieties. The large, juicy and red apple has a perfectly balanced flavor and firm texture, making it ideal for snacking, cooking, baking, and entertaining. The striking color and shape of the Cosmic Crisp shines in fresh decor like wreaths, floral arrangements and tablescapes', 'Cosmic Crisp Apples Cross of the Enterprise and Honeycrisp varieties Large, juicy and red apple has a perfectly balanced flavor and firm texture Ideal for snacking, cooking, baking, and entertaining Shines in fresh decor like wreaths, floral arrangements and tablescapes Cosmic Crisp Apples Cross of the Enterprise and Honeycrisp varieties Large, juicy and red apple has a perfectly balanced flavor and firm texture Ideal for snacking, cooking, baking, and entertaining Shines in fresh decor like wreaths, floral arrangements and tablescapes Make a creamy smoothie or a nutritious juice blend Perfect as a healthy treat or seasonal baking ingredient Great for packing in lunches Make a creamy smoothie or a nutritious juice blend Adds flavor to a variety of recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/dbd3a99b-88f0-43f2-b7de-89385d103111.f1bdf2065b438c94c8f1a6038e3b9b6f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dbd3a99b-88f0-43f2-b7de-89385d103111.f1bdf2065b438c94c8f1a6038e3b9b6f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dbd3a99b-88f0-43f2-b7de-89385d103111.f1bdf2065b438c94c8f1a6038e3b9b6f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (852830012, 'Red Potatoes, 5 Lb.', 5.47, '811857021151', 'Red Potatoes, 5 Lb.', 'Red Potatoes 5 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (853202863, 'Marketside Mandarin Oranges, 7 oz', 1.97, '681131161404', 'Marketside Mandarin Oranges are peeled and soaked in an extra light syrup to lock in all their delicious fruit flavors. These tasty citrus fruit segments are perfect for fruit cocktails, desserts, salads and can also be used as a garnish for meat and vegetable dishes. Enjoy them chilled for a refreshing snack that you can enjoy any time of the day. They also offer a nutritional benefit as they are a rich source of vitamin C. These slices come in a ready-to-eat cup making it easy to enjoy your favorite fruit on the go. Enjoy a healthy and delicious snack with the wholesome taste of Marketside Mandarin Oranges. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Mandarin Oranges, 7 oz Fresh Mandarin oranges in extra light syrup High in vitamin C Ready-to-eat fruit Plastic cup Kosher', 'Marketside', 'https://i5.walmartimages.com/asr/b4ce9135-fedc-4a16-bbd8-4527e38ae85c.a66f248662a3f7730ddffccdf95c8ecf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b4ce9135-fedc-4a16-bbd8-4527e38ae85c.a66f248662a3f7730ddffccdf95c8ecf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b4ce9135-fedc-4a16-bbd8-4527e38ae85c.a66f248662a3f7730ddffccdf95c8ecf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (853852874, '500lb Cabbage Green', 340, '400094630457', 'short description is not available', '500lb Cabbage Green', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (854272832, 'Fresh Strawberries 1#', 1.56, '400094383070', 'short description is not available', 'Fresh Strawberries 1#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (854405750, 'Tastee Testee Jelly Apples', 5.97, '035266000143', 'Tastee’s original and iconic Jelly Apple With Coconut, at just three ounces, are the perfect, “any time” snack. The all-time favorite flavor Plain Caramel contains less sugar and more fiber than a 6 oz. Greek yogurt, so go for it!', 'Tastee Testee Jelly Apples', 'Tastee', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (854713104, 'Family Sweet Kale Chopped Salad Kit', 4.78, '709351303265', 'Have a restaurant-inspired meal with the Eat Smart Sweet Kale Vegetable Salad Kit. This delicious, nutritious product contains no artificial colors, flavors or preservatives. This Eat Smart Vegetable Salad Kit is 100% clean and free from gluten. The combination of ingredients makes a unique side dish or main course. The bag includes: broccoli, cabbage, Brussels sprouts, kale, chicory, dried cranberries, roasted pumpkin seeds and a poppyseed dressing.', 'Eat Smart Sweet Kale Vegetable Salad Kit, 20oz: Contains 7 super foods. All Ingredients come in the bag. Just toss and serve. 100% gluten free salad.', 'EatSmart', 'https://i5.walmartimages.com/asr/2607d47a-b64b-4875-a6a1-9db78d3daeb7_1.a4dd76c23863680dcd1a6c5808b759ff.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2607d47a-b64b-4875-a6a1-9db78d3daeb7_1.a4dd76c23863680dcd1a6c5808b759ff.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2607d47a-b64b-4875-a6a1-9db78d3daeb7_1.a4dd76c23863680dcd1a6c5808b759ff.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (854838280, 'Fresh Seedless Lemons, 2 lb Bag', 5.48, '072240546792', 'These Seedless Lemons are juicy, zesty, naturally seedless, and Non-GMO Project Verified. They\'re everything you love about lemons, minus the pesky little seeds. These lemons can add a twist to a wide variety of recipes. Slice them and use them in your iced or hot tea or use the lemon juice to make satisfying and refreshing strawberry lemonade. Zest the lemon peel to use in recipes such as lemon cookies or a tasty lemon loaf. You can also use lemons in savory recipes like asparagus with lemon zest or shrimp scampi with linguini. Enhance the flavor of your next meal with these Seedless Lemons.', 'Naturally seedless lemons Use to add zest and flavor to your meals and beverages Add to your iced or hot tea Make a satisfying and refreshing strawberry lemonade Use lemon zest to make lemon cookies or lemon loaf Non-GMO Project verified Available in a 2-pound bag', 'Wonderful', 'https://i5.walmartimages.com/asr/b5cc869b-1322-4e0c-8c56-219116bec46d.0cbc93f437d454590b3624cbfc658575.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b5cc869b-1322-4e0c-8c56-219116bec46d.0cbc93f437d454590b3624cbfc658575.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b5cc869b-1322-4e0c-8c56-219116bec46d.0cbc93f437d454590b3624cbfc658575.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (855094216, 'Fresh Baby Eggplant Graffiti', 3, '000000061841', 'Indulge in the tender goodness of our Fresh Baby Eggplant, a delightful and versatile ingredient perfect for a variety of culinary creations. These miniature eggplants boast a delicate, slightly sweet flavor and a smooth, creamy texture when cooked. Ideal for grilling, roasting, or sautéing, our Fresh Baby Eggplant is a delicious addition to any dish, from Mediterranean-inspired recipes to modern fusion cuisine. Elevate your meals with the charming taste and versatility of our Fresh Baby Eggplant.', 'Baby Eggplant Graffiti Indulge in the tender goodness of our Fresh Baby Eggplant, a delightful and versatile ingredient perfect for a variety of culinary creations. These miniature eggplants boast a delicate, slightly sweet flavor and a smooth, creamy texture when cooked. Ideal for grilling, roasting, or sautéing, our Fresh Baby Eggplant is a delicious addition to any dish, from Mediterranean-inspired recipes to modern fusion cuisine. Elevate your meals with the charming taste and versatility of our Fresh Baby Eggplant.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4407273d-3c18-4211-bd6c-eee2431fe42d.9e86007798b9e1876292002966d63ef4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4407273d-3c18-4211-bd6c-eee2431fe42d.9e86007798b9e1876292002966d63ef4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4407273d-3c18-4211-bd6c-eee2431fe42d.9e86007798b9e1876292002966d63ef4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (855358511, 'Yellow Flesh Peaches, per Pound', 1.58, '400094931585', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (855391604, 'Green Giant Fresh Sweet Potatoes', 2.98, '605806000799', 'Green Giant™ Fresh Sweet Potatoes.Steams in pack.Net Wt 340 g (12 oz). Keep refrigerated.Microwave Directions:1. Tear bag at notch.2. Open pouch and run under cold water to rinse Sweet Potatoes. Drain water from pouch. Reseal pouch leaving about 1 inch open. Microwave on high for 3 minutes, or until desired tenderness.Because microwaves cook differently, times are approximate.Caution: Hot! Pouch may be hot to the touch. Let stand 1 minute in microwave before removing.Fresh Serving Suggestions:Toss Sweet Potatoes with olive oil, season with herbs and roast alongside quartered onions at 350°F for 25-30 minutes.Boil Sweet Potatoes in chicken stock with onions, celery, cinnamon and nutmeg. When tender, puree and season to taste for a simple Sweet Potato soup.Season Sweet Potatoes with olive oil, brown sugar, cumin and chili powder. Roast at 425°F for 15 minutes or until golden and tender for a sweet & crispy side dish.Roast Sweet Potatoes until tender, then puree with butter, cream, salt and smoked paprika.', 'Green Giant Fresh Sweet Potatoes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/01821dfc-1536-4c86-92dd-856dd820d280_1.ddcb9258867726f04cca9c03e12c1ed3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/01821dfc-1536-4c86-92dd-856dd820d280_1.ddcb9258867726f04cca9c03e12c1ed3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/01821dfc-1536-4c86-92dd-856dd820d280_1.ddcb9258867726f04cca9c03e12c1ed3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (856105480, 'California Grown Saturn Peaches, per Pound', 3.68, 'deleted_400094523636', 'California Grown Saturn Peaches, per Pound', 'Fresh California Grown Saturn Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (856212772, 'Black Seedless Grapes, 24 oz', 7.58, '850859002218', 'Seedless Black Grapes, 24 Oz.', 'Black Seedless Grapes 24 Oz Bag', 'Unbranded', 'https://i5.walmartimages.com/asr/ade17cfd-b528-426e-a4e8-1744cd837766.971df50b9d7a3b0325702e7ad6e46907.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ade17cfd-b528-426e-a4e8-1744cd837766.971df50b9d7a3b0325702e7ad6e46907.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ade17cfd-b528-426e-a4e8-1744cd837766.971df50b9d7a3b0325702e7ad6e46907.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (856581293, 'Freshness Guaranteed Fresh Red Seedless Grapes', 2.08, '', 'short description is not available', 'Freshness Guaranteed Fresh Red Seedless Grapes', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (857621442, 'Organic Zucchini Squash', 2.96, 'deleted_741243003013', 'short description is not available', 'Organic Zucchini Squash', 'Wholesum', 'https://i5.walmartimages.com/asr/b1504219-1aef-41ce-908d-f36b65081e3e.3f2b9fe975f53f7f1353954d0da707dd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b1504219-1aef-41ce-908d-f36b65081e3e.3f2b9fe975f53f7f1353954d0da707dd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b1504219-1aef-41ce-908d-f36b65081e3e.3f2b9fe975f53f7f1353954d0da707dd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (857639234, 'Dried Chili Peppers Habanero, 0.25 Oz.', 2.98, '803944303592', 'Dried Chili Peppers Habanero, 0.25 Oz.', 'Dried Chili Peppers Habanero .25 Oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (857833523, 'Pineapple', 1.93, 'deleted_040232315381', 'short description is not available', 'Pineapple', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/05b0e603-2da8-4f56-8b29-f601607c87bc_2.fa0b08084ecd4a30fdd10804c516b7d0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/05b0e603-2da8-4f56-8b29-f601607c87bc_2.fa0b08084ecd4a30fdd10804c516b7d0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/05b0e603-2da8-4f56-8b29-f601607c87bc_2.fa0b08084ecd4a30fdd10804c516b7d0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (858081917, 'Fresh Produce Gala Apples, 3 lb, 1 Bag', 4.67, 'deleted_033383027715', 'Savor the sweet taste of Fresh Gala Apples. Gala apples are sweet and mild with a subtle floral aroma making them perfect for breakfast, lunch, dinner, and dessert. Perfect for snacking, they have a creamy white flesh with low acidity.', 'Sweet and mild with a subtle floral aroma Perfect for breakfast, lunch, dinner, and dessert Chop them up and add to a salad, add them to a smoothie or juice blend, or serve with peanut butter Perfect for snacking They have a creamy white flesh with low acidity', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e97d7a3f-ed34-4801-aafd-a7008550d36b_2.876fc609cfa3a382b2c033a63d49c14b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e97d7a3f-ed34-4801-aafd-a7008550d36b_2.876fc609cfa3a382b2c033a63d49c14b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e97d7a3f-ed34-4801-aafd-a7008550d36b_2.876fc609cfa3a382b2c033a63d49c14b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (858152946, 'Yellow Flesh Peaches, per Pound', 1.58, '405522034258', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (858635214, 'Rooster Potatoes 3lb Bag', 3.47, '852883004534', 'short description is not available', 'Rooster Potatoes 3lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (859093910, 'Freshness Guaranteed Whole Brown Mushrooms 16oz', 4.12, 'deleted_699058820090', 'short description is not available', 'Freshness Guaranteed Whole Brown Mushrooms 16oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (859130867, 'Marketside Fresh Cut Pineapple, 42 oz Tray', 9.76, '681131180436', 'Experience a burst of tropical flavors with these Marketside Pineapple Chunks. The pre-cut slices of ripe pineapple are juicy and sweet to taste and are packed in its own juice. Carry them with you and eat them straight out of the tray any time you want, at home or on-the-go. You can also use them to top desserts and ice creams, in a fruit salad or blend them with milk to make milkshakes. Pineapples are known to have a number of nutrients, and they are especially rich in vitamin C. Add some fresh fruits to your daily menu today with these Marketside Pineapple Chunks. Marketside provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Marketside item.', 'Marketside Pineapple 42 oz Comes in a re-closable container to help maintain freshness Great for breakfast, lunch, dessert, or when you want a snack No preservatives, artificial colors or artificial flavors Convenient and portable Share with friends and family or keep for yourself Make a fruit bowl topped with whipped cream or a yogurt parfait Enjoy on their own or in a variety of recipes', 'Marketside', 'https://i5.walmartimages.com/asr/bd2c5c34-9a6e-4902-a333-5b6dc2237ac7.d6e4755eb5c9a46aa7ea6e384613d42e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd2c5c34-9a6e-4902-a333-5b6dc2237ac7.d6e4755eb5c9a46aa7ea6e384613d42e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd2c5c34-9a6e-4902-a333-5b6dc2237ac7.d6e4755eb5c9a46aa7ea6e384613d42e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (859271120, 'Watermelon Seedless', 4.48, '400094982266', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (859381982, 'Organic Celery Stalk, 1 Each', 1.76, 'deleted_000651961026', 'Organic Celery Stalk, 1 Each', 'Organic Celery Stalk', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/aa37bf64-01b7-41d4-9944-b5157cd9d3c6_1.33e90f5dcb8f56e1272ae1dba43df1c9.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa37bf64-01b7-41d4-9944-b5157cd9d3c6_1.33e90f5dcb8f56e1272ae1dba43df1c9.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa37bf64-01b7-41d4-9944-b5157cd9d3c6_1.33e90f5dcb8f56e1272ae1dba43df1c9.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (859650002, 'Fresh Ginger Gold Apples, 5 lb Bag', 4.92, '033383081199', 'Fresh Gingerold Apples are a must-try! Our apples are a perfect blend of sweet and tangy with a hint of fresh ginger. These crunchy and juicy apples are handpicked and carefully sorted to ensure that you receive the best quality fruits. Whether you eat them as a snack or bake them into a pie, Fresh Gingerold apples are sure to please. Get your hands on some today and enjoy the taste of fall!', 'The Ginger Gold Apples have a crisp and juicy texture with a sweet and slightly tart flavor. They are great for eating fresh, adding to salads, or using in baking recipes. The 5 lb Tote provides a convenient and cost-effective way to stock up on these delicious apples. Listed apple varieties are rich in fiber, vitamins, and antioxidants, making them a healthy snacking option. They are also versatile and can be used in a variety of recipes, from sweet to savory. Whether you prefer the sweet and tart flavor of Ginger Gold Apples or the firm and sweet taste of Fuji Apples, both varieties offer a delicious and nutritious addition to your diet.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5c436c4d-b5b8-460a-b97a-edcc20aff82e.a93306a739823ab62381f90cf3603516.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5c436c4d-b5b8-460a-b97a-edcc20aff82e.a93306a739823ab62381f90cf3603516.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5c436c4d-b5b8-460a-b97a-edcc20aff82e.a93306a739823ab62381f90cf3603516.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (859787049, 'Organic Red Cherries, 2 Lb.', 6.38, '741839710028', 'Organic Red Cherries, 2 Lb.', 'Org Red Cherry 2#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (859820630, 'Dole Chop Bbq Salad Kit 13 Oz', 3.63, '714300002984', 'short description is not available', 'Dole Chop Bbq Salad Kit 13 Oz', 'Dole', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (859912890, 'Fresh Pineapple, Each', 0.88, '405856552992', 'Enjoy a burst of tropical flavor with this Fresh Pineapple. This pineapple can be a satisfying afternoon snack, or you can use it in a variety of recipes. For breakfast, use this pineapple to make a rich and creamy smoothie or serve it alongside your pancakes, sausage, and eggs. Slice it up and use to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. For dessert, you could make a crowd-pleasing pineapple upside down cake or a comforting pineapple crisp. However you choose to use it, this Fresh Pineapple will add flavor to any meal or beverage', 'Vitamin C, manganese, and enzymes Help aid digestion May help boost immunity Improve recovery time after surgery.', 'Unbranded', 'https://i5.walmartimages.com/asr/69b654bd-ddf8-4b42-a5e7-33e18476ecc8.941d1fcffe38ec5d8ae15049efab7087.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/69b654bd-ddf8-4b42-a5e7-33e18476ecc8.941d1fcffe38ec5d8ae15049efab7087.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/69b654bd-ddf8-4b42-a5e7-33e18476ecc8.941d1fcffe38ec5d8ae15049efab7087.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (860235046, 'Cocktail Tomatoes', 2.98, '684924010361', 'short description is not available', 'Cocktail Tomatoes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (860295588, 'Fresh Red Seedless Grapes', 1.84, 'deleted_841139100021', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (860389090, 'Grape Tomatoes', 2.48, '405565638062', 'short description is not available', 'Grape Tomatoes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (860517834, '200pc Apple Gala 3#', 854, '405667988676', 'short description is not available', '200pc Apple Gala 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (860584306, 'Grown True Organic Fresh Roma Tomatoes, 16 oz', 2.46, '891824002413', 'Grown True Organic Fresh Roma Tomatoes are a great beginning to your next homecooked meal. An excellent ingredient for use in a wide variety of dishes, Roma tomatoes are versatile and can lend themselves to just about any recipe your cookbook suggests. You can use them to create a zesty tomato sauce for stirring into a homemade pasta dish, crush them up to make a delightful Roma tomato bruschetta, or simply enjoy them on their own as a nutritious snack or as a party platter option for dipping in your favorite vegetable dipping sauce. If you\'re feeling a classic tomato dish, Roma tomatoes can even lend themselves in making a comforting and appetizing tomato soup or a flavorful salsa. Experience the best of nature with these Grown True Organic Fresh Roma Tomatoes.', 'Grown True Organic Fresh Roma Tomatoes, 16 oz: USDA Organic Roma tomatoes Ideal ingredient for a variety of dishes Perfect for making zesty tomato sauces Enjoyable as a nutritious snack Excellent for homemade salsa', 'Grown True', 'https://i5.walmartimages.com/asr/278b1ac3-a58c-4751-b956-a0d9191c1f7b_2.eafdc16c3e1439337a2b45546dd458d7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/278b1ac3-a58c-4751-b956-a0d9191c1f7b_2.eafdc16c3e1439337a2b45546dd458d7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/278b1ac3-a58c-4751-b956-a0d9191c1f7b_2.eafdc16c3e1439337a2b45546dd458d7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (860610820, 'Red Seedless Grapes, per lb', 1.84, 'deleted_840437100382', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (860788341, 'Zucchini, 2 Pack', 1.57, '711069541150', 'Add some fresh flavor to your meal with Zucchini. This versatile vegetable can be used in a variety of dishes to create delicious and decadent meals. This nutrient dense vegetable is great in soups, casseroles, pot roasts and other tasty recipes. Slice it up and enjoy with baby carrots and ranch dressing for a healthy snack. Season with fresh chopped garlic, saute and serve with grilled chicken breast and roasted carrots. Spiralize it and saute for a great pasta replacement. Or shred it for mouth-watering breads and muffins. It is great for health-conscious individuals as they are USDA organic and rich in vitamin C, B-6, and calcium. With so many uses, this vegetable will become a pantry staple. Create tasty and flavorful meals with Zucchini.', 'Zucchini, 2 Pack: Versatile ingredient Slice it up and enjoy with baby carrots and ranch dressing for a healthy snack Great in soups, casseroles, pot roasts and other tasty recipes Rich in vitamin C, calcium, and vitamin B-6 Will become a pantry staple', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f88083d5-3c6e-4a75-8833-3faf3ded2af6_1.a626c3d41931d5fbc6eaf8d7513cbee7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f88083d5-3c6e-4a75-8833-3faf3ded2af6_1.a626c3d41931d5fbc6eaf8d7513cbee7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f88083d5-3c6e-4a75-8833-3faf3ded2af6_1.a626c3d41931d5fbc6eaf8d7513cbee7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (860891845, 'California Grown Peaches, per Pound', 1.58, '400094419113', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (861168074, 'Fresh Red Seedless Grapes', 1.88, 'deleted_841139100038', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (861438471, 'Marketside Organic Fresh Broccoli Florets, 12 oz', 3.77, '681131161565', 'Marketside Fresh Organic Broccoli Florets are a nutritious and versatile vegetable you can enjoy with a variety of meals. Season them with olive oil, garlic, salt, and black pepper and roast them in the oven for a delightful side dish. Cut the florets into small pieces and mix with purple cabbage and shredded carrots for a yummy broccoli slaw. Each serving contains just 30 calories and has zero fat, cholesterol, and added sugars. Whether you enjoy them roasted, fried, blanched, or steamed, Marketside Organic Broccoli Florets are an excellent addition to any meal. Marketside Organic foods are simple, wholesome and USDA certified.', 'USDA certified organic Flavorful, Authentic. Guaranteed Delicious.™ Microwaves in only 3 minutes 30 calories per serving 0g total fat, cholesterol, and added sugars 4 servings per container 12oz bag of fresh, washed and ready-to-eat broccoli florets', 'Marketside', 'https://i5.walmartimages.com/asr/6741ff9c-8f77-42e8-8f4a-56c31eaad6c6.565a0b4438c11d26d74ec10fb78123ca.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6741ff9c-8f77-42e8-8f4a-56c31eaad6c6.565a0b4438c11d26d74ec10fb78123ca.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6741ff9c-8f77-42e8-8f4a-56c31eaad6c6.565a0b4438c11d26d74ec10fb78123ca.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (861773879, 'Jonathan Apples, 5 lb bag', 4.92, '033383084114', 'short description is not available', 'Jonathan Apples 5 Lb Bag', 'Unbranded', 'https://i5.walmartimages.com/asr/ad78197a-0337-42e3-94f7-334356e2b66b.3e77de565fd023c55040dc3c623810d9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ad78197a-0337-42e3-94f7-334356e2b66b.3e77de565fd023c55040dc3c623810d9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ad78197a-0337-42e3-94f7-334356e2b66b.3e77de565fd023c55040dc3c623810d9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (862488411, 'Services Reduced Program Dept 94', 0.01, '251681000005', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (862619405, 'Dole Organic Baby Sprig Mix 5 Oz', 2.66, '071430846254', 'Dole Spring Mix Orgnc 5 oz', 'Organic Spring Mix', 'Dole', 'https://i5.walmartimages.com/asr/9c36b768-c173-4cf3-8fc0-9e7a798ff959.dca659fb438fed6cf1c542e9424cc40e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9c36b768-c173-4cf3-8fc0-9e7a798ff959.dca659fb438fed6cf1c542e9424cc40e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9c36b768-c173-4cf3-8fc0-9e7a798ff959.dca659fb438fed6cf1c542e9424cc40e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (863305125, 'Strawberry and \'Corn', 3.28, '000000030878', 'Strawberry and \'Corn', 'Hypermart Strawberry Corn', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (863371738, 'Green Seedless Grapes, per lb', 2.88, '400094351321', 'short description is not available', 'Fresh Green Seedless Grapes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e3493b51-d859-4499-8a4f-985e8a281558.ec2345597c4287be07085da9c7d01d62.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e3493b51-d859-4499-8a4f-985e8a281558.ec2345597c4287be07085da9c7d01d62.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e3493b51-d859-4499-8a4f-985e8a281558.ec2345597c4287be07085da9c7d01d62.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (863624941, 'SupHerb Fresh Specialty Onion Green Vegetables, 8 Ounce - 4 per case.', 70.52, '080731166626', 'Fresh Frozen Onion Green 4/8oz.', 'SupHerb Fresh Specialty Onion Green Vegetables, 8 Ounce - 4 per case.', 'SupHerb Farms', 'https://i5.walmartimages.com/asr/be0b7453-7efc-43eb-ab32-a0a3a26e223a.2e8086c99f4bb060dae2582408387fe8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/be0b7453-7efc-43eb-ab32-a0a3a26e223a.2e8086c99f4bb060dae2582408387fe8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/be0b7453-7efc-43eb-ab32-a0a3a26e223a.2e8086c99f4bb060dae2582408387fe8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (863769738, 'Yellow Flesh Peaches, per Pound', 1.58, '400094137949', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (864367975, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094018972', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (864822126, 'Watermelon Seedless', 4.98, '405503698752', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (865504035, '50pc Apple Koru Bulk', 88.5, '405745238952', 'short description is not available', '50pc Apple Koru Bulk', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (866051914, 'Butternut Squash', 1.18, '850489008192', 'Butternut Squash', 'Butternut Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (866216206, 'Pineapple Chunks 15 Oz', 3.97, '795631802108', 'short description is not available', 'Pineapple Chunks 15 Oz', 'Crazy Fresh', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (866700739, 'Russet Potatoes 5 Lb Bag', 3.96, 'deleted_041130700002', 'short description is not available', 'Russet Potatoes 5 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (866748621, 'Cara Cara Oranges, 3 lb Bag', 4.74, 'deleted_092148146290', 'Enjoy the fresh sweetness of Cara Cara Oranges. These pink-fleshed oranges are very sweet and have a lower acidity than Navel oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite adult beverage. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Cara Cara Oranges add flavor to any meal or beverage.', 'Cara Cara Oranges, 3 lb Bag: Great source of vitamin C Pink-fleshed citrus fruit with a very sweet flavor & low acidity Use to add zest & flavor to your meals & beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast Adds flavor to a variety of recipes Use as a garnish for your favorite adult beverage Make sweet desserts like ambrosia, orange bars & orange pie', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7ed5a1fe-890f-49db-979f-7b84db887725_1.527f0dfe8b4f993948ab1f69612ea269.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7ed5a1fe-890f-49db-979f-7b84db887725_1.527f0dfe8b4f993948ab1f69612ea269.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7ed5a1fe-890f-49db-979f-7b84db887725_1.527f0dfe8b4f993948ab1f69612ea269.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (867007979, 'Tri Pepper Diced 7 Oz', 2.58, '302230227562', 'short description is not available', 'Tri Pepper Diced 7 Oz', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (867582492, 'Large Avocado 3 Count Bag', 39, '', 'short description is not available', 'Large Avocado 3 Count Bag', 'Walmart', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (867949278, 'Fieldpack Unbranded Fresh Strawberries 1#', 2.62, 'deleted_853447003390', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0ea46b14-8b92-4ea1-837a-b596d943765e.eafd5c2499865066412ae752b533d9bc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ea46b14-8b92-4ea1-837a-b596d943765e.eafd5c2499865066412ae752b533d9bc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ea46b14-8b92-4ea1-837a-b596d943765e.eafd5c2499865066412ae752b533d9bc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (868241761, 'Microwave in Bag Steamer Yellow Potatoes, per Lb.', 1.97, '033383004778', 'Microwave in Bag Steamer Yellow Potatoes, per Lb.', 'Microwave In Bag Yellow Potato', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (868823571, 'Fresh Limes, 2lb Bag', 4.98, 'deleted_744430275620', 'Add zest and flavor to your meals and beverages with these Limes. Freshly squeezed limes provide a healthy dose of vitamin C to your diet and are a key ingredient in many recipes, from homemade salsa to chicken dishes. The citrusy tropical flavor of these limes are sure to add a zing to all your cooked meals. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use them when baking cakes, cookies, and tarts. These limes are sold in a two-pound bag, so you\'ll have plenty for all your culinary creations. Enjoy the refreshing, tart flavor of Limes.', 'Fresh and juicy limes Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies, and tarts Refreshing, tart flavor Seedless', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/dfd60266-c675-4e8a-ae71-257f27bb9984.5df7ac1421edf06ea6618d8d4425adb5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dfd60266-c675-4e8a-ae71-257f27bb9984.5df7ac1421edf06ea6618d8d4425adb5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dfd60266-c675-4e8a-ae71-257f27bb9984.5df7ac1421edf06ea6618d8d4425adb5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (868871229, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094009093', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (869258442, 'Marketside Apple Blue Pecan Salad 4.8oz', 3.27, '681131160858', 'short description is not available', 'Marketside Apple Blue Pecan Salad 4.8oz', 'Marketside', 'https://i5.walmartimages.com/asr/48abf579-ea81-45fb-bc85-a99efa1ea811.d2ff0d1f317dab85fbece56665f0409f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/48abf579-ea81-45fb-bc85-a99efa1ea811.d2ff0d1f317dab85fbece56665f0409f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/48abf579-ea81-45fb-bc85-a99efa1ea811.d2ff0d1f317dab85fbece56665f0409f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (869368850, 'Diced Tri Color Pepper Bagged 7oz', 2.58, '643550000603', 'short description is not available', 'Diced Tri Color Pepper Bagged 7oz', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (869961239, '150pc Pto Rst 5# Wa', 490.5, '405508134927', 'short description is not available', '150pc Pto Rst 5# Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (870677386, 'Fresh Tangerine, Each', 0.44, '846189044493', 'Enjoy the juicy goodness of citrus when you eat a Fresh Tangerine. Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Among the smallest fruits in the orange family, tangerines have a pleasing sweet-tart flavor and are typically seedless. Generally a winter fruit, tangerines are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the tangerines hang out in a bowl on your counter or table to breathe. Compact and portable, tangerines are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious Fresh Tangerines on hand for an easy, healthy treat.', 'Fresh Tangerine, Each Fresh, delicious, tangerine Pleasing sweet-tart flavor Excellent source of vitamin C, potassium, and folic acid For maximum flavor, do not refrigerate Typically seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6b9ea942-4548-4d7e-a2fe-b2c8c8b66a25.04a1152f2e89f7692a98bf2f004bd772.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6b9ea942-4548-4d7e-a2fe-b2c8c8b66a25.04a1152f2e89f7692a98bf2f004bd772.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6b9ea942-4548-4d7e-a2fe-b2c8c8b66a25.04a1152f2e89f7692a98bf2f004bd772.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (870866429, '120pc Apl Mactosh 5#', 590.4, '400094944462', 'short description is not available', 'Fpp 5# Mactosh 120', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (870898685, 'Mag Melon Cantaloupe, Each', 2.88, 'deleted_717524410085', 'Enjoy a sweet treat when you choose a MAG.nificient Melon Cantaloupe. Grown specifically with consumers\' needs in mind, the MAG.nificent Melon has a more pleasant and concentrated aroma compared to traditional cantaloupes. The melon can be identified by its rich golden outer shell and the juicy inner flesh of the fruit offers consumers a source of fiber, vitamin C, and carotene. The higher Brix content, which includes the amount of sugars, vitamins, minerals, proteins, and other solids, creates an extra sweet flavor for a more delightful tasting cantaloupe. Additionally, the MAG.nificent Melon was developed to have a smaller seed cavity, which provides consumers with more enjoyable fruit and value per melon. Enjoy the delicious taste of fresh cantaloupe with a MAG.nificent Melon Cantaloupe.', 'MAG.nficent Melon Cantaloupe Grown specifically with consumers\' needs in mind More pleasant and concentrated aroma compared to traditional cantaloupes Juicy inner flesh offers a source of fiber, vitamin C, and carotene', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a95d970d-4945-4a70-ae78-07f7d895caa2_1.424ee201a6cd27d3c5fa7181ac4421ef.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a95d970d-4945-4a70-ae78-07f7d895caa2_1.424ee201a6cd27d3c5fa7181ac4421ef.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a95d970d-4945-4a70-ae78-07f7d895caa2_1.424ee201a6cd27d3c5fa7181ac4421ef.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (871213146, 'Yellow Flesh Peaches, per Pound', 1.58, '405506835567', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (871214007, 'Large Avocado 3 Count Bag', 4.48, 'deleted_850758006393', 'short description is not available', 'Large Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (871741879, 'Freshness Guaranteed Watermelon 10 Oz', 3.48, 'deleted_681131036658', 'short description is not available', 'Freshness Guaranteed Watermelon 10 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (871850011, 'Avocado 4 Ct Bag', 6.97, 'deleted_636442480058', 'short description is not available', 'Large Avocado 4 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (872227632, 'Fresh Lemons, 2 lb Bag', 3.92, 'deleted_605049551331', 'Add zest and flavor to your meals and beverages with these fresh Lemons. A great source of vitamin C, lemons are a staple citrus fruit essential for any kitchen. Slice them and use them in your iced or hot tea or use the lemon juice to make satisfying and refreshing strawberry lemonade. Zest the lemon peel to use in recipes such as lemon cookies or a tasty lemon loaf. You can also use lemons in savory recipes like asparagus with lemon zest or shrimp scampi with linguini. Enhance the flavor of your next meal with fresh Lemons.', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Add to your iced or hot tea Make a satisfying and refreshing strawberry lemonade Use lemon zest to make lemon cookies or lemon loaf Adds flavor to a variety or recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/03038099-488e-4089-9289-df46ee43fe7a.55fc8dfe15cdf98e017420d5cd6b61e3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/03038099-488e-4089-9289-df46ee43fe7a.55fc8dfe15cdf98e017420d5cd6b61e3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/03038099-488e-4089-9289-df46ee43fe7a.55fc8dfe15cdf98e017420d5cd6b61e3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (872428720, 'Fieldpack Unbranded Mixed Bell Pepper 3 Pack', 3.37, 'deleted_813155020980', 'short description is not available', 'Fieldpack Unbranded Mixed Bell Pepper 3 Pack', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (872901864, '200pc Pto Red 5# Id', 1094, '405515325912', 'short description is not available', '200pc Pto Red 5# Id', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (873080295, 'Watermelon Seedless', 4.48, '400094985281', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (873883574, 'Premium Red Grape Tomato, 16 oz', 4.98, 'deleted_884051050814', 'Bring the fresh, delicious taste of Grape Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this package of Grape Tomatoes.', 'Premium Red Grape Tomatoes 1 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (874178965, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094346709', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (874179580, 'Fresh California Grown Red Grapes', 1.72, '', 'short description is not available', 'Fresh California Grown Red Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/895d03c9-285d-4bd4-b57d-4c9698a58ef3_2.f5230e016b3af9d9a7a3cab970c8df88.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/895d03c9-285d-4bd4-b57d-4c9698a58ef3_2.f5230e016b3af9d9a7a3cab970c8df88.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/895d03c9-285d-4bd4-b57d-4c9698a58ef3_2.f5230e016b3af9d9a7a3cab970c8df88.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (874689889, '1# Bag Limes', 2.97, '813155021000', 'short description is not available', '1# Bag Limes', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (874726772, '180pc Apple Gala 3#', 561.6, '405665856373', 'short description is not available', '180pc Apple Gala 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (875164963, 'Tasteful Selections Sunburst Blend 2-Bite Baby Potatoes 24oz', 3.58, 'deleted_826088526108', 'The union of two of our two most popular varieties has created this great potato offering, Sunburst Blend™ potatoes! Creamy textures and tender skins create this blend’s flavor fusion that will satisfy your household. These baby potatoes are packed with nutritional powers including Vitamin C, B6, Iron, Protein and provide more Potassium than a banana. Baby potatoes are a whole food, naturally gluten-free, high in fiber and rich in minerals with no additives or GMOs. Because they aren’t refined or have sugar added, they are a complex carbohydrate (good carbs) that is absorbed slowly into the body and keeps you feeling fuller longer with energy to burn.', 'Pre-Washed to save you time in the kitchen No need to peel-Thin skinned but NOT thin on taste! Fast, Easy Prep For additional information and recipes, visit tastefulselections.com', 'Tasteful Selections', 'https://i5.walmartimages.com/asr/9c47daae-856a-4b7f-9158-0105865a102e.0ef1ce7e7655070245814231133626df.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9c47daae-856a-4b7f-9158-0105865a102e.0ef1ce7e7655070245814231133626df.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9c47daae-856a-4b7f-9158-0105865a102e.0ef1ce7e7655070245814231133626df.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (875573688, 'Duda Farm Fresh Foods Dandy Celery Sticks, 1 lb', 2.98, '073150152011', 'Celery Sticks 1 lb (454 g) No waste. All natural. Preservative free. Gluten free. Fruits & veggies, more matters. www.dudafresh.com. Get ideas and share yours! Twitter - At Dandy_Fresh. Facebook - Dandy Fresh Fruits and Vegetables. For recipes & tips text celery to 99000. Produce of USA. Keep refrigerated. 1 lb (454 g) Oviedo, FL 32765', 'Celery Sticks No waste. All natural. Preservative free. Gluten free. Fruits & veggies, more matters. www.dudafresh.com. Get ideas and share yours! Twitter - At Dandy_Fresh. Facebook - Dandy Fresh Fruits and Vegetables. For recipes & tips text celery to 99000. Produce of USA.', 'Duda Farm Fresh Foods', 'https://i5.walmartimages.com/asr/6498690f-f05d-46ec-9739-db3de30a126d.0bb148b5ac34351f15b1cc7ba7de7f33.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6498690f-f05d-46ec-9739-db3de30a126d.0bb148b5ac34351f15b1cc7ba7de7f33.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6498690f-f05d-46ec-9739-db3de30a126d.0bb148b5ac34351f15b1cc7ba7de7f33.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (875707062, 'Fresh Grape Red Globe, Bag', 2.17, '405767277083', 'Treat yourself to the delicious, juicy flavor of Fresh Green Seedless Grapes. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the fresh taste of Fresh Green Seedless Grapes.', 'Fresh Red Globe Seeded Grapes Bag Bursting with flavor and known for their large size Enjoy a handful as a fresh snack Add to a stunning cheese board or charcuterie plate Dry them to make raisins', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ef792e1b-5d00-4bdf-954c-34f14e8bc325.96dcbb55011e69c157a4b3999ae80cdd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ef792e1b-5d00-4bdf-954c-34f14e8bc325.96dcbb55011e69c157a4b3999ae80cdd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ef792e1b-5d00-4bdf-954c-34f14e8bc325.96dcbb55011e69c157a4b3999ae80cdd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (875729202, 'Sweet Onions, each', 0.86, 'deleted_813682015688', 'short description is not available', 'Bulk Sweet Onions', 'Fresh Produce', 'https://i5.walmartimages.com/asr/20e2cec5-74da-4481-ba2f-437a37f574a0_1.58a77675997b6e7da785398e536c8c1a.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20e2cec5-74da-4481-ba2f-437a37f574a0_1.58a77675997b6e7da785398e536c8c1a.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20e2cec5-74da-4481-ba2f-437a37f574a0_1.58a77675997b6e7da785398e536c8c1a.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (876015309, '200pc Pto Idaho 5#', 794, '405500368887', 'short description is not available', '200pc Pto Idaho 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (876369860, 'Freshness Guaranteed Chipotle Guacamole, 8 oz', 2.98, '681131305259', 'Turn up the smokiness with Freshness Guaranteed Chipotle Guacamole. This tasty guacamole features a creamy combination of Hass Avocados, chipotle peppers, jalapeno peppers, onions, and zesty mix of herbs and spices to ensure a mouth full of flavor in every bite. Add a dollop to your quesadillas, burgers, burritos, and sandwiches for a taste that will have you coming back for seconds. With 8 servings per container, this guacamole is perfect for serving up at small gatherings, barbecues, and game nights with family and friends. Plus, the inclusion of the reclosable lid in the packaging helps maintain its freshness between snack sessions. Scoop up some flavor with Freshness Guaranteed Chipotle Guacamole. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Spark Fresh Item.', 'Freshness Guaranteed Chipotle Guacamole, 8 oz: Smokey flavor profile 8 servings per container Pairs perfectly with chips Delicious as a spread on wraps, sandwiches, and toast', 'Fresh Produce', 'https://i5.walmartimages.com/asr/24f3afbc-7ff4-4506-a902-d3c69f9cdd15_1.32162f3e120eb765342a87f5f7d8b39c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24f3afbc-7ff4-4506-a902-d3c69f9cdd15_1.32162f3e120eb765342a87f5f7d8b39c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24f3afbc-7ff4-4506-a902-d3c69f9cdd15_1.32162f3e120eb765342a87f5f7d8b39c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (876768778, 'Fresh Saturn Peach, 1.3 lb Container', 4.34, '000000031134', 'Treat everyone to the sweet taste of Fresh California Grown Saturn Peaches. Also known as donut peaches, this fruit is great to hand out to the kids as a tasty after-school snack. Add these peaches to a fruit salad to serve at your next party or to a delectable salad as a sweet topping. Serve them with cheese, salami, and almonds for a wonderful picnic cheese plate. You could also slice them to top your yogurt and granola for a healthy breakfast, or even make a tasty peach crumble dessert for your next dinner party. The culinary opportunities are endless with Fresh California Grown Saturn Peaches.', 'Fresh California Grown Saturn Peaches: Also known as donut peaches because of their unique shape Sweet and juicy Hand out to the kids as a tasty after-school snack Use to make a delicious fruit salad Slice and use top your yogurt and granola for a healthy breakfast', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5ccffb25-de52-4c58-b33d-1e8303b758b5.291871104347784b221ee737f9f7dd58.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5ccffb25-de52-4c58-b33d-1e8303b758b5.291871104347784b221ee737f9f7dd58.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5ccffb25-de52-4c58-b33d-1e8303b758b5.291871104347784b221ee737f9f7dd58.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (877050540, 'Fieldpack Unbranded Org Rainbow Chard 5oz', 4.88, '028764001712', 'short description is not available', 'Fieldpack Unbranded Org Rainbow Chard 5oz', 'FIELDPACK UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (877224146, 'Marketside Fresh Celery Sticks, 1.6 oz, 4 Pack', 1.97, '681131161510', 'Marketside Celery Sticks are a tasty and smart snack that you can enjoy any time of the day. Celery is a low calorie snack that is also a good source of fiber, calcium and potassium. These celery sticks come in a ready-to-eat package making it easy to enjoy on the go for you and your kids. Pair with peanut butter for a delicious, protein-rich snack or dip in your favorite dressing for quick, flavorful treat. Keep this plastic package refrigerated for a cool, refreshing taste. Enjoy a refreshing snack with the wholesome taste of Marketside Celery Sticks. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Fresh Celery Sticks, 1.6 oz, 4 Pack 4 pack of celery sticks Pair with peanut butter for a delicious, protein-rich snack or dip in your favorite dressing for quick, flavorful treat Good source of fiber Only 5 calories per pack Packaged in a 6.4 oz plastic bag', 'Marketside', 'https://i5.walmartimages.com/asr/090a5a24-e3be-4728-964b-57952404b359.1f02ca476740e5e2d70e0e31dc28058f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/090a5a24-e3be-4728-964b-57952404b359.1f02ca476740e5e2d70e0e31dc28058f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/090a5a24-e3be-4728-964b-57952404b359.1f02ca476740e5e2d70e0e31dc28058f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (877306194, 'Tomatoes On The Vine Per Lb', 2.48, '405569812864', 'short description is not available', 'Tomatoes On The Vine Per Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (877334089, 'Pink Cripps Apples 5 Lb Bag', 5.29, '847473005930', 'short description is not available', 'Pink Cripps Apples 5 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (877603885, '180pc Pto Rst 10# Rp', 1074.6, '400094860762', 'short description is not available', '180pc Pto Rst 10# Rp', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (877755984, 'Fairytale Pumpkin, 1 Each', 8.98, '000000048477', 'Fairytale Pumpkin, 1 Each', 'Fairytale Pumpkin', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (877873370, 'Watermelon Seedless', 5.68, '400094579435', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (877981011, 'Jalapeno Peppers Half Pint Clamshell', 1.78, '813055013457', 'short description is not available', 'Jalapeno Peppers Half Pint Clamshell', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (878055805, 'Ruby Frost Apples 2 Lb Bag', 4.97, '863046000119', 'short description is not available', 'Snap Dragon Ruby Frost Apples 2 Lb Bag', 'Snap Dragon', 'https://i5.walmartimages.com/asr/c9dc9ba1-a552-4d1f-9b6d-aece5ce9c5f8.400805bfd55af71ecdbfd00d3e4f4f16.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c9dc9ba1-a552-4d1f-9b6d-aece5ce9c5f8.400805bfd55af71ecdbfd00d3e4f4f16.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c9dc9ba1-a552-4d1f-9b6d-aece5ce9c5f8.400805bfd55af71ecdbfd00d3e4f4f16.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (878377860, 'Fresh Grown Yellow Nectarines, 1 Lb.', 2.38, 'deleted_845792040366', 'Yellow Nectarines- PLU 4036', 'Fresh Grown Yellow Nectarines', 'Farm2You', 'https://i5.walmartimages.com/asr/b55a583a-8ba0-4ec5-a8d9-163f4110fb46_1.86473738179987a06a016888c0bf6da9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b55a583a-8ba0-4ec5-a8d9-163f4110fb46_1.86473738179987a06a016888c0bf6da9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b55a583a-8ba0-4ec5-a8d9-163f4110fb46_1.86473738179987a06a016888c0bf6da9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (878447739, 'Key West Pimiento Cubanelle Peppers', 0.23, '860046000163', 'Key West Pimiento, 22 Lb.', 'Key West Pimiento Cubanelle Peppers', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/e9c77d66-9802-4715-8fc0-d9bcfbb3ab22.7aa27787324d0f9686e033b5a4334590.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9c77d66-9802-4715-8fc0-d9bcfbb3ab22.7aa27787324d0f9686e033b5a4334590.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9c77d66-9802-4715-8fc0-d9bcfbb3ab22.7aa27787324d0f9686e033b5a4334590.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (878535075, 'Serrano Peppers', 2.54, '812181022180', 'short description is not available', 'Serrano Peppers', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (878576025, 'Produce Unbranded Red Bell Pepper, 1 Each', 1.38, 'deleted_856977005292', 'Enhance your meals with the delicious flavor of Red Bell Peppers. This vegetable contains essential vitamins such as A and C, and minerals including calcium and magnesium. Red bell pepper, also known as red capsicum, has a crisp flavor that enhances a variety of recipes. Dice bell peppers and put them in a hearty chili, slice them, saute them with onions or stir-fry with thinly-sliced steak and serve with rice. A hollowed-out red bell pepper can be filled with sausage, mushrooms and rice to create a delicious stuffed pepper that will have the family asking for seconds. They also taste delicious raw alongside other vegetables. Add your favorite dip for a healthy, crunchy crudite. Cooked or uncooked, Red Bell Peppers are an excellent item to have on hand.', 'Red Bell Pepper, 1 each: Naturally low in calories Exceptionally rich in vitamin C and other antioxidants Delicious cooked or uncooked Create delicious recipes with fresh red peppers', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/4f92e5bb-3fc7-4894-9fac-11af41bfb025.69c58e1f4a487c78f9684a3050ca8d0a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4f92e5bb-3fc7-4894-9fac-11af41bfb025.69c58e1f4a487c78f9684a3050ca8d0a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4f92e5bb-3fc7-4894-9fac-11af41bfb025.69c58e1f4a487c78f9684a3050ca8d0a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (878779585, 'Kanzi Apples 2 Lb Bag', 4.44, '847473004599', 'short description is not available', 'Kanzi Apples 2 Lb Bag', 'KANZI', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (878846683, 'Watermelon Seedless', 4.48, '400094373279', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (879052740, 'Services Reduced Program Dept 94', 0.03, '251682000004', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (879166444, 'Marketside Beyond Baby Spinach & Spring Mix Salad, 4 oz Clam Shell, Fresh', 3.73, '194346001491', 'Enjoy the fresh flavor of Marketside Beyond Baby Spinach and Spring Mix. These greens are indoor and vertically grown for peak-season freshness all year long. Indoor vertical farms are a controlled growing environment giving each plant the optimal amount of light and nutrients for fresh and flavorful produce any time of the year. Farming vertically means our produce can be grown using significantly less water and land than traditional outdoor farms. Create something delicious with Marketside Beyond Baby Spinach and Spring Mix. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Beyond Baby Spinach & Spring Mix, 4 oz: Baby spinach, baby romaine, baby leaf lettuce, baby red lettuce (ingredients may vary) Indoor and vertically grown for peak-season freshness all year long No pesticides, herbicides or fungicides applied to our greens Convenient peel and reseal packaging Keep refrigerated until ready to enjoy', 'Marketside Beyond', 'https://i5.walmartimages.com/asr/5b194752-285e-41fb-a852-b6b7b07550a5.3da6a678067e8e34fbc6b1a6faa29a80.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5b194752-285e-41fb-a852-b6b7b07550a5.3da6a678067e8e34fbc6b1a6faa29a80.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5b194752-285e-41fb-a852-b6b7b07550a5.3da6a678067e8e34fbc6b1a6faa29a80.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (879252399, 'Melocotones 2lb', 4.88, '', 'short description is not available', 'Melocotones 2lb', 'Unbranded', 'https://i5.walmartimages.com/asr/ec224b9a-aa1f-4506-835d-758d692733c5.89ffd50e19d294a579a9b9d12aabffd5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec224b9a-aa1f-4506-835d-758d692733c5.89ffd50e19d294a579a9b9d12aabffd5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec224b9a-aa1f-4506-835d-758d692733c5.89ffd50e19d294a579a9b9d12aabffd5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (879720857, 'Acorn Squash', 1.18, '095829555398', 'short description is not available', 'Acorn Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/42805330-9346-4dd4-9362-9b71d0491d13.47ac454488713e49f4a0d82c51449b00.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42805330-9346-4dd4-9362-9b71d0491d13.47ac454488713e49f4a0d82c51449b00.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42805330-9346-4dd4-9362-9b71d0491d13.47ac454488713e49f4a0d82c51449b00.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (881396026, '125pc Pto Rst Jmb 8#', 721.25, '405720426985', 'short description is not available', '125pc Pto Rst Jmb 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (881490672, 'Plum, Each', 0.5, '405753578101', 'short description is not available', 'Plum, Each', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (881951659, 'Broccoli Florets 8z', 2.48, '782796025213', 'short description is not available', 'Broccoli Florets 8z', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (882217355, 'Red Potatoes, 3 Lb.', 3.47, 'deleted_033383510019', 'Red Potatoes, 3 Lb.', 'Red Potatoes 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (882446465, 'Fresh Kokomo Grapes, 1 Lb', 3.48, '854957001241', 'short description is not available', 'Fresh Kokomo Grapes, 1 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (882558704, 'Sweet Potatoes 3 Lb Bag', 2.88, 'deleted_854811008003', 'short description is not available', 'Sweet Potatoes 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/01c537ea-5b71-4040-89c3-a81c294d0bfd_2.c6f3f5e9c0e397e1b9352a2f992e65f9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/01c537ea-5b71-4040-89c3-a81c294d0bfd_2.c6f3f5e9c0e397e1b9352a2f992e65f9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/01c537ea-5b71-4040-89c3-a81c294d0bfd_2.c6f3f5e9c0e397e1b9352a2f992e65f9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (882644365, 'Tasteful Selection Sea Salt & Herb Org Tray 16oz 2 bites potatoes', 5.97, '826088989026', 'Our Micro Tray is all about convenience – this kit contains organic, fresh baby potatoes and an expertly blended organic seasoning packet. Health, freshness and convenience ready in minutes! Is Low calories, Non-GMO, Gluten Free, Source of Potassium. Ingredients: Organic Potatoes, Sea Salt, Organic Parsley, Organic Paprika, Organic Black Pepper, Organic Rosemary, Organic Thyme, Organic Sunflower Oil, Organic Garlic Oil.', 'Gluten Free NON-GMO Source of Potassium Organic Low in Calories', 'Tasteful Selection', 'https://i5.walmartimages.com/asr/daa90e73-74a3-4d9a-b627-0c687e1ce93b.6d8089c01bad8723f9671411bf0dbbd3.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/daa90e73-74a3-4d9a-b627-0c687e1ce93b.6d8089c01bad8723f9671411bf0dbbd3.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/daa90e73-74a3-4d9a-b627-0c687e1ce93b.6d8089c01bad8723f9671411bf0dbbd3.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (882820944, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094988862', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (882876417, 'Yellow Flesh Peaches, per Pound', 1.58, '400094273371', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (883508064, 'Rainier Cherries, Half Pint', 2.98, '888289403671', 'Rainier Cherries, Half Pint', 'Rainier Cherries 1/2 Dry Pint', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (883640849, 'Fresh Cosmic Crisp Apples, Each', 0.94, '000000035071', 'Meet your new favorite apple, the Cosmic Crisp. Cosmic Crisp Apples are prized for their vibrant red color, pearl-colored flesh, perfectly balanced flavor and delightfully crisp texture. An excellent choice for baking, snacking and entertaining, Cosmic Crisp Apples are the delicious result of 20 years of research by Washington State University’s world-class tree fruit breeding program. The Cosmic Crisps is a cross of the Enterprise and Honeycrisp varieties. The large, juicy and red apple has a perfectly balanced flavor and firm texture, making it ideal for snacking, cooking, baking, and entertaining. The striking color and shape of the Cosmic Crisp shines in fresh decor like wreaths, floral arrangements and tablescapes.', 'Apple Cosmic Crisp, Each Cross of the Enterprise and Honeycrisp varieties Large, juicy and red apple has a perfectly balanced flavor and firm texture Ideal for snacking, cooking, baking, and entertaining Shines in fresh decor like wreaths, floral arrangements and tablescapes Adds flavor to a variety of recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6e8284d0-ba2f-497a-92c1-705aac4f63d1.8b2619781e5d3318cab2bf21805b9741.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6e8284d0-ba2f-497a-92c1-705aac4f63d1.8b2619781e5d3318cab2bf21805b9741.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6e8284d0-ba2f-497a-92c1-705aac4f63d1.8b2619781e5d3318cab2bf21805b9741.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (883971287, 'Mother Earth Products Crunchy Seedless Red Grape Halves, 2 Cup Jar', 7.98, '810919034504', 'Mother Earth Products Freeze Dried Red Grape Halves (Seedless): a healthy & convenient addition to every area of your life without the headache: emergency preparedness, snacking, long and short term storage, traveling, everyday cooking, hiking, backpacking, spicing up your recipes, etc. – use it now or later. Mother Earth Products Freeze Dried Red Grape Halves (Seedless) are made with real, Non-GMO Red Grapes: preservative free, additive free, & kosher - a guilt-free, hearty food that makes eating wonderfully delectable & appealing, without the hassle of weekly trips to the store or the worry of spoiling. It’s so delicious you won’t store it away and hope you never have to use it. Taste the Goodness of Mother Earth Products.', '100% red grapes; long term storage; short term storage; pantry; portable; convenient; nothing added; emergency preparedness; great flavor; easy to cook with; can eat straight from container without reconstituting; snack on immediately', 'Mother Earth Products', 'https://i5.walmartimages.com/asr/1cd0b4ed-cd9e-4dec-b7b8-a08cf168faad.38222b539f1cc9bba28743db6f3f51ed.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1cd0b4ed-cd9e-4dec-b7b8-a08cf168faad.38222b539f1cc9bba28743db6f3f51ed.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1cd0b4ed-cd9e-4dec-b7b8-a08cf168faad.38222b539f1cc9bba28743db6f3f51ed.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (885019162, 'Marketside Chopped Bacon Bleu Salad Bowl, 7.5 Oz.', 2.98, '681131160919', 'Marketside Chopped Bacon Bleu Salad Bowl, 7.5 Oz.', 'Marketside Salad Bowl Chopped Bacon Bleu 7.5 Oz.', 'Marketside', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (885064063, 'Fresh Jumbo Blueberries, 9.5oz', 4.98, '', 'Create decadent meals with sweet and light Fresh Blueberries. Enjoy them for breakfast, lunch, dinner, or dessert. Use them to make a lemon and blueberry galette, bake them into delicious blueberry muffins, cook up a sweet and savory pizza topped with blueberries and bacon, or reduce them for a sauce to use on grilled chicken or cheesecake. They contain essential vitamins and nutrients like, vitamin C, vitamin K, antioxidants, and manganese making them perfect for a healthy diet', 'Light, refreshing taste Healthy treat Prior to serving gently wash them with cool water Refrigerate your berries in the original container to maintain freshness', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (885125828, 'Satsuma, 3lb bag', 3.76, 'deleted_000195001011', 'Tangerines, Bag 3 LB', 'Satsuma, 3lb bag', 'Rivers Best', 'https://i5.walmartimages.com/asr/13f5550d-3930-45fa-8ae3-ebbb44c02bb7_1.fb1d7db9e65406f92a2aa5b6df6a03da.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13f5550d-3930-45fa-8ae3-ebbb44c02bb7_1.fb1d7db9e65406f92a2aa5b6df6a03da.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13f5550d-3930-45fa-8ae3-ebbb44c02bb7_1.fb1d7db9e65406f92a2aa5b6df6a03da.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (885551930, 'Freshness Guaranteed Fajita Mix, 8 oz', 2.88, '681131093026', 'Freshness Guaranteed Fajita Mix brings together crisp yellow onions, green bell peppers, and red bell peppers that are sliced and ready to add vibrant flavor to your favorite meals. This colorful blend offers a convenient way to prepare quick weeknight dinners, whether you are making sizzling stovetop fajitas, layering veggies into tacos, or adding fresh taste to salads and rice bowls. Each ingredient is prepped to save you time while still delivering a satisfying crunch and natural sweetness that enhances every bite. With its versatile use and fresh taste, Freshness Guaranteed Fajita Mix makes it simple to enjoy delicious meals with ease. Freshness Guaranteed Fajita Mix helps you create flavorful dishes your whole family will love. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Fajita Mix, 8 oz Pre sliced mix of yellow onions and bell peppers Ready to use for quick meal prep Great for fajitas, tacos, salads, and rice bowls Adds fresh flavor and crisp texture to dishes Convenient eight ounce portion size', 'Fresh Produce', 'https://i5.walmartimages.com/asr/61196911-adfa-41d2-8d51-f7aabe3f890e.2950ffd58d31f5b945df797ee6960a3b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/61196911-adfa-41d2-8d51-f7aabe3f890e.2950ffd58d31f5b945df797ee6960a3b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/61196911-adfa-41d2-8d51-f7aabe3f890e.2950ffd58d31f5b945df797ee6960a3b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (885660123, 'Services Reduced Program Dept 94', 0.01, '251860000000', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (886107948, '100 Calorie Skinny Potatoes, 3 Lb.', 1.5, '760314010101', '100 Calorie Skinny Potatoes, 3 Lb.', '100 Cal Skinny Potatoes 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (886635855, 'Yellow Flesh Peaches, per Pound', 1.58, '400094343272', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (886962116, 'Fresh Passion Fruit, Each', 2.74, '405655340523', 'Get ready for a tropical taste bomb with this juicy Fresh Passion Fruit. This fresh and whole fruit has a hard purple shell protecting the bright yellow interior with black seeds. Cut the fruit in half, scoop the pulp out with a spoon and enjoy. If it\'s too tart, try sprinkling sugar to sweeten the treat. You can also use this fresh passion fruit in several baking recipes including a delicious cream pie or fruit truffles. You can even use them to make a marinade or a passion fruit vinaigrette. However you choose to use them, their sweet flavor will bring a smile to everyone\'s face. Treat the family to the irresistible taste of Fresh Passion Fruit.', 'Fresh Passion Fruit, Each Sweet and juicy Fresh and whole fruit with a hard purple shell Scoop the pulp out with a spoon and enjoy Use to make a delicious cream pie or fruit truffles Make a marinade or a passion fruit vinaigrette salad dressing', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f74ab571-6ff0-4784-877d-37200a1c3d84.7743cedecfeafb038f3be240bff14bb5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f74ab571-6ff0-4784-877d-37200a1c3d84.7743cedecfeafb038f3be240bff14bb5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f74ab571-6ff0-4784-877d-37200a1c3d84.7743cedecfeafb038f3be240bff14bb5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (887064557, 'Organic Whole White Mushrooms, 16 oz', 4.94, 'deleted_037102281419', 'Experience the fresh taste of Organic Whole White Mushrooms. If you\'re looking for a traditional mushroom with a mild earthy taste, white mushrooms are just what you need. They\'ve remained the most popular mushroom for several decades, and although all mushrooms are versatile, white mushrooms are the most versatile of them all. Pre-cleaned and in their whole form, they are perfect for slicing, dicing, and cutting however you like to create culinary works all your own. They are free of fat and cholesterol and are low in calories and sodium. Plus, mushrooms are a natural source of the antioxidant selenium, making them an excellent addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try out Organic Whole White Mushrooms.', 'Organic Whole White Mushrooms, 16 oz: 16-ounce package of organic whole white mushrooms Naturally fat-free Cholesterol-free Low in calories, carbs and sodium Fresh and all natural Natural source of the antioxidant selenium Great for salads, pizzas, and much more', 'Monterey', 'https://i5.walmartimages.com/asr/d1646df2-1733-46b0-875a-4c3904c55eab.56c455cc7999bc321eafcef945330e53.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d1646df2-1733-46b0-875a-4c3904c55eab.56c455cc7999bc321eafcef945330e53.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d1646df2-1733-46b0-875a-4c3904c55eab.56c455cc7999bc321eafcef945330e53.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (887082105, 'Fresh Juici Apple, Each', 1.06, '000000034678', 'Fresh Juici Apple is a refreshing and crisp apple variety known for its juicy and sweet flavor. Each apple is carefully selected and handpicked to ensure maximum freshness and quality. With a bright, vibrant red skin and a delightful crunch, Fresh Juici Apple is the perfect snack or ingredient to add a burst of natural sweetness to any dish. Whether enjoyed on its own or used in desserts, salads, or smoothies, each Fresh Juici Apple promises a satisfying and mouthwatering experience.', 'Fresh, whole, juicy and sweet apple Exceptional Juiciness: Juici Apples are known for their exceptional juiciness, providing a refreshing and satisfying eating experience. With every bite, you can enjoy the burst of natural juice that runs down your chin, making them perfect for quenching your thirst or satisfying a craving for something juicy and delicious Crisp Texture: Juici Apples have a crisp and firm texture that adds to their overall appeal. Whether you prefer biting into a crunchy apple or slicing it for a crisp addition to salads or desserts, Juici Apples maintain their texture and freshness, ensuring a delightful eating experience every time. Sweet and Tangy Flavor: Juici Apples offer a perfect balance of sweetness and tanginess, making them a popular choice for apple lovers. The natural sweetness is complemented by a subtle tang, creating a flavor profile that is both refreshing and satisfying. Whether eaten on their own or used in various culinary creations, Juici Apples bring a burst of flavor to every dish.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e83cfb54-40f6-433a-8f3a-5e11af4bdc93.49ba5b028ba589a44e3f8e9d4541e6d8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e83cfb54-40f6-433a-8f3a-5e11af4bdc93.49ba5b028ba589a44e3f8e9d4541e6d8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e83cfb54-40f6-433a-8f3a-5e11af4bdc93.49ba5b028ba589a44e3f8e9d4541e6d8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (887737552, 'Fresh Green Beans', 1.68, '846764007912', 'short description is not available', 'Fresh Green Beans', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1a37a01a-9421-40d2-a9f9-15eeab602903_3.aa9b18d1a89c21ecce44e5def855d938.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a37a01a-9421-40d2-a9f9-15eeab602903_3.aa9b18d1a89c21ecce44e5def855d938.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a37a01a-9421-40d2-a9f9-15eeab602903_3.aa9b18d1a89c21ecce44e5def855d938.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (887852760, 'Aerofarms Kale Microgreens Salad, 2 oz Clam Shell, Fresh', 3.98, '815063021233', 'Sweet and wholesome, AeroFarms kale microgreens are tender, mild, and a versatile recipe staple. Our Micro Kale falls in the light blue portion of the AeroFarms FlavorSpectrum™, representing a slight sweetness with green, mellow notes. Microgreens can contain considerably higher levels of vitamins and carotenoids—about 5X greater—than their mature plant counterparts, according to the United States Department of Agriculture. AeroFarms greens are grown with zero pesticides and are ready to enjoy right out of the container. Taste the AeroFarms difference - enjoy Micro Kale by adding a heaping handful to boost any meal including sandwiches, wraps, soups, salads, smoothies, takeout, and more.', 'Bursting With Flavor No Pesticides Ever No Washing Needed', 'AeroFarms', 'https://i5.walmartimages.com/asr/ed564ed1-22b7-4c5f-bcb3-b12dd66d7b54.4013cd0646ae8b403ba679d138fb3519.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed564ed1-22b7-4c5f-bcb3-b12dd66d7b54.4013cd0646ae8b403ba679d138fb3519.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed564ed1-22b7-4c5f-bcb3-b12dd66d7b54.4013cd0646ae8b403ba679d138fb3519.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (889601050, 'Valley Fruit Pulp Guava Pouch', 4.97, '040232599781', 'Valley Fruit Pulp Guava Pouch', 'Valley Fruit Pulp Guava Pouch', 'VALLEY FRUIT', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (890201414, 'City Farms Baby Kale Clam 4 Oz', 6.43, '850010794044', 'short description is not available', 'City Farms Baby Kale Clam 4 Oz', 'Fresh City Farms', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (890997301, 'Topline Red Sweet Bell Pepper, 1 Each', 1.48, 'deleted_856122001414', 'Enhance your meals with the delicious flavor of Greenhouse grown Red Bell Peppers. Red bell pepper has a crisp flavor that enhances a variety of recipes. Dice bell peppers and put them in a hearty chili, slice them and add to a deli sandwich, saute them with onions and serve on a hoagie roll with a bratwurst, or stir-fry with thinly-sliced steak and serve with rice. A hollowed-out red bell pepper can be filled with sausage, mushrooms and rice to create a delicious stuffed pepper. They also taste delicious raw alongside other vegetables. Red Bell Peppers are an excellent item to have on hand.', 'Naturally low in calories, Exceptionally rich in vitamin C and other antioxidants Delicious cooked or uncooked Create delicious recipes with fresh red peppers', 'Topline', 'https://i5.walmartimages.com/asr/ae41f786-235a-4e11-85e4-a94167855ff2_1.639f373825d8a43561d2a6af551f12b7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ae41f786-235a-4e11-85e4-a94167855ff2_1.639f373825d8a43561d2a6af551f12b7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ae41f786-235a-4e11-85e4-a94167855ff2_1.639f373825d8a43561d2a6af551f12b7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (891543948, 'Organic White Beech Mushrooms, 3.5 oz', 3.98, 'deleted_021706672339', 'Experience the fresh taste of Organic White Beech Mushrooms. Beech mushrooms have a crunchy texture that offers a delicate, mild flavor that is both satisfyingly sweet and nutty. Perfect for soups, stews, sauces, or stir-fry\'s, Beech mushrooms retain their crisp texture when added as the last ingredient. Try sauteeing or roasting them on their own for a delectable side dish. They are free of fat and cholesterol and are low in calories and sodium. Plus, mushrooms are a natural source of the antioxidant selenium, making them an excellent addition to your diet. For a natural ingredient that will bring a marvelous taste and texture to your meal, be sure to try out Organic White Beech Mushrooms.', 'Organic White Beech Mushrooms, 3.5 oz: 3.5-ounce package of organic white Beech mushrooms Delicate, mild flavor that is both satisfyingly sweet and nutty Naturally fat-free Cholesterol-free Low in calories, carbs and sodium Fresh and all natural Natural source of the antioxidant selenium Great for soups, stews, sauces, or stir-fry\'s', 'PRODUCE', 'https://i5.walmartimages.com/asr/23d49ade-ad0e-400a-b275-b3a39e4e816f.2a0faf07104a43c26c0ce17b8f33ad05.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/23d49ade-ad0e-400a-b275-b3a39e4e816f.2a0faf07104a43c26c0ce17b8f33ad05.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/23d49ade-ad0e-400a-b275-b3a39e4e816f.2a0faf07104a43c26c0ce17b8f33ad05.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (892235937, 'Walmart Produce Peeled Apple Slices 5/2 Oz', 3.58, '717524716187', 'short description is not available', 'Walmart Produce Peeled Apple Slices 5/2 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (892287001, 'Fresh Green Seedless Grapes, Bag (2.25 lbs/Bag Est.)', 1.97, 'deleted_850016309006', 'Treat yourself to the delicious, juicy flavor of Fresh Green Seedless Grapes. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the fresh taste of Fresh Green Seedless Grapes.', 'Fresh Green Seedless Grapes Bag Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (892298806, '120pc Apl Red Del 5#', 656.4, '405667991393', 'short description is not available', '120pc Apl Red Del 5#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (892815036, 'Tito Fresh Ground Garlic Ajo Molido 16 oz', 8.99, '026552000206', 'Tito Fresh Ground Garlic ideal for sofrito. The ingredients are: ground garlic, salt, citric acid, and sodium benzoate.', 'Product of Spain Ready to Use 16 oz Jar', 'TiTo', 'https://i5.walmartimages.com/asr/651b27c3-2482-4618-a98c-b023fb360c46.2488a66913f5fc2635bcb2f6a2769f44.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/651b27c3-2482-4618-a98c-b023fb360c46.2488a66913f5fc2635bcb2f6a2769f44.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/651b27c3-2482-4618-a98c-b023fb360c46.2488a66913f5fc2635bcb2f6a2769f44.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (893073648, 'Fresh Blueberries, 6 oz', 3.58, 'deleted_850003027104', 'Fresh Blueberries, 6 oz', 'Glitter Pearly-Lustre Shell Pattern Phone Case For IPhone14/14Plus/14Pro/14ProMax, IPhone13/13Mini/13Pro/13ProMax, IPhone12/12Mini/12Pro/12ProMax, IPhone11/11Pro/11Pro Max ,IPhoneX/XS/XSMax Item id:NH01667Copy Surface Treatment Process:Glossy Feature:Other Material:Silicone', 'Fresh Produce', 'https://i5.walmartimages.com/asr/268303f5-fc97-42aa-918a-196ae1788a89.42916db89075095356dab1ee956330ea.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/268303f5-fc97-42aa-918a-196ae1788a89.42916db89075095356dab1ee956330ea.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/268303f5-fc97-42aa-918a-196ae1788a89.42916db89075095356dab1ee956330ea.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (893092837, 'Bagged Poblano Pepper', 2.64, 'deleted_812181022111', 'short description is not available', 'Bagged Poblano Pepper', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (893124763, 'Fresh Grape Tomato, 4 oz Cup', 3.48, '751666778955', 'Add color and flavor to your next meal with Grape Tomatoes. Similar to larger Roma tomatoes, grape tomatoes have a lower water content than cherry tomatoes, making them meatier, more flavorful, and even a little tidier with every bite. They are hardier and less fragile than a traditional tomato as well, so there\'s no need to worry about bruising either. Perfectly bite-sized, grape tomatoes are not only a simple and delicious addition to salads and pasta, but also serve as a quick and convenient snack all on their own. Plus, grape tomatoes have a longer shelf-life, which means it\'s perfectly fine to keep them in storage for several days at a time. All you have to do is grab and enjoy to experience the class tomato taste of Grape tomatoes.', 'Grape Tomatoes, 3 Pack: Lower water content and longer shelf-life than cherry tomatoes Hardier and more resistant to bruising than traditional tomatoes Conveniently bite-sized Quick and excellent addition to salads and snack trays Best stored at room temperature out of sunlight', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4d9b5b48-29cf-4c7c-8a7c-66fe79ad773f.2ea0e86a9295a70684f4b48b21b4d443.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4d9b5b48-29cf-4c7c-8a7c-66fe79ad773f.2ea0e86a9295a70684f4b48b21b4d443.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4d9b5b48-29cf-4c7c-8a7c-66fe79ad773f.2ea0e86a9295a70684f4b48b21b4d443.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (893193482, 'Organic Microwavable Potatoes, 1 Each', 1.28, '681131180757', 'Organic Microwavable Potatoes, 1 Each', 'Organic Microwavable Potatoes Per Each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cb8a1622-c7f4-421a-ae12-8382baeceeb5_1.137a209ba0a329a5761fabd5687baa6c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb8a1622-c7f4-421a-ae12-8382baeceeb5_1.137a209ba0a329a5761fabd5687baa6c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb8a1622-c7f4-421a-ae12-8382baeceeb5_1.137a209ba0a329a5761fabd5687baa6c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (893452467, '200pc Pto Idaho 5#', 794, '405513948816', 'short description is not available', '200pc Pto Idaho 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (893491711, 'Freshness Guaranteed Fresh Red Seedless Grapes', 2.28, '', 'short description is not available', 'Freshness Guaranteed Fresh Red Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (893900089, 'California Grown Peaches, per Pound', 1.58, '400094858943', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (894756996, 'Green Grapes, per lb', 2.37, 'deleted_812985016118', 'short description is not available', 'Fresh Green Seedless Grapes, per lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a051cac-7566-4a38-a65d-1b1293cf0288_1.9f4661a6a0e78e1981608c78abd1b74a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (895067952, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094155158', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (895086702, 'Taylor Farms® Snack Pack Apples & Peanut Butter 3.8oz', 2.97, '030223060161', 'What\'s sweet savory and has your name written all over it? Our Taylor Farms Apples & Cheese snack tray. With delectable apples sweet carrots premium cheddar cheese and raw packed almonds you will feel like you just went to the local farmer\'s market. Make sure to try Taylor Farms Apples & Cheese snack trays today.', 'Washed and ready to enjoy Perfect snack for all ages Fits perfectly in lunch boxes Easy to pack on-the-go Enjoy at school, work, in the car, outside or anywhere else you need a snack!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b16ad03e-4071-449e-856b-fd4e0f4d65bc.b7e40c81e5645e5a4fc4a79407f0816c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b16ad03e-4071-449e-856b-fd4e0f4d65bc.b7e40c81e5645e5a4fc4a79407f0816c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b16ad03e-4071-449e-856b-fd4e0f4d65bc.b7e40c81e5645e5a4fc4a79407f0816c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (895457715, 'Watermelon Seedless', 4.48, '400094673089', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (895597040, 'Org Red Kale', 1.98, '000000946230', 'short description is not available', 'Org Red Kale', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (895640730, 'Fieldpack Unbranded Fresh Strawberries 2#', 4.74, 'deleted_857889003024', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 2#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/7b731147-acb8-48df-8c43-c711f550bbcc.1096d150f89a6c9bcf2dff7aadc14d51.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7b731147-acb8-48df-8c43-c711f550bbcc.1096d150f89a6c9bcf2dff7aadc14d51.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7b731147-acb8-48df-8c43-c711f550bbcc.1096d150f89a6c9bcf2dff7aadc14d51.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (895861900, '90pc Apple Gala 3#', 280.8, '405666177040', 'short description is not available', '90pc Apple Gala 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (896402409, 'Fieldpack Unbranded Fresh Strawberries 1#', 4.12, '400094377604', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (896696786, 'Natural Delights Gluten-Free Whole Fresh Medjool Dates, 8 Oz', 3.98, '097923000965', 'Natural Delights Whole Medjool Dates 8oz Pouch are Fresh and World\'s finest. They are a great snacking date that are naturally sweet and are perfectly healthy for you. Natural Delights Whole Medjool Dates are good source of fiber with no added sugar. Please go to naturaldelights.com for more great information. These fresh Medjool dates are non-pitted and have no preservatives. Product of USA. Best if refrigerated. Contains pits. May contain nuts.', '8oz Conventional Whole Pouch Premium. 4 grams of fiber. No additives. 281 mg potassium. No pesticides. Non GMO. 50% more potassium than bananas (By weight (USDA nutrient database)). Kosher for Passover. NaturalDelights.com. Great for your Health All Natural Great source of Fiber All Vegan\"', 'Natural Delights', 'https://i5.walmartimages.com/asr/bef6106e-411e-40d0-b12d-ddff67c9f887.d6c8c310df6b77d85e1cf33a15926b4c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bef6106e-411e-40d0-b12d-ddff67c9f887.d6c8c310df6b77d85e1cf33a15926b4c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bef6106e-411e-40d0-b12d-ddff67c9f887.d6c8c310df6b77d85e1cf33a15926b4c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (897186733, 'Freshness Guaranteed Strawberries & Blueberries 14 Oz', 6.97, '681131037150', 'short description is not available', 'Freshness Guaranteed Strawberries & Blueberries 14 Oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/0766f3c3-a2fd-414c-a47f-e14dc8c5c085.5c238a95a3d88c2e270d6780d2dedf2c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0766f3c3-a2fd-414c-a47f-e14dc8c5c085.5c238a95a3d88c2e270d6780d2dedf2c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0766f3c3-a2fd-414c-a47f-e14dc8c5c085.5c238a95a3d88c2e270d6780d2dedf2c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (899828537, '125pc Pto Idaho 8#', 721.25, '405551518873', 'short description is not available', '125pc Pto Idaho 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (899990770, 'Fresh Candy Drop Grapes, 1 Lb', 6.98, '827470003238', 'short description is not available', 'Fresh Candy Drop Grapes, 1 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (900124183, 'Fresh Red Seedless Grapes, Bag', 5.97, 'deleted_083477999985', 'short description is not available', 'Fresh Red Seedless Grapes, Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (900324057, 'Russet Potatoes, 5 lb bag', 3.98, '056210984647', 'Russet Potatoes, 5 Lb.', 'Russet Potatoes 5 Lb Bag', 'Unbranded', 'https://i5.walmartimages.com/asr/fdc11b8a-ef47-4f78-8527-5d8326ef6a92.09b3966a341ca2a62fe859971fe5687a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fdc11b8a-ef47-4f78-8527-5d8326ef6a92.09b3966a341ca2a62fe859971fe5687a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fdc11b8a-ef47-4f78-8527-5d8326ef6a92.09b3966a341ca2a62fe859971fe5687a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (900408843, 'Fresh White Beans, 12oz', 3.97, '794504173321', 'White beans are versatile and can be used in a variety of dishes, such as soups, stews, salads, dips, and spreads. They can be a great addition to almost all kinds of foods. Use them to make baked beans, pork and beans and soups. Their delicate flavor is great for any stew, dip, cassoulet, sauce, and white chili. They contain many essential nutrients and are very low in saturated fat. It is a good source of protein, iron, and dietary fiber. Most white beans sold commercially are dried or canned. There is also a nutritional difference; dried goods lose most of their water soluble vitamins. These include vitamins B-complex and C. Although neither vitamin is present in great numbers in beans.', 'White beans are an excellent source of fiber, protein, vitamins, and minerals. They may help improve digestion, manage blood sugar levels, promote heart health. Support healthy weight management.', 'Prico', 'https://i5.walmartimages.com/asr/c39a9c5c-404a-4584-ad2a-ee5b401c2af6.381afb9fbfff21ca0596b174b107c7e9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c39a9c5c-404a-4584-ad2a-ee5b401c2af6.381afb9fbfff21ca0596b174b107c7e9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c39a9c5c-404a-4584-ad2a-ee5b401c2af6.381afb9fbfff21ca0596b174b107c7e9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (900672024, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_400094412046', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (900783925, 'Fresh Large Hass Avocado Bag, 3- 4 Count', 3.48, '887214140544', 'Avocados aren’t just great-tasting fresh produce items, but they are a nutrient-dense fruit that can be enjoyed throughout the year. Hass avocados are a versatile ingredient with a creamy texture and mild flavor that can be used in many different types of recipes and dishes that are perfect for enjoying at barbecues and outdoor gatherings with friends and family during the summer. Enjoy Large avocados in countless ways that will make those barbecues and gatherings with family and friends even more exciting. Use avocados in flavorful recipes that everybody can share and enjoy while being together outside. Try avocados in individual Mexican food items like tacos or burritos, as part of appetizers like avocado crostini, or in a fresh guacamole or avocado dip so everybody can dip tortilla chips into something delicious. The possibilities are deliciously endless if you need additional food options for barbecues. Not only is a Large avocado a great ingredient to use in numerous ways, but it is also a healthy food that contributes unsaturated “good” fats and almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9. A Large ripe avocado will have a dark green to nearly black skin color, a bumpy skin texture and should yield to gentle pressure without leaving indentations or feeling mushy. Avocados with a slightly bumpy texture should be ripe in 1 to 2 days. They will also be somewhat firm and have a dark green and black speckled color. Once you’ve selected the perfect bag of avocados, you’ll be ready to enjoy all kinds of different healthy foods and recipes for the next time you’re enjoying an outdoor gathering with friends and families.', 'Bag of 3 to 4 Large Hass Avocados Fresh fruit with a creamy texture and mild flavor Fresh avocados are great for using in tacos, burritos, appetizers, avocado dip and fresh guacamole so that you have delicious food to share and enjoy during barbecues and the summer months A cholesterol free fruit that contains almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9 Large hass avocados are the lowest sugar fruit and provide unsaturated “good fats” that help absorb Vitamin A, Vitamin D, Vitamin K and Vitamin E Large ripe avocados will have dark green to nearly black skin color, a bumpy texture and should yield to gentle pressure without leaving indentations', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/5c798f29-e430-419a-b4aa-36c9ccc4ade2.0ac54bdc229519ee39f7188386f272d8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5c798f29-e430-419a-b4aa-36c9ccc4ade2.0ac54bdc229519ee39f7188386f272d8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5c798f29-e430-419a-b4aa-36c9ccc4ade2.0ac54bdc229519ee39f7188386f272d8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (900920273, 'Marketside Beyond Zero Pesticides Crispy Leaf Lettuce, 4 oz Clam Shell (Fresh)', 3.73, '194346001538', 'Enjoy the fresh flavor of Marketside Beyond Crispy Leaf Lettuce. These greens are indoor and vertically grown for peak-season freshness all year long. Indoor vertical farms are a controlled growing environment giving each plant the optimal amount of light and nutrients for fresh and flavorful produce any time of the year. Farming vertically means our produce can be grown using significantly less water and land than traditional outdoor farms. Create something delicious with Marketside Beyond Crispy Leaf Lettuce. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Fresh and flavorful baby leaf lettuce Indoor and vertically grown for peak-season freshness all year long No pesticides, herbicides or fungicides applied to our greens Convenient peel and reseal packaging Keep refrigerated until ready to enjoy', 'Marketside', 'https://i5.walmartimages.com/asr/a67b4b07-33e0-498c-9204-09254321ba1a.d622efc73c3e756df1f19651df9b8c30.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a67b4b07-33e0-498c-9204-09254321ba1a.d622efc73c3e756df1f19651df9b8c30.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a67b4b07-33e0-498c-9204-09254321ba1a.d622efc73c3e756df1f19651df9b8c30.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (901103828, 'Butternut Squash', 1.18, '095829555466', 'short description is not available', 'Butternut Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (901544614, 'Fresh Christmas Tree Medley Tomato, 1 lb Package', 3.5, '057836021921', 'Bring the fresh, delicious taste of Christmas Tree Medley Tomatoes into your home. These little, round tomatoes deliver sweet and juicy flavor with each bite, making them a lovely, garden-inspired addition to salads at lunch or dinner, pasta, flatbreads, omelets, and so much more. They are small and bite sized, which makes them easy to enjoy as a healthy snack, whether they\'re on a party tray with other vegetables or tucked inside your kiddo\'s school lunch. However you choose to use them, these tomatoes will add big flavor and unforgettable taste to any meal. Get creative in the kitchen and enjoy some wholesome deliciousness with this festive package of Christmas Tree Medley Tomatoes.', 'Christmas Tree Medley Tomato, 1 lb Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Festive package is shaped like a Christmas tree Store at room temperature for best results', 'Sunset Grown', 'https://i5.walmartimages.com/asr/db0ce5d5-43f4-405f-abcd-357e58204f88.92bef8fe36e4a4881e98f3e52cb713d4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/db0ce5d5-43f4-405f-abcd-357e58204f88.92bef8fe36e4a4881e98f3e52cb713d4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/db0ce5d5-43f4-405f-abcd-357e58204f88.92bef8fe36e4a4881e98f3e52cb713d4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (901694031, 'Fresh Chilean Grown Black Grapes', 1.98, '', 'short description is not available', 'Fresh Chilean Grown Black Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (901712784, '125pc Pto Idaho 8#', 802.5, '405521527577', 'short description is not available', '125pc Pto Idaho 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (901769095, 'Navel Orange Bag, 5 lb', 8.94, 'deleted_605049623052', 'short description is not available', '5# Bag Navel Oranges', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (902175557, 'Fresh Green Beans', 1.68, '854206003019', 'short description is not available', 'Fresh Green Beans', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1b7ca92f-6e8e-4fc1-8797-585ce9a282d2_3.ab50b14a478dd2ebdaf05204fb2afc5a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1b7ca92f-6e8e-4fc1-8797-585ce9a282d2_3.ab50b14a478dd2ebdaf05204fb2afc5a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1b7ca92f-6e8e-4fc1-8797-585ce9a282d2_3.ab50b14a478dd2ebdaf05204fb2afc5a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (902457972, 'Fresh Organic Red Radish, 12oz Bag', 4.23, '078783908158', 'Serve up something amazing when you cook with Organic Fresh Red Radish. This versatile root vegetable is a great addition to a healthy diet and can be prepared in a variety of ways. Their slightly peppery flavor adds a natural, subtle spice to salads and slaws. Their crisp texture makes them a natural, healthy choice for dips. Try them as a low-carb substitute for potatoes when roasted or as a healthy side dish when grilled. However you choose to use them, these fresh radishes will add big flavor and unforgettable taste to any meal. The culinary possibilities are endless with Organic Fresh Red Radish.', 'Add to a recipe or enjoy on their own Try them grilled, roasted, or pickled Low carb substitute for starchy vegetables High in vitamin C and folate Antioxidant and anti-inflammatory properties support heart and blood health', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4399fc98-4f75-4182-9aa5-8b33fcad4f44.02420ce53bd10676eaf0d13f55c0d82a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4399fc98-4f75-4182-9aa5-8b33fcad4f44.02420ce53bd10676eaf0d13f55c0d82a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4399fc98-4f75-4182-9aa5-8b33fcad4f44.02420ce53bd10676eaf0d13f55c0d82a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (902720742, 'Marketside Super Blend Packaged Salad, 10 oz Bag (Fresh)', 3.28, '681131148368', 'Marketside Super Blend is a crisp, delicious mix of Brussels sprouts, Napa cabbage, kohlrabi, broccoli, carrots and kale. This refreshing super food blend is picked fresh, washed and ready to eat for your convenience. This healthy side is the perfect low-calorie side dish for your next barbecue or family dinner. It pairs well with grilled steaks, baked chicken and smoked salmon. Zest it up and mix in apple-wood smoked bacon, candied pecans, thinly sliced red onion and chipotle ranch. This super blend offers a nutritional benefit due to it being a good source of dietary fiber. Healthy sides are made easy with Marketside Super Blend. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Super Blend Packaged Fresh Salad, 10 oz Mix of crisp shredded broccoli, carrots and red cabbage Picked fresh for you Perfect side dish for backyard barbecues, family gatherings, picnics or weeknight dinners Washed and ready to eat Requires to be kept refrigerated 5 servings per container', 'Marketside', 'https://i5.walmartimages.com/asr/9c9fa858-be64-4af8-970d-cf18a0ab7976_2.7ce610bbd456060e3ef418ccbe39675b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9c9fa858-be64-4af8-970d-cf18a0ab7976_2.7ce610bbd456060e3ef418ccbe39675b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9c9fa858-be64-4af8-970d-cf18a0ab7976_2.7ce610bbd456060e3ef418ccbe39675b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (903058075, 'Yellow Flesh Peaches, per Pound', 1.58, '400094966808', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (903140876, 'California Grown Peaches, per Pound', 1.58, '400094949597', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (903335209, 'Jumbo White Onions Per Pound', 0.93, 'deleted_853357002636', 'Add flavor to your next meal with these Fresh, Whole White Onions. For breakfast, you could dice them and add to an omelet loaded with cheese, ham, and mushrooms. You can dice these onions and add them to a fresh garden salad for a satisfying crunch or sprinkle them on top of your fish tacos. White onions also make delicious golden onion rings to serve alongside juicy hamburgers and hot dogs at your next backyard barbecue. You can keep these onions at room temperature until ready to use. Stock your pantry with several Fresh, Whole, White Onions.', 'Fresh whole white onions Ideal ingredient in a variety of recipes Can be sauteed and put in your favorite foods for added flavor Use to top sandwiches, hamburgers, and hot dogs Fresh onions can be stored in a cabinet or pantry and are easy to prepare', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d9e5426b-5e94-4f13-a4f6-827d336299c4_3.116ef0ba6e643dac36ce097d686cfbd9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9e5426b-5e94-4f13-a4f6-827d336299c4_3.116ef0ba6e643dac36ce097d686cfbd9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9e5426b-5e94-4f13-a4f6-827d336299c4_3.116ef0ba6e643dac36ce097d686cfbd9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (903780823, 'Fresh Green Seedless Grapes', 1.78, 'deleted_000000035040', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (903800116, 'Cantaloupe', 2.67, 'deleted_816426010666', 'short description is not available', 'Cantaloupe', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (903882052, 'Fresh Mo Qua Squash, Each', 3.48, '000000048453', 'Mo Qua Squash is a tasty vegetable that the entire family is sure to enjoy. Of Chinese origin and a relative of winter melon, Mo Qua looks like a zucchini with medium green skin and is covered with delicate white hairs. Inside, the flesh is lightly colored and has a mild flavor. This versatile ingredient will absorb the flavors of whatever it is cooked with, and you can use it as you would zucchini or summer squash. Typically, this squash is used in stir fries, added to tasty soups, boiled, or braised. You could also incorporate it into a unique bread recipe or a hearty stew. Add something delicious and nutritious to your next meal with Mo Qua Squash.', 'Lightly colored flesh Mild taste that absorbs flavors of what it is cooked with Use as you would zucchini & summer squash Add to your next stir fry or hearty stew Good source of vitamins Explore delicious new recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cfa3f12f-ae2d-4308-b1b2-c5d7c382c5a9.cbe2841ba662c4df0e80d6e4e145b289.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cfa3f12f-ae2d-4308-b1b2-c5d7c382c5a9.cbe2841ba662c4df0e80d6e4e145b289.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cfa3f12f-ae2d-4308-b1b2-c5d7c382c5a9.cbe2841ba662c4df0e80d6e4e145b289.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (904200338, 'Services Reduced Program Dept 94', 0.01, '251717000009', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (904318451, 'Yellow Flesh Peaches, per Pound', 1.58, '400094838976', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (904384340, 'White Taro Root Whole Fresh, lb', 1.27, '405854077367', 'Create something fresh and delicious with this White Taro Root (Yautia Blanca). Taro, whose appearance is similar to a yam, is a versatile root that can be peeled, mashed, baked, boiled, sauteed, and more. Popular uses of Yautia include deep frying as fritters and chips. You can also use them to make a mouthwatering stew that the entire family will enjoy. Available year round, it is a good source of fiber and potassium. Make your next culinary masterpiece with Yautia Root.', 'Good source of fiber and potassium Low on the glycemic index Can be mashed, baked, boiled, sauteed, and more Deep fry to make fritters and chips Fresh and whole', 'Unbranded', 'https://i5.walmartimages.com/asr/5e3ee717-b24f-4b9b-898c-66b86037dc06.48578ed6e674e9142a56d590374d2689.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5e3ee717-b24f-4b9b-898c-66b86037dc06.48578ed6e674e9142a56d590374d2689.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5e3ee717-b24f-4b9b-898c-66b86037dc06.48578ed6e674e9142a56d590374d2689.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (904573487, 'Mixed Fruit With Lime', 2.48, '782796013401', 'short description is not available', 'Mixed Fruit With Lime', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (904590107, 'Revol Greens Local Greenhouse Grown Leafy Romaine Blend 7.5oz', 2.98, '850024486089', 'short description is not available', 'Revol Greens Leafy Romaine Blend 7.5oz', 'Revol Greens', 'https://i5.walmartimages.com/asr/853c2fb9-99ca-4b27-8fbc-011875ba1817.cd626b2805bba174611cde0cfc2fe46b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/853c2fb9-99ca-4b27-8fbc-011875ba1817.cd626b2805bba174611cde0cfc2fe46b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/853c2fb9-99ca-4b27-8fbc-011875ba1817.cd626b2805bba174611cde0cfc2fe46b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (904620409, 'Packham Pears, 4 lbs', 6.36, 'deleted_899734002080', 'short description is not available', '4lb Bag Of Packham Pears', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (904629588, '256pc On Ylw 3# Ptd', 496.64, '405563879757', 'short description is not available', '256pc On Ylw 3# Ptd', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (905569694, 'Lima Verde Suelta 36-40#', 1.06, '405873138490', 'short description is not available', 'Lima Verde Suelta 36-40#', 'Unbranded', 'https://i5.walmartimages.com/asr/a0452f57-1670-4e5a-9a73-be218b86af6d.fc9457869efbf4cc064630907ae65ba9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a0452f57-1670-4e5a-9a73-be218b86af6d.fc9457869efbf4cc064630907ae65ba9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a0452f57-1670-4e5a-9a73-be218b86af6d.fc9457869efbf4cc064630907ae65ba9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (905677021, 'Corn Husk shipper', 3945.6, '712810008168', 'short description is not available', 'Corn Husk shipper', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (906716072, 'Organic Cherry Tomato - 4.5\" Pot - Up to 2000 Cherry Tomatoes', 4.99, '811332038605', 'CHERRY TOMATO: A cherry tomato is a smaller garden variety of tomato. It is popular as a snack and in salads. Cherry tomatoes range in size from a thumbtip up to the size of a golf ball, and can range from being round to slightly oblong in shape. The more oblong ones often share characteristics with plum tomatoes, and are known as grape tomatoes. Sweet Million Cherry Tomato - Plant produces heavy yields of 1\" red cherry tomatoes. Very sweet and flavorful. Plant can produces over 500 cherry tomatoes. Crack Resistant. Excellent for salads and snacks. Suitable for home garden or market growers.', 'Plant produces heavy yields of 1\" red cherry tomatoes Excellent for salads and snacks Suitable for home garden or market growers Very sweet and flavorful. Indeterminate, 60 days.', 'Hirt\'s Gardens', 'https://i5.walmartimages.com/asr/8c01bcdc-5928-4d97-bed4-8f8def82a46a_1.b802f9d8a7a55340c058d76de532ce6f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8c01bcdc-5928-4d97-bed4-8f8def82a46a_1.b802f9d8a7a55340c058d76de532ce6f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8c01bcdc-5928-4d97-bed4-8f8def82a46a_1.b802f9d8a7a55340c058d76de532ce6f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (906767873, 'Fresh Red Grapefruit, 5 lb Bag', 5.98, 'deleted_899734002349', 'Red grapefruit offers a perfect balance of sweetness and tanginess, with its vibrant ruby-red flesh and juicy texture. Packed with vitamin C, antioxidants, and fiber, it’s a nutritious and refreshing choice for breakfasts, salads, or healthy snacks. Add a burst of color, flavor, and health benefits to your meals with this versatile citrus fruit! Available in a 5 lb bag.', 'Fresh red grapefruit is great for both savory and sweet dishes Enjoy it for breakfast, lunch, dinner, or dessert Enjoy half a grapefruit sprinkled with sugar in the morning Slice it up and put it in salad for lunch or dinner Make delicious grapefruit bars Great source of vitamin C and vitamin A You\'ll have plenty for everyone with this 3-pound bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/9183bc36-5af9-4986-bb8b-d0051507c3fe.990659cf83a79a12424f34a36a70d080.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9183bc36-5af9-4986-bb8b-d0051507c3fe.990659cf83a79a12424f34a36a70d080.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9183bc36-5af9-4986-bb8b-d0051507c3fe.990659cf83a79a12424f34a36a70d080.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (906939512, 'Manzanas Honeycrisp Empacada', 3.97, '033383046853', 'short description is not available', 'Manzanas Honeycrisp Empacada', 'Unbranded', 'https://i5.walmartimages.com/asr/fdffb720-8b75-43df-bffe-4ffc4e9369d8_3.d4460fa9146eb9716b5804d61d4b26b9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fdffb720-8b75-43df-bffe-4ffc4e9369d8_3.d4460fa9146eb9716b5804d61d4b26b9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fdffb720-8b75-43df-bffe-4ffc4e9369d8_3.d4460fa9146eb9716b5804d61d4b26b9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (907008607, 'Tomato Cherry Sweet Bites 14oz', 3.27, '057836021808', 'short description is not available', 'Tomato Cherry Sweet Bites 14oz', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (907329012, 'Fieldpack Unbranded Fresh Organic Strawberries 1#', 4.48, 'deleted_066022003795', 'short description is not available', 'Fieldpack Unbranded Fresh Organic Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/dd7491e8-5267-4493-9e9c-13e36492b8de.f22ba1e55f40b2169a3544503c13186b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dd7491e8-5267-4493-9e9c-13e36492b8de.f22ba1e55f40b2169a3544503c13186b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dd7491e8-5267-4493-9e9c-13e36492b8de.f22ba1e55f40b2169a3544503c13186b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (907489466, 'Jumbo White Onions Per Pound', 1.44, 'deleted_811009021886', 'Add flavor to your next meal with these Fresh, Whole White Onions. For breakfast, you could dice them and add to an omelet loaded with cheese, ham, and mushrooms. You can dice these onions and add them to a fresh garden salad for a satisfying crunch or sprinkle them on top of your fish tacos. White onions also make delicious golden onion rings to serve alongside juicy hamburgers and hot dogs at your next backyard barbecue. You can keep these onions at room temperature until ready to use. Stock your pantry with several Fresh, Whole, White Onions.', 'Fresh whole white onions Ideal ingredient in a variety of recipes Can be sauteed and put in your favorite foods for added flavor Use to top sandwiches, hamburgers, and hot dogs Fresh onions can be stored in a cabinet or pantry and are easy to prepare', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (907789685, 'Organic Apple & Pear Gift Box 4ct', 6.88, '847473001611', 'short description is not available', 'Organic Apple & Pear Gift Box 4ct', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (908051273, '150pc Pto Red 5# Wa', 865.5, '405507983328', 'short description is not available', '150pc Pto Red 5# Wa', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (908160902, '200pc Pto Red 5# Bw', 794, '405505080715', 'short description is not available', '200pc Pto Red 5# Bw', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (908316592, 'Tomato on the Vine, Bag', 1.98, 'deleted_679508111022', 'Keep your recipes simple and classic with fresh tomatoes on the vine. With their vibrant red color, firm and juicy flesh, and unmistakably delicious flavor, this fresh produce item is sure to impress more than just your taste buds. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. The list is endless! Plus, they come right to your kitchen still on the vine that they grew on, meaning that their mouthwatering taste and freshness will be long-lasting for your culinary convenience. Stock up on Walmart\'s Tomatoes On The Vine and keep your dishes looking great and tasting equally as excellent.', 'Tomatoes On The Vine, 1 lb: 1-pound bag of tomatoes on the vine Vine helps tomatoes maintain peak freshness and flavor Perfect for slicing, dicing, crushing and blending Great for sandwiches, pastas, pizzas and salsas Essential ingredient in every home-cook\'s kitchen', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (908403903, '120pc Apl Granny 5#', 600, '405672893415', 'short description is not available', '120pc Apl Granny 5#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (908517839, 'Bowery Farming Bowery Salad Spinach Mix 4oz', 2.98, '851536007526', 'short description is not available', 'Bowery Farming Bowery Salad Spinach Mix 4oz', 'Bowery Farming', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (909030024, 'Mini Zucchini 1lb Tray', 3.99, '699058030017', 'short description is not available', 'Mini Zucchini, Zukies Authentic mini zucchini mini-courgettes authentiques. Delicious raw & cooked. muccifarms.com. Facebook. Twitter. Pinterest. Instagram. (hashtag)Tasteitraw. Product of Mexico.', 'Mucci Farms', 'https://i5.walmartimages.com/asr/f50915a8-eda1-4c81-9b2b-fdd213f50f84.e271370f955047e2b87ac3be856b43be.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f50915a8-eda1-4c81-9b2b-fdd213f50f84.e271370f955047e2b87ac3be856b43be.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f50915a8-eda1-4c81-9b2b-fdd213f50f84.e271370f955047e2b87ac3be856b43be.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (909652248, 'Mann\'s Fresh Broccoli Veggie Sides, 8.8 oz', 3.97, '716519009815', 'Elevate mealtime with the Mann\'s Broccoli Veggie Sides. Made with a lemon herb sauce, this side of veggies is a perfect addition to your meals. Pair them with a perfectly cooked steak and potatoes for a delicious meal that will have you feeling like you dined at the best steakhouse in town. You can also serve them with grilled scallops and roles for a well-rounded dinner your friends and family is sure to love. In just three minutes, you can be enjoying the delicious taste of this broccoli. Simply place the bag in the microwave, microwave on high for three minutes, stir until combined, and enjoy. Complete your meals with the Mann\'s Broccoli Veggie Sides.', 'Broccoli with a lemon herb sauce Pair with steak and potatoes for a mouthwatering meal Serve with grilled scallops and rolls for a well-rounded meal Ready in just 3 minutes Perfect addition to your meals', 'Mann\'s', 'https://i5.walmartimages.com/asr/3c279077-8ded-418f-a514-fef4f7f6f061.06931b9424468194552c47a33970d3c1.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3c279077-8ded-418f-a514-fef4f7f6f061.06931b9424468194552c47a33970d3c1.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3c279077-8ded-418f-a514-fef4f7f6f061.06931b9424468194552c47a33970d3c1.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (910778087, 'Potato Morning Pearl 24 Oz Bag', 3.29, '629307120541', 'short description is not available', 'Potato Morning Pearl 24 Oz Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (910846388, 'Fresh Cubanelle Peppers, 16 Ounce Bag', 2.64, '711069541181', 'Add rich flavor and color to your meals with these fresh Cubanelle Peppers. These versatile peppers are light green in color before they ripen and then turn red once they\'re ripe. The Cubanelle is a mild pepper that may be used much like you would use a bell pepper. Try these peppers stuffed with your favorite ingredients like cheese, sirloin steak, and zesty spices. You could also use them in your next stir fry to add a mild sweetness or even pan fry them and season them for a quick and tasty snack. They are low in calories, and they\'re a great source of vitamins C and A. Create your next culinary masterpiece with fresh Cubanelle Peppers.', 'Mild and sweet Perfect stuffed with your favorite ingredients Try them in your next stir fry Fry and season by themselves for a quick and nutritious snack Low in calories Good source of vitamins A and C t has a fine and tender texture, with thinner walls than bell peppers.', 'Bailey Farms', 'https://i5.walmartimages.com/asr/1f285a52-be08-4a0d-bda1-50cde88b8636.a536b065baf8b47490357acee2c1d0dc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1f285a52-be08-4a0d-bda1-50cde88b8636.a536b065baf8b47490357acee2c1d0dc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1f285a52-be08-4a0d-bda1-50cde88b8636.a536b065baf8b47490357acee2c1d0dc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (911026374, 'Fresh Green Seedless Grapes', 2.88, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (911509204, 'Red Potatoes 3 Lb Bag', 3.24, 'deleted_842281099461', 'Red 3# Potatoes in a Boil Ready Bag', 'Red Potatoes 3lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b3b1bea9-a83b-408f-a96c-7aedc81b43a2.be48ad90096b4dcd2357695436683eba.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3b1bea9-a83b-408f-a96c-7aedc81b43a2.be48ad90096b4dcd2357695436683eba.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3b1bea9-a83b-408f-a96c-7aedc81b43a2.be48ad90096b4dcd2357695436683eba.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (911878713, 'Fresh Half Runner Beans', 4.48, '711069541266', 'short description is not available', 'Fresh Half Runner Beans', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (912408331, 'Pepper Mini Sweet', 2.98, 'deleted_885773051127', 'short description is not available', 'Pepper Mini Sweet', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (912767931, 'Yellow Flesh Peaches, per Pound', 1.58, '400094608685', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (913190127, 'Diced Green Onions', 2.58, '782796013265', 'short description is not available', 'Diced Green Onions', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (913191274, 'Red Onions 3 Lb Bag', 3.54, 'deleted_041220594696', 'short description is not available', 'Red Onions 3 Lb Bag', 'HJZWTS', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (913282525, '180pc Orange Nvl 3#', 715, '405712292178', 'short description is not available', '180pc Orange Nvl 3#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (913381828, 'Fresh Whole Tomato on the Vine, 1.5 lb Bag', 2.97, 'deleted_069905815249', 'Keep your recipes simple and classic with Fresh Whole Tomatoes on the Vine. With their vibrant red color, firm and juicy flesh, and unmistakably delicious flavor, this fresh produce is sure to impress more than just your taste buds. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. The list is endless! Plus, they come right to your kitchen still on the vine that they grew on, meaning that their mouthwatering taste and freshness will be long-lasting for your culinary convenience. Stock up on Fresh Whole Tomatoes on the Vine and keep your dishes looking great and tasting equally as excellent.', 'Fresh Whole Tomato on the Vine, 1.5 lb Bag Firm and juicy flesh and unmistakably delicious flavor Comes right to your kitchen still on the vine Slice them up to garnish a sandwich or burger for added flavor and texture Dice them up to create a pizza or pasta topping Crush them up to make a decadent bruschetta or sauce Finely blend them to create your own personalized salsa', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (913639932, 'Gala Apples 3 Lb Bag', 3.12, 'deleted_400094813133', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (913709215, 'Fresh Hot House Strawberries, 1 lb', 4.47, 'deleted_699058999116', 'short description is not available', 'Fresh Hot House Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0ea46b14-8b92-4ea1-837a-b596d943765e.eafd5c2499865066412ae752b533d9bc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ea46b14-8b92-4ea1-837a-b596d943765e.eafd5c2499865066412ae752b533d9bc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0ea46b14-8b92-4ea1-837a-b596d943765e.eafd5c2499865066412ae752b533d9bc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (913726597, 'Fresh Garlic Mesh 3 count (60 units/case)', 1.77, '651973539129', 'Fresh Garlic Mesh 3 count (60 units/case)', 'Fresh garlic mesh, also known as garlic netting, is a practical tool for storing garlic bulbs Garlic products, whether fresh, peeled, or in paste form, offer a range of benefits that can enhance both your culinary creations and your health TIO PACO FRESH PRODUCE is a family business that has been importaing and distributing garlic to its valued customers across the country for over 20 years.', 'Tio Paco', 'https://i5.walmartimages.com/asr/2bab40be-511a-49bf-8505-fb753f5df3db.b7274649fc16d946feb7571cdb8df816.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2bab40be-511a-49bf-8505-fb753f5df3db.b7274649fc16d946feb7571cdb8df816.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2bab40be-511a-49bf-8505-fb753f5df3db.b7274649fc16d946feb7571cdb8df816.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (913960675, 'Green Giant Yellow Creamer Potato, 1.5 Lb.', 3.57, 'deleted_605806003707', 'Green Giant Yellow Creamer Potato, 1.5 Lb.', 'Yellow Green Giant Creamer Potato 1.5 Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (914389946, 'Yellow Onions, 3 Lb.', 1.94, 'deleted_400094849415', 'Yellow Onions, 3 Lb.', 'Yellow Onions 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (914436487, 'Freshness Guaranteed Small Fruit Tray', 7.97, '681131036696', 'short description is not available', 'Freshness Guaranteed Small Fruit Tray', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (914503460, 'Jicama Wraps - Fresh cut Jicama Slices 7.5 Ounce Net Weight per Tray', 3.98, '850800007170', 'Introducing Jicama Wraps, the perfect alternative to traditional tortillas. Made from thinly sliced fresh-cut jicama, these wraps offer a refreshing and crisp texture. With their natural sweetness and low calorie content, Jicama Wraps are a guilt-free and delicious choice for wrapping your favorite fillings. Say goodbye to heavy tortillas and embrace the light and flavorful experience of Jicama Wraps. Enjoy a healthier twist on your favorite wraps today!', '7.5oz Net Content Jicama Slices Keto Introducing Jicama Wraps, the perfect alternative to traditional tortillas. Made from thinly sliced fresh-cut jicama, these wraps offer a refreshing and crisp texture. With their natural sweetness and low calorie content, Jicama Wraps are a guilt-free and delicious choice for wrapping your favorite fillings. Say goodbye to heavy tortillas and embrace the light and flavorful experience of Jicama Wraps. Enjoy a healthier twist on your favorite wraps today! Find this at your local Walmart!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/cc509c96-bb8c-4a44-88f7-8c92d4a9af6b.a9e9ab8b682243fdac912658b1e4e587.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc509c96-bb8c-4a44-88f7-8c92d4a9af6b.a9e9ab8b682243fdac912658b1e4e587.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc509c96-bb8c-4a44-88f7-8c92d4a9af6b.a9e9ab8b682243fdac912658b1e4e587.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (914648758, 'Milpero Tomatillos, 1 lb', 2.52, '750455000819', '', '', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/30293232-4f93-4396-87f4-cfbf6860e8e3_1.0914342035279c84c0139d0538ce7c33.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/30293232-4f93-4396-87f4-cfbf6860e8e3_1.0914342035279c84c0139d0538ce7c33.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/30293232-4f93-4396-87f4-cfbf6860e8e3_1.0914342035279c84c0139d0538ce7c33.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (914688792, 'Ready Pac Bistro Kale Apple Pecan Salad Bowl, 5.75 oz', 3.48, '077745270463', 'Kale Apple Pecan Premium Salad Bowl', 'Kale Apple Pecan Premium Salad Bowl - Chopped Kale, Diced Apples, Swiss Cheese, Candied Pecans, Dried Cranberries, Carrots and Red Cabbage with a Country Dijon Dressing. Fork included, 360 calories per serving, 7g of protein per serving.', 'Ready Pac Foods', 'https://i5.walmartimages.com/asr/369249ee-ee2b-43ed-8741-5b83dce57010_1.63887a357a38759cb0b43c691d65ec7f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/369249ee-ee2b-43ed-8741-5b83dce57010_1.63887a357a38759cb0b43c691d65ec7f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/369249ee-ee2b-43ed-8741-5b83dce57010_1.63887a357a38759cb0b43c691d65ec7f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (915293418, 'Marketside Organic Zucchini, 6 oz, 2 Count', 2.96, 'deleted_681131221054', 'Marketside Organic Zucchini is an extremely versatile vegetable that is a must-have for every cook. You can prepare zucchini in a variety of ways. You can choose to eat it raw, or you can saute it slightly with olive oil and salt. If you?re trying to cut down on carbohydrates, zucchini noodles are a great alternative to pasta. Simply use a spiralizer, julienne peeler or a knife to create thin strips of zucchini. Once you have your zucchini noodles, you can saute or bake them and add them to your favorite sauce. You can even use zucchini to make zucchini nut bread. The culinary possibilities are endless with Marketside Organic Zucchini. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Zucchini, 6 oz, 2 Count: USDA Organic Use to make zucchini noodles Refrigerate after opening Use within 2-3 days of opening Only about 30-50 calories per zucchini', 'Marketside', 'https://i5.walmartimages.com/asr/7587f0b5-1ce2-4db8-85ce-753c12329bf9_2.131d850bfa91440b880b52dc8bb5af65.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7587f0b5-1ce2-4db8-85ce-753c12329bf9_2.131d850bfa91440b880b52dc8bb5af65.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7587f0b5-1ce2-4db8-85ce-753c12329bf9_2.131d850bfa91440b880b52dc8bb5af65.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (915401299, 'Fresh California Grown Nectarines, 1 Lb.', 1.78, 'deleted_400094220412', 'Fresh California Grown Nectarines, 1 Lb.', 'Fresh California Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (915452605, 'Thai Peppers', 3.48, 'deleted_860001220650', 'short description is not available', 'Thai Peppers', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (915478216, 'Fresh Bibb Lettuce, 1 Each', 2.88, '852256005465', 'Discover the freshness of Aeroponic butter lettuce, cultivated in Faribault, MN. Grown in a vertical indoor agricultural system, each unit contains one head of this crisp and vibrant lettuce. Packaged in a classic clamshell, this 4-count box pack ensures the highest quality and convenience. Indulge in the unparalleled freshness of Faribault-grown Aeroponic butter lettuce, perfect for elevating your salads and culinary creations.', 'Full head of lettuce with clean roots included (industry standard) The product stays fresher longer. The plant is still alive. Promoting a more healthy product. Soft, delicate variety of lettuce. Nutritional content is the same as conventional. Roots are misted with the nutrient rich water. Broad, green leaves are great for chopping for salads or using whole with lettuce wraps.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6a30faf5-2c0e-4ed6-8620-5d933661a532.afab3e32a32cb3ced949b048118efda7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a30faf5-2c0e-4ed6-8620-5d933661a532.afab3e32a32cb3ced949b048118efda7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a30faf5-2c0e-4ed6-8620-5d933661a532.afab3e32a32cb3ced949b048118efda7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (915957991, 'Fresh Red Seedless Grapes', 1.84, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (916002571, 'Freshness Guaranteed Mango Medium', 5.27, '262828000000', 'Freshness Guaranteed Mango Medium in plastic tray. Has delicious fresh cut Mango slices.', 'Freshness Guaranteed Mango Medium', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (916131366, 'Fieldpack Unbranded Fresh Iceberg Lettuce', 1.98, '', 'short description is not available', 'Fieldpack Unbranded Fresh Iceberg Lettuce', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (916277118, 'Fresh Strawberries 1#', 1.56, '400094383216', 'short description is not available', 'Fresh Strawberries 1#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (916602504, 'Freshness Guaranteed Whole Brown Mushrooms 8oz', 2.17, 'deleted_699058820083', 'short description is not available', 'Freshness Guaranteed Whole Brown Mushrooms 8oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (916631508, 'Zespri Sungold Fresh Kiwi Fruit, 2 lb Package', 8.97, '818849020062', 'Unexpectedly sweet and juicy, Zespri™ SunGold™ kiwi is no ordinary kiwi. Treat yourself to a refreshing, tropical-sweet taste explosion. This unique variety of Golden kiwi is packed with 20+ vitamins and minerals including 3x the Vitamin C of an orange per serving, as much potassium as a medium banana, and low glycemic index. You can start your day with this fresh kiwi fruit for breakfast, a quick snack, kiwi smoothie, or serve it up as a fresh fruit tray with all your favorite fruits like strawberries, grapes, apples, cherry, bananas and more. This 2lb pack of fresh fruit produce is perfect for families and fruit lovers alike. Non GMO Project verified. nongmoproject.org', 'Tropical-sweet taste Sweet and juicy Non GMO Project verified Packed with 20+ vitamins and minerals', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2b7ed80c-aad9-48a5-a836-9f6ec671175e.1dca9b0da795995a71ea8ec9f5da382f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2b7ed80c-aad9-48a5-a836-9f6ec671175e.1dca9b0da795995a71ea8ec9f5da382f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2b7ed80c-aad9-48a5-a836-9f6ec671175e.1dca9b0da795995a71ea8ec9f5da382f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (916731004, 'Watermelon Seedless', 4.48, '400094255834', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (916982385, 'Fresh Crispin Apples, Each', 1.27, '000000041102', 'Crispin Apples, Each - Enjoy the savory sweetness of our Crispin Apples, individually sold, perfect for your daily snack or culinary needs. These apples are known for their juicy crunch and honey-like taste. They are firm with a vibrant green color that may exhibit a slight yellow tint when ripe. Crispin Apples are excellent for baking, snacking, or adding a sweet crunch to your salads. They are not only delicious but also packed with nutrients like Vitamin C and fiber. Enjoy the quality and freshness of our hand-picked Crispin Apples.', 'Crispin Apples, Each', 'Unbranded', 'https://i5.walmartimages.com/asr/dabbb6eb-8e71-42e3-833e-4948eab559e8.4d6547e6499dc3b9102728627170509a.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dabbb6eb-8e71-42e3-833e-4948eab559e8.4d6547e6499dc3b9102728627170509a.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dabbb6eb-8e71-42e3-833e-4948eab559e8.4d6547e6499dc3b9102728627170509a.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (917271516, 'Services Reduced Program Dept 94', 0.01, '251679000000', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (917624846, 'Marketside Adora Seedless® Black Grapes', 4.27, 'deleted_812985018051', 'short description is not available', 'Marketside Adora Seedless® Black Grapes', 'Marketside', 'https://i5.walmartimages.com/asr/897ced2b-1ad8-483a-a101-eadaac5ea8b5_2.e0bc2d5d1cd753fa6ebb4f72ead4842f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/897ced2b-1ad8-483a-a101-eadaac5ea8b5_2.e0bc2d5d1cd753fa6ebb4f72ead4842f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/897ced2b-1ad8-483a-a101-eadaac5ea8b5_2.e0bc2d5d1cd753fa6ebb4f72ead4842f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (917800435, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094288153', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (918447069, 'Artichoke Hearts, Whole (Orlando) 88.2 oz (2500g) Can', 80.71, '847311687557', 'Dr. Wt.54.7 oz (1550g)30/40 count.Artichoke hearts can be served hot or cold. Try them in your favorite meat dish or as an addition to any salad.Ingredients: artichoke water salt and citric acid.Product of Spain.', 'Dr. Wt.54.7 oz (1550g)30/40 count.Artichoke hearts can be served hot or cold. Try them in your favorite meat dish or as an addition to any salad.Ingredients: artichoke water salt and citric acid.Product of Spain.', 'Orlando', 'https://i5.walmartimages.com/asr/2e67c4c1-c5ca-43e4-984d-01e5938a1d1c.b33b1ae86b902cf8d54d2e7c76236ef0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2e67c4c1-c5ca-43e4-984d-01e5938a1d1c.b33b1ae86b902cf8d54d2e7c76236ef0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2e67c4c1-c5ca-43e4-984d-01e5938a1d1c.b33b1ae86b902cf8d54d2e7c76236ef0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (918451857, 'Yellow Flesh Peaches, per Pound', 1.58, '400094723777', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (918464122, 'Mini Cucumbers', 2.48, 'deleted_699058601644', 'short description is not available', 'Mini Cucumbers', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (918852718, 'That’s Tasty Puree Garlic 2.8 oz, Refrigerated', 3.94, '768573300322', 'Introducing our Organic Garlic 2.8 oz Puree, the perfect solution for those who want to enjoy the rich flavor of fresh garlic without the hassle of peeling and chopping. Expertly crafted from high-quality, organic ingredients, this versatile puree is an excellent substitute for traditional garlic cloves in any recipe. With its smooth texture and robust taste, our garlic puree is guaranteed to elevate your dishes to new heights of deliciousness. Conveniently packaged in a 2.8 oz container, this must-have kitchen staple is always ready to save the day when you need a quick and easy way to add that unmistakable garlic flavor. Choose our Organic Garlic Puree for an effortless, time-saving cooking experience that doesn\'t compromise on taste or quality.', 'Organic Garlic Puree 2.8oz Introducing our Organic Garlic 2.8 oz Puree, the perfect solution for those who want to enjoy the rich flavor of fresh garlic without the hassle of peeling and chopping. Expertly crafted from high-quality, organic ingredients, this versatile puree is an excellent substitute for traditional garlic cloves in any recipe. With its smooth texture and robust taste, our garlic puree is guaranteed to elevate your dishes to new heights of deliciousness. Conveniently packaged in a 2.8 oz container, this must-have kitchen staple is always ready to save the day when you need a quick and easy way to add that unmistakable garlic flavor. Choose our Organic Garlic Puree for an effortless, time-saving cooking experience that doesn\'t compromise on taste or quality.', 'Shenandoah Growers', 'https://i5.walmartimages.com/asr/fb853b6c-e81f-43ac-be4b-ad97068411c4_1.81f9462058eee3ad96e308686bef65e0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb853b6c-e81f-43ac-be4b-ad97068411c4_1.81f9462058eee3ad96e308686bef65e0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb853b6c-e81f-43ac-be4b-ad97068411c4_1.81f9462058eee3ad96e308686bef65e0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (918927737, 'Fresh Red Seedless Grapes', 1.66, '', 'short description is not available', 'Fresh Red Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (919153410, 'Naturesweet Cherry Tomato Display, 1 Package', 0.01, 'deleted_405510163946', 'short description is not available', 'Naturesweet Cherry Tomato Display', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (919206749, 'Red Globe Seeded Grapes, Bag', 1.98, '', 'short description is not available', 'Red Globe Seeded Grapes, Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (919435377, 'Large Avocado 3 Count Bag', 4.98, 'deleted_088721410841', 'short description is not available', 'Large Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (919484438, 'Fresh Jalapenos, 8 Ounce Bag', 1, '711069542270', 'Enhance your meals with the delicious flavor of Jalapeno Peppers. Naturally low in calories, fat, and cholesterol, this vegetable is a great source of vitamins C, B6, A, and K, as well as folate and manganese. Jalapeno peppers have a range of pungency, and a crisp flavor that enhances a variety of recipes. Stuff jalapeno peppers with cheese and wrap in bacon for everyone?s favorite poppers, add them to enchiladas, put some diced jalapeno in your famous chili recipe, or make a zesty salsa using fresh jalapeno peppers. You can even add some diced jalapeno peppers and cheese to cornbread batter for a delectable chile cheese cornbread that will have everyone asking for seconds. Lunches and dinners are more scrumptious when fresh Jalapeno Peppers are part of the meal. Also known as Jalapeño, Spicy chili, Filfil har and Mirch around the world.', 'Naturally low in calories Rich in vitamins C, B6, A, and K Stuff jalapeno peppers and wrap in bacon for poppers, add to enchiladas or chili, or make a zesty salsa Approximately 3-5 peppers per .25 lb Versatile and delicious', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ed77cf30-f88d-40cc-933b-f6b2415c3db9.4a2704eabaf798127e7bdae5b5411559.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed77cf30-f88d-40cc-933b-f6b2415c3db9.4a2704eabaf798127e7bdae5b5411559.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ed77cf30-f88d-40cc-933b-f6b2415c3db9.4a2704eabaf798127e7bdae5b5411559.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (919642904, 'Fresh Granny Smith Apples, 3 lb Bag', 5.47, '', 'Treat yourself to Freshness Granny Smith Apples (Manzana Verde). Granny Smith apples are firm and juicy with a crisp texture and a tart, acidic, yet subtly sweet flavor, perfect for use in a variety of dishes morning, noon, and night. Slice them up and cook in a skillet with brown sugar, butter, cloves, and nutmeg for a simple, sweet treat. Mix them with cabbage, grapes, honey, mayonnaise and, celery to make a fresh, apple slaw for a summer cookout. Use them to make a sweet, classic apple pie that your friends and family with love. Create delicious meals and treats with Freshness Guaranteed Granny Smith Apples.', 'Firm and juicy with a crisp texture and a tart, acidic, yet subtly sweet flavor Great for breakfast, lunch, dinner, or dessert Cook in a skillet with butter, brown sugar, and spices; mix with cabbage, grapes, honey, mayonnaise and, celery for apple slaw; or make a classic apple pie Versatile ingredient perfect for both savory and sweet dishes Meets or exceeds U.S. Extra Fancy They have a creamy white flesh with low acidity', 'Unbranded', 'https://i5.walmartimages.com/asr/737c9964-cec4-4154-a2f2-6ebcb94683cb.5fa488f67759a15d60f44660045281df.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/737c9964-cec4-4154-a2f2-6ebcb94683cb.5fa488f67759a15d60f44660045281df.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/737c9964-cec4-4154-a2f2-6ebcb94683cb.5fa488f67759a15d60f44660045281df.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (919823032, '240pc On Swt 3# Lm', 984, '405541087501', 'short description is not available', '240pc On Swt 3# Lm', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (919836644, 'Fresh Green Seedless Grapes', 1.78, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (919947069, '200pc Pto Rst 5# Bm', 648, '405508088183', 'short description is not available', '200pc Pto Rst 5# Bm', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (920076971, '170pc Pie Pumpkin Ca', 445, '405517454757', 'short description is not available', '170pc Pie Pumpkin Ca', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (920275475, 'Tom Grape 10oz', 2.48, '400094311462', 'short description is not available', 'Tom Grape 10oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (920732323, 'Marketside Organic Russet Potatoes, 3 Lb.', 4.54, '405655990384', 'Marketside Organic Russet Potatoes, 3 Lb.', 'Marketside Organic Russet Potatoes 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (921859857, 'Freshness Guaranteed Salsa Topped Guacamole, 8 oz', 2.88, '681131354837', 'Find a new fresh flavor you\'re sure to love with the Freshness Guaranteed Salsa Topped Guacamole. This tasty duo features a creamy and chunky combination of Hass avocados, tomato puree, tomatoes, onions, jalapeno peppers, tomatillos, garlic, lime juice, cilantro and zesty mix of herbs and spices to ensure a mouthful of flavor in every bite. Add a dollop to your quesadillas, burgers, burritos, and sandwiches for a taste that will have you coming back for seconds. With 8 servings per container, this guacamole is perfect for small gatherings, parties, barbecues, and game nights with family and friends. Plus, the reclosable lid in the packaging helps maintain freshness between snack sessions. Scoop up some flavor with Freshness Guaranteed Salsa Topped Guacamole. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Spark Fresh item.', 'Freshness Guaranteed Salsa Topped Guacamole, 8 oz: Mild heat level 8 servings per container makes this an ideal dish to serve at parties Pairs perfectly with chips Delicious as a spread on wraps and sandwiches', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d4cc5a08-857f-493d-96f6-63c2fa3057cd.930a1618786ff84074926f218b55bdfa.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4cc5a08-857f-493d-96f6-63c2fa3057cd.930a1618786ff84074926f218b55bdfa.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4cc5a08-857f-493d-96f6-63c2fa3057cd.930a1618786ff84074926f218b55bdfa.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (921967334, 'Melissas Dried Guajillo Chile 8 Oz', 3.98, '045255150896', 'short description is not available', 'Melissas Dried Guajillo Chile 8 Oz', 'Melissa\'s', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (922051244, 'Fresh Sugar Plum, 1 lb', 2.28, '683953002279', 'Sugar plums are a delicious summertime treat! Also known as Tulare Giant variety fresh prunes, these fruits are grown on trees and picked when ripe and ready to eat. Their oblong shape makes them unique, and their sweetness keeps you coming back for more! They do contain a seed, just like a traditional plum. These make for an excellent eating experience.', 'Unique shape Clam Shell Delicious fruit for snack or baking Refrigeration recommended for longer shelf life Proudly grown in California', 'Farm2You', 'https://i5.walmartimages.com/asr/ee77d83d-a18c-40ed-a9ea-edf6961bb435.3f9eea03dcbee3df85c2ba60a24a34f1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ee77d83d-a18c-40ed-a9ea-edf6961bb435.3f9eea03dcbee3df85c2ba60a24a34f1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ee77d83d-a18c-40ed-a9ea-edf6961bb435.3f9eea03dcbee3df85c2ba60a24a34f1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (922147920, 'California Grown Peaches, per Pound', 1.58, '400094336533', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (922406361, 'Fresh Medley Tomato, 10oz', 2.5, '850019660111', 'Bring the fresh, delicious taste of Fresh Medley Tomatoes to your kitchen. These tomatoes are greenhouse grown giving them sweet, juicy flavor in every bite. These multi-colored medley tomatoes come in hues of orange, red and yellow, which adds a nice bit of vibrant color to your meals. Use them to top salads at lunch or dinner, mix them into pasta salads, or add them to omelets for a fresh bite. They are bite sized, which makes them easy to enjoy as a snack, if desired, and there\'s plenty to use in all your favorite recipes. Get creative in the kitchen with Nature Fresh Farms Medley Tomatoes today', 'Ideal for salads, omelets and many other delicious recipes Fresh Medley Grape Tomato, Colorful blend of fresh, high-flavor snacking tomatoes Great for snacking', 'Hypermart', 'https://i5.walmartimages.com/asr/e70701bf-a31a-410e-8839-3096a6c25c5d.407289f00baf2b639b55cc06878304c0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e70701bf-a31a-410e-8839-3096a6c25c5d.407289f00baf2b639b55cc06878304c0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e70701bf-a31a-410e-8839-3096a6c25c5d.407289f00baf2b639b55cc06878304c0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (922721123, 'Yellow Nectarine, 2 lb Carton', 4.48, 'deleted_683953000978', 'Fresh California Grown Nectarines, 2 Lb.', 'Fresh California Grown White Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8457b6b1-f2e5-4de8-b5b2-5a1e9a0dbfb8_3.549500606ada1fbeededab28ab301c2d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8457b6b1-f2e5-4de8-b5b2-5a1e9a0dbfb8_3.549500606ada1fbeededab28ab301c2d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8457b6b1-f2e5-4de8-b5b2-5a1e9a0dbfb8_3.549500606ada1fbeededab28ab301c2d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (922970797, 'Yellow Flesh Peaches, per Pound', 1.58, '400094342992', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (923112054, 'Fresh Green Seedless Grapes', 1.78, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (923494481, 'Fresh Manzanas (Apples) Honeycrisp Sueltas 80-88, Package, Sweet', 1.68, 'deleted_405735750013', 'Our Honeycrisp apples are bursting with flavor and are the perfect snack for any time of day! These crisp and juicy apples have a sweet yet slightly tart taste that will leave your taste buds wanting more. They\'re also a great source of fiber and essential vitamins, making them a healthy snack choice. Try them today and taste the difference!', 'Honeycrisp apples are a crowd-pleasing variety that offer a unique balance of sweetness and tartness. With their crisp texture and juicy flesh, these apples are perfect for snacking, baking, and cooking. Honeycrisp apples are also an excellent source of dietary fiber and vitamin C, making them a healthy addition to any diet. Our Honeycrisp apples are carefully selected and packed at the peak of their freshness to ensure maximum flavor and quality. Whether you\'re enjoying them on their own, using them in a recipe, or sharing them with friends and family, Honeycrisp apples are sure to delight with their delicious taste and satisfying crunch. Find these in your local stores!', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/acd65b99-40ff-4ed2-b462-0f75f6712d69.bf4c015bb0a078e28ccc96ca424f86ab.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/acd65b99-40ff-4ed2-b462-0f75f6712d69.bf4c015bb0a078e28ccc96ca424f86ab.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/acd65b99-40ff-4ed2-b462-0f75f6712d69.bf4c015bb0a078e28ccc96ca424f86ab.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (923627393, 'Fresh Cauliflower Florets With Parmesan Butter', 2.98, '716519012693', 'Indulge in the delicious taste of our Fresh Cauliflower Florets with Parmesan Butter, a delectable side dish that combines the best of healthy and flavorful ingredients. These tender, perfectly-cooked florets are coated in a rich and creamy parmesan butter, offering a melt-in-your-mouth experience with every bite. Simple and ready to serve, this dish makes it easy to enjoy a gourmet treat while getting a dose of essential nutrients at the same time.', 'Cauliflower Florets With Parmesan Butter Indulge in the delicious taste of our Fresh Cauliflower Florets with Parmesan Butter, a delectable side dish that combines the best of healthy and flavorful ingredients. These tender, perfectly-cooked florets are coated in a rich and creamy parmesan butter, offering a melt-in-your-mouth experience with every bite. Simple and ready to serve, this dish makes it easy to enjoy a gourmet treat while getting a dose of essential nutrients at the same time.', 'Mann\'s', 'https://i5.walmartimages.com/asr/269decb8-5030-4a64-94d4-2868723c208f_1.645047f7a392e1844e5db0540ebde501.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/269decb8-5030-4a64-94d4-2868723c208f_1.645047f7a392e1844e5db0540ebde501.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/269decb8-5030-4a64-94d4-2868723c208f_1.645047f7a392e1844e5db0540ebde501.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (923788758, '150pc On Walla 4#', 447, '405515146951', 'short description is not available', '150pc On Walla 4#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (923869639, 'That\'s Tasty Sweet Greens Organic Lettuce Duo, 5 oz', 2.18, '768573710091', 'That\'s Tasty Sweet Greens Organic Lettuce Duo gives you truly delicious organic flavor that you can trust. This lettuce has a high sweetness and a medium crispness for a perfect bite every time, and perfectly combines both green and red leaf lettuce. It is locally and sustainably grown in the USA, free from pesticides, and Non-GMO. Use it to make delicious salads topped with your favorite croutons, nuts, cheese, vegetables, protein and dressing for a fresh taste in every bite. Use it to top sandwiches and burgers, use it to stuff delicious pita bread, or create yummy wraps. Enjoy freshness you can see with That\'s Tasty Sweet Greens Organic Lettuce Duo.', 'That\'s Tasty Sweet Greens Organic Lettuce Duo, 5 oz: Pure USDA certified organic flavor Locally and sustainably grown in the USA High sweetness and medium crispness Free from pesticides and Non-GMO Top burgers and sandwiches or make delicious salads Combination of green and red leaf lettuce for a perfect bite every time', 'That\'s Tasty', 'https://i5.walmartimages.com/asr/0d133256-62e8-4faa-94da-cb1a5ec18646.fcb9696a54e44fac70736b7c9f77cd2e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d133256-62e8-4faa-94da-cb1a5ec18646.fcb9696a54e44fac70736b7c9f77cd2e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d133256-62e8-4faa-94da-cb1a5ec18646.fcb9696a54e44fac70736b7c9f77cd2e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (924240231, 'Ready Pac Foods Bistro Zesty Mediterranean Salad Kit', 3.63, '077745253312', 'When all you want is a fresh and zesty salad, this crispy, tasty blend hits just the right spot. Simply pour the blend of Green Cabbage, Romaine Lettuce, Red Cabbage, Carrots and Parsley into a bowl, toss with the tangy Sumac Vinaigrette, sprinkle the Feta Cheese, Herb Seasoned Flatbread Strips and Dried Apricots onto the salad and you have a perfect crunch and savory salad for you to enjoy.', 'Bistro Zesty Mediterranean Kit', 'Ready Pac Foods', 'https://i5.walmartimages.com/asr/cd93f565-75ba-45fc-a049-519ce1610e5a.dd79e8fbeac9af35b448373318bfcf3d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cd93f565-75ba-45fc-a049-519ce1610e5a.dd79e8fbeac9af35b448373318bfcf3d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cd93f565-75ba-45fc-a049-519ce1610e5a.dd79e8fbeac9af35b448373318bfcf3d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (924795925, '240pc On Swt 3# Ca', 715.2, '405555388748', 'short description is not available', '240pc On Swt 3# Ca', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (924882024, 'Fresh Green Seedless Grapes', 1.98, '', 'short description is not available', 'Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (925804940, '100pc Orange Navel8#', 797, '405510607495', 'short description is not available', '100pc Orange Navel8#', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (925881081, 'Fresh Red Seedless Grapes, Bag', 1.68, 'deleted_850550002814', 'short description is not available', 'Fresh Red Seedless Grapes, Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (926101259, 'Fresh Pink Guava, Each', 3.93, '851502006331', 'Fresh Pink Guava is a tropical fruit known for its sweet, fragrant flavor and vibrant pink interior. With its green outer skin and juicy, rosy flesh, this fruit is both delicious and refreshing. Guava can be enjoyed sliced fresh, blended into smoothies, or used to create jams, juices, and desserts. Packed with natural nutrients, it\'s a wholesome snack that brings a taste of the tropics to your table. Whether eaten on its own or added to recipes, Fresh Pink Guava is a flavorful way to enjoy fresh produce.', 'Fresh Pink Guava, Each Features a green outer skin with pink, juicy flesh Sweet and fragrant tropical flavor Perfect for eating fresh, blending, or cooking Great for smoothies, juices, jams, and desserts Wholesome fruit option with natural nutrients', 'Unbranded', 'https://i5.walmartimages.com/asr/0facf6b8-efd8-451d-8c94-804d4434a7da.263c23026f5432a62c30e50663c1e6c4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0facf6b8-efd8-451d-8c94-804d4434a7da.263c23026f5432a62c30e50663c1e6c4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0facf6b8-efd8-451d-8c94-804d4434a7da.263c23026f5432a62c30e50663c1e6c4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (927585753, 'Green Pepper 3-pack', 1.94, '071106900112', 'short description is not available', 'Green Pepper 3-pack', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (927760104, 'Peruvian Black Seedless Grapes', 2.98, '', 'short description is not available', 'Peruvian Black Seedless Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (927992619, 'Gourmet212 Stuffed Cabbage Leaves 14.11oz., 6 Pack', 62.95, '191822007282', 'You might have loved cabbage. In fact, you might have searched ?cabbage rolls near me? or where can I buy cabbage rolls? on the Internet before; now, you are at the right place to buy some stuffed cabbage leaves. Stuffed cabbage leaves are a very popular dish in Turkey. They can be prepared with both olive oil and ground meat. To be able to offer you a vegan dish, we prefer to make it with olive oil. It is ready to serve so you can open and immediately serve the stuffed cabbage leaves to your guests. Also, you can take it with you to the workplace and enjoy this cheap and healthy meal during your lunch break. You can buy our product in inner peace because of the reasons given below: It is ready to serve It is prepared with extra virgin olive oil It is all natural It is Kosher Certified It is Halal Certified Ingredients: Cabbage 34,6%, Onion 26%, Rice 21,7%, Extra virgin olive oil 5%, Sunflower oil, Tomato paste 3%, Pepper Paste, Spice mix (mint, black pepper, dill, parsley), Salt, Water, Acidity Regulator (Citric acid). Enjoy the healthy stuffed cabbage leaves. Bon appetite!', 'Gourmet212 Stuffed Cabbage Leaves 14.11oz (Pack of 6), Fresh Vegetable Preserved in Airtight Stainless Steel Tin Canned. It is Halal and Kosher Certified. The stuffed cabbage leaves are a dish highly appreciated in Turkey. You can make them with olive oil and minced meat. It is all-natural and prepared with extra virgin olive oil. Ingredients: Rice 21.7%, Cabbage 34,6%, Onion 26%, Extra virgin olive oil 5%, Tomato paste 3%, Sunflower oil, Pepper Paste, Spice mix (mint, black pepper, dill, parsley), Salt, Water, Acidity Regulator (Citric acid).', 'Gourmet212', 'https://i5.walmartimages.com/asr/892924f6-cbfa-4cba-91a0-1b1b383ad826.3b85985f665a08a93c265e6aedd45c5d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/892924f6-cbfa-4cba-91a0-1b1b383ad826.3b85985f665a08a93c265e6aedd45c5d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/892924f6-cbfa-4cba-91a0-1b1b383ad826.3b85985f665a08a93c265e6aedd45c5d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (928100850, 'Avocado 3 Ct Bag', 4.48, 'deleted_636442400018', 'short description is not available', 'Avocado 3 Ct Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (928161481, 'Yellow Flesh Peaches, per Pound', 1.58, '400094730416', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (928221370, 'Sugar Cane Bulk', 0.98, 'deleted_000000047906', 'short description is not available', 'Sugar Cane Bulk', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/43fad02f-6260-4703-9cad-c91f3246ac46_1.fde3e1d4842c6bd5e61cb031a1edbba2.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/43fad02f-6260-4703-9cad-c91f3246ac46_1.fde3e1d4842c6bd5e61cb031a1edbba2.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/43fad02f-6260-4703-9cad-c91f3246ac46_1.fde3e1d4842c6bd5e61cb031a1edbba2.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (928979605, 'Tomato on the Vine, Bag', 1.98, '', 'Keep your recipes simple and classic with fresh tomatoes on the vine. With their vibrant red color, firm and juicy flesh, and unmistakably delicious flavor, this fresh produce item is sure to impress more than just your taste buds. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. The list is endless! Plus, they come right to your kitchen still on the vine that they grew on, meaning that their mouthwatering taste and freshness will be long-lasting for your culinary convenience. Stock up on Walmart\'s Tomatoes On The Vine and keep your dishes looking great and tasting equally as excellent.', 'Tomato on the Vine, Bag: Wholesome, versatile, and delicious Ideal ingredient for a variety of dishes Make a zesty tomato sauce to go along with your favorite pasta Enjoy on their own as a nutritious snack Make a flavorful salsa or add some pop to your guacamole', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (929099565, 'White Salt Potatoes Whole Fresh, 5 lb Bag', 5.24, '077890926918', 'These Fresh Idaho Potatoes are a must-have for any pantry. With so many ways to prepare potatoes, you\'ll want to add them to every meal. For breakfast, you could make crispy hash browns smothered in cheese and diced ham or add them to a savory omelet. For lunch or dinner, you could use these fresh potatoes to make au gratin potatoes, garlic mashed potatoes, or a baked potato loaded with cheese, sour cream, green onions, and bacon bits. If you\'re hosting a neighborhood get-together, you can use them to make creamy potato salad or homestyle French fries. Serve up something delicious when you cook with Fresh Idaho Potatoes.', 'White Salt Potatoes Whole Fresh, 5 lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (929297252, 'Fresh Bartlett Pears, 3 lb Bag', 3.78, '829570305243', 'Savor the sweet taste of Fresh Bartlett Pears. Bartlett Pears are aromatic and have a definitive pear flavor that make them great for breakfast, lunch, dinner, and dessert. Chop the pears up and add them to muffins with walnuts and vanilla for a sweet treat that’s great for breakfast to get your morning started on a high note. Slice them up and top a pizza with prosciutto, goat cheese, and arugula for a mouthwatering meal perfect for a family dinner or dinner party. Cut the pear in half and cook it in a skillet with butter, brown sugar, and vanilla and serve with a scoop of vanilla ice cream for a decadent dessert. Enjoy tasty meals any time of day with Fresh Bartlett Pears.', 'Fresh Bartlett Pears, 3 lb Bag Sweet, crisp, and juicy Excellent snacking pear Make a creamy smoothie or a nutritious juice blend Add to your salad for extra crunch and flavor Adds flavor to a variety of recipes Make pear butter or poached pears Make sweet desserts like pear cobbler, pear crisp or pear tarts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/44bb606a-512b-4168-a56c-d7786ff254db.dee214abc8bfffb8294163c2b428ce57.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44bb606a-512b-4168-a56c-d7786ff254db.dee214abc8bfffb8294163c2b428ce57.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/44bb606a-512b-4168-a56c-d7786ff254db.dee214abc8bfffb8294163c2b428ce57.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (929555387, 'Gem Avocado 3 Count Bag', 6.94, 'deleted_887214001401', 'short description is not available', 'Gem Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (929921177, 'Services Reduced Program Dept 94', 0.01, '251712000004', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (930095582, 'Revol Greens Spring Mix Salad, 4 oz Clam Shell, Fresh', 2.98, '865638000415', 'Revol Greens® Spring Mix is a blend of tender and crisp baby lettuce. All Revol Greens® lettuce is grown inside a greenhouse and harvested daily, 365 days a year. Our regional greenhouse locations allow us to reach nearly all our customers within 24-48 hours of harvest, so that our greens arrive incredibly fresh and at peak nutritional value. Find this at your local Walmart. Whole Fruit.', 'Locally grown in a protected greenhouse environment Sustainably grown with 90% less water than field grown lettuce Non-GMO', 'Revol Greens', 'https://i5.walmartimages.com/asr/39f919c1-2ff7-40ed-b9b6-8a13a0a87c87.62a16b332c5781366ed41580f3de0f21.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39f919c1-2ff7-40ed-b9b6-8a13a0a87c87.62a16b332c5781366ed41580f3de0f21.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/39f919c1-2ff7-40ed-b9b6-8a13a0a87c87.62a16b332c5781366ed41580f3de0f21.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (930101033, 'Pinata Apples 2 Lb Bag', 2.43, '741839003502', 'short description is not available', 'Pinata Apples 2 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e205a841-27e0-49e9-8975-16562454774f_1.58b2fcdaed996dd86131d70223e70d39.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e205a841-27e0-49e9-8975-16562454774f_1.58b2fcdaed996dd86131d70223e70d39.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e205a841-27e0-49e9-8975-16562454774f_1.58b2fcdaed996dd86131d70223e70d39.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (930311013, 'Watermelon Seedless', 4.98, '400094393932', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (930593592, 'Mini Sweet Peppers', 2.88, 'deleted_817818010035', 'short description is not available', 'Mini Sweet Peppers', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (930682868, 'Fieldpack Unbranded Fresh Strawberries 1#', 2.24, 'deleted_857895003001', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4e7dab6a-c54b-48f7-9bd2-57f5d211501d_1.3ba50bfdf1c7f082056c0f5022edf182.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4e7dab6a-c54b-48f7-9bd2-57f5d211501d_1.3ba50bfdf1c7f082056c0f5022edf182.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4e7dab6a-c54b-48f7-9bd2-57f5d211501d_1.3ba50bfdf1c7f082056c0f5022edf182.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (931174476, '90pc Pto Rst 10# Ff', 444.6, '405530518122', 'short description is not available', '90pc Pto Rst 10# Ff', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (931192536, 'Fresh Red Grapes, lb', 4.98, '', 'Treat yourself to the delicious, juicy flavor of Fresh Red (Uvas) Grapes Bag. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Fresh Red Grapes.', 'Grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes', 'Dole', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (931337435, 'Mother Earth Products Dehydrated Mushrooms, 2 Full Cup Mylar Bag', 6.61, '810919032593', 'Mother Earth Products Dehydrated Champignon Mushrooms: a healthy & convenient addition to every area of your life without the headache: emergency preparedness, snacking, long and short term storage, traveling, everyday cooking, hiking, backpacking, spicing up your recipes, etc. use it now or later. Mother Earth Products Dehydrated Champignon Mushrooms are made with real, Non-GMO Champignon Mushrooms, no additives or preservatives, & is kosher - a guilt-free, robust food that makes eating tasty & rewarding, without the hassle of weekly trips to the store or the worry of spoiling. It?s so delicious you won?t store it away and hope you never have to use it. Taste the Goodness of Mother Earth Products', '100% champignon mushrooms; spice; good for all recipes, especially soups, stir fry, and pizza; long term storage; short term storage; pantry; portable; convenient; nothing added; emergency preparedness; great flavor; easy to cook with', 'Mother Earth Products', 'https://i5.walmartimages.com/asr/ffabef4d-d373-4746-b62f-00cea74602c9.bacb9cfdcbfd6c3c5943c52bb83196ae.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ffabef4d-d373-4746-b62f-00cea74602c9.bacb9cfdcbfd6c3c5943c52bb83196ae.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ffabef4d-d373-4746-b62f-00cea74602c9.bacb9cfdcbfd6c3c5943c52bb83196ae.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (931456800, 'Idaho Potatoes, 10 Lb.', 4.44, '811857021915', 'Idaho Potatoes, 10 Lb.', 'Idaho Potatoes 10 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (931472621, 'Jumbo White Onions Per Pound', 0.51, 'deleted_887051000155', 'short description is not available', 'Jumbo White Onions Per Pound', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1174e614-3db8-42bc-a9bc-635561546278_3.d9983023dccdee5bd7f6c384f3ead1d8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1174e614-3db8-42bc-a9bc-635561546278_3.d9983023dccdee5bd7f6c384f3ead1d8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1174e614-3db8-42bc-a9bc-635561546278_3.d9983023dccdee5bd7f6c384f3ead1d8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (931737940, 'Donut Nectarines, 1 Lb.', 2.78, '000000034371', 'Donut Nectarines, 1 Lb.', 'Nectarine Donut', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (931756165, 'Fresh Cherry Tomato, 10 oz Clam Shell', 3.77, '850019660098', 'Bring the fresh, delicious taste of Cherry Tomatoes into your home. Because of their notable flavor and thicker skin, they are a versatile tomato that\'s great for grilling, sauteing, roasting, or baking. Their small size also makes them a quick and simple addition to a fresh salad as well as an excellent finger food for whenever you\'re in the mood for a light snack. Packed with nutrients, cherry tomatoes are a deliciously healthy ingredient that adds both vibrant color and mouthwatering flavor to any recipe. For the best flavor and freshness, store these tomatoes at room temperature on your kitchen counter. Make your next meal a marvelous one with these fresh Cherry Tomatoes', 'Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Store at room temperature for best result', 'Hypermart', 'https://i5.walmartimages.com/asr/578d4ae4-f572-4c0a-8e70-e0211eaf69de.01dfebe8f8dfa182b80d67301ce0511a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/578d4ae4-f572-4c0a-8e70-e0211eaf69de.01dfebe8f8dfa182b80d67301ce0511a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/578d4ae4-f572-4c0a-8e70-e0211eaf69de.01dfebe8f8dfa182b80d67301ce0511a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (931868278, 'Apple Slices 5/2 Oz', 4.97, '077745250595', 'short description is not available', 'Apple Slices 5/2 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (932739562, 'California Grown Peaches, per Pound', 1.58, '400094989142', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (933510172, 'Savory Italian Herb Ready Sides', 4.97, '816719020464', 'short description is not available', 'Savory Italian Herb Ready Sides', 'CHURCH BROTHERS FARMS', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (934023112, 'Organic Red Potatoes, 3 Lb.', 4.96, 'deleted_852883004473', 'Organic Red Potatoes, 3 Lb.', 'Organic Red Potatoes 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0a4dfa35-5429-4279-957e-e493ff5058cb.3e67fada51c0833194a908c200bfc926.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a4dfa35-5429-4279-957e-e493ff5058cb.3e67fada51c0833194a908c200bfc926.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0a4dfa35-5429-4279-957e-e493ff5058cb.3e67fada51c0833194a908c200bfc926.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (934348903, 'BrightFarms Baby Kale 3oz', 2.98, '857062004428', 'These tender, leafy greens have a light and refreshing flavor. Raw or sautéed, our baby kale pairs well with lemon juice and olive oil. Toss in cheese and nuts for a delicious salad, or season and roast it for a deliciously healthy snack. Locally Grown Non-GMO Project Certified Pesticide Free', '', 'BrightFarms', 'https://i5.walmartimages.com/asr/16d88251-dad7-42b4-a82c-8e5bfd96ca88_2.2d7d7e029763b329c9cf1e3f9e12fdc0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/16d88251-dad7-42b4-a82c-8e5bfd96ca88_2.2d7d7e029763b329c9cf1e3f9e12fdc0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/16d88251-dad7-42b4-a82c-8e5bfd96ca88_2.2d7d7e029763b329c9cf1e3f9e12fdc0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (934564540, 'Org Rainbow Chard', 1.96, 'deleted_000000945134', 'short description is not available', 'Org Rainbow Chard', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (934855418, 'Marketside Spring Mix Salad Blend, 5 oz Bag, Fresh', 2.73, '681131354998', 'Marketside Spring Mix is made with a wholesome medley of baby lettuce blend, baby greens blend, and radicchio. This mix is packed fresh, washed and ready to eat for your convenience. Use it to create your very own personalized salads that are tossed with your favorite vegetables, protein, nuts, and dressing, use it as a topping on sandwiches and pizzas, or simply enjoy it as a healthy side. As a good source of nutritional benefits such as dietary fiber, calcium, and iron, Marketside Spring Mix is an easy way to get your veggies in every day. Enjoy fresh from the farm taste with Marketside Spring Mix. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Spring Mix Salad Blend, 5 oz Bag, Fresh Wholesome mix of baby lettuce blend, baby greens blend, and radicchio Washed and ready to eat 15 calories per serving 1 serving per package', 'Marketside', 'https://i5.walmartimages.com/asr/9f0b7fb0-c10b-4007-b73d-4ff83cb0ffcd.cff151b0cc9bbd1f7bee1de5dddbb767.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9f0b7fb0-c10b-4007-b73d-4ff83cb0ffcd.cff151b0cc9bbd1f7bee1de5dddbb767.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9f0b7fb0-c10b-4007-b73d-4ff83cb0ffcd.cff151b0cc9bbd1f7bee1de5dddbb767.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (935853482, 'Services Reduced Program Dept 94', 0.01, '251800000008', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (935905349, '180pc Apl Granny 3#', 651.6, '405663964391', 'short description is not available', '180pc Apl Granny 3#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (936560938, 'Pure Green Farms Baby Green Leaf Salad, 8 oz Clam Shell, Fresh', 4.48, '850014580049', 'Our hydroponic Baby Green Leaf lettuce is a crispy baby green lettuce with brilliant flavor', 'Keep Refridgerated, Greenhouse Grown in the USA, Pesticide Free', 'Pure Green Farms', 'https://i5.walmartimages.com/asr/085b0929-9da9-41f0-85c9-dff69291c06c.29e04f6fbd5ac826585a0200113a86b4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/085b0929-9da9-41f0-85c9-dff69291c06c.29e04f6fbd5ac826585a0200113a86b4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/085b0929-9da9-41f0-85c9-dff69291c06c.29e04f6fbd5ac826585a0200113a86b4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (936984554, '840pc Pomegranate', 1663.2, '405719722098', 'short description is not available', '840pc Pomegranate', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (937234240, 'Whole White Mushrooms, 8 oz', 1.97, 'deleted_771163000717', 'These White Mushrooms are nutritious and delicious. White mushrooms have a small stem, smooth cap, and mild flavor that pairs well with a variety of dishes....', '365 by Whole Foods Market products give you that dance-down-the-aisles feeling, virtual aisles too! Our huge range of choices with premium ingredients at prices you can get down with makes grocery shopping so much more than tossing the basics in your cart.', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/d1869514-5857-4206-9213-344fc79b54e7.a3f0ac546ccebbde286fa5470baad20a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d1869514-5857-4206-9213-344fc79b54e7.a3f0ac546ccebbde286fa5470baad20a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d1869514-5857-4206-9213-344fc79b54e7.a3f0ac546ccebbde286fa5470baad20a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (937633562, 'Fresh Yellow Watermelon Seeded, Each', 5.77, '000000043304', 'Treat yourself to a sweet Fresh Yellow Seeded Watermelon. Enjoy this tasty watermelon on its own as a healthy snack or incorporate it into a variety of delicious recipes. For breakfast, you can make a sweet fruit bowl with sliced watermelon, strawberries, pineapple, banana, and kiwi. For an extra special treat, top with a dollop of whipped cream. Fresh seeded watermelons are rich in micronutrients! You can also serve up this watermelon at your next neighborhood barbecue, use it to make a refreshing sorbet, or make a delicious summertime cocktail.', 'Fresh Seeded Yellow Watermelon: Enjoy a Fresh Seeded Yellow Watermelon on its own or add to a mixed fruit salad Serve at your next neighborhood barbecue Get creative and make a watermelon cocktail or a refreshing sorbet Sweet and Juicy Explore all the delicious ways to add fresh yellow watermelon to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (937808617, '240pc On Ylw 3# Cfv', 465.6, '400094859131', 'short description is not available', '240pc On Ylw 3# Cfv', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (937835653, 'Pink Apples, Each', 2.27, '', 'short description is not available', 'Pink Apples, Each', 'FIELDPACK UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (938390922, 'Hatch Chili Medium 2lb Bag', 3.94, '037842056766', 'Unique flavored pepper grown in the hatch valley of New Mexico. For amazing flavor, simply roast, peel and add to your favorite recipe. Perfect at breakfast in your burrito or omelette. Spice up your salsa and quacamole or add to your favorite dinner dish such as burgers, pizza, enchiladas, and much more.', 'Unique flavored pepper grown in the hatch valley of New Mexico. For amazing flavor, simply roast, peel and add to your favorite recipe. Perfect at breakfast in your burrito or omelette. Spice up your salsa and quacamole or add to your favorite dinner dish such as burgers, pizza, enchiladas, and much more.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/73225738-58e8-4de0-af06-f4a3e69e82da_1.de688b32640d5c837e71d458fce176d2.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/73225738-58e8-4de0-af06-f4a3e69e82da_1.de688b32640d5c837e71d458fce176d2.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/73225738-58e8-4de0-af06-f4a3e69e82da_1.de688b32640d5c837e71d458fce176d2.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (938776704, 'Robinson Red Grapes Cup', 1.98, '717524720542', 'short description is not available', 'Robinson Red Grapes Cup', 'Robinson', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (939359643, '10# Bag Grapefruit', 5.42, '033383120676', 'The ideal balance between tart and sweet, this Fresh Red Grapefruit is great for both savory and sweet dishes any time of day. Enjoy half of a grapefruit sprinkled with sugar with some eggs in the morning for a light, sweet breakfast. Slice it up and put in a salad with spinach, avocado, and red onion topped with a mustard and balsamic vinegar dressing for lunch or dinner. Make delicious grapefruit bars that showcase the sweet and tartness of this versatile fruit. In addition, it\'s a great source of vitamin C and vitamin A. With such versatility, Fresh Red Grapefruit will become a pantry staple in your home.', 'Fresh red grapefruit is great for both savory and sweet dishes Enjoy it for breakfast, lunch, dinner, or dessert Enjoy half a grapefruit sprinkled with sugar in the morning', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9b84af97-6b8d-4eae-b425-f5c61f424ac5.24cc26efbf95c43c758eac871c485527.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b84af97-6b8d-4eae-b425-f5c61f424ac5.24cc26efbf95c43c758eac871c485527.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b84af97-6b8d-4eae-b425-f5c61f424ac5.24cc26efbf95c43c758eac871c485527.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (939382679, 'Spring Mix Salad, 4.5 Oz.', 2.98, '860000030601', 'Better Fields Farm Spring Mix, 4.5 oz', 'Baby Lettuce BlendPacked FreshLocally GrownNon-GMOHydroponically GrownPerishable; keep refrigeratedNet weight 4.5 oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/188f2a2b-6ede-4ba8-b5f4-3d76d7194cf8_3.948c6d71b66aeb15af49ee8dca9d15b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/188f2a2b-6ede-4ba8-b5f4-3d76d7194cf8_3.948c6d71b66aeb15af49ee8dca9d15b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/188f2a2b-6ede-4ba8-b5f4-3d76d7194cf8_3.948c6d71b66aeb15af49ee8dca9d15b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (939451042, '3lb Bag Of Bosc Pears', 4.97, '', 'short description is not available', '3lb Bag Of Bosc Pears', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (939548154, '100pc Pto Idado 10#', 597, '405546470896', 'short description is not available', '100pc Pto Idado 10#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (940171210, 'Freshness Guaranteed Watermelon 42 Oz', 9.97, 'deleted_681131036641', 'short description is not available', 'Freshness Guaranteed Watermelon 42 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (940457348, 'Ogp Red Cherry Samples', 0.01, '405836139359', 'Enjoy our deliciously sweet red cherries grown in Washington. Full of nutrition, these fresh red cherries are not only delicious, but also packed with vitamins and minerals like vitamin C, potassium, and vitamin B complex. Enjoy these cherries on their own, as part of desserts and entrees, or add them to drinks. Cherries can stay fresh when frozen for up to three months, so you\'ll be able to enjoy them throughout the fall and winter seasons. Make sure you use a freezer bag that removes as much air as possible. Then, when you\'re ready to eat them, thaw cherries in the refrigerator and enjoy. Get powerful nutrition and flavor with these Fresh Red Cherries.', 'Ogp Red Cherry Samples Bursting with antioxidants, phytochemicals, vitamins, nutrients, and fiber Rich source of vitamin C, potassium, and vitamin B complex Versatile and delicious Wonderful addition to entrees, desserts, and beverages To enjoy fresh cherries: store in the refrigerator and wash just before eating Grown in Washington', 'Fresh Produce', 'https://i5.walmartimages.com/asr/079a8787-8441-42a5-8fe1-b783c7973664.805d57aadb9f606d0e5e63b4697002d9.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/079a8787-8441-42a5-8fe1-b783c7973664.805d57aadb9f606d0e5e63b4697002d9.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/079a8787-8441-42a5-8fe1-b783c7973664.805d57aadb9f606d0e5e63b4697002d9.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (940651956, '200pc Pto Ykn/red 5#', 1074, '405547375299', 'short description is not available', '200pc Pto Ykn/red 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (940726662, 'Organic Green Seedless Grapes, 2 Lb', 5.98, '816426012851', 'Organic Fresh Green Seedless Grapes', 'Selected and stored fresh,Sourced with high quality standards,Recommended to wash before consuming,Delicious on their own as a healthy snack or as part of a recipe,Refrigerate immediately for maximum shelf life and flavor', 'Zinfandel', 'https://i5.walmartimages.com/asr/35d7e77c-4759-4f47-867e-6f2fbc6f0d35.25e0a4d66df6db6d4fa7cd432770f66f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35d7e77c-4759-4f47-867e-6f2fbc6f0d35.25e0a4d66df6db6d4fa7cd432770f66f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/35d7e77c-4759-4f47-867e-6f2fbc6f0d35.25e0a4d66df6db6d4fa7cd432770f66f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (940947941, '120pc Grapefruit 5#', 717.6, '405785123195', 'short description is not available', '120pc Grapefruit 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (941331025, 'Yellow Flesh Peaches, per Pound', 1.58, '400094341063', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (942081086, 'Calming Comfort 12pc', 1200, '', 'short description is not available', 'Calming Comfort 12pc', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (942553424, 'Vidalia Onions, 2 Lb.', 2.88, 'deleted_743568601516', 'Vidalia Onions, 2 Lb.', 'Vidalia Onions 2 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (943161785, 'Robinson Fresh Green Seedless Grapes', 9.97, 'deleted_095829600418', 'short description is not available', 'Robinson Fresh Green Seedless Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/b857d6b9-e7f5-4603-8eea-0dbc43dd2c38.d51063bf9750b5c0d3c66c73d01418ed.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b857d6b9-e7f5-4603-8eea-0dbc43dd2c38.d51063bf9750b5c0d3c66c73d01418ed.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b857d6b9-e7f5-4603-8eea-0dbc43dd2c38.d51063bf9750b5c0d3c66c73d01418ed.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (943315102, '125pc Pto Russet 8#', 802.5, '405551652393', 'short description is not available', '125pc Pto Russet 8#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (943367003, 'Diced Red Onions', 2.58, '782796022298', 'short description is not available', 'Diced Red Onions', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (943409312, 'AVO LBAG 10/5 48', 3.28, '', 'Avocados', 'Large Avocado 5 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (943513700, 'Bako Sweet Organic Purple Skin Sweet Potatoes, 14 Oz', 4.47, '819614010417', 'Grown from the sweet spot of California, these Organic Purple Sweet Potatoes are purple on the outside and white on the inside. They are an exotic alternative to traditional sweet potatoes. Firm and dense with a mildly sweet with a full, nutty flavor and a vanilla aroma. Sweet potatoes are a superfood and can be enjoyed in many ways, making it easy to feed your family the best.', 'Ready to enjoy Loaded with Vitamin A Good source of fiber Nutritious Superfood Triple Washed Non-GMO', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2ba9b483-b873-4187-b59f-afaad71a840a.1dc9854b6e39d7fddee95a080562ea9c.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2ba9b483-b873-4187-b59f-afaad71a840a.1dc9854b6e39d7fddee95a080562ea9c.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2ba9b483-b873-4187-b59f-afaad71a840a.1dc9854b6e39d7fddee95a080562ea9c.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (943996470, '200pc Pto Idado 5#', 648, '405511900960', 'short description is not available', '200pc Pto Idado 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (944197720, 'Fortune Brand Dried Black Fungus, Whole, 4 Oz, 50 Ct', 66.47, '022652206968', 'DRIED BLACK FUNGUS WHOLE', 'Fortune Brand Dried Black Fungus, Whole, 4 Oz, 50 Ct', 'FORTUNE BRAND', 'https://i5.walmartimages.com/asr/8ddcc758-8506-437d-9ee8-b55b2ca27c93.ea9903dedbd3272e0c9f970fadc26873.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ddcc758-8506-437d-9ee8-b55b2ca27c93.ea9903dedbd3272e0c9f970fadc26873.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ddcc758-8506-437d-9ee8-b55b2ca27c93.ea9903dedbd3272e0c9f970fadc26873.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (944244583, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094129319', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (946239668, '90pc Apple Fuji 3#', 447.3, '405665886547', 'short description is not available', '90pc Apple Fuji 3#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (946480895, 'Melon De Agua 65#', 0.78, '405873138377', 'short description is not available', 'Melon De Agua 65#', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (946620858, 'Gourmet Banana Shallots 1 Lb Mesh Bag', 1.88, '', 'short description is not available', 'Gourmet Banana Shallots 1 Lb Mesh Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (946839978, 'Local Roots Baby Butter Blend, 4.5 oz', 2.98, '853911006254', 'An upgraded mix of heritage baby butterhead lettuces.', 'Grown locallyGrown with zero pesticides or herbicidesGrown with up to 99% less waterHigh in Chlorophyll & Vitamins', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f2356a4b-5140-4b01-9815-3d33db1f5b6f.d86afa30451a222a238a3093f4b250ba.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f2356a4b-5140-4b01-9815-3d33db1f5b6f.d86afa30451a222a238a3093f4b250ba.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f2356a4b-5140-4b01-9815-3d33db1f5b6f.d86afa30451a222a238a3093f4b250ba.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (946886270, '120pc Apl Red Del 5#', 656.4, '405667988591', 'short description is not available', '120pc Apl Red Del 5#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (947758886, 'Gourmet212 Grilled Artichokes Marinated In Oil 7.05oz (12 Pack), Glass, Jarred, Fresh', 87.95, '191822005073', 'Aegean?s olive oil dishes are very famous. Taste of Mediterranean and light color artichokes will give with tasty broad bean or as a mezze The light color artichoke will give you Mediterranean taste with broad beans or serve as mezze. It is being served with potatoes, green beans and carrots at most fish restaurants.', 'Gourmet212 Grilled Artichokes Marinated In Oil 7.05oz (12 Pack), Airtight Glass Jar, Kosher, and Halal Certified, Fresh Grilled Artichokes, being served with potatoes, green beans, and carrots at most fish restaurants. Store in Cold and Dry places, away from direct sunlight. Keep refrigerated after opening. Amount per serving Calories 30.', 'Gourmet212', 'https://i5.walmartimages.com/asr/6224954b-8ae5-4a72-b799-ee0930877163.befceb6e45f2099908b3a489b7590921.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6224954b-8ae5-4a72-b799-ee0930877163.befceb6e45f2099908b3a489b7590921.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6224954b-8ae5-4a72-b799-ee0930877163.befceb6e45f2099908b3a489b7590921.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (947928125, '180pc Apple Gala 3#', 561.6, '405667977953', 'short description is not available', '180pc Apple Gala 3#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (948454395, 'Fieldpack Unbranded Bunch Radishes', 1.97, 'deleted_811944020951', 'short description is not available', 'Fieldpack Unbranded Bunch Radishes', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (948724302, '180pc Pto Rst 10# Ff', 889.2, '400094860410', 'short description is not available', '180pc Pto Rst 10# Ff', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (948785852, 'Yellow Flesh Peaches, per Pound', 1.58, '400094437452', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (948818803, 'Freshness Guaranteed Cantaloupe 10 Oz', 3.12, 'deleted_681131036511', 'short description is not available', 'Freshness Guaranteed Cantaloupe 10 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (948904558, 'Fresh Cocktail Tomato, 1 lb Package', 2.98, '751666613850', 'Holding the ideal balance of sweetness and acidity, it\'s easy to see why Cocktail Tomatoes are called the tomato lover\'s tomato. Cocktail Tomatoes are small in size, making them an ideal choice for appetizers to pair with your everyday meals and for when you\'re entertaining guests. You can combine these tasty little tomatoes with fresh mozzarella and basil drizzled with olive oil or slice them up and add them to a freshly tossed salad. If you\'re feeling something classic, you can always cut one up to add that fresh tomato taste to a sandwich or dice up a few to make a delightful pizza topping. Plus, Cocktail Tomatoes are packed with nutrients, including vitamins A, B6, B12, C, D, E, K, phosphorous, magnesium and zinc, so you can feel good about adding some extra flavor to your meals. Be sure to add Cocktail Tomatoes to your inventory of fresh ingredients today.', 'Cocktail Tomatoes, 16 oz The tomato lover\'s tomato Small size is ideal for salads and appetizers To maintain sweetness, do not refrigerate 16-oz package of fresh, whole Cocktail tomatoes These European-style whole tomatoes are ideal all year long', 'Fresh Produce', 'https://i5.walmartimages.com/asr/522d842b-bea3-446b-9f17-8fd6889a97e4.c6bcf7c8099a0081480129465e3ba397.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/522d842b-bea3-446b-9f17-8fd6889a97e4.c6bcf7c8099a0081480129465e3ba397.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/522d842b-bea3-446b-9f17-8fd6889a97e4.c6bcf7c8099a0081480129465e3ba397.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (949006005, 'Strawberry Cherries, 1 Lb.', 5.98, '813200013615', 'Strawberry Cherries, 1 Lb.', 'Strawberry Cherry 1 Lb Clam', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (949041021, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094987049', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (949711977, 'Mann\'s Steakhouse Baby Broccolini, 6oz', 4.47, '716519009846', 'Broccolini baby broccoli is a delicious cross between Chinese kale and broccoli which gives you the floret of the broccoli and stem of the kale. It is 100% edible with a sweet, earthy taste and tender stem. Baby broccolini resembles broccoli but has longer, thinner stems and smaller florets. Its overall appearance is more delicate compared to regular broccoli. Baby broccolini is rich in vitamins, minerals, and antioxidants. It\'s a good source of vitamin C, vitamin K, vitamin A, folate, and fiber. It also contains sulforaphane, a compound known for its potential health benefits.', 'Mann\'s Steakhouse Baby Broccolini, 6oz Tender stems Washable ready to eat Non GMO Bag is quick peel you can stem in bag It\'s a good source of vitamin C, vitamin K, vitamin A, folate, and fiber', 'Mann\'s', 'https://i5.walmartimages.com/asr/96fdfa2f-f9c1-47d6-bb31-11a5b0a905c4.675c81d360398c778e4ab075720880ae.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fdfa2f-f9c1-47d6-bb31-11a5b0a905c4.675c81d360398c778e4ab075720880ae.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fdfa2f-f9c1-47d6-bb31-11a5b0a905c4.675c81d360398c778e4ab075720880ae.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (950108553, 'Organic Gummyberries Grapes, 1 Lb', 3.48, 'deleted_816426012776', 'short description is not available', 'Organic Gummyberries Grapes, 1 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (950183992, 'Organic Microwavable Potatoes, 1 Each', 1.28, 'deleted_813652010781', 'Organic Microwavable Potatoes, 1 Each', 'Organic Microwavable Potatoes Per Each', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (950609802, '200pc Pto Idaho 5#', 794, '405532298664', 'short description is not available', '200pc Pto Idaho 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (951255674, 'Expert Gardner 4PK Cherry Tomato Cherry Mix', 3.48, '783975662465', 'Seville Farms, Plant', 'Expert Gardener Merchandise', 'Expert Gardener', 'https://i5.walmartimages.com/asr/6915b86e-2426-4689-aaf1-246c0e286933.fd04b2f4e14b050329378e0a2a6f4863.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6915b86e-2426-4689-aaf1-246c0e286933.fd04b2f4e14b050329378e0a2a6f4863.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6915b86e-2426-4689-aaf1-246c0e286933.fd04b2f4e14b050329378e0a2a6f4863.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (951345661, '180pc Apple Gala 3#', 561.6, '405668326927', 'short description is not available', '180pc Apple Gala 3#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (951468352, 'Pineapple Chunks 6oz', 2.28, '095309661014', 'short description is not available', 'Pineapple Chunks 6oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (951621036, 'Fresh Blend Rosemary Red Potatoes', 3.48, '834344010032', 'short description is not available', 'Fresh Blend Rosemary Red Potatoes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (951953827, 'Yellow Flesh Peaches, per Pound', 1.58, '405528875497', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (952289630, 'Persian Limes, 1 Each', 0.32, 'deleted_899858002003', 'Persian Limes, 1 Each', 'Bulk Persian Limes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/2e9c4e3b-9f49-4b8c-a97e-f6c596062ee1_1.124ce6c905ef9e00297755994dfb347a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2e9c4e3b-9f49-4b8c-a97e-f6c596062ee1_1.124ce6c905ef9e00297755994dfb347a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2e9c4e3b-9f49-4b8c-a97e-f6c596062ee1_1.124ce6c905ef9e00297755994dfb347a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (952337983, 'Prico Pinapple Chunks 12 oz.', 4.27, '794504171723', 'Enjoy the sweet, tropical flavor of Fresh Pineapple Chunks (Pina Fresca). These pre-cut chunks are great for breakfast, lunch, dessert, or when you want a snack. Pineapple is a good source of vitamin C, vitamin A and vitamin B6 making them an excellent healthy treat. You can eat the chunks right out of the container, infuse them with water and mint for a refreshing drink, or chop them up and make a mouthwatering pineapple salsa with jalapenos, tomatoes, and red onion.', 'Sweet, refreshing treat Great for breakfast, lunch, dessert, or when you want a snack Good source of vitamin C, vitamin A, and vitamin B6 Enjoy right out of the container, infuse with water and mint, or mix with jalapenos, tomatoes, and red onion for salsa Share with friends and family or keep for yourself Comes in a reclosable container to help maintain freshness Save times', 'Prico', 'https://i5.walmartimages.com/asr/57caef23-ba8c-4fc6-b34b-5b05a007ac75.e8ad8b3b739a1932dae15f82929a2e9e.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/57caef23-ba8c-4fc6-b34b-5b05a007ac75.e8ad8b3b739a1932dae15f82929a2e9e.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/57caef23-ba8c-4fc6-b34b-5b05a007ac75.e8ad8b3b739a1932dae15f82929a2e9e.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (952551665, 'Services Reduced Program Dept 94', 0.01, '251699000004', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (952684382, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094514252', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (952737628, 'Freshness Guaranteed Seasonal Blend Large', 4.67, '262832000003', 'Enjoy the sweet, refreshing taste of Freshness Guaranteed Seasonal Blend. This pre-cut Seasonal Blend is great for breakfast, lunch, dessert, or when you want a snack. You can eat them right out of the container, use them to infuse water for a refreshing drink. This Seasonal Blend is great for sharing with friends and family or keeping it for yourself. It comes in a reclosable container to help maintain freshness. Bring home Freshness Guaranteed seasonal blend today for a refreshing, healthy treat.Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Seasonal Blend Large', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (953493255, 'Butternut Squash', 1.18, '814570010037', 'Butternut Squash', 'Butternut Squash', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1aba52b1-fe49-4a42-9c40-46343599055c.22d3b024f67049ab25bc7ef990fdf1f4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (953528927, 'Fresh Blueberries, 1 lb Container', 3.98, '812049006154', 'Create decadent meals with sweet and light Fresh Blueberries. Enjoy them for breakfast, lunch, dinner, or dessert. Use them to make a lemon and blueberry galette, bake them into delicious blueberry muffins, cook up a sweet and savory pizza topped with blueberries and bacon, or reduce them for a sauce to use on grilled chicken or cheesecake. They contain essential vitamins and nutrients like, vitamin C, vitamin K, antioxidants, and manganese making them perfect for a healthy diet. Prior to serving simply gently wash them with cool water and enjoy the fresh taste. Refrigerate the berries to keep them fresh and ready for use. Pick up Fresh Blueberries today and savor the delectable flavor.', 'Fresh Blueberries, 1 lb: Best when enjoyed at room temperature Light, refreshing taste Healthy treat Prior to serving gently wash them with cool water Refrigerate your berries in the original container to maintain freshness They should approximately last 3-5 days after purchase Keep dry for optimal freshness', 'Unbranded', 'https://i5.walmartimages.com/asr/95dcb6db-b793-4da5-8bdc-f0884cc337fc.aa761c55c1ab1460c3451fbc379b662a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/95dcb6db-b793-4da5-8bdc-f0884cc337fc.aa761c55c1ab1460c3451fbc379b662a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/95dcb6db-b793-4da5-8bdc-f0884cc337fc.aa761c55c1ab1460c3451fbc379b662a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (953912455, 'Grape Tomatoes', 2.48, '405565638055', 'short description is not available', 'Grape Tomatoes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (954212028, 'Fresh Snapdragon Apples, 2 lb Bag', 4.97, '863046000126', 'Snapdragon apples are renowned for their extraordinary sweetness, epic flavor, and incredible juiciness, making them the perfect choice for a healthy snack. These apples provide a legendary eating experience and are conveniently sized to fit in lunchboxes or enjoy on the go. Packed with fiber, they offer a nutritious alternative to a second cup of coffee, leaving you satisfied and prepared for any adventure. Developed by Cornell University in Ithaca, NY, and grown by 150 dedicated farmers in New York State, SnapDragon apples guarantee exceptional homegrown quality.', 'Apples, SnapDragon 2-1/4 inch diameter. Monster crunch. SnapDragonApple.com. US extra fancy. Crunchy with a sweet & juicy flavor you will love! Get a Bite of Monster Crunch: Our passion is for growing - and eating - great apples. So when this new delight came along from the renowned breeders at Cornell University 145 New York apple growers fell in love. We\'ve called it SnapDragon, for its snappy monster crunch and spicy-sweet flavor. Chomp a SnapDragon apple whenever you need a feel good energy boost and a sweet treat. For more information and to meet the growers, visit: SnapDragonApple.com. New York State Apple Country. Facebook: crunchtimeapplegrowers. Twitter: crunchtimeapple. Coated with food grade vegetable and or shellac based wax resin to maintain freshness. Grown in New York. Produce of USA.', 'Unbranded', 'https://i5.walmartimages.com/asr/c3909f9b-900a-4aea-963f-02db91550ace.4e34e750fb58e7a55ed07f20a855a97f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c3909f9b-900a-4aea-963f-02db91550ace.4e34e750fb58e7a55ed07f20a855a97f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c3909f9b-900a-4aea-963f-02db91550ace.4e34e750fb58e7a55ed07f20a855a97f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (954235515, 'New Mexico Hatch Chili Medium 25 lbs Sold by Case Only', 24, '400094597811', 'Unique flavored pepper grown in the hatch valley of New Mexico. For amazing flavor, simply roast, peel and add to your favorite recipe. Perfect at breakfast in your burrito or omelette. Spice up your salsa and quacamole or add to your favorite dinner dish such as burgers, pizza, enchiladas, and much more.', 'New Mexico Hatch Chili Pepper. Unique flavored pepper grown in the hatch valley of New Mexico. For amazing flavor, simply roast, peel and add to your favorite recipe. Perfect at breakfast in your burrito or omelet. Spice up your salsa and guacamole or add to your favorite dinner dish such as burgers, pizza, enchiladas, and much more. Find this at your local Walmart!', 'Unbranded', 'https://i5.walmartimages.com/asr/5d611345-7645-4550-a344-60fee62e194c.45df74559c9d9a920d6e84e65d0bc606.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5d611345-7645-4550-a344-60fee62e194c.45df74559c9d9a920d6e84e65d0bc606.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5d611345-7645-4550-a344-60fee62e194c.45df74559c9d9a920d6e84e65d0bc606.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (954589520, 'Freshness Guaranteed Mango Berry Tray 10 Oz', 5, '681131037037', 'short description is not available', 'Freshness Guaranteed Mango Berry Tray 10 Oz', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (954832750, 'Large Avocado 3 Count Bag', 5.18, 'deleted_850758006386', 'short description is not available', 'Large Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (954842803, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094334423', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (955051966, 'Fresh Grown Thomcord Grapes 1.5#', 2.98, '818994013902', 'short description is not available', 'Fresh Grown Thomcord Grapes 1.5#', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (955316688, 'Fresh Cherry Tomato, 10 oz Clam Shell', 3.77, '882035200019', 'Fresh cherry tomatoes are a quick and flavorful addition to any homemade meal. Perfect for mixing into a fresh salad, adding into a pasta dish, or enjoying on their own, this fresh produce item provides marvelous texture, vibrant color, and an amazingly smooth taste that easily compliments your recipes. Juicy and delicious, grape tomatoes are known for their beautiful bright red color, thick skin, low water content, and long shelf-life. They\'re low in calories, are a good source of fiber, and contain vitamins A and C, lycopene and other vitamins and minerals, which means on top of bringing exceptional flavor and texture depth to the table, they also offer essential nutrients to lend themselves as a wholesome ingredient to any culinary creation. Whether you\'re looking for a quick and healthy snack or a deliciously easy ingredient to add to a meal, these Cherry Tomatoes are the perfect choice.', 'Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches', 'Hypermart', 'https://i5.walmartimages.com/asr/5b28a40a-4499-4ba3-a7f6-ee38d96cd269.bf3d665731aae6cbee414111e0f1ef96.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5b28a40a-4499-4ba3-a7f6-ee38d96cd269.bf3d665731aae6cbee414111e0f1ef96.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5b28a40a-4499-4ba3-a7f6-ee38d96cd269.bf3d665731aae6cbee414111e0f1ef96.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (955363885, 'Services Reduced Program Dept 94', 0.01, '251674000005', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (955558459, 'Yellow Flesh Peaches, per Pound', 1.58, '400094601662', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (955746256, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094988794', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (956531524, 'Mango Spears 16oz', 9.96, '045009891211', '16oz cut mango spears', '16oz of cut Mango Spears', 'Fresh Produce', 'https://i5.walmartimages.com/asr/59439a49-659b-403d-85b2-62b055a02d27.0a8513bfabd0e05498dbf0307104aacd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59439a49-659b-403d-85b2-62b055a02d27.0a8513bfabd0e05498dbf0307104aacd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/59439a49-659b-403d-85b2-62b055a02d27.0a8513bfabd0e05498dbf0307104aacd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (956649122, 'Butter Lettuce', 2.98, 'deleted_812349029006', 'Edible Garden living butterhead lettuce is 100% hydroponically grown and delivered to your grocer live, with root systems intact. This gives the sweet, tender leaves maximum flavor and nutrition that lasts. Care Instructions: Because our Butterhead lettuce is grown hydroponically, it cannot be replanted in soil.', 'Butter Lettuce produce organic hydroponic', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/5208a339-8452-44bd-8a17-2054f172f35d.2777e73ea737d3da567c323979b99ac6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5208a339-8452-44bd-8a17-2054f172f35d.2777e73ea737d3da567c323979b99ac6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5208a339-8452-44bd-8a17-2054f172f35d.2777e73ea737d3da567c323979b99ac6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (957113693, 'Gourmet212 Oven Roasted Cherry Tomatoes 8.11oz, 12 Pack', 112.95, '191822004922', 'Have you tried semi dried cherry tomatoes? If your answer is no, you should try our product to not to miss out. Sun dried tomatoes are highly recommended just as semi dried tomatoes if it is not the season of fresh tomatoes, however, oven semi dried tomatoes are closer to natural tomato taste than sun dried tomatoes. The semi dried tomatoes are juicier and lighter in color and are also sliced. They are then put in high quality ovens for 6-7 hours with low temperatures. Dehydrated slowly, semi dried tomatoes preserve their taste in flavored oil for long time without any additives. This product is packed with so high quality that keeps fresh for one year on the shelf without oxygen exposure. Some reasons to buy our semi dried cherry tomatoes: It is Halal Certified It is Kosher Certified It?s made with seasonal tomatoes It?s the perfect product for any meat or chicken dish It?s a delicious ingredient for antipasti, pizza, salad, sandwich and pasta Ingredients: sun dried tomatoes (57%), canola oil, salt, sugar, vinegar, garlic powder, spices, acidity regulator (citric acid), antioxidant (ascorbic acid) If you like cherry tomatoes, you shouldn?t miss this product.', 'Gourmet212 Oven Roasted Cherry Tomatoes 8.11 oz (12 Pack), Stuffed, Airtight Glass Jarred The semi-dried tomatoes are juicier and lighter in color. They are put in high-quality ovens for 6-7 hours with low temperatures. Dehydrated slowly, semi-dried tomatoes preserve their taste in flavored oil for a long time without any additives. It is Halal and Kosher Certified Ingredients: sun-dried tomatoes (57%), canola oil, salt, sugar, vinegar, garlic powder, spices, acidity regulator (citric acid), antioxidant (ascorbic acid).', 'Gourmet212', 'https://i5.walmartimages.com/asr/6a0f8f82-f93a-4624-bc49-7767d339a7d8.ff0982393d9e79b38ff96159da8d8ceb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a0f8f82-f93a-4624-bc49-7767d339a7d8.ff0982393d9e79b38ff96159da8d8ceb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a0f8f82-f93a-4624-bc49-7767d339a7d8.ff0982393d9e79b38ff96159da8d8ceb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (957136706, 'Fresh Grown Yellow Peaches', 1.58, '400094275443', 'short description is not available', 'Fresh Grown Yellow Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (957249774, 'Watermelon Seedless', 4.48, '400094476802', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (957442773, 'Yellow Flesh Peaches, per Pound', 1.58, '400094342787', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (957588422, 'Freshness Guaranteed Whole Portabella Caps 6oz', 2.88, 'deleted_699058820120', 'short description is not available', 'Freshness Guaranteed Whole Portabella Caps 6oz', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (957590499, 'Orange Bell Pepper, each', 1.24, 'deleted_684924031212', 'short description is not available', 'Orange Bell Pepper', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/3baaa636-adc3-465f-866b-50df64d60cc5_1.f77c2c82ddd623cd8667196b6ac97a43.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3baaa636-adc3-465f-866b-50df64d60cc5_1.f77c2c82ddd623cd8667196b6ac97a43.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3baaa636-adc3-465f-866b-50df64d60cc5_1.f77c2c82ddd623cd8667196b6ac97a43.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (957662010, 'Freshness Guaranteed Snack Trio', 4.28, '263032000008', 'short description is not available', 'Freshness Guaranteed Snack Trio', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (958175477, 'Fresh Sweet Carnival Grapes, Sample Bag', 0.01, '885282001385', 'short description is not available', 'Fresh Sweet Carnival Grapes, Sample Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/9777b788-02f6-4ba6-8de2-98c8f4e49521.dbb5f8a653c34d67e6e20db67daf6993.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9777b788-02f6-4ba6-8de2-98c8f4e49521.dbb5f8a653c34d67e6e20db67daf6993.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9777b788-02f6-4ba6-8de2-98c8f4e49521.dbb5f8a653c34d67e6e20db67daf6993.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (958319693, 'Freshness Guaranteed Mango Habanero Guacamole, 8 oz', 2.88, '681131354820', 'Find a new fresh flavor you\'re sure to love with the Freshness Guaranteed Mango Habanero Guacamole. This tasty guacamole features a creamy combination of Hass avocados, mango, jalapeno peppers, onion, cilantro, and a habanero puree to ensure a mouthful of flavor in every bite. Add a dollop to your quesadillas, burgers, burritos, and sandwiches for a taste that will have you coming back for seconds. With 8 servings per container, this guacamole is perfect for small gatherings, parties, barbecues, and game nights with family and friends. Plus, the reclosable lid in the packaging helps maintain freshness between snack sessions. Scoop up some flavor with Freshness Guaranteed Mango Habanero Guacamole. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Spark Fresh item.', 'Freshness Guaranteed Mango Habanero Guacamole, 8 oz: High heat level 8 servings per container makes this an ideal dish to serve at parties Pairs perfectly with chips Delicious as a spread on wraps, sandwiches, and toast', 'Fresh Produce', 'https://i5.walmartimages.com/asr/bc8326d3-6437-4bdb-befd-0874d3a892fd.e717cdc404c3699757c19cab20d4f7b0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc8326d3-6437-4bdb-befd-0874d3a892fd.e717cdc404c3699757c19cab20d4f7b0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bc8326d3-6437-4bdb-befd-0874d3a892fd.e717cdc404c3699757c19cab20d4f7b0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (958589014, 'Watermelon Seedless', 4.98, '400094924808', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (958759284, 'Microwave in Bag Yellow Potatoes, 1 Lb.', 2.48, '024617180870', 'Microwave in Bag Yellow Potatoes, 1 Lb.', 'Microwave In Bag Yellow Potatoes 16 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (959245639, 'Watermelon Seedless', 4.48, '400094414293', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (959274657, 'Organic Russet Potatoes, 3 lb bag', 3.66, 'deleted_095829400032', 'Organic Russet Potatoes, 3 Lb.', 'Organic Russet Potatoes, 3 lb bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/fdc11b8a-ef47-4f78-8527-5d8326ef6a92.09b3966a341ca2a62fe859971fe5687a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fdc11b8a-ef47-4f78-8527-5d8326ef6a92.09b3966a341ca2a62fe859971fe5687a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fdc11b8a-ef47-4f78-8527-5d8326ef6a92.09b3966a341ca2a62fe859971fe5687a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (959620009, 'Tasteful Selections Sunset Fingerling Potato Bag, 24 oz', 4.88, '826088749071', 'A medley of our delicious fingerling potatoes, ranging from buttery to nutty. Something for everyone, Sunset Fingerlings™ bring a medley of our delicious fingerling potatoes to your table. Serve your guests a bouquet of flavors and textures, ranging from buttery to nutty. Copy Right Tasteful Selections', 'Tasteful Selections Sunset Fingerling Mesh, 24oz Ranging from buttery to nutty Serve your guest a bouquet of flavors and texture', 'Tasteful Selections', 'https://i5.walmartimages.com/asr/60698f67-4f9c-4f26-86ba-7e83b0b06cda.d5063ffeaa7a955e9a8cdc8ffaf77f98.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/60698f67-4f9c-4f26-86ba-7e83b0b06cda.d5063ffeaa7a955e9a8cdc8ffaf77f98.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/60698f67-4f9c-4f26-86ba-7e83b0b06cda.d5063ffeaa7a955e9a8cdc8ffaf77f98.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (959655816, 'Limes, 1 Lb.', 2.97, '086903100054', 'Limes, 1 Lb.', '1# Bag Limes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/aa7311c2-100b-415f-bfcc-06ec70a10913_1.251cd3ec98b2618be14072fe1bbafe50.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa7311c2-100b-415f-bfcc-06ec70a10913_1.251cd3ec98b2618be14072fe1bbafe50.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa7311c2-100b-415f-bfcc-06ec70a10913_1.251cd3ec98b2618be14072fe1bbafe50.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (960369410, '100pc Pto Rst 10# #2', 494, '405546445313', 'short description is not available', '100pc Pto Rst 10# #2', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (961051740, 'Bunch Beets', 2.24, 'deleted_885435999972', 'Bunch Beets', 'Noted for their deep ruby hue, Beets taste like sweet spinach. To retain color, flavor and nutrients, cook Beets whole. Peel off the skin once beets have cooled. Serve in salad or reheat as a side dish. Ideal Temperature: 33 F. Beets are subject to wilting because of rapid water loss and should be kept in sufficiently high humidity.', 'Ratto Bros.', 'https://i5.walmartimages.com/asr/a67c6996-cbf2-4c18-b34f-3b3db3cd048d.aac89ac9abfa2230723fc51239b7b1a9.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a67c6996-cbf2-4c18-b34f-3b3db3cd048d.aac89ac9abfa2230723fc51239b7b1a9.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a67c6996-cbf2-4c18-b34f-3b3db3cd048d.aac89ac9abfa2230723fc51239b7b1a9.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (961244705, 'Fieldpack Unbranded Fresh Strawberries 1#', 1.56, '400094381748', 'short description is not available', 'Fieldpack Unbranded Fresh Strawberries 1#', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (961560977, 'Fieldpack Unbranded Organic Rainbow Kale', 1.96, 'deleted_073574860073', 'Produce See more', 'Greens Cooking', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b6795348-79ff-4095-93af-6967ce3177a2.e6370e5da7b9aa7066e1c35c85a953ae.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b6795348-79ff-4095-93af-6967ce3177a2.e6370e5da7b9aa7066e1c35c85a953ae.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b6795348-79ff-4095-93af-6967ce3177a2.e6370e5da7b9aa7066e1c35c85a953ae.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (961638214, 'Juici Cosmic Crisp Apple 2# Bag', 4.47, '741839350026', 'short description is not available', 'Juici Cosmic Crisp Apple 2# Bag', 'Juici', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (961969660, 'Belmont Ajo en Pasta Garlic Paste 16 oz', 7.49, '721371251692', 'Belmont Garlic Paste is Peru\'s Famous Garlic Paste. It is used in many traditional Peruvian dishes. Ingredients are Garlic, Salt and Citric Acid.', 'Imported from Peru Famous Garlic Paste No Preservative NET WT 16 oz Refrigerate After Opening', 'Belmont Bruins', 'https://i5.walmartimages.com/asr/0bee10b1-6ef6-45b8-a3ce-bceb2fcaa7be.b9e0cfe34fcbf1613e360b06cf3107e0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0bee10b1-6ef6-45b8-a3ce-bceb2fcaa7be.b9e0cfe34fcbf1613e360b06cf3107e0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0bee10b1-6ef6-45b8-a3ce-bceb2fcaa7be.b9e0cfe34fcbf1613e360b06cf3107e0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (962183333, '240pc On Ylw 3# Bm', 465.59, '405509802481', 'short description is not available', '240pc On Ylw 3# Bm', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (962321127, 'Marketside Fresh Sugar Snap Peas, 16 oz', 5.98, 'deleted_681131221757', 'Add fresh and ready to eat sugar snap peas to your meal with Marketside Sugar Snap Peas. These sugar snap peas are a great source of iron and dietary fiber. Marketside Sugar Snap Peas are a quick and healthy side dish and a great addition to any meal. Marketside Sugar Snap Peas are packed fresh, washed and ready to eat for your convenience. They have a delicious crisp texture and a vibrant green color that is sure to add a pop to all your dishes. Enjoy them as a healthy side or use them in all your favorite recipes. They are a great addition to stir fry and other Asian cuisines. Season them with salt, pepper and butter and serve with grilled chicken breast, grilled squash and bread for a filling dinner. Toss them with fresh cut carrot sticks for a tasty snack at the office. Snacking is made healthy with Marketside Sugar Snap Peas. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Fresh Sugar Snap Peas, 20 oz Washed and ready to eat Great addition to any meal Pieces of snap peas are a healthy snack Packaged in a 20 oz plastic bag', 'Marketside', 'https://i5.walmartimages.com/asr/af5d4f46-6d0e-47ec-8252-3393db4ff537.6efab2818454908624eb17162a3cbdf3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af5d4f46-6d0e-47ec-8252-3393db4ff537.6efab2818454908624eb17162a3cbdf3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af5d4f46-6d0e-47ec-8252-3393db4ff537.6efab2818454908624eb17162a3cbdf3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (962629382, 'Watermelon Seedless', 4.48, '400094339954', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (962872489, '200pc Pto Red 5# Co', 794, '405505737480', 'short description is not available', '200pc Pto Red 5# Co', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (963108381, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094361337', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (963221691, 'Red Bell Pepper', 1.38, '894107001127', 'short description is not available', 'Red Bell Pepper', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (963651842, 'Freshness Guaranteed Strawberry Blueberry Blend Medium', 6.4, '263026000007', 'short description is not available', 'Freshness Guaranteed Strawberry Blueberry Blend Medium', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (963767388, 'California Grown Peaches, per Pound', 1.58, '400094511596', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (963814939, 'Fresh Mango, Each', 0.84, '000000004312', 'Savor the irresistible taste of a Fresh Mango. Mangoes are an excellent fruit to add to your breakfast, lunch, dinner, or dessert. For breakfast, you can chop the mango up and add it to yogurt or a smoothie for a sweet treat that\'s sure to get your morning started on a high note. For dessert, you could use a mango to make a refreshing sorbet or put a tropical twist on a cobbler. You can also use it to make creamy milkshakes or delicious juices that everyone is sure to enjoy. The culinary possibilities are endless when you keep your kitchen stocked with Fresh Mangoes.', 'Fresh Mango, Each Irresistibly sweet and juicy Delicious on its own or in a variety of recipes Make a creamy milkshake or a nutritious juice blend Add to yogurt or a smoothie Use to top your salad for a tropical twist', 'Produce', 'https://i5.walmartimages.com/asr/e9e75016-b10e-440a-bcaa-e3a15059dc62.09b33d2b939bd00c657331183d8f2936.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9e75016-b10e-440a-bcaa-e3a15059dc62.09b33d2b939bd00c657331183d8f2936.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9e75016-b10e-440a-bcaa-e3a15059dc62.09b33d2b939bd00c657331183d8f2936.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (963844756, 'Red Potatoes, 5 Lb.', 5.68, 'deleted_032109200050', 'Red Potatoes, 5 Lb.', 'Red Potatoes 5 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (963868963, 'Little Leaf Farms Baby Red and Green Leaf Lettuce Salad Blend, 4 oz Clam Shell, Fresh', 2.98, '857394006114', 'Little Leaf Farms Baby Red & Green Leaf lettuce combines our signature crispy green leaf with a pop of color and texture from our softer red leaf lettuce, making it the perfect addition to any salad or sandwich. Our deliciously crisp, wonderfully fresh, and uniquely long-lasting greens are grown in a state-of-the-art, sustainable greenhouse that harnesses sunlight and fresh rainwater. With an a fully automated, hands-free growing process to seeding to packaging, there’s no need to wash. Just open the container and enjoy!', 'Grown in a greenhouse for consistent quality and freshness year-round. Combines the classic crispness of green leaf lettuce with the vibrant color and softer texture of red leaf lettuce. Perfect for salads, sandwiches, wraps, and as a colorful garnish. Pesticide, Herbicide, and Fungicide Free Non GMO Offers a unique balance of flavors, textures, and colors for visually appealing dishes', 'Little Leaf Farms', 'https://i5.walmartimages.com/asr/0d9ce7e7-0a2e-4f5f-ac70-fdac7e110bd7.645eabc05aaddfb455fb432d4ef4a4a2.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d9ce7e7-0a2e-4f5f-ac70-fdac7e110bd7.645eabc05aaddfb455fb432d4ef4a4a2.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d9ce7e7-0a2e-4f5f-ac70-fdac7e110bd7.645eabc05aaddfb455fb432d4ef4a4a2.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (963873484, 'Gesex Smart Fruit Peaches', 3.97, '814746010847', 'Gesex Smart Fruit Peaches', 'Gesex Smart Fruit Peaches', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/080ada59-035b-4e4e-a5e7-f4c34386e9cb.59c74b4ed4ad125646cf450deb060118.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/080ada59-035b-4e4e-a5e7-f4c34386e9cb.59c74b4ed4ad125646cf450deb060118.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/080ada59-035b-4e4e-a5e7-f4c34386e9cb.59c74b4ed4ad125646cf450deb060118.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (964141971, 'Services Reduced Program Dept 94', 0.01, '251865000005', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (965084592, 'Dried Mushroom Kibble by Its Delish, 8 Oz Bag Dark Chilean Dehydrated and Chopped Boletus Luteus Mushrooms for Cooking and Flavoring', 34.99, '799137109266', 'Dried Kibbled Mushrooms by Its Delish Boletus Luteus mushrooms is a wild-grown dark mushroom with a deep and earthy flavor, commonly called the brown or Chilean mushroom, sorted, washed, trimmed, and air-dried. There are a good source of vitamin, minerals and protein. These are 100% all-natural with no added ingredients or preservatives. These chopped mushroom flakes are used in a wide variety of applications for rich-flavored mushroom for including sauces, gravy, soups, vegetable stock, broth and stews, pasta products, meats and sausages, seasoning blends, salad products, pot pies, and casseroles and ready meals. Prep Instruction Ideas: Add these mushrooms while slow cooking soups, stews, sauces, casseroles and other foods with sufficient liquid content. In other applications, hydrate by using 1 part dried mushroom and 5 parts water. Simmer for 10-15 minutes. Add water if necessary. Yields 1 oz equals about 1/2 cup dry. Generally, air dried vegetables double in volume when hydrated. Dry/Fresh Ratio 1 lb of air dried boletus luteus mushrooms, once rehydrated, equals approximately 6 lbs of fresh prepared boletus luteus mushrooms. Storage Suggestion Best if used within 18 months. Store tightly sealed in a dry location away from sunlight. Tip: For ready to use mushrooms, soak the dry mushrooms in a sealed container and store in the refrigerator. Stock up and enjoy! About It\'s Delish! It\'s Delish was established in 1992 and is located in North Hollywood, California. It\'s Delish is a food manufacturer and distributor who produces over 500 gourmet food products including licorice, sour belts, taffies, caramels, Jordan almonds, chocolates, nuts, fruits, trail mixes, spices, and the spice blends. It\'s Delish also produces organics and all-natural products. We give you the opportunity to order from the factory direct!', 'PREMIUM - Gourmet Dried Mushrooms Kibble Similar to Porcini and chopped into small dices VALUE SIZE - Half Pound 8 Oz, about four cups dry Bag by the Its Delish brand ENHANCE your culinary experience with hearty flavor, bold taste and vibrant aroma. Add rich flavors paired with vitamins, minerals and protein to your favorite recipes and dishes AWESOME in sauces, gravy, soups, vegetable stock, broth and stews, pasta products, meats and sausages, seasoning blends, salad products, pot pies, risottos and casseroles and ready meals. QUALITY - Certified Kosher OU Parve, Non-Dairy, Vegan, All-Natural, No MSG, No preservatives, Gluten Free, Packaged in the USA and Shipped to you Direct!', 'It\'s Delish', 'https://i5.walmartimages.com/asr/3dfff43c-9e22-4dc1-836c-5695c1015375.83b92677bde7b4a648328e18edbab474.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3dfff43c-9e22-4dc1-836c-5695c1015375.83b92677bde7b4a648328e18edbab474.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3dfff43c-9e22-4dc1-836c-5695c1015375.83b92677bde7b4a648328e18edbab474.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (965704234, 'Mr Lucky Eat Smart Strawberry Harvest, 10oz', 4.97, '709351301414', 'Eat smart Starwberry salad is crisp greens crunchy veggies make it fresh - quinoa, almonds and feta cheese make it hearty. Toss everything in a sweet strawberry dressing and enjoy a salad as a summer day. This is a Superfood salad you won\'t forget.', 'Chopped Salad Kit, Strawberry Harvest Salad & Toppings: 7.5 oz Dressing 2.5 oz No colors, flavors, preservatives, and sweeteners from artificial sources. Gluten free Triple washed Ready to use! 7 superfoods.', 'Mr. Lucky', 'https://i5.walmartimages.com/asr/b6ea47b2-a0af-4f81-a380-b78a3b6a0b9c.aef630eb231aa7b89ee435652715645b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b6ea47b2-a0af-4f81-a380-b78a3b6a0b9c.aef630eb231aa7b89ee435652715645b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b6ea47b2-a0af-4f81-a380-b78a3b6a0b9c.aef630eb231aa7b89ee435652715645b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (966204122, 'Organic Microwavable Potatoes, 1 Each', 1.28, 'deleted_039186108088', 'Organic Microwavable Potatoes, 1 Each', 'Organic Microwavable Potatoes Per Each', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (966511751, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, '400094925423', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (966541325, 'Fresh California Grown Red Grapes', 1.76, '', 'short description is not available', 'Fresh California Grown Red Grapes', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/75085d11-683d-4e00-93f1-beaca87be296_2.c4ef5e77a256c0efb44a5ede52358f14.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75085d11-683d-4e00-93f1-beaca87be296_2.c4ef5e77a256c0efb44a5ede52358f14.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/75085d11-683d-4e00-93f1-beaca87be296_2.c4ef5e77a256c0efb44a5ede52358f14.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (966769640, 'Back to the Roots Organic Tomato \'Red Cherry\', 1 Seed packet', 2.97, '810667031800', 'Our 100% Organic and non-GMO red cherry tomatoes are small in size, brightly red and offer a sweet and juicy taste. These seeds are heirloom-quality, meaning they are open pollinated and passed down without being modified for at least 50-years. Additionally, once you grow your tomatoes, you can harvest the seeds and save them to plant the following year.', 'Annual seeds give rise to indeterminate/vining plants, allowing for harvesting throughout the season Organic USA seeds 100% guaranteed to grow: we\'re on a mission to get America growing, if you are not satisfied or have any issues, just shoot us a note and our dedicated garden support team will make sure we get you growing or send you a refund/replacement, let\'s grow, together #Growonegiveone, help us make gardening a part of every classroom, share a photo of your growing garden and we\'ll donate a grow kit and stem curriculum to an elementary school classroom of your choice', 'Back to the Roots', 'https://i5.walmartimages.com/asr/54e1324f-efe9-44dd-896f-2829d12d6d05.3fdc25c17ffe642dc9e0d39cf2d7df51.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54e1324f-efe9-44dd-896f-2829d12d6d05.3fdc25c17ffe642dc9e0d39cf2d7df51.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/54e1324f-efe9-44dd-896f-2829d12d6d05.3fdc25c17ffe642dc9e0d39cf2d7df51.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (967450467, 'Fresh Whole Japanese Purple Yam', 1.86, '000000033336', 'Introducing our delectable Japanese Purple Yam, a vibrant, nutrient-rich, and exotic delicacy that will elevate your culinary experience. Grown in the fertile soils , this unique tuber boasts a striking purple hue, velvety texture, and a delightful balance of sweet and earthy flavors. Packed with antioxidants, vitamins, and minerals, the Japanese Purple Yam is not only a feast for the eyes but a powerhouse of health benefits. Whether incorporated into savory dishes, enticing desserts, or enjoyed simply roasted, our Japanese Purple Yams will undoubtedly add an unforgettable touch of elegance and taste to your dining table.', 'Fresh Japanese Purple Yam Introducing our delectable Japanese Purple Yam, a vibrant, nutrient-rich, and exotic delicacy that will elevate your culinary experience. Grown in the fertile soils , this unique tuber boasts a striking purple hue, velvety texture, and a delightful balance of sweet and earthy flavors. Packed with antioxidants, vitamins, and minerals, the Japanese Purple Yam is not only a feast for the eyes but a powerhouse of health benefits. Whether incorporated into savory dishes, enticing desserts, or enjoyed simply roasted, our Japanese Purple Yams will undoubtedly add an unforgettable touch of elegance and taste to your dining table.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/2eb7b9a4-d8aa-473d-9d67-88a9c0b38373.5313774622659e3ac14ebe3bf89931ef.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2eb7b9a4-d8aa-473d-9d67-88a9c0b38373.5313774622659e3ac14ebe3bf89931ef.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2eb7b9a4-d8aa-473d-9d67-88a9c0b38373.5313774622659e3ac14ebe3bf89931ef.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (967806372, 'Purple Eggplant', 1.18, 'deleted_857419005221', 'short description is not available', 'Purple Eggplant', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (967961497, 'Freshness Guaranteed Fresh Green Seedless Grapes', 2.08, '', 'short description is not available', 'Freshness Guaranteed Fresh Green Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (968567065, '180pc Pto Rst 10# Co', 889.2, '405510110728', 'short description is not available', '180pc Pto Rst 10# Co', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (968786782, 'Yellow Potatoes Whole Fresh, 5lb Bag', 4.47, 'deleted_688286000084', 'Fresh Yellow Potatoes (Papa Amarilla) are a staple for your kitchen this holiday season. Use yellow potatoes to create a variety of cooked and baked dishes- from creamy, flavorful mashed potatoes, to fluffy, filling baked potatoes topped with cheese, bacon, and sour cream, or cheesy, succulent au gratin potatoes. Make fried potatoes for a hearty holiday breakfast, shred them for hash browns, or use these yellow potatoes to make a pleasing, tummy-warming potato soup to chase away the chill on a cold winter\'s day. Make time-honored family favorite recipes or create new favorites with Yellow Potatoes', '5-pound bag of yellow potatoes Perfect for mashing, frying, baking, soups, and French fries Rich in potassium, vitamin C and iron Cholesterol, fat, and sodium free Versatile, flavorful kitchen staple', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/7241df1c-cbbb-4a39-98e9-266b41cc2c77.5102649422b8d27f97009da4c0dfcc99.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7241df1c-cbbb-4a39-98e9-266b41cc2c77.5102649422b8d27f97009da4c0dfcc99.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7241df1c-cbbb-4a39-98e9-266b41cc2c77.5102649422b8d27f97009da4c0dfcc99.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (969208657, 'Organic Kale And Collard Mix 5oz', 2.47, '060556606002', 'short description is not available', 'Organic Kale And Collard Mix 5oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (969294256, 'Fresh California Grown Peaches, 1 Lb.', 1.58, '400094859506', 'Fresh California Grown Peaches, 1 Lb.', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (970029152, 'Fresh Navel Orange, LB', 1.37, '406523179498', 'Enjoy the juicy goodness of Fresh Navel Oranges (China Nebo). A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these navel oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Fresh Navel Oranges add flavor to any meal or beverage', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast Adds flavor to a variety or recipes', 'Unbranded', 'https://i5.walmartimages.com/asr/05a33b9e-e4f0-4b24-8ba0-28dc215544fe.95088f3c9af8ad72e4d74ecfeb07d36e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/05a33b9e-e4f0-4b24-8ba0-28dc215544fe.95088f3c9af8ad72e4d74ecfeb07d36e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/05a33b9e-e4f0-4b24-8ba0-28dc215544fe.95088f3c9af8ad72e4d74ecfeb07d36e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (970068030, 'Fresh Cactus Pears, Each', 0.75, '000000042550', 'Become a part of the prickly pear sensation with our fresh produce Cactus Pears! Slightly sweet and so refreshing, the prickly pear, also known as nopal or higo chumbo, is widely revered for the unique flavor it adds to a variety of beverages and treats. Simply remove the flesh from the studded skin and extract the fruit\'s natural juices to use as a drink mixer, flavoring for confections, or in glazes and marinades. You can also cut the flesh, or the entire cactus pear, skin and all, into slices to add to your morning scrambled eggs, dice it up to throw into a salad, or eat as is for a quick, wholesome snack. Both a fruit and a vegetable, your body is sure to thank you for adding a little Cactus Pear to your diet.', 'Fresh Cactus Pears, Each Spiny fruit harvested from Opuntia cacti Commonly referred to as prickly pear, nopal, Tuna Fruit or higo chumbo Slightly sweet in flavor with a taste similar to watermelon Extracted juice makes a delicious addition to beverages, confections, and glazes Also good for slicing or dicing and adding to salads or eating alone May come in a plastic bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4ee0f26c-585c-4056-96df-d299d54f20a5.217584c930baa530ac7d5164e76120f0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ee0f26c-585c-4056-96df-d299d54f20a5.217584c930baa530ac7d5164e76120f0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4ee0f26c-585c-4056-96df-d299d54f20a5.217584c930baa530ac7d5164e76120f0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (970353831, 'Fresh Peruvian Grown Black Grapes', 1.98, '', 'short description is not available', 'Fresh Peruvian Grown Black Grapes', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (970387502, 'Organic Microwavable Potatoes, 1 Each', 1.28, 'deleted_061061000583', 'Organic Microwavable Potatoes, 1 Each', 'Organic Microwavable Potatoes', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (970583858, 'Carrot, Bale Cello 5lb', 5.44, '007981692903', 'short description is not available', 'Carrot, Bale Cello 5lb', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (970954242, 'Fiesta Blend Russet Potatoes, 3 Lb.', 1.98, '813652010149', 'Fiesta Blend Russet Potatoes, 3 Lb.', 'Russet Potatoes W/fiesta Blend 3 Lb Bag', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (971187745, 'Workers Shirt Jacket', 3.29, '000000040921', 'This is a demonstration store. You can purchase products like this from Baby & Company The Workers Shirt is a durable cotton weave built with structure. Able bodied and eager. Three exterior pockets. One interior pockets. Button closure at front. Hansen. Color Black. 100% Cotton. Made in EU. Matt is wearing a Medium. Matt is 6’2”, Chest 38”, Waist 31”, Inseam 34.5”. Shop our collection of Hansen.', 'Workers Shirt Jacket', 'Unbranded', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (971282432, 'Mini Pepper Sweet', 3.24, 'deleted_812000020236', 'short description is not available', 'Mini Pepper Sweet', 'Fresh Produce', 'https://i5.walmartimages.com/asr/6c014785-73a7-4ac6-a033-64d45b36659a.16cf9112fbc65757ab642016a1e18628.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6c014785-73a7-4ac6-a033-64d45b36659a.16cf9112fbc65757ab642016a1e18628.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6c014785-73a7-4ac6-a033-64d45b36659a.16cf9112fbc65757ab642016a1e18628.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (971462065, 'Fresh Green Seedless Grapes, 2 Lb', 6.47, 'deleted_850859002232', 'Our vine-fresh green seedless grapes are the perfect addition to your healthy lifestyle. Our sweet and juicy grapes are the perfect snack for any time of day. With fresh produce and organic ingredients, you can be sure that you’re getting the best quality grapes. These grapes are the perfect complement to salads, smoothies, or simply enjoyed on their own. Grab a bunch today and taste the difference for yourself!', '- Our green seedless grapes are the perfect addition to any fruit bowl or snack plate for a refreshing touch of sweet goodness. Our fresh produce is grown with care and harvested at peak ripeness to ensure the best possible flavor and texture in every grape. Enjoy the peace of mind that comes with knowing you\'re getting only the best organic ingredients with every bite of our green seedless grapes. From a midday snack to a dessert topping, these grapes are a deliciously versatile choice for anyone who loves sweet, juicy fruit.', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/e227d687-d4b5-4f05-a61e-e55f8f526075.39679801746d29ef48d99c92d7e4bcef.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e227d687-d4b5-4f05-a61e-e55f8f526075.39679801746d29ef48d99c92d7e4bcef.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e227d687-d4b5-4f05-a61e-e55f8f526075.39679801746d29ef48d99c92d7e4bcef.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (971595616, 'Fresh Mini Sweet Peppers 1 lb Bag', 3.24, '', 'Introducing our Fresh Mini Sweet Peppers 1 lb Bag, the perfect addition to your culinary creations! Bursting with vibrant colors and irresistible sweetness, these peppers are hand-selected for their exceptional quality. Whether you\'re sautéing, grilling, or enjoying them raw, their crisp texture and delightful flavor will elevate any dish. Packed with essential vitamins, this bag of goodness is a must-have for healthy and flavorful meals.', 'Fresh mini sweet peppers bags of 1 lb Introducing our Fresh Mini Sweet Peppers 1 lb Bag, the perfect addition to your culinary creations! Bursting with vibrant colors and irresistible sweetness, these peppers are hand-selected for their exceptional quality. Whether you\'re sautéing, grilling, or enjoying them raw, their crisp texture and delightful flavor will elevate any dish. Packed with essential vitamins, this bag of goodness is a must-have for healthy and flavorful meals.', 'Produce Team', 'https://i5.walmartimages.com/asr/2c1c7b20-27dd-41a0-8b95-4babfa0e497d.2458258d43c06186c229d72d0b5914ab.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2c1c7b20-27dd-41a0-8b95-4babfa0e497d.2458258d43c06186c229d72d0b5914ab.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2c1c7b20-27dd-41a0-8b95-4babfa0e497d.2458258d43c06186c229d72d0b5914ab.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (971741097, 'Fresh Green Seedless Grapes, 2 Lb', 5.97, 'deleted_881006020182', 'short description is not available', 'Fresh Green Seedless Grapes, 2 Lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (971866125, 'WHOLLY Diced Avocado Carton 2', 4.98, 'deleted_616112266069', 'When you are ready for the delicious flavor of perfectly ripe avocados and you don’t have time to wait on a fussy fresh fruit, it’s WHOLLY AVOCADO Diced Avocado to the rescue! Made with 100% Hass avocados, hand-scooped at the height of freshness, and nothing else add to your favorite omelet or toast for a breakfast finishing touch. An ideal flavor enhancer to keep on hand in your refrigerator that makes a great topping for snacks or entrees. Top soups, salads, or sandwiches for a convenient addition to your favorite lunch or dinner. Our diced avocado is gluten-free, Non-GMO, a great source of omega-3 fatty acids and fiber, and has no preservatives added. Add your own flavors or enjoy as-is. Includes one, 4 oz plastic Tray (2 Pack) of WHOLLY AVOCADO Diced Avocado. All trademarks, logos and images are owned by Hormel Foods Corporation, its subsidiaries and affiliates. Copyright MegaMex Foods, LLC', 'Made with hand-scooped 100% Hass Avocados; Vegan, Kosher, Gluten-free No Preservatives added and no artificial flavors The perfect addition to breakfast, lunch, or dinner! Spread it on a burger or sandwich; makes a delicious dip for chips or vegetables; or swap it for mayo in an upgraded version of chicken salad Enjoy as a ready-made appetizer, a side to your favorite Mexican dish, or while watching the big game with a crowd Includes one, 4 oz plastic Tray (2 Pack) of WHOLLY AVOCADO Diced Avocado; Packaged for freshness and great taste Find in the refrigerated section at your favorite grocery store', 'WHOLLY GUACAMOLE', 'https://i5.walmartimages.com/asr/c68473f9-cbd6-427e-b3fb-e3f0f39dac34.cbe521df89e3cd660e047e55ae14eaf7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c68473f9-cbd6-427e-b3fb-e3f0f39dac34.cbe521df89e3cd660e047e55ae14eaf7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c68473f9-cbd6-427e-b3fb-e3f0f39dac34.cbe521df89e3cd660e047e55ae14eaf7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (972118408, 'California Grown Peaches, per Pound', 1.58, '400094987254', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (973037834, 'Del Monte Citrus Salad with Red and White Grapefruit and Oranges in 100% Juice, 20 oz Bowl', 4.28, '024000008392', 'Del Monte Citrus Salad in 100% Juice 20 oz Bowl is the perfect balance of sweet and tart in our citrus medley, which includes Vitamin-C packed red grapefruit, white grapefruit and orange slices. Refreshingly chilled, Del Monte Citrus Salad in extra light syrup is picked at the peak of ripeness. This delicious fruit salad is prefect for smoothies, topping for yogurt, cereal, salads, and more. Combine with your favorite flavored gelatin for a fun and festive treat. For a tasty dessert, top with crumbled chocolate cream-filled cookies. Also makes a colorful and refreshing fruit topping for ice cream or frozen yogurt. Del Monte works hard to cultivate the freshest, most nutritious fruits and vegetable to use in every one of our products. When you trust Del Monte, you can be sure what you\'re buying is the peak of quality and nutrition.', 'Del Monte Citrus Salad in 100% Juice 20 oz Bowl provides the delicious taste of juicy grapefruit and oranges in every fruit cup Bite-sized red grapefruit and orange pieces are picked and packed at the peak of freshness and bursting with juicy flavor for a nourishing and convenient fruit snack Bring a pack of fruit cups for a weekend trip with the family, or pack citrus salad cups in a school lunchbox for a tasty school snack Del Monte Citrus Salad is made from sun-sweetened citrus that is grown in nutrient-rich soils and packed in light syrup to ensure premium quality & taste Del Monte Citrus Salad is the perfect balance of sweet and tart ideal for breakfast, salads, smoothies and snacking', 'Del Monte', 'https://i5.walmartimages.com/asr/c0508bd7-87a8-49ac-aacc-e798e42d34d3.6bc73e42d4da8a29766e4d8bd24f47ca.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c0508bd7-87a8-49ac-aacc-e798e42d34d3.6bc73e42d4da8a29766e4d8bd24f47ca.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c0508bd7-87a8-49ac-aacc-e798e42d34d3.6bc73e42d4da8a29766e4d8bd24f47ca.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (973521345, 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094334492', 'Fresh Chilean Grown Yellow Nectarines, 1 Lb.', 'Fresh Chilean Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (974450724, 'Fresh Cut In-Store Half Pineapple', 1.68, '262966000009', 'This Fresh Cut In-Store Half Pineapple is a sweet and juicy delight, conveniently prepped for immediate enjoyment. This tropical treat is not just mouth-wateringly tasty, but it\'s also cut in half to save you time. It\'s a ready-to-eat solution, perfect for smoothies, salads, or as a standalone snack. This product saves you the hassle of slicing and dicing, making it a must-have addition to your shopping list for a healthy, hassle-free lifestyle. So why wait? Relish the exotic, tropical goodness of this Fresh Cut In-Store Half Pineapple today.', 'Fresh Cut In-Store Half Pineapple Freshly cut in-store to ensure maximum freshness and quality Ideal for smoothies, salads, or a standalone snack Offers mouth-watering taste and tropical delight with every bite Perfect solution for a quick, healthy snack without the prep time', 'Fresh Produce', 'https://i5.walmartimages.com/asr/f9f0b931-26c4-4af2-ba3a-cd755114750b.8ce70467e8b359e1e29b85e10f401a5d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f9f0b931-26c4-4af2-ba3a-cd755114750b.8ce70467e8b359e1e29b85e10f401a5d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f9f0b931-26c4-4af2-ba3a-cd755114750b.8ce70467e8b359e1e29b85e10f401a5d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (975109376, '75pc Orange Navel 8#', 778.5, '405753299143', 'short description is not available', '75pc Orange Navel 8#', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (975574654, 'Limes, 3 ct', 0.98, '072240547270', '3ct Limes', 'Limes, 3 ct', 'Fresh Produce', 'https://i5.walmartimages.com/asr/72f22166-9a07-47e7-827e-4ae1ee763c47_2.1073430cfe73ba808a68584206c1bec1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/72f22166-9a07-47e7-827e-4ae1ee763c47_2.1073430cfe73ba808a68584206c1bec1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/72f22166-9a07-47e7-827e-4ae1ee763c47_2.1073430cfe73ba808a68584206c1bec1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (975748605, 'Mixed Dragon Fruit', 5.98, 'deleted_865151000220', 'short description is not available', 'Mixed Dragon Fruit', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (975757851, 'Marketside Vegetable Stew Medley, 32 oz', 5.98, '681131161558', 'Marketside Vegetable Stew Medley is fresh picked, washed and ready-to-cook for your convenience. Our medley consists of a wholesome blend of red and yellow potatoes, carrots, yellow onions and garlic. This vegetable blend is perfect for stews, casseroles, stir fry, pot roast and more. Follow our delicious pot roast with vegetables recipe located on the back of this packaging. This veggie mix is also a great low calorie source of dietary fiber and potassium. Dinner is made easy with the fresh and wholesome taste of Marketside Vegetable Stew Medley. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Vegetable Stew Medley, 32 oz: Blend of red and yellow potatoes, carrots, yellow onions and garlic Picked fresh for you Washed and ready to cook Net weight 32 oz', 'Marketside', 'https://i5.walmartimages.com/asr/f65e1196-4a53-4e4a-a22d-77201b62d532_2.2a95f544905b06e13a9f535c0305e270.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f65e1196-4a53-4e4a-a22d-77201b62d532_2.2a95f544905b06e13a9f535c0305e270.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f65e1196-4a53-4e4a-a22d-77201b62d532_2.2a95f544905b06e13a9f535c0305e270.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (976165775, 'Marketside Mks Maple Bourbon Chop Salad Kit', 3.98, '681131428965', 'short description is not available', 'Marketside Mks Maple Bourbon Chop Salad Kit', 'Marketside', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (976377689, 'Gala Apples 3 Lb Bag', 3.37, 'deleted_813635010906', '', '', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (976380053, 'Ginger Root 8oz Bag', 2.48, '883616005184', 'Ginger Root, this extremely versatile root is known for its popularity in Asian and Indian cooking. The Chinese, Japanese, and East Indians use Ginger Root in many forms by grating or grinding them. Fresh Ginger is available in two forms; Young Ginger and Mature Ginger. Young Ginger is very tender and has a milder flavor than its mature counterpart, which has a tough skin that preserves a peppery, slightly sweet-hot flesh underneath. Grown in Jamaica, India, Africa, and China, Ginger is a gnarled and knobby root that has a brown, dry skin and a pale yellow to ivory flesh. Ginger Root serves a variety of usages and is utilized to make confections, baked goods, and even certain liqueurs. Ginger is the flavor of popular beverages like Ginger Ale and Ginger Beer. It is delicious in many savory dishes such as soups, curries, and meats and is indispensable in the making of sweets such as Gingerbread, Gingersnaps, and many spice cookies.', 'Ginger Root • Possesses antioxidant activity that counteracts with molecules that can cause damage in the body • Has antimicrobial properties • Prevents nausea and motion sickness • Helps maintain the body’s detoxification process • Incorporating ginger in your meals along with a good diet may positively support brain health', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/8ee6a2ca-60a2-4d08-b6cb-f2eebc5eefcb.334460ebb8576f34c344068ec3675dbc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ee6a2ca-60a2-4d08-b6cb-f2eebc5eefcb.334460ebb8576f34c344068ec3675dbc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8ee6a2ca-60a2-4d08-b6cb-f2eebc5eefcb.334460ebb8576f34c344068ec3675dbc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (976676953, 'Fresh Pink Apples, 3lb Bag', 5.98, '840208101167', 'Treat yourself to the delicious, crisp taste of Pink Lady Apples. These apples are known for their vivid green skin covered in a pinkish blush, crunchy texture, and tart taste with a sweet finish. Enjoy one with breakfast or lunch or as a fresh snack any time of day. with Pink Lady Apples. Super tasty Fresh Produce made with organic ingredients.', 'Fresh Pink Lady Apples, 3 lb Bag: Includes 3 pounds of tart, crisp apples Tart taste with a sweet finish Pair them with sharp cheeses and crackers for a stunning appetizer board Can be enjoyed fresh or cooked into both savory and sweet dishes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e34d9afd-1874-426f-bdc5-04bb6c739dba.4d3ba5359c53f4b430267f0df102be65.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e34d9afd-1874-426f-bdc5-04bb6c739dba.4d3ba5359c53f4b430267f0df102be65.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e34d9afd-1874-426f-bdc5-04bb6c739dba.4d3ba5359c53f4b430267f0df102be65.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (977085149, 'Desert Pride Green Seedles Grape 2lb', 5.97, 'deleted_817050010558', 'short description is not available', 'Desert Pride Green Seedles Grape 2lb', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1dde54a0-163a-4962-816c-bb46af8e32c9.68f5c6e47c0a381b38022e1436cc0deb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1dde54a0-163a-4962-816c-bb46af8e32c9.68f5c6e47c0a381b38022e1436cc0deb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1dde54a0-163a-4962-816c-bb46af8e32c9.68f5c6e47c0a381b38022e1436cc0deb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (977203341, 'Gourmet212 Roasted Red Pepper 6lb 8.06oz (6 Pack), Tip Can, Fresh', 124.95, '191822007060', 'Like roasted bell peppers, roasted red pepper is ready for taking part of your favorite kitchen supplies. As well as roasted red pepper dip cream cheese and roasted red pepper spread are typical recipes, you can also flavor those peppers with a dab of olive oil, some dry mint and shredded walnut or garlic to have choice morsels. Being essential in Turkish cousine, peppers are used in various ways in Turkish dishes. Pepper paste, fried pepper, and roasted peppers are irreplaceable. Our peppers come from ?anakkale where the world?s most succulent peppers and most beautiful red color are from. In Turkish cousines, roasted pepper is loved and used in breakfast. You can use this delicious product by both adding your meals and spreading on a slice of bread, however you like to eat! Still, it?s recommended for you to try roasted red pepper for any meat and chinken dish. This product will surprise you with its dense flavor and you won?t be regret. There are some reasons why you can prefer to buy this product: ?t is chruncy and meaty texture It ?s Halal Certified It?s Kosher Certified It has lightly sweet and charred flavor It is fire roastedIngredients: Red pepper (65%), water, vinegar. You are missing a lot, unless you don?t discover the beautiful taste of Gourmet212?s roasted red peppers.', 'Gourmet212 Roasted Red Pepper 6lb 8.06 oz (6 Pack), Tip Can, Stainless Steel, It\'s Halal & Kosher Certified, Fresh. Like roasted bell peppers, roasted red pepper is ready for taking part in your favorite kitchen supplies. As well as roasted red pepper dip cream cheese and roasted red pepper spread are typical recipes, you can also flavor those peppers with a dab of olive oil, some dry mint, and shredded walnut or garlic to have choice morsels. Being essential in Turkish cuisine, peppers are used in various ways in Turkish dishes. Ingredients: Red pepper (65%), water, vinegar.', 'Gourmet212', 'https://i5.walmartimages.com/asr/28d190e5-c871-4066-8327-f7515a6b2d5f.bae04826054ae6f64cc837aab091228e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/28d190e5-c871-4066-8327-f7515a6b2d5f.bae04826054ae6f64cc837aab091228e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/28d190e5-c871-4066-8327-f7515a6b2d5f.bae04826054ae6f64cc837aab091228e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (977425328, 'Expert Gardener 1g Grape Cynthiana', 11.84, '015066710954', 'short description is not available', 'Expert Gardener 1g Grape Cynthiana', 'Expert Gardener', 'https://i5.walmartimages.com/asr/d0b5df58-0f3e-4990-83e8-ce89be92176b.5931c628a3f6c2516670b564f3202cdb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d0b5df58-0f3e-4990-83e8-ce89be92176b.5931c628a3f6c2516670b564f3202cdb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d0b5df58-0f3e-4990-83e8-ce89be92176b.5931c628a3f6c2516670b564f3202cdb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (977686887, 'Yellow Flesh Peaches, per Pound', 1.58, '400094183854', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (977930924, 'Disney Apple Snacker', 2.5, '732313000681', 'short description is not available', 'Disney Apple Snacker', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (978115165, 'Fresh Envy Apples, 3 lb Bag', 5.97, '847473008085', 'Treat yourself to the ultimate apple experience when you bring home Fresh Envy Apples. Whether sliced on top of salad, served on a platter with your favorite cheese or eaten \"au naturel,\" Envy apple makes the experience so much more memorable and remarkable for you and the ones you love. There are people who simply accept what life offers up and then there are those who seek more. Envy shows that you choose to make each moment supremely delightful and that you know the difference between ordinary and extraordinary. Envy is an invitation to enjoy a small moment to savour and raise your expectations of what an apple can be.', 'Envy apples Enjoy the ultimate apple experience Beautifully balanced sweetness Uplifting fresh aroma Delightfully satisfying crunch Adds flavor to a variety of recipes', 'ENVY APPLES', 'https://i5.walmartimages.com/asr/d4ad9bb9-eb63-4199-8b72-e40044f6fca8.7c4956453b5329d6f022849eb68e1fd3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4ad9bb9-eb63-4199-8b72-e40044f6fca8.7c4956453b5329d6f022849eb68e1fd3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4ad9bb9-eb63-4199-8b72-e40044f6fca8.7c4956453b5329d6f022849eb68e1fd3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (978250154, 'Watermelon Seedless', 4.98, '400094544853', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (978913343, 'Marketside Organic Spring Mix & Feta Salad with Chicken, 4.75oz', 3.76, '681131221238', 'When you want to enjoy a quick and easy salad, grab one of these Marketside Organic Spring Mix and Feta Salad with Chicken bowls. The Spring Mix and Feta salad bowl includes organic spring mix, chicken meat, Feta cheese, and sweetened dried cranberries, all ready to be tossed in the included basil balsamic dressing. This Spring Mix and Feta Salad with Chicken is ideal for a light lunch or dinner. The convenient single serving bowl is a good source of protein, calcium, iron, and vitamins A and C. The salad is easy to toss in the bowl it comes in., and is an easy favorite to round out any lunch or dinner. Bring home a Marketside Spring Mix and Feta Salad with Chicken tonight.Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Organic Spring Mix and Feta Salad with Chicken, 4.75 oz: Quick and easy salad, ready to toss and eat! Spring mix, chicken meat, Feta cheese, sweetened dried cranberries, and basil balsamic dressing included Ideal for a light lunch or dinner Good source of protein, calcium, iron, and vitamins A and C', 'Marketside', 'https://i5.walmartimages.com/asr/0c9fcc82-7ba5-44c5-97b6-40bb59c54b46_3.27124f4c8eb19d96980db5a947b8fca1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0c9fcc82-7ba5-44c5-97b6-40bb59c54b46_3.27124f4c8eb19d96980db5a947b8fca1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0c9fcc82-7ba5-44c5-97b6-40bb59c54b46_3.27124f4c8eb19d96980db5a947b8fca1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (979258270, 'Boomer Gold Potatoes, 1.5 Lb.', 3.44, 'deleted_629307123344', 'Boomer Gold Potatoes, 1.5 Lb.', 'Potatoes, Boomer GoldU.S. No.1 (3/4 in- 1 5/8 in). Fresh. Straight from the farm. Easy pre-washed. Thin skinned. No peeling required. Nutritious. Fat, gluten and cholesterol free. Good source of potassium. Our signature Creamer potato, the Boomer Gold varietal is coveted for its exquisite combination of delicate golden skin, velvety flesh, and naturally butterfly flavor. We have carefully selected every Boomer Gold for consistent sizing to ensure they all cook quickly and evenly whether roasted, boiled, or microwaved. The virtues of being small. 1.855.516.6075. Facebook. Twitter. This bag is not suitable for microwaving. The Little Potato Company is focused on solely on carefully selecting and growing little potatoes that have outstanding flavors, great texture, and better nutrition. It???s all we do. And we harvest our unique, proprietary potato varieties when they???re mature at their best. You can taste the difference! As a mother and businesswoman. I am pleased to bring these little potatoes to you. My father and I grew on our first crop by acre in 1996, sorting, washing, and bagging our first crop by hand. We remain dedicated to bringing back the original, diverse goodness of little potatoes. Our potatoes will have you proclaiming the virtues of being small! Angela. Co-founder and chief potato champion. Product of USA.', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/ce9f8f8a-bb0d-47e7-8a40-cbf5b1567bf3.dce77155402ac9391575a472df95011b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ce9f8f8a-bb0d-47e7-8a40-cbf5b1567bf3.dce77155402ac9391575a472df95011b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ce9f8f8a-bb0d-47e7-8a40-cbf5b1567bf3.dce77155402ac9391575a472df95011b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (979524565, '240pc On Ylw 3# Ca', 465.6, '405531776606', 'short description is not available', '240pc On Ylw 3# Ca', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (979575666, 'California Grown Peaches, per Pound', 1.58, '400094429808', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (979818213, 'Fresh SunGold Kiwis, 1lb, Package', 4.97, '815263014325', 'Zespri Kiwi Fruit is a deliciously tangy and nutritious fruit that\'s non-GMO and straight from New Zealand. This unique fruit is bursting with flavor and is packed with vitamin C, fiber, and antioxidants. Enjoy it as a snack or add it to your favorite smoothies and salads for a healthy boost. With Zespri Kiwi Fruit, you can indulge guilt-free knowing that you\'re getting the best quality product out there.', 'Zespri SunGold Kiwi tastes sweeter-than-green kiwi and has a tropically-sweet flavor. Naturally high in vitamin C, providing 100% of your daily vitamin c needs in just one fruit. Easy to eat, just cut, scoop and enjoy. Non-GMO verified. Ripe kiwi should yield to slight pressure like a peach or avocado. Zespri SunGold Kiwi tastes sweeter as it gets softer. Once ripe, keep in the fridge to maintain freshness. For more information, visit Zespri.com', 'Zespri', 'https://i5.walmartimages.com/asr/0dc0ee7c-2d50-43db-8ff2-569d1ec52b09.dd6e34995ce9e037f3ad9e8c8b8b3458.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0dc0ee7c-2d50-43db-8ff2-569d1ec52b09.dd6e34995ce9e037f3ad9e8c8b8b3458.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0dc0ee7c-2d50-43db-8ff2-569d1ec52b09.dd6e34995ce9e037f3ad9e8c8b8b3458.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (980198993, 'Watermelon Seedless', 4.98, '405504888176', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (980657016, 'Fresh Green Beans', 1.68, '881979000068', 'short description is not available', 'Fresh Green Beans', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/7ba597aa-c9c5-44a7-9ba1-b9530ca28fb3_3.3abd1afc930af0dd5611b85d82ac54d2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7ba597aa-c9c5-44a7-9ba1-b9530ca28fb3_3.3abd1afc930af0dd5611b85d82ac54d2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7ba597aa-c9c5-44a7-9ba1-b9530ca28fb3_3.3abd1afc930af0dd5611b85d82ac54d2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (980884115, 'Bowery Sweet & Spicy, 4.5oz, Locally Grown with Zero Pesticides', 2.98, '851536007205', 'Bowery\'s locally grown and pesticide-free Sweet & Spicy mix features oakleaf, butterhead, and mustard greens for a spicier finish. Since 2017, Bowery Farming has been growing the purest produce possible locally in New Jersey. Our indoor farms provide the ideal growing environment for a year-round assortment of pesticide free and non-GMO leafy greens & herbs. We are 100x more productive on the same footprint of land as traditional agriculture and use 95% less water. Bowery only distributes locally, ensuring our greens are delivered within just a few days of harvest.', 'Bowery Sweet & Spicy, 4.5oz, Locally Grown with Zero Pesticides: Locally Grown Zero Pesticides Non-GMO Verified No Need to Wash Grown Indoors', 'Bowery Farming', 'https://i5.walmartimages.com/asr/7b206ea5-8e2c-4414-a553-29f55283b605_2.92e361a7254da48179895558b442b48b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7b206ea5-8e2c-4414-a553-29f55283b605_2.92e361a7254da48179895558b442b48b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7b206ea5-8e2c-4414-a553-29f55283b605_2.92e361a7254da48179895558b442b48b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (980992721, 'CHERRY TOMATO', 2.98, '751666245457', 'CHERRY TOMATO', '', 'GARDEN RIPE', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (981040058, 'Freshness Guaranteed Fruit Cup To Go Summer Blend', 2.28, '263029000004', 'short description is not available', 'Freshness Guaranteed Fruit Cup To Go Summer Blend', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (981351050, 'Kiku Apples 3 Lb Bag', 3.42, '847473005725', 'short description is not available', 'Kiku Apples 3 Lb Bag', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (981555926, 'Marketside Veggies with Ranch Dip, 6 oz, Fresh', 2.5, '681131220934', 'Marketside Veggies Snack Pack comes with a delicious medley of baby carrots, broccoli florets, red grape tomatoes and ranch dip. This snack pack makes it easy to enjoy a healthy snack or light meal anywhere you go. It is perfect for snacking at home, in the office or on the go. It offers nutritional benefits as it is a good source of dietary fiber and potassium. This snack is pre-sliced, washed and ready to eat for your convenience. Enjoy a healthy and refreshing snack with the wholesome taste of Marketside Veggies with Ranch Dip. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Veggies with Ranch Dip, 6 oz, Fresh Includes baby carrots, broccoli florets, red grape tomatoes and ranch dip Good source of dietary fiber Washed and ready to eat Healthy snacking on the go', 'Marketside', 'https://i5.walmartimages.com/asr/3605c13d-747f-4c90-9458-7e0d88155cec_1.4e7d364ec1c75315c1eb30658f88394d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3605c13d-747f-4c90-9458-7e0d88155cec_1.4e7d364ec1c75315c1eb30658f88394d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3605c13d-747f-4c90-9458-7e0d88155cec_1.4e7d364ec1c75315c1eb30658f88394d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (981650541, 'Fresh Multi Color Grapes, 3 Lb', 4.54, '850414002998', 'short description is not available', 'Fresh Multi Color Grapes, 3 Lb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (981713552, 'Organic Butternut Squash Spirals', 3.98, '852287006578', 'short description is not available', 'Organic Butternut Squash Spirals', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (981923194, 'Fresh Navel Oranges, 4 lb Bag', 4.97, '811857021052', 'Fresh Navel Oranges are a good addition to a healthy diet along with other fruit. They\'re oval with a thick, easy-to-remove peel and segments that separate cleanly. Oranges are a fruit that contains vitamin C and other nutrients that can be eaten as is or juiced for a smooth beverage at breakfast. It is suitable for use in all kinds of sweet and savory dishes, from cakes to weeknight chicken dinners. Citric acid fruits like oranges can be stored at room temperature for several days or in the refrigerator for up to two weeks. Available in a 4 lb package, these Fresh Navel Oranges are great for the entire family.', 'Fresh Navel Oranges, 4 lb Bag A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'Unbranded', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (982649277, 'Fresh Delicata Squash, Each', 0.97, '000000004763', 'Create something wholesome and delicious with Fresh Delicata Squash. These versatile vegetables can be used to make savory sides or sweet treats. Try them dipped in batter and fried for a comforting side or, for a healthier option, you can make a filling squash and chicken chowder, or roast them in the oven stuffed with ground turkey. If you\'re looking for something sweet, you can use squash to make a zesty lemon squash bread, a creamy squash custard pie, or even a squash chocolate loaf. Use your imagination to create something amazing and tasty with this squash. The mouthwatering possibilities are endless with this hearty vegetable. Add something amazing to your meals with Fresh Delicata Squash.', 'Fresh Delicata Squash, Each Wholesome and delicious Ideal ingredient for a variety of dishes Make fried squash, a fresh squash salad, or a hearty autumn squash soup Use to make lemon squash bread and squash custard pie Versatile and hearty', 'Produce', 'https://i5.walmartimages.com/asr/f197139f-5a10-4d75-91fb-bb2b00b05809.a7c9660c98a324bb4e87bedf500d233a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f197139f-5a10-4d75-91fb-bb2b00b05809.a7c9660c98a324bb4e87bedf500d233a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f197139f-5a10-4d75-91fb-bb2b00b05809.a7c9660c98a324bb4e87bedf500d233a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (983420035, 'Fresh Grown Yellow Nectarines, 1 Lb.', 1.78, 'deleted_400094357835', 'Fresh Grown Yellow Nectarines, 1 Lb.', 'Fresh Grown Yellow Nectarines', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (983480331, 'Earthbound Farms Fresh Organic Green Beans, 12 oz', 3.77, '032601952815', 'Ready to eat or cook, Earthbound Farms Organic Green Beans are deliciously crispy and organic. These packaged green beans are washed and prepped, ready to be tossed into action in your steamer, saute pan, wok, or casserole. With 30 calories and loads of nutrients per one cup serving, you can have a healthy side dish of fresh produce on the table in no time. To cook organic green beans, you can steam them, saute them in butter or oil, or even toss them in an instant pot very quickly. They are firm enough to stand up well in casseroles (the age-old green bean casserole is a prime example), but they can also be added to Pasta Primavera sauce, minestrone soup, and rice-based casseroles. Cook up something delicious with 12-ounce Earthbound Farms Organic Green Beans.', 'One 12-ounce package of Earthbound Farms Fresh Organic Green Beans contains 4 servings Ready to eat on the go Recipe-ready vegetables Washed and ready to enjoy Fresh organic snack Good source of Vitamin K', 'Earthbound Farm', 'https://i5.walmartimages.com/asr/b529a9c7-2cb9-4611-850d-ab87ada412d8.121f62551a5accaac3c80606ed9ed27f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b529a9c7-2cb9-4611-850d-ab87ada412d8.121f62551a5accaac3c80606ed9ed27f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b529a9c7-2cb9-4611-850d-ab87ada412d8.121f62551a5accaac3c80606ed9ed27f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (983615349, 'Dried Guajillo Chile 8 oz', 3.98, '712810008045', 'Packaged Guajillo Chili Dried 8oz', 'Dried Guajillo Chile 8 Oz', 'Miravalle', 'https://i5.walmartimages.com/asr/27e8796f-62cc-4d88-be14-444698f056a0_1.34efd3bb6e6c09acb0cd437892d5b3cc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/27e8796f-62cc-4d88-be14-444698f056a0_1.34efd3bb6e6c09acb0cd437892d5b3cc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/27e8796f-62cc-4d88-be14-444698f056a0_1.34efd3bb6e6c09acb0cd437892d5b3cc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (984046333, 'Watermelon Seedless', 4.98, '405505522321', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (984254998, 'Yellow Onions 3 Lb Bag', 2.94, 'deleted_857514004006', 'short description is not available', 'Yellow Onions 3 Lb Bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (984391798, 'Valencia Oranges, 1 Each', 0.77, 'deleted_845963000014', 'Valencia Oranges, 1 Each', 'Valencia Oranges', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (984878479, 'California Grown Peaches, per Pound', 1.58, '400094511381', 'California Grown Peaches, per Pound', 'Fresh California Grown Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (985429713, 'Fresh Candy Apple Without Nuts, Each', 0.98, '034986916277', 'Indulge in the timeless pairing of nuts and sweet with our Candy Caramel Fresh Apple with Nuts. This classic dessert is perfect for anyone who loves a little bit of crunch with their sweet treats. We start with a crisp and juicy apple and dip it into a soft, gooey, and delicious red candy caramel coating. Then, we generously sprinkle on a blend of roasted and chopped nuts, adding the perfect amount of crunch to every bite. Our Candy Caramel Apple with Nuts is not only a delicious treat, but also an ideal party supply that can add a touch of fun and entertain your guests. The combination of candied caramel and nuts has been thrilling customers for years, and continues to be a popular choice for those who want to indulge in something sweet and satisfying. So go ahead and treat yourself to a little bit of sweetness with our Candy Caramel Apple with Nuts, and savor the perfect balance of soft, crunchy, and sweet flavors in every bite.', 'Candy Apple, 1 Pack Crunch Topping The Red Candy Caramel Apple with Crunch is covered with soft, gooey, and delicious Red Candy Caramel. This Caramel brings an ever so slightly candied twist to a traditional fresh Apple, but is just as soft and easy to eat! The Crunch is a proprietary sweet, slightly sweetened cereal based coating that does not contain nuts. Combined with a small batch candied caramel recipe, this timeless pairing of crunch and sweet has been thrilling customers, and frustrating competitors ever since.', 'Unbranded', 'https://i5.walmartimages.com/asr/6a0fd4ac-35b6-4f69-b893-38ddce327fbe.8f87e62639eaabf635c0b7ff63bd24e4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a0fd4ac-35b6-4f69-b893-38ddce327fbe.8f87e62639eaabf635c0b7ff63bd24e4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6a0fd4ac-35b6-4f69-b893-38ddce327fbe.8f87e62639eaabf635c0b7ff63bd24e4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (986058341, 'Gala Apples 3 Lb Bag', 3.28, 'deleted_859125002570', 'short description is not available', 'Gala Apples 3 Lb Bag', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (986473836, 'Fresh Green Seedless Grapes, 1.5 Lb', 4.48, '095829210730', 'Seedless Green Grapes, 24 Oz.', 'Fresh Green Seedless Grapes, 1.5 Lb', 'Fresh Produce', 'https://i5.walmartimages.com/asr/63e94312-19b8-4874-9e43-518a58288cee.7e323d21847755a8a1b7fe3f7ff8dad1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/63e94312-19b8-4874-9e43-518a58288cee.7e323d21847755a8a1b7fe3f7ff8dad1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/63e94312-19b8-4874-9e43-518a58288cee.7e323d21847755a8a1b7fe3f7ff8dad1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (986621227, 'Lightly Seasoned Jackfruit', 4.77, '859806003292', 'Young organic jackfruit lightly seasoned ready to eat or add in your favorite dish', 'Jackfruit, Lightly Seasoned Ready to eat or add to your favorite dish. Real-life chopped jackfruit. Use in your favorite dishes. Jack of all foods. Know Jack. Jackfruit [Jak-Froot]: A delicious miracle food, packed full of fiber, low in calories and good any darn time you\'re hungry. King of (The Jungle) Versatility: You can eat it like a meat, veggie or fruit. Hugest Tree-Borne Fruit: Grows to a whopping 100 lbs! All for the Farmers: Straight-from-farm supply chains that put $ back in farmers\' pockets. We\'re About Making Things Better: Good eats; farmers\' lives; our footprint. Take a peek and see what\'s inside! USDA organic. Certified Organic by Ecocert India. Gluten free. Soy free. Vegan. Non GMO Project verified. nongmoproject.org. Excellent source of fiber. Unearth all the wonder of this delicious, jack of all foods at www.TheJackFruitCompany.com. Facebook. Instagram. Twitter. Pinterest. LinkedIn. Product of India.', 'The Jackfruit Company', 'https://i5.walmartimages.com/asr/2c58eb41-9a6f-4905-8c2e-b90f1b9b6042.f1f152f18ef4c0814e9f24e522a1d47f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2c58eb41-9a6f-4905-8c2e-b90f1b9b6042.f1f152f18ef4c0814e9f24e522a1d47f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2c58eb41-9a6f-4905-8c2e-b90f1b9b6042.f1f152f18ef4c0814e9f24e522a1d47f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (986985619, 'Yellow Flesh Peaches, per Pound', 1.58, '400094342640', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (987049362, 'Cauliflower', 2.74, 'deleted_073150129419', 'short description is not available', 'Cauliflower', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/3a5c8c12-4743-477d-894f-bec416048e55_1.5d63fc6518c9cfe44cb50c0048481915.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3a5c8c12-4743-477d-894f-bec416048e55_1.5d63fc6518c9cfe44cb50c0048481915.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3a5c8c12-4743-477d-894f-bec416048e55_1.5d63fc6518c9cfe44cb50c0048481915.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (987223215, 'Fingerling Potatoes, 1.5 Lb.', 3.47, '605806003035', 'Our European style fingerling potato is a small, oblong gourmet potato that is a delicious addition to any meal. A great way to add a touch of gourmet to your diet!', 'Green Giant Fresh Vegetable Blend Mixed fingerling Potato BagFresh Vegetable And Herb', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (987235687, 'Idared Apples 3 Lb Bag', 3.94, '033383085500', 'short description is not available', 'Apples, Michigan, Ida Red Great Lakes, great flavors. Tastes both tangy and tart. Eat fresh or use in cooking. Flesh is white, crisp and juicy. Texture holds up well when baked. Apples are fat free, cholesterol-free & sodium-free! US Extra Fancy 2-1/2 inch min. Apples have been coated with a food grade vegetable or food grade LAC-resin wax. Produce of USA.', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (987238675, 'Fresh Clementines, 2 lb Bag', 5.78, 'deleted_810343021200', 'Enjoy the juicy goodness of citrus when you eat a Fresh Clementine. Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Among the smallest fruits in the orange family, clementines have a pleasing sweet-tart flavor and are typically seedless. Generally a winter fruit, clementines are now available year-round in most markets. Clementines are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the mandarins hang out in a bowl on your counter or table to breathe. Compact and portable, clementines are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious Fresh Clementines on hand for an easy, healthy treat.', 'Delicious, sweet, juicy citrus Pleasing sweet-tart flavor Easy to peel and segment Excellent source of vitamin C, potassium, and folic acid For maximum flavor, do not refrigerate Typically seedless You\'ll have plenty for everyone with this 5-pound bag', 'Fresh Produce', 'https://i5.walmartimages.com/asr/5239bd74-c85d-4d08-b8da-c3bc7ef938c8.52a18c9d52147dd9c6402004a243dddd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5239bd74-c85d-4d08-b8da-c3bc7ef938c8.52a18c9d52147dd9c6402004a243dddd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5239bd74-c85d-4d08-b8da-c3bc7ef938c8.52a18c9d52147dd9c6402004a243dddd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (987484376, 'Fresh Farms Better Crunch Lettuce, 12 oz', 2.98, '716519002106', 'Fresh Farms Better Crunch Lettuce is a premium sweet and extra crisp lettuce. It combines the crisp and crunchy bite of iceberg lettuce with the shape, color and nutritional value of a Cos lettuce. This package includes individual leaves that are washed and ready to eat. Use it as the base for your favorite salad, create a delicious lettuce wrap, or top sandwiches and burgers. But it doesn’t stop there! This lettuce is also perfect for grilling and creating lettuce wedges. The possibilities are endless with Fresh Farms Better Crunch Lettuce', 'Premium sweet and extra crisp lettuce Combines the crisp and crunchy bite of iceberg lettuce with the shape, color and nutritional value of a Cos lettuce Includes individual leaves that are washed and ready to eat Great for sandwiches, salads, wedges, wraps, and grilling', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1b341891-9051-4e1b-b008-21b7a0e6563b.9dcb6b23678fea8aa031d96ed3682d00.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1b341891-9051-4e1b-b008-21b7a0e6563b.9dcb6b23678fea8aa031d96ed3682d00.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1b341891-9051-4e1b-b008-21b7a0e6563b.9dcb6b23678fea8aa031d96ed3682d00.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (987536645, 'Tomato on the Vine, Bag', 1.98, 'deleted_768981111114', 'Keep your recipes simple and classic with fresh tomatoes on the vine. With their vibrant red color, firm and juicy flesh, and unmistakably delicious flavor, this fresh produce item is sure to impress more than just your taste buds. You can slice them up to garnish a sandwich or burger for added flavor and texture, dice them up to create a pizza or pasta topping, crush them up to make a decadent bruschetta or sauce, or finely blend them to create your own personalized salsa. The list is endless! Plus, they come right to your kitchen still on the vine that they grew on, meaning that their mouthwatering taste and freshness will be long-lasting for your culinary convenience. Stock up on Walmart\'s Tomatoes On The Vine and keep your dishes looking great and tasting equally as excellent.', 'Tomato on the Vine, Bag: Wholesome, versatile, and delicious Ideal ingredient for a variety of dishes Make a zesty tomato sauce to go along with your favorite pasta Enjoy on their own as a nutritious snack Make a flavorful salsa or add some pop to your guacamole', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1397cd52-8636-48d7-90a7-3c15d4c3967c.7544db07683e1eed49dbd813de13e291.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (987767825, 'Fieldpack Unbranded Organic Romaine Hearts', 4.52, 'deleted_740695900017', 'short description is not available', 'Fieldpack Unbranded Organic Romaine Hearts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (988059415, '180pc Pto Rst 10# Sc', 1074.6, '400094858318', 'short description is not available', '180pc Pto Rst 10# Sc', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (988486534, 'AVO BBAG 10/5 48 MXMD', 3.48, 'deleted_698539051480', 'Avocados aren’t just great-tasting fresh produce, but they are a nutrient-dense food enjoyed around the world. Because of the creamy texture and mild flavor of Hass avocados, they are a versatile ingredient that can be used in many different types of recipes and dishes. Not only are our jumbo avocado a great ingredient to use in numerous ways, but it is also a healthy food that contributes unsaturated “good” fats and almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9. Jumbo ripe avocados will have dark green to nearly black skin color, a bumpy skin texture and should yield to gentle pressure without leaving indentations or feeling mushy. Avocados with a slightly bumpy texture should be ripe in 1 to 2 days. They will also be somewhat firm and have a dark green and black speckled color. You’ll be ready to enjoy tasty avocados on their own or as part of a salad, fresh guacamole, taco, burrito or avocado toast. The possibilities are deliciously endless.', 'Merchandise', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (988961974, '200pc Pto Ylw/red 5#', 1074, '405536422201', 'short description is not available', '200pc Pto Ylw/red 5#', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (989227041, 'Kale Greens', 1.48, 'deleted_680894652204', 'short description is not available', 'Kale Greens', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (989601315, 'Corn Husks / Hojas Para Tamal, 7 oz', 8.88, '769176001210', 'Corn husks are thin, papery, and have a fibrous texture, also known as hojas de maíz, are a traditional and important ingredient used for preparing many dishes. They are most commonly used to make tamales, a popular dish made of corn masa dough filled with various meats, vegetables, or cheese, then wrapped in a corn husk and steamed. They can be used to wrap and steam food, imparting a subtle corn flavor and aroma. They are also an excellent natural alternative to aluminum foil or parchment paper for wrapping food for grilling or baking. Desing your own fresh dishes ideas!', 'Elevate your culinary skills by using Corn Husks (hojas de maíz) to create authentic tamales, with the added bonus of a subtle corn flavor and aroma Choose an eco-friendly and natural alternative to aluminum foil or parchment paper by using Corn Husks to wrap and steam your favorite dishes Enjoy versatile Corn Husks for grilling or baking, as they not only provide a unique presentation but also keep your food moist and flavorful.', 'Generic', 'https://i5.walmartimages.com/asr/10aa584b-8545-41c0-8dac-f70d7f572aa4.75e28b6a5b2d79e987fa46c953556c40.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/10aa584b-8545-41c0-8dac-f70d7f572aa4.75e28b6a5b2d79e987fa46c953556c40.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/10aa584b-8545-41c0-8dac-f70d7f572aa4.75e28b6a5b2d79e987fa46c953556c40.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (989683053, 'Freshness Guaranteed Watermelon 16 Oz', 4.93, 'deleted_681131036665', 'short description is not available', 'Freshness Guaranteed Watermelon 16 Oz', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (990409869, '63pc Mix Guacamole', 73, '405572084753', 'short description is not available', '63pc Mix Guacamole', '', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (990490483, 'Fresh Large Hass Avocado Bag, 3- 4 Count', 5.52, '', 'Avocados aren’t just great-tasting fresh produce items, but they are a nutrient-dense fruit that can be enjoyed throughout the year. Hass avocados are a versatile ingredient with a creamy texture and mild flavor that can be used in many different types of recipes and dishes that are perfect for enjoying at barbecues and outdoor gatherings with friends and family during the summer. Enjoy Large avocados in countless ways that will make those barbecues and gatherings with family and friends even more exciting. Use avocados in flavorful recipes that everybody can share and enjoy while being together outside. Try avocados in individual Mexican food items like tacos or burritos, as part of appetizers like avocado crostini, or in a fresh guacamole or avocado dip so everybody can dip tortilla chips into something delicious. The possibilities are deliciously endless if you need additional food options for barbecues. Not only is a Large avocado a great ingredient to use in numerous ways, but it is also a healthy food that contributes unsaturated “good” fats and almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9. A Large ripe avocado will have a dark green to nearly black skin color, a bumpy skin texture and should yield to gentle pressure without leaving indentations or feeling mushy. Avocados with a slightly bumpy texture should be ripe in 1 to 2 days. They will also be somewhat firm and have a dark green and black speckled color. Once you’ve selected the perfect bag of avocados, you’ll be ready to enjoy all kinds of different healthy foods and recipes for the next time you’re enjoying an outdoor gathering with friends and families.', 'Bag of 3 to 4 Large Hass Avocados Fresh fruit with a creamy texture and mild flavor Fresh avocados are great for using in tacos, burritos, appetizers, avocado dip and fresh guacamole so that you have delicious food to share and enjoy during barbecues and the summer months A cholesterol free fruit that contains almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9 Large hass avocados are the lowest sugar fruit and provide unsaturated “good fats” that help absorb Vitamin A, Vitamin D, Vitamin K and Vitamin E Large ripe avocados will have dark green to nearly black skin color, a bumpy texture and should yield to gentle pressure without leaving indentations', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (990655113, 'Fresh Whole Cocktail Tomato, 1 lb Package', 2.98, 'deleted_751666651050', 'Holding the ideal balance of sweetness and acidity, it\'s easy to see why Fresh Whole Cocktail Tomatoes are called the tomato lover\'s tomato. Cocktail tomatoes are small, making them an ideal choice for appetizers to pair with your everyday meals and for when you\'re entertaining guests. You can combine these tasty little tomatoes with fresh mozzarella and basil drizzled with olive oil or slice them up and add them to a freshly tossed salad. If you\'re feeling something classic, you can always cut one up to add that fresh tomato taste to a sandwich or dice up a few to make a delightful pizza topping. Be sure to add Fresh Whole Cocktail Tomatoes to your inventory of ingredients today.', 'Fresh Whole Cocktail Tomato, 1 lb Package The tomato lover\'s tomato Small size is great for salads and appetizers Ideal ingredient for a variety of dishes Greenhouse-grown and vine-ripened Pesticide and herbicide free 16-ounce package of cocktail tomatoes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e9cd5b61-4764-440a-824f-27c48ab73adb.9d45497f656a74cee90bea61ec675494.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9cd5b61-4764-440a-824f-27c48ab73adb.9d45497f656a74cee90bea61ec675494.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e9cd5b61-4764-440a-824f-27c48ab73adb.9d45497f656a74cee90bea61ec675494.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (991156743, 'Simply Fresh Salad -sweet Kale Superfood', 3.98, '851125002529', 'short description is not available', 'Simply Fresh Salad -sweet Kale Superfood', 'Simply Fresh', 'https://i5.walmartimages.com/asr/b8a59882-aa2e-41ba-a2cd-95d0f6e60a1d.fc37e4f5b86e03c11efaf860e1f34857.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b8a59882-aa2e-41ba-a2cd-95d0f6e60a1d.fc37e4f5b86e03c11efaf860e1f34857.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b8a59882-aa2e-41ba-a2cd-95d0f6e60a1d.fc37e4f5b86e03c11efaf860e1f34857.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (991281730, 'Watermelon Seedless', 4.98, '405503754168', 'short description is not available', 'Watermelon Seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (991328660, '200pc Pto Rst 5# Rpe', 648, '405513948915', 'short description is not available', '200pc Pto Rst 5# Rpe', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (991330783, 'Marketside Pb/jam/crk/crt/grp/choc Candy', 2.98, '859216007262', 'short description is not available', 'Marketside Pb/jam/crk/crt/grp/choc Candy', 'Marketside', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (991777437, 'Freshness Guaranteed Fresh Black Seedless Grapes', 1.88, '', 'short description is not available', 'Freshness Guaranteed Fresh Black Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (992056139, '500lb Cabbage Green', 340, '405787755493', 'short description is not available', '500lb Cabbage Green', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (992082640, 'Saturn Peach, Each', 4.6, 'deleted_898429002596', 'short description is not available', 'Fresh California Grown Saturn Peaches', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ec9062fe-a556-49d2-895f-ee4ea3ba7410.3620454ae412399e02bd262f8cc3b7da.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec9062fe-a556-49d2-895f-ee4ea3ba7410.3620454ae412399e02bd262f8cc3b7da.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec9062fe-a556-49d2-895f-ee4ea3ba7410.3620454ae412399e02bd262f8cc3b7da.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (992735174, 'Baby Spring Mix Tender Baby Lettuce and Greens, 11 oz', 3.98, '071279275031', 'Our Spring Mix contains carefully selected tender baby lettuces and greens, picked when the tiny leaves are perfect and whole. Our Spring Mix is not only flavorful, but also quite beautiful.', 'Thoroughly Washed Ready to Eat Non-GMO', 'Unbranded', 'https://i5.walmartimages.com/asr/ceb70df1-9f56-439d-84ab-0e947c47d624.0654e52b2daf9efe0ddd90e5b6ee7293.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ceb70df1-9f56-439d-84ab-0e947c47d624.0654e52b2daf9efe0ddd90e5b6ee7293.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ceb70df1-9f56-439d-84ab-0e947c47d624.0654e52b2daf9efe0ddd90e5b6ee7293.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (993017637, 'Cherry on the Vine Tomato, 12 oz Package', 4.48, '689259004931', 'Fresh Cherry on the Vine Tomatoes are the perfect cooking tomato. Because of their notable flavor and thicker skin, they are a versatile tomato option that\'s fit for grilling, sauteing, roasting, or baking. Their small size also makes them a quick and simple addition to a fresh salad as well as an excellent finger food for whenever you\'re in the mood for a light snack. Packed with nutrients, cherry on the vine tomatoes are a deliciously healthy ingredient that adds both vibrant color and mouthwatering flavor to any recipe. For the best flavor and freshness, store these tomatoes at room temperature on your kitchen counter. Make your next meal a marvelous one with Cherry on the vine Tomatoes from Walmart.', 'Cherry on the Vine Tomato, 12 oz Package: Wholesome, versatile, and delicious Sweet, juicy flavor in each bite Ideal ingredient for a variety of dishes Perfect for salads, pasta salads, flatbreads, omelets, and healthy snacking Add to party trays or school lunches Delicious and nutritious Store at room temperature for best results', 'Fresh Produce', 'https://i5.walmartimages.com/asr/58f7fda5-2b5f-4b97-8ebb-30cf97ee6cf9.f29785bf74753d7ebddfe7b674383158.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58f7fda5-2b5f-4b97-8ebb-30cf97ee6cf9.f29785bf74753d7ebddfe7b674383158.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58f7fda5-2b5f-4b97-8ebb-30cf97ee6cf9.f29785bf74753d7ebddfe7b674383158.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (994358937, 'GRAPE TOMATOES', 2.89, '040232224751', 'GRAPE TOMATOES', '', '', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (994556747, 'Jumbo White Onions Per Pound', 1.46, 'deleted_813682015220', 'short description is not available', 'Jumbo White Onions Per Pound', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d5bafda3-8e57-4581-a370-fa7b050e82b2_3.4ba13350c80dc0962ef5959a1459a13d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d5bafda3-8e57-4581-a370-fa7b050e82b2_3.4ba13350c80dc0962ef5959a1459a13d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d5bafda3-8e57-4581-a370-fa7b050e82b2_3.4ba13350c80dc0962ef5959a1459a13d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (994669807, 'Smitten Apples, Each', 1.18, '000000036276', 'short description is not available', 'Smitten Apples, Each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/d0bf5153-10f4-49c5-b84d-db5e07ac7f66.045ad0388f3477aad7190dc4e04325ec.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d0bf5153-10f4-49c5-b84d-db5e07ac7f66.045ad0388f3477aad7190dc4e04325ec.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d0bf5153-10f4-49c5-b84d-db5e07ac7f66.045ad0388f3477aad7190dc4e04325ec.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (994757251, 'Fresh Yellow Flesh Peaches, 1 Lb.', 1.58, '400094343975', 'Fresh Yellow Flesh Peaches, 1 Lb.', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (994856734, 'Services Reduced Program Dept 94', 0.01, '251873000004', 'short description is not available', 'Services Reduced Program Dept 94', 'SERVICES', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (994883620, 'Mangoes, 1 Each', 0.88, '', 'Although generally not considered to be the best in terms of sweetness and flavor, it is valued for its very long shelf life and tolerance of handling and transportation with little or no bruising or degradation.', 'Mango', 'Fresh Produce', 'https://i5.walmartimages.com/asr/25dbe438-1516-4e59-8eaa-e6c6ee7ba838_1.dc8921bcca4251acf5b96394d5479554.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/25dbe438-1516-4e59-8eaa-e6c6ee7ba838_1.dc8921bcca4251acf5b96394d5479554.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/25dbe438-1516-4e59-8eaa-e6c6ee7ba838_1.dc8921bcca4251acf5b96394d5479554.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (994998279, 'Mango', 0.98, '840437101587', 'Savor the irresistible taste of a fresh Mango. Mangoes are an excellent fruit to add to your breakfast, lunch, dinner, or dessert. For breakfast, you can chop the mango up and add it to yogurt or a smoothie for a sweet treat that\'s sure to get your morning started on a high note. For dessert, you could use a mango to make a refreshing sorbet or put a tropical twist on a cobbler. You can also use it to make creamy milkshakes or delicious juices that everyone is sure to enjoy. The culinary possibilities are endless when you keep your kitchen stocked with fresh Mangoes.', 'Irresistibly sweet and juicy Delicious on its own or in a variety of recipes Make a creamy milkshake or a nutritious juice blend Add to yogurt or a smoothie Use to top your salad for a tropical twist', 'Unbranded', 'https://i5.walmartimages.com/asr/cc54242f-cb87-4a25-9baa-fccaa20f5443.64fa79325ad44a7352dcd3c2a8b477be.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc54242f-cb87-4a25-9baa-fccaa20f5443.64fa79325ad44a7352dcd3c2a8b477be.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc54242f-cb87-4a25-9baa-fccaa20f5443.64fa79325ad44a7352dcd3c2a8b477be.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (995007412, 'Vidalia Onions 3 Lb Bag', 2.98, 'deleted_859555001006', 'short description is not available', 'Vidalia Onions 3 Lb Bag', 'Vidalia', 'https://i5.walmartimages.com/asr/a3650612-8d66-4d67-8022-8681602fdd9f.e04682a725dd79f92951985ea1052310.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a3650612-8d66-4d67-8022-8681602fdd9f.e04682a725dd79f92951985ea1052310.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a3650612-8d66-4d67-8022-8681602fdd9f.e04682a725dd79f92951985ea1052310.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (995451931, 'Grape Multi Pack', 4.88, '030223030201', 'Introducing the Grape Multi Pack, a selection of nature\'s finest grapes in one convenient package. Our carefully curated assortment features a variety of colors and flavors, from juicy reds to sweet greens and plump black grapes. This versatile and nutritious snack is perfect for on-the-go enjoyment, lunchboxes, or as a delightful addition to your favorite recipes. Savor the taste of quality and freshness with the Grape Multi Pack, your go-to source for delicious, premium grapes.', 'Grape Multi Pack Introducing the Whole Grape Multi Pack, a selection of nature\'s finest grapes in one convenient package. Our carefully curated assortment features a variety of colors and flavors, from juicy reds to sweet greens and plump black grapes. This versatile and nutritious snack is perfect for on-the-go enjoyment, lunchboxes, or as a delightful addition to your favorite recipes. Savor the taste of quality and freshness with the Grape Multi Pack, your go-to source for delicious, premium grapes. Made with Organic Ingredients.', 'Unbranded', 'https://i5.walmartimages.com/asr/20a46e7f-7126-4e47-aa4e-e1137289cbcb.79d1170b3b21fc8bf50a33b8d723abee.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20a46e7f-7126-4e47-aa4e-e1137289cbcb.79d1170b3b21fc8bf50a33b8d723abee.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/20a46e7f-7126-4e47-aa4e-e1137289cbcb.79d1170b3b21fc8bf50a33b8d723abee.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (995979925, 'Large Avocado 3 Count Bag', 4.48, '', 'short description is not available', 'Large Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bff80901-b099-4450-9ea6-7505bedb8071.7fcbc0bfea3f5d81022267d85718fbb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (996179527, '75pc Orange Navel 8#', 597.75, '400094336878', 'short description is not available', '75pc Orange Navel 8#', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (996405753, 'Mks Organic Mango', 2.98, '681131428668', 'short description is not available', 'Mks Organic Mango', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (996624213, 'Fuji Apples, 3 lbs Bag', 4.97, '033383087139', 'short description is not available', 'Fuji Apples, 3 lbs', '', 'https://i5.walmartimages.com/asr/3fbe8fa1-8778-4260-886a-1c50feccabe7.6c30f44cf9b32173ddb3a3a5fbfa3497.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3fbe8fa1-8778-4260-886a-1c50feccabe7.6c30f44cf9b32173ddb3a3a5fbfa3497.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3fbe8fa1-8778-4260-886a-1c50feccabe7.6c30f44cf9b32173ddb3a3a5fbfa3497.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (998973891, 'Walmart Produce Pineapple Mango 32 Oz', 7.78, '826766252084', 'short description is not available', 'Walmart Produce Pineapple Mango 32 Oz', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (999977230, 'Fresh Sierra Honey Plums, 1 lb', 4.67, '847081000952', 'Elevate your day with the luscious Sierra Honey Plums, 1 lb. Fruit serves as a nutritious snack and a vital component of a wholesome diet for most individuals. It offers fiber, essential vitamins, and minerals. Sierra Honey Plums are no exception, providing vitamin A and other nutrients. Each bite of these plums is delightfully sweet and delectable. Savor one on its own or incorporate it into salads and various recipes. Honey Plums boast a distinctive flavor and a succulent, yet tender texture. Approximately five to seven plums are included per pound pack. Indulge in the irresistible taste of Sierra Honey Plums.', 'Plums, 1 lb Extra sweet and juicy Late season variety Delicious as a snack Excellent ingredient for salads Approximately 5-7 plums per 1 lb pack', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ddc9d80b-3646-4a02-9f9d-81baea8d086a_1.fe9313b8f7907ee770316dc5dbc5c265.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ddc9d80b-3646-4a02-9f9d-81baea8d086a_1.fe9313b8f7907ee770316dc5dbc5c265.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ddc9d80b-3646-4a02-9f9d-81baea8d086a_1.fe9313b8f7907ee770316dc5dbc5c265.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1022175113, 'Fieldpack Unbranded Large Bagged Oranges', 8.94, '791928110062', 'short description is not available', 'KINGS RIVER CA NVL ORNG SNGL FRT BAG FRESH FRUIT', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/f3f3e895-4270-4239-9054-3aba1b21fbbb.5319a5ab6eb42948ee84db536f8f0c4c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f3f3e895-4270-4239-9054-3aba1b21fbbb.5319a5ab6eb42948ee84db536f8f0c4c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f3f3e895-4270-4239-9054-3aba1b21fbbb.5319a5ab6eb42948ee84db536f8f0c4c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1022197352, '1# Bag Keylimes', 2.98, 'deleted_857392008011', 'Fresh bagged keylimes.', '1 lb mesh-bag keylimes', 'FRESHQUITA', 'https://i5.walmartimages.com/asr/a742259a-ece3-4072-b13b-9d4a82af6619.fffdeb1d6b2fd423f54643c42c329e81.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a742259a-ece3-4072-b13b-9d4a82af6619.fffdeb1d6b2fd423f54643c42c329e81.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a742259a-ece3-4072-b13b-9d4a82af6619.fffdeb1d6b2fd423f54643c42c329e81.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1026430265, 'Taylor Farms Berry Blend 14oz', 6.97, '030223038306', 'Taylor Farms Mixed Berries, 14 oz, is a vibrant and refreshing blend of fresh strawberries and blueberries—perfectly packed for snacking, topping, or mixing into your favorite meals. Hand-selected for ripeness and flavor, each berry bursts with natural sweetness and juicy texture. Whether you\'re looking to start your day with a nutritious breakfast or need a light, satisfying afternoon snack, this berry mix delivers delicious versatility and a dose of antioxidants. Add it to yogurt, cereal, smoothies, or simply enjoy it on its own. With no added sugars or preservatives, you’re getting nothing but pure fruit goodness. Strawberries and blueberries are both naturally high in Vitamin C, and the mix is low in calories and fat, making it a health-conscious choice you can feel good about. Conveniently packaged in a resealable plastic container to maintain freshness and easy storage in the fridge. This product contains no major allergens and is Dairy-free.', 'Taylor Farms Mixed Berries Strawberry & Blueberry, 14oz Tray (Fresh) Fresh-cut blend of strawberries and blueberries Naturally high in Vitamin C and low in fat', 'Taylor Farms', 'https://i5.walmartimages.com/asr/a20b278b-05cb-4ce2-8a43-f49bc587edb4.0dad52d373e7f2fbf81ebee43d511af8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a20b278b-05cb-4ce2-8a43-f49bc587edb4.0dad52d373e7f2fbf81ebee43d511af8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a20b278b-05cb-4ce2-8a43-f49bc587edb4.0dad52d373e7f2fbf81ebee43d511af8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1034275712, 'Taylor Farms Pineapple Berry Blend, 16 oz Tray', 4.58, '030223038139', 'Taylor Farms fresh cut pineapple berry blend in Plastic Tray ready to be opened and shared. It includes 16 ounces of fresh sweet pineapple and berries.', 'Taylor Farms Pineapple Berry Blend 16 Oz Sweet, refreshing treat Great for breakfast, lunch, dessert, or when you want a snack Good source of nutrients and serving of fruit Enjoy right out of the container, set out for fruit tray, take it with you for lunch, or savor it as a delicious dessert Share with friends and family or keep for yourself Comes in a re-closable container to help maintain freshness', 'Taylor Farms', 'https://i5.walmartimages.com/asr/c0a8afe1-291d-4846-8444-8e72a7210fc6.6b63608a0a65bfe4521966477c338120.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c0a8afe1-291d-4846-8444-8e72a7210fc6.6b63608a0a65bfe4521966477c338120.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c0a8afe1-291d-4846-8444-8e72a7210fc6.6b63608a0a65bfe4521966477c338120.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1036186377, 'Granada Entera', 3.47, '406531576920', 'short description is not available', 'Granada Entera', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1042137375, 'Fresh Valencia Oranges, 1 Each', 0.83, '036515340133', 'Known for their sweet flavor, Valencia Oranges have a thin skin and are typically very juicy. It is the most popular orange for juicing. It\'s juice will remain perfectly sweet even after air exposure. With a balanced sweet-to-tart flavor ratio that carries over to their juice, Valencia Oranges are widely available during the spring and summer months. Use Valencia oranges to make fresh orange juice, or use their flesh, juice, and zest in baked goods, cocktails, sauces, and marinades. Keep some sunshine on hand with Valencia Oranges. Available by the each.', 'Fresh Valencia oranges Thin skin and very juicy Most popular orange for juicing Balanced sweet-to-tart flavor ratio Widely available during the spring and summer months Use their flesh, juice, and zest in baked goods, cocktails, sauces, and marinades', 'Fresh Produce', 'https://i5.walmartimages.com/asr/a6054c7f-7e7b-4de8-9f04-1f87bafa4c3e.76cf34255799375020421060def8bb2e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6054c7f-7e7b-4de8-9f04-1f87bafa4c3e.76cf34255799375020421060def8bb2e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6054c7f-7e7b-4de8-9f04-1f87bafa4c3e.76cf34255799375020421060def8bb2e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1049977058, 'Del Monte No Sugar Added Citrus Salad with Grapefruit and Orange, 52 oz Jar', 8.97, '024000258148', 'Del Monte No Sugar Added Citrus Salad, 52 oz Jar makes it easy to enjoy high quality fruit in minutes. Enjoy the perfect balance of sweet and tart in our citrus medley, which includes Vitamin-C packed red grapefruit, white grapefruit and orange slices with no added sugar. Refreshingly chilled, Del Monte Citrus Salad is picked at the peak of ripeness and hand-cut for your convenience. Picked and packed at the peak of freshness, the jarred fruit slices are ideal as part of a quick lunch snack or as a flavorful addition to fruit cocktail. Each jar is easy to open, reseal, and store for a convenient fruit snack whenever you need delicious fruit on-the-go. Bring wholesome goodness to your family with Del Monte!', 'One 52 oz jar of Del Monte No Sugar Added Citrus Salad Del Monte No Sugar Added Citrus Salad offers a quick and easy way to have a citrus fruit snack in just minutes Made with red grapefruit, white grapefruit and orange slices picked at the peak of freshness and immersed in sweetened water Del Monte No Sugar Added Citrus Salad is ideal for fruit cocktail or salads Bring wholesome goodness to your family with Del Monte No Sugar Added Citrus Salad', 'Del Monte', 'https://i5.walmartimages.com/asr/8a01b7a2-c891-492c-ad94-2734be27b796.0333d5240da848684c19d98af383570d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8a01b7a2-c891-492c-ad94-2734be27b796.0333d5240da848684c19d98af383570d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8a01b7a2-c891-492c-ad94-2734be27b796.0333d5240da848684c19d98af383570d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1061983099, 'OS SEEDLESS GREEN GRAPES 6/3LBS', 55, '066022002378', 'Whether round or oval, red, green, or black, a platter of freshly rinsed grapes offers the perfect opportunity to pluck, pop, and savor. They bring luscious color to charcuterie boards and are the perfect complement to sharp cheeses with their crisp texture and palate-cleansing, sweet taste. Ocean Spray® fresh grapes are passionately grown and hand-picked to come straight from the farm to your family.', 'Whether round or oval, red, green, or black, a platter of freshly rinsed grapes offers the perfect opportunity to pluck, pop, and savor. They bring luscious color to charcuterie boards and are the perfect complement to sharp cheeses with their crisp texture and palate-cleansing, sweet taste. Ocean Spray® fresh grapes are passionately grown and hand-picked to come straight from the farm to your family.', 'Ocean Spray', 'https://i5.walmartimages.com/asr/d97e6cfc-0b5a-4783-af55-6ffbec5f8635.a7d4dcd96bbe69eebdb59a5f3c4d9cf0.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d97e6cfc-0b5a-4783-af55-6ffbec5f8635.a7d4dcd96bbe69eebdb59a5f3c4d9cf0.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d97e6cfc-0b5a-4783-af55-6ffbec5f8635.a7d4dcd96bbe69eebdb59a5f3c4d9cf0.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1064046885, 'Fresh Navel Oranges, 8 lb Bag', 8.94, 'deleted_605049623175', 'Enjoy the juicy goodness of these Large Bagged Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, these Large Bagged Oranges will add flavor to any meal or beverage.', 'A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1064764886, 'Clementines, 3lb Bag', 4.97, '033383103167', 'Enjoy the juicy goodness of citrus when you eat a Clementine. Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Among the smallest fruits in the orange family, clementines have a pleasing sweet-tart flavor and are typically seedless. Generally a winter fruit, clementines are now available year-round in most markets. Clementines are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the mandarins hang out in a bowl on your counter or table to breathe. Compact and portable, clementines are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious Clementines on hand for an easy, healthy treat.', 'Delicious, sweet, juicy citrus Pleasing sweet-tart flavor Easy to peel and segment Excellent source of vitamin C, potassium, and folic acid For maximum flavor, do not refrigerate Typically seedless', 'Fresh Produce', 'https://i5.walmartimages.com/asr/33ea1138-975e-47a4-81ff-62d88546df67.419bf6bc44206b42dccd3becbd04f4a4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/33ea1138-975e-47a4-81ff-62d88546df67.419bf6bc44206b42dccd3becbd04f4a4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/33ea1138-975e-47a4-81ff-62d88546df67.419bf6bc44206b42dccd3becbd04f4a4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1086250163, 'Taylor Farms Fresh Ready to Eat Grapes, 10 oz Tray', 3.47, '030223038191', 'Treat yourself to the delicious, juicy flavor of Fresh Red Seedless Grapes. These grapes are bursting with flavor and are completely seedless. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks.', 'Fresh Red Seedless Grapes Seedless grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Great for using in fruit salad Freeze and use as fun ice cubes', 'Taylor Farms', 'https://i5.walmartimages.com/asr/a882a702-0240-474e-a825-0dce31e60512.441b50947b8ae65532bbccb3fdee1258.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a882a702-0240-474e-a825-0dce31e60512.441b50947b8ae65532bbccb3fdee1258.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a882a702-0240-474e-a825-0dce31e60512.441b50947b8ae65532bbccb3fdee1258.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1106481646, 'Welchs Red Delicious Fresh Apple, 3lb Bag', 5.97, '095829211324', 'Treat yourself to the delicious, sweet taste of Red Delicious Apples. These apples are known for their classic sweet flavor with mild acidity and creamy white flesh with low acidity. Crisp and juicy, these apples have higher levels of antioxidants due to the rich, deep red skin. Enjoy one with breakfast or lunch or as a fresh snack any time of day. An excellent snacking or juicing apple, the Red Delicious is an excellent addition to green, fruit, and chopped salads, or an unexpected twist to sandwiches, quesadillas, or burgers. You can even pair them with sharp cheeses and crackers to create a stunning appetizer cheese board to share with guests', 'Sweet, crisp, and juicy Creamy white flesh with low acidity Excellent snacking apple Higher antioxidants due to the rich, deep red skin Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp, and apple pie', 'Welch\'s', 'https://i5.walmartimages.com/asr/32f0433e-70bd-4ceb-8bd7-28f615589881.b5b83a9a712a0f2a4c09950d9de5e087.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/32f0433e-70bd-4ceb-8bd7-28f615589881.b5b83a9a712a0f2a4c09950d9de5e087.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/32f0433e-70bd-4ceb-8bd7-28f615589881.b5b83a9a712a0f2a4c09950d9de5e087.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1119801872, 'Aguacate Hass Calibre 48 CAT 1', 0.68, '', 'hass avocado variety of Colombian origin with high quality standards.', 'hass avocado variety of Colombian origin with high quality standards.', 'Aguacate Variedad Hass', 'https://i5.walmartimages.com/asr/5dab0b48-92fd-4b64-9a0e-5de3a17d1305.121e1fb9446d82c719e304d775d8f990.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5dab0b48-92fd-4b64-9a0e-5de3a17d1305.121e1fb9446d82c719e304d775d8f990.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5dab0b48-92fd-4b64-9a0e-5de3a17d1305.121e1fb9446d82c719e304d775d8f990.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1141798970, 'Taylor Farms Fresh Cut Pineapple, 16 oz Tray', 4.97, '030223034124', 'Experience a burst of tropical flavors with these Pineapple Chunks. The pre-cut chunks of ripe pineapple are juicy and sweet to taste and are packed in its own juice. Carry them with you and eat them straight out of the tray any time you want, at home or on-the-go. You can also use them to top desserts and ice creams, in a fruit salad or blend them with milk to make milkshakes. Pineapples are known to have a number of nutrients, and they are especially rich in vitamin C. Add some fresh fruits to your daily menu today.', 'Taylor Farms Pineapple 16 Oz', 'Taylor Farms', 'https://i5.walmartimages.com/asr/a9c50194-fc96-4737-a2b1-d452112fe698.b4959e74794ff38c5c0d8a11040c5a62.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a9c50194-fc96-4737-a2b1-d452112fe698.b4959e74794ff38c5c0d8a11040c5a62.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a9c50194-fc96-4737-a2b1-d452112fe698.b4959e74794ff38c5c0d8a11040c5a62.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1162104468, 'Taylor Farms Fresh Cut Watermelon, 10 oz Tray', 2.77, '030223034339', 'Experience a burst of summertime goodness with this delicious Freshness Guaranteed Watermelon. This pre-cut ripe watermelon is juicy, sweet, and refreshing to the taste. In addition, watermelons are a great natural source of vitamins A and C. Carry them with you and eat them straight out of the tray any time you want, at home, or on-the-go. Pair them with a tasty salad or sandwich for a nutritious and delicious lunch. You can also use them as a naturally sweet ingredient in a fruit salad. Add some fresh fruit to your daily menu with this Freshness Guaranteed Watermelon.Freshness Guaranteed provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Taylor Farms Watermelon 10 Oz', 'Taylor Farms', 'https://i5.walmartimages.com/asr/e3fdb010-55de-48ca-af46-613334b68d93.94b2582af64ae59ab6e0f4720f34dcc1.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e3fdb010-55de-48ca-af46-613334b68d93.94b2582af64ae59ab6e0f4720f34dcc1.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e3fdb010-55de-48ca-af46-613334b68d93.94b2582af64ae59ab6e0f4720f34dcc1.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1165865931, 'Fresh Honeycrisp Apple, 2lb', 5.87, '095829211553', 'Treat yourself to the delicious, crisp taste of Honeycrisp Apples. These medium-to-large apples are known for their light green and yellow background covered with a red-orange flush and a strong hint of pink, and a honey-sweet, tart flavor. Enjoy one with breakfast or lunch or as a fresh snack any time of day. Best of all, these delicious apples hold up well when cooked and can be used in both savory and sweet dishes. They can be used for baking, snacking, salads, pairing, or made into a delicious sauce that pairs perfectly with pork. Try incorporating them into soups and compotes or using to make yummy jam or juice. Use them to create apple crisp, pie and strudel for a sweet treat. You can even pair them with sharp cheeses and crackers to create a stunning appetizer cheese board to share with guests. The possibilities are endless with Honeycrisp Apples.', 'Fresh, light green and yellow background covered with a red-orange flush and a strong hint of pink Honey-sweet, tart flavor with a sugar hint Cross of Macoun apple and honey gold apple Good for baking and applesauce Can be enjoyed fresh or cooked into both savory and sweet dishes', 'Welch\'s', 'https://i5.walmartimages.com/asr/3321ed9d-e8d0-43e0-9c16-102054998725.88a05ca32f0899ab2ce41addcb7d399c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3321ed9d-e8d0-43e0-9c16-102054998725.88a05ca32f0899ab2ce41addcb7d399c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3321ed9d-e8d0-43e0-9c16-102054998725.88a05ca32f0899ab2ce41addcb7d399c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1168581168, 'Navel Oranges', 0.88, 'deleted_895359002450', 'short description is not available', 'Navels 3107', 'PRODUCE UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1175460573, 'Fresh Strawberries, 8.8 oz Container', 2.08, '854877007378', 'The sweet, juicy flavor of Fresh Strawberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. They contain essential vitamins and nutrients like, vitamin C, dietary fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh Strawberries today and savor the delectable flavor.', 'Prior to serving gently wash them and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4be7094f-7907-4580-944d-3cd4c0b2d238.ffcf0a1145778a1e5f7c1cabef12c9fd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4be7094f-7907-4580-944d-3cd4c0b2d238.ffcf0a1145778a1e5f7c1cabef12c9fd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4be7094f-7907-4580-944d-3cd4c0b2d238.ffcf0a1145778a1e5f7c1cabef12c9fd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1184621251, 'Mr Lucky Guayaba Fresca Eco Amigable', 4.47, '614360002019', 'short description is not available', 'Mr Lucky Guayaba Fresca Eco Amigable', 'Mr. Lucky', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1195801994, 'Fresh Grown Pluots 2lb Bag', 4.94, 'deleted_813187011147', 'FMLY TREE FARMS PLMCT SNGL FRT BAG', 'FMLY TREE FARMS PLMCT SNGL FRT BAG FRESH FRUIT', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1202191751, 'Freshness Guaranteed Clementines', 3.97, '717524701251', 'short description is not available', 'Freshness Guaranteed Clementines', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1203128877, 'Taylor Farms Fresh Cut Pineapple, 42 oz Tray', 9.76, '030223037996', 'Experience a burst of tropical flavors with these Pineapple Chunks. The pre-cut chunks of ripe pineapple are juicy and sweet to taste and are packed in its own juice. Carry them with you and eat them straight out of the tray any time you want, at home or on-the-go. You can also use them to top desserts and ice creams, in a fruit salad or blend them with milk to make milkshakes. Pineapples are known to have a number of nutrients, and they are especially rich in vitamin C. Add some fresh fruits to your daily menu today.', 'Taylor Farms Pineapple 42 Oz', 'Taylor Farms', 'https://i5.walmartimages.com/asr/bd3b8d4b-5acc-4548-b768-30a4a859169c.5ca4a345af806ff28ea513b58592aa35.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd3b8d4b-5acc-4548-b768-30a4a859169c.5ca4a345af806ff28ea513b58592aa35.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd3b8d4b-5acc-4548-b768-30a4a859169c.5ca4a345af806ff28ea513b58592aa35.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1210193138, 'Fresh SnapDragon Apples 3lb Bag', 5.97, '860000460200', 'Indulge in the crisp and juicy goodness of SnapDragon Apples with our convenient 3lb bag! Packed with a sweet, snappy taste and a hint of spice, these apples, harvested fresh, promise a delight in every bite. Perfect for snacking, baking, or adding a sweet crunch to your salads. Grab this 3lb bag of SnapDragon Apples and experience the perfect blend of health and taste right at your fingertips. Don\'t miss out, buy now!', 'Exceptional Flavor: SnapDragon Apples boast a unique sweet, snappy taste with a hint of spice, making them perfect for a range of culinary uses. Crisp and Juicy: Known for their exceptionally crisp texture, these apples offer a satisfying crunch and juicy bite every time. Versatile Use: Whether you\'re looking to snack, add a sweet crunch to your salads, sandwich or charcuterie, the SnapDragon apple is a perfect choice.', 'PRODUCE BRANDED', 'https://i5.walmartimages.com/asr/a140c159-e4b0-442a-b830-115d3a56c486.1d9a69561adb0f764a12db4972c42165.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a140c159-e4b0-442a-b830-115d3a56c486.1d9a69561adb0f764a12db4972c42165.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a140c159-e4b0-442a-b830-115d3a56c486.1d9a69561adb0f764a12db4972c42165.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1220602065, 'Freshness Guaranteed Fresh Red Seedless Grapes', 1.78, 'deleted_052901034967', 'short description is not available', 'Freshness Guaranteed Fresh Red Seedless Grapes', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1220781969, 'Freshness Guaranteed Berry Smoothie', 3.97, '717524655066', 'short description is not available', 'Freshness Guaranteed Berry Smoothie', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1221639621, 'Freshness Guaranteed Strawberries & Blueberries 10 Oz', 6.47, 'deleted_717524102072', 'short description is not available', 'Freshness Guaranteed Strawberries & Blueberries 10 Oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1223347497, 'Pomegranate Arils, Ready to Eat Pomegranate Seeds, 4 oz Cup', 4.97, 'deleted_897671002729', 'Pomegranate Arils are the edible fruit from the inside of a Pomegranate. Pomegranates are a Super Food, High in Fiber and are Heart Healthy with no preservatives added.', 'Super Food High in Fiber Heart Healthy Pomegranate Arils 4oz Cups Convenient Plastic Cups filled with Pomegranate Arils, Fresh Cut Pomegranate With breathable film to allow fruit to respire naturally No Preservatives added', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e2b57207-1693-4d82-a338-32175e834b79.8b86da968a128826fc85ac7ea1a271b6.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2b57207-1693-4d82-a338-32175e834b79.8b86da968a128826fc85ac7ea1a271b6.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2b57207-1693-4d82-a338-32175e834b79.8b86da968a128826fc85ac7ea1a271b6.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1234143390, 'GoVerden Classic Guacamole 8oz', 4.43, '850002858358', 'GoVerden Classic Guacamole 8oz is all natural, fresh, and non-GMO certified. So, no artificial ingredients, no preservatives; nothing added that you wouldn\'t use at home. Our love and care for avocados is evident in every bite, taking special care to the selection, harvesting, ripening, and handling of each avocado. Try it today, it actually goes with everything. Nachos? Hamburgers? Chips and Guac? Go natural, go for more, GoVerden.', 'GoVerden Classic Guacamole is as creamy and chunky as you want it to be. GoVerden Classic Guacamole is an all-natural, all-fresh product with non-GMO ingredients, such as Hass Avocado. GoVerden Classic Guacamole is a ready to enjoy, ready to share, ready to eat product.', 'GoVerden', 'https://i5.walmartimages.com/asr/3d4d4354-68a2-41ab-a030-7eccbeda4df7.f52e84bc7df9d2651d0e4da84ccec66e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3d4d4354-68a2-41ab-a030-7eccbeda4df7.f52e84bc7df9d2651d0e4da84ccec66e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3d4d4354-68a2-41ab-a030-7eccbeda4df7.f52e84bc7df9d2651d0e4da84ccec66e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1245313437, 'Taylor Farms Fresh Cut Pineapple, 10 oz Tray', 3.72, '030223038177', 'Experience a burst of tropical flavors with these Pineapple Chunks. The pre-cut chunks of ripe pineapple are juicy and sweet to taste and are packed in its own juice. Carry them with you and eat them straight out of the tray any time you want, at home or on-the-go. You can also use them to top desserts and ice creams, in a fruit salad or blend them with milk to make milkshakes. Pineapples are known to have a number of nutrients, and they are especially rich in vitamin C. Add some fresh fruits to your daily menu today.', 'Taylor Farms Pineapple 10 Oz', 'Taylor Farms', 'https://i5.walmartimages.com/asr/32d95209-c1e0-4d4e-ae92-414dccc481f9.a38d16c45252568f1512bc60605107a5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/32d95209-c1e0-4d4e-ae92-414dccc481f9.a38d16c45252568f1512bc60605107a5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/32d95209-c1e0-4d4e-ae92-414dccc481f9.a38d16c45252568f1512bc60605107a5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1263674646, 'Mandarin 2# Bag', 6.97, 'deleted_858410005142', 'short description is not available', 'Mandarin 2# Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1263871290, 'Del Monte No Sugar Added Red Grapefruit, 52 oz Jar', 8.97, '024000258155', 'Del Monte No Sugar Added Red Grapefruit, 52 oz Jar makes it easy to enjoy high quality fruit in minutes. Red Grapefruit is packed with delicious, ripe grapefruit slices in sweet water for a ready to eat fruit snack you can feel good about. Del Monte No Sugar Added Red Grapefruit offers a good source of Vitamin C, has 50% less sugar and 30% fewer calories than Grapefruit in Extra Light Syrup, making them a convenient, wholesome and ready to eat citrus fruit option for busy nights. Picked and packed at the peak of freshness, peeled and sectioned, and immersed in sweetened water,* the jarred fruit slices are ideal as part of a quick lunch snack or as a flavorful addition to fruit cocktail. Each jar is easy to open, reseal, and store for a convenient fruit snack whenever you need delicious fruit on-the-go. Bring wholesome goodness to your family with Del Monte!', 'One 52 oz jar of Del Monte No Sugar Added Red Grapefruit Del Monte No Sugar Added Red Grapefruit offers a quick and easy way to have a citrus fruit snack in just minutes Made with red grapefruit picked at the peak of freshness and immersed in sweet water Del Monte No Sugar Added Red Grapefruit is ideal for fruit cocktail Bring wholesome goodness to your family with Del Monte No Sugar Added Red Grapefruit', 'Del Monte', 'https://i5.walmartimages.com/asr/a6bfce45-3005-43f1-8803-a2696e67034e.809ef532f8583c5f6056a38c8cb4ecfb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6bfce45-3005-43f1-8803-a2696e67034e.809ef532f8583c5f6056a38c8cb4ecfb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6bfce45-3005-43f1-8803-a2696e67034e.809ef532f8583c5f6056a38c8cb4ecfb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1265941554, 'Fresh Yellow Mango, Bag', 2.88, '853516005270', 'Treat yourself to a burst of tropical goodness when you bring home a bag of Yellow Honey Mangos. Mangoes boast a deliciously sweet fragrance and juicy flavor that is sure to wake up your taste buds. They are packed with over 20 vitamins and minerals including A and C, making them not only scrumptious but also a healthy treat. They can be used for everything from salads and smoothies to fresh salsas and luscious desserts. For the best experience, these mangos should be cut in half, sliced while in the peel and then scooped out. Bring home a bag of Yellow Honey Mangos today.', 'Deliciously fresh, sweet and juicy. Packed with sweet tropical flavor. Makes a healthy snack.', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1267241868, 'Freshness Guaranteed Fresh Pineapple Rings', 5.97, '194346097166', 'Enjoy the sweet, tropical flavor of Freshness Guaranteed Pineapple Rings. These pre-cut chunks are great for breakfast, lunch, dessert, or when you want a snack. Pineapple is a good source of vitamin C, vitamin A and vitamin B6 making them an excellent healthy treat. You can eat the rings right out of the container, infuse them with water and mint for a refreshing drink, use them to make a decadent pineapple upside down cake, or chop them up and make a mouthwatering pineapple salsa with jalapenos, tomatoes, and red onion. There’s plenty for sharing with friends and family or keeping it for yourself, and it comes in a reclosable container to help maintain freshness. Bring home Freshness Guaranteed Pineapple Rings today for a refreshing, healthy treat. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Fresh Pineapple Rings Sweet, refreshing treat Great for breakfast, lunch, dessert, or when you want a snack Good source of vitamin C, vitamin A, and vitamin B6 Enjoy right out of the container, infuse with water and mint, or mix with jalapenos, tomatoes, and red onion for salsa Share with friends and family or keep for yourself Comes in a re-closable container to help maintain freshness', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1a5299b2-5911-4f32-ac18-29f48e9aab82.0527a7cfaffd130c0d22468bb1351534.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a5299b2-5911-4f32-ac18-29f48e9aab82.0527a7cfaffd130c0d22468bb1351534.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1a5299b2-5911-4f32-ac18-29f48e9aab82.0527a7cfaffd130c0d22468bb1351534.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1268556456, 'Fresh Candy Hearts Grapes, 1 Lb', 3.48, 'deleted_816426013223', 'short description is not available', 'Fresh Candy Hearts Grapes, 1 Lb', 'Unbranded', 'https://i5.walmartimages.com/asr/cb6817d9-7eef-4c14-9855-5767ba5ee227.35c45745998497af1a10efbec8397f83.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb6817d9-7eef-4c14-9855-5767ba5ee227.35c45745998497af1a10efbec8397f83.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb6817d9-7eef-4c14-9855-5767ba5ee227.35c45745998497af1a10efbec8397f83.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1297483964, 'Fresh Grapefruit, 5 lb Bag', 5.98, 'deleted_895359002917', 'Sun-kissed by a tropical climate and nourished from sandy soils, a grapefruit that is so juicy, so tasty and so healthy to start your day. Sweet with a splash of tang, affectionados love its sophisticated yet simple taste; amateurs are surprised by its fun and sweet flavor. Grown with the utmost respect of our land and hand picked by our farmers, these grapefruit bring a smile and love to the doorstep.', 'Fresh red grapefruit is great for both savory and sweet dishes Enjoy it for breakfast, lunch, dinner, or dessert Enjoy half a grapefruit sprinkled with sugar in the morning Slice it up and put it in salad for lunch or dinner Make delicious grapefruit bars Great source of vitamin C and vitamin A You\'ll have plenty for everyone with this 3-pound bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/9183bc36-5af9-4986-bb8b-d0051507c3fe.990659cf83a79a12424f34a36a70d080.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9183bc36-5af9-4986-bb8b-d0051507c3fe.990659cf83a79a12424f34a36a70d080.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9183bc36-5af9-4986-bb8b-d0051507c3fe.990659cf83a79a12424f34a36a70d080.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1304662369, 'Fresh Mangoes, 1 lb. Sweet', 0.98, '406612238853', 'Savor the irresistible taste of a fresh Mango. Mangoes are an excellent fruit to add to your breakfast, lunch, dinner, or dessert. For breakfast, you can chop the mango up and add it to yogurt or a smoothie for a sweet treat that\'s sure to get your morning started on a high note. For dessert, you could use a mango to make a refreshing sorbet or put a tropical twist on a cobbler. You can also use it to make creamy milkshakes or delicious juices that everyone is sure to enjoy. The culinary possibilities are endless when you keep your kitchen stocked with fresh Mangoes.', 'Irresistibly sweet and juicy Delicious on its own or in a variety of recipes Make a creamy milkshake or a nutritious juice blend Add to yogurt or a smoothie Use to top your salad for a tropical twist Ideal for snacks', 'Unbranded', 'https://i5.walmartimages.com/asr/657c375b-a3ae-4ae1-ada4-b55d12c5dbe7.cafccbf56bd6d2c9b390bc175ef69d5f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/657c375b-a3ae-4ae1-ada4-b55d12c5dbe7.cafccbf56bd6d2c9b390bc175ef69d5f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/657c375b-a3ae-4ae1-ada4-b55d12c5dbe7.cafccbf56bd6d2c9b390bc175ef69d5f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1307577489, 'Kiwi Clamshell 1lb', 2.43, '818849020024', 'Zespri Kiwifruit Green 1 lb', 'Delicious sweet and tangy kiwi fruit Packed with Vitamin C, fiber and antioxidants with a scrumptious fruit taste Enjoy a fresh kiwi with your breakfast to start your day off on the right foot Bring one to work and treat yourself to a scrumptious healthy snack at the office Great for school lunches Perfect for topping desserts', 'Unbranded', 'https://i5.walmartimages.com/asr/aa064c6b-1e3e-4dbf-8a9d-e07774955f9e.8862e9be7dc5567453155cc4b08aeabc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa064c6b-1e3e-4dbf-8a9d-e07774955f9e.8862e9be7dc5567453155cc4b08aeabc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa064c6b-1e3e-4dbf-8a9d-e07774955f9e.8862e9be7dc5567453155cc4b08aeabc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1309140331, 'Superfresh Kids Pink Lady, 2lb', 5.77, '883391000824', 'Treat yourself to the delicious, crisp taste of Pink Lady Apples. These apples are known for their vivid green skin covered in a pinkish blush, crunchy texture, and tart taste with a sweet finish. Enjoy one with breakfast or lunch or as a fresh snack any time of day. with Pink Lady Apples. Super tasty Fresh Produce made with great ingredients.', 'Includes 3 pounds of tart, crisp apples Tart taste with a sweet finish Pair them with sharp cheeses and crackers for a stunning appetizer board Can be enjoyed fresh or cooked into both savory and sweet dishe', 'Superfesh Kids', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1314816753, 'Daisy Organic De Anjou Pear, 2lb', 4.97, '847473004834', 'Treat your family to the amazing taste of Anjou Pears. Tantalizingly crisp, these pears are deliciously sweet and juicy. These are excellent snacking pears, but you can also use them in a variety of recipes. For breakfast, use these pears to make a rich and creamy yogurt parfait or a nutritious juice blend', 'Sweet, crisp & juicy Excellent snacking pear Make a creamy smoothie or a nutritious juice blend Add to your salad for extra crunch & flavor Adds flavor to a variety of recipes', 'Daisy Girl', 'https://i5.walmartimages.com/asr/38f27ba1-1bc1-4822-a10d-651f47f0141b.ebef2c824346c2262fc42f0a388e13e3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/38f27ba1-1bc1-4822-a10d-651f47f0141b.ebef2c824346c2262fc42f0a388e13e3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/38f27ba1-1bc1-4822-a10d-651f47f0141b.ebef2c824346c2262fc42f0a388e13e3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1315663736, 'Org Avocado 3 Count Bag', 3.98, '', 'short description is not available', 'Org Avocado 3 Count Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/a31d272d-ed41-4e65-bbff-eb2556a2ccf2.d31c0d0f9fcc2a3ef2e80686c5ca9528.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a31d272d-ed41-4e65-bbff-eb2556a2ccf2.d31c0d0f9fcc2a3ef2e80686c5ca9528.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a31d272d-ed41-4e65-bbff-eb2556a2ccf2.d31c0d0f9fcc2a3ef2e80686c5ca9528.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1332989523, 'Fresh Gold Kiwi Organic 1lb Clamshell', 5.47, '818849020109', 'Fresh Sungold Kiwi is a vibrant and delicious fruit that\'s perfect for adding some sweetness to your diet. With its bright yellow flesh and smooth texture, it\'s a great addition to salads, smoothies, or as a snack on its own. Packed with vitamins and nutrients, Fresh Sungold Kiwi is a healthy and tasty choice for any occasion. Try it today and enjoy the juicy sweetness of this unique fruit!', 'SWEET! - A golden variety of kiwi that has a unique tropical-sweet taste Zespri gold kiwi is 100% grower owner, and we only do kiwis Translation: we\'re a little obsessed with growing the best Packing is 100% recyclable Ripe kiwi should yield to slight pressure and taste sweeter as it gets softer 1 lb. pack is perfect to share with friends and family Packed full of nutrients with 20+ vitamins and minerals Natural high in vitamin C, providing 100% of your daily vitamin C needs in one fruit Easy to eat, just cut in half, scoop with a spoon and enjoy!', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b2f2150a-4337-4370-b030-1d1d711a458a.1ededd59fc6d87c10c96bf0ec50b44f2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b2f2150a-4337-4370-b030-1d1d711a458a.1ededd59fc6d87c10c96bf0ec50b44f2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b2f2150a-4337-4370-b030-1d1d711a458a.1ededd59fc6d87c10c96bf0ec50b44f2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1334035958, 'Fresh Seedless Lemons, 1 lb Bag', 2.98, '072240546785', 'Wonderful Seedless Lemons. They’re juicy, zesty, naturally seedless, and Non-GMO Project Verified. They are everything you love about lemons, minus the pesky little seeds. Make cooking and juicing a breeze. Make a great addition to your nutritious beverages, meals, and desserts. There’s a whole lot more to Wonderful Seedless Lemons than meets the rind. Available in a 1-pound bag.', 'Naturally seedless Great source of vitamin C Use to add zest and flavor to your meals and beverages Add to your iced or hot tea Make a satisfying and refreshing strawberry lemonade Adds flavor to a variety or recipes Available in a 1-pound bag', 'Wonderful', 'https://i5.walmartimages.com/asr/5f1b5e2d-5083-4a34-b693-7e0407e0a53f.deaf32c1062ae2f79e0bc9d52eaa1c17.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5f1b5e2d-5083-4a34-b693-7e0407e0a53f.deaf32c1062ae2f79e0bc9d52eaa1c17.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5f1b5e2d-5083-4a34-b693-7e0407e0a53f.deaf32c1062ae2f79e0bc9d52eaa1c17.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1337423463, 'Welchs Granny Smith Fresh Apple, 3lb Bag', 5.97, '095829211348', 'Treat yourself to Welch Granny Smith Apples. Granny Smith apples are firm and juicy with a crisp texture and a tart, acidic, yet subtly sweet flavor, perfect for use in a variety of dishes morning, noon, and night. Slice them up and cook in a skillet with brown sugar, butter, cloves, and nutmeg for a simple, sweet treat. Mix them with cabbage, grapes, honey, mayonnaise and, celery to make a fresh, apple slaw for a summer cookout. Use them to make a sweet, classic apple pie that your friends and family with love.', 'Firm and juicy with a crisp texture and a tart, acidic, yet subtly sweet flavor Great for breakfast, lunch, dinner, or dessert Cook in a skillet with butter, brown sugar, and spices; mix with cabbage, grapes, honey, mayonnaise and, celery for apple slaw; or make a classic apple pie Versatile ingredient perfect for both savory and sweet dishes', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/f134bdf1-e64e-4088-ab87-bc0fca64add5.3fe6af3369948d447cc0a561a0fce7dc.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f134bdf1-e64e-4088-ab87-bc0fca64add5.3fe6af3369948d447cc0a561a0fce7dc.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f134bdf1-e64e-4088-ab87-bc0fca64add5.3fe6af3369948d447cc0a561a0fce7dc.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1381993158, 'Melissas Melissa Lemon Juice', 1.97, '045255154610', 'Melissas Melissa Lemon Juice', 'Melissas Melissa Lemon Juice', 'Melissa\'s', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1387079649, 'Melissas Melissa Lime Juice', 1.97, '045255154627', 'Melissas Melissa Lime Juice', 'Melissas Melissa Lime Juice', 'Melissa\'s', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/24893ec1-4563-41fa-9efb-42ba1d0d5e98.f417a4c35f49d4ecd5c479905aa827b3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1391361284, 'Fieldpack Unbranded Papaya', 1.24, '', 'Get flavor and nutrition with our Fresh Papaya. Papaya is a tropical fruit that originated in the tropics of the Americas and is known to be a great source of vitamins C, A, fiber, and antioxidants. When ripe, this fruit has a butter-like texture with a fairly sweet flavor similar to cantaloupe and can be eaten raw, without skin or seeds. Papaya can be prepared in a variety of ways; you can mix them with grapefruit and avocado for a bright summer salad, add them to a zesty salsa for some sweetness, freeze them and turn them into refreshing popsicle spears, or bake them in the oven with a melted brown sugar mixture. The sky\'s the limit! Get ready for a taste-bud party with Fresh Papaya.', 'Creamy, butter-like flavor when ripe Rich in vitamins A, C, fiber, and antioxidants Fairly sweet flavor like cantaloupe and mango Great addition to smoothies, salads, salsa, and more Delicious and nutritious', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/68dc6b98-1c47-4d5b-8edf-ec73d319a040.8753fc2505594b8a1f11e7be644cfebe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68dc6b98-1c47-4d5b-8edf-ec73d319a040.8753fc2505594b8a1f11e7be644cfebe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68dc6b98-1c47-4d5b-8edf-ec73d319a040.8753fc2505594b8a1f11e7be644cfebe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1394735690, 'Seedless Watermelon Bin', 317.65, 'deleted_860036002207', 'Seedless watermelon is a delicious, sweet fruit. Watermelon is perfect for healthy snacking, fun gatherings, and feeding large families. A summertime favorite that is dense in nutrients and packs delicious, juicy flavor. Watermelon is especially tasty when served cold, and enjoys a long shelf life. . Enjoy watermelon on its own, or try it in salads, desserts, and more. Its red, sweet fruit is enjoyable at picnics or simply out of a bowl in your own home. Try a fresh watermelon today!', 'Seedless Watermelon, 1 Each Sweet Juicy Fresh Dense in nutrients Perfect for families or large gatherings Healthy snack Long shelf life', 'Optima', 'https://i5.walmartimages.com/asr/d2e7598b-13ec-4dd8-86f5-f31ac3dfec9e.d31fe27ba791a600950a5c23d83b80f1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d2e7598b-13ec-4dd8-86f5-f31ac3dfec9e.d31fe27ba791a600950a5c23d83b80f1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d2e7598b-13ec-4dd8-86f5-f31ac3dfec9e.d31fe27ba791a600950a5c23d83b80f1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1409092994, 'Freshness Guaranteed Apple Breakfast Bowl', 4.47, '717524671387', 'short description is not available', 'Freshness Guaranteed Apple Breakfast Bowl', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1417275771, 'Fresh Driscoll\'s Sweetest Batch Blackberries, 10 oz Container', 4.76, '715756100668', 'Sweetest batch blackberries are a special variety selected for their extra-sweet deliciousness. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as a topping for pancakes, bake them in a mouthwatering tream, mix them with lemon and water for a flavorful and refreshing drink. They contain essential vitamins and nutrients like vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them and enjoy the fresh taste. Refrigerate the berries in original Clam Shell to keep them fresh and ready for use.', 'Premium selection Only Driscoll\'s grows Sweetest Batch berries from proprietary berry varieties Bursting with flavors exceptional blackberry flavor, these juicy blackberries are selected for their extra-sweet deliciousness Refrigerate your blackberries in the original Clam Shell tray to maintain freshness Delicious on their own as a healthy snack or as part of a recipe Rich in vitamin C', 'Driscolls, Inc.', 'https://i5.walmartimages.com/asr/a4ba4ce6-631d-4561-8716-6b6841b976bf.374a620b9822abb2c00d98e8915a61ef.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a4ba4ce6-631d-4561-8716-6b6841b976bf.374a620b9822abb2c00d98e8915a61ef.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a4ba4ce6-631d-4561-8716-6b6841b976bf.374a620b9822abb2c00d98e8915a61ef.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1435822379, '5lb Bag Fresh Peelz California Mandarin Orange', 7.97, 'deleted_091636000182', 'You peel them, then you eat them. There isn\'t a simpler snack than Peelz mandarins. They are quick, easy, nutritious and delicious. Happy hour, lunch hour, power hour, any hour–Peelz bring those extra feels to life.', 'California Grown Easy Peel Seedless Vegan Non-GMO Fresh Bagged Mandarins', 'Peelz', 'https://i5.walmartimages.com/asr/bd991d70-6535-491d-af5b-0f42e5854444.728446b06766cc2da1b1dc73908e13d0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd991d70-6535-491d-af5b-0f42e5854444.728446b06766cc2da1b1dc73908e13d0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd991d70-6535-491d-af5b-0f42e5854444.728446b06766cc2da1b1dc73908e13d0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1448178248, 'Fresh Navel Oranges, 8 lb Bag', 8.94, 'deleted_848163004776', 'Fresh Oranges are a good addition to a healthy diet along with other fruit. They\'re oval with thick, easy-to-remove peel and segments that separate cleanly. Oranges are a fruit that contains vitamin C and other nutrients that can be eaten as is or juiced for a smooth beverage at breakfast. It is suitable for use in all kinds of sweet and savory dishes, from cakes to weeknight chicken dinners. Citric acid fruits like oranges can be stored at room temperature for several days or in the refrigerator for up to two weeks. Available in a 8 lb package.', 'A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1466471285, 'Kiwis Hayward', 4.27, '', 'short description is not available', 'Kiwis Hayward', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1480742816, 'Driscoll\'s Fresh Mixed Berry Rainbow Pack, 7 oz. Container', 5.98, '715756500185', 'Indulge in the sweet and tangy taste of freshness with this irresistible mix of juicy blueberries, luscious blackberries, and plump raspberries. Our carefully selected berries are packed in a convenient clamshell container, perfect for snacking on the go or adding a burst of flavor to your favorite recipes. The berries in our Rainbow Pack are freshly picked and carefully handled to ensure maximum flavor and nutrition. With no added sugars or preservatives, you can enjoy these berries guilt-free. Plus, they\'re an excellent source of antioxidants, fiber, and vitamins to support a healthy lifestyle. Whether you\'re looking for a quick breakfast boost, a midday snack, or a delicious addition to your favorite salads, smoothies, or yogurt parfaits, our Rainbow Pack clamshell has got you covered. So go ahead, treat yourself to a taste of paradise with every bite!', 'Are you ready to experience the vibrant taste and health benefits of Fresh Berries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Berries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. The versatility of blueberries, blackberries and raspberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day.', 'Driscoll\'s, Inc.', 'https://i5.walmartimages.com/asr/7814d58b-31cc-4f6f-94ad-0780c97f02b7.1da19af803b3f810e1343c6ce51c995a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7814d58b-31cc-4f6f-94ad-0780c97f02b7.1da19af803b3f810e1343c6ce51c995a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7814d58b-31cc-4f6f-94ad-0780c97f02b7.1da19af803b3f810e1343c6ce51c995a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1487358163, 'Fresh Organic Blueberries, 18 oz Container', 7.56, '812049009605', 'Fresh Blueberries are a delightful and nutritious treat that brings a burst of flavor to any dish. These plump and juicy berries are picked at the peak of freshness, ensuring a sweet and tangy taste that is hard to resist. Perfect for snacking, baking, or adding to your favorite recipes, these blueberries are a versatile fruit that can be enjoyed in countless ways. Whether you sprinkle them on top of your morning cereal, blend them into a smoothie, or bake them into a delicious pie, Fresh Blueberries are sure to satisfy your cravings for a healthy and delicious snack.', 'Are you ready to experience the vibrant taste and health benefits of Fresh Blueberries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Blueberries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. The versatility of blueberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these blue gems into your baking endeavors, whether it\'s muffins, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Not only are blueberries delicious, but they also offer an array of health benefits. Loaded with antioxidants, vitamins, and dietary fiber, blueberries are known to promote heart health, support brain function, and boost the immune system. They are a nutritious choice that will keep you feeling good from the inside out. Our Fresh Blueberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness. Treat yourself to the delightful taste and nutritional benefits of Fresh Blueberries. Elevate your dishes, satisfy your cravings, and experience the joy of these plump and juicy berries. Order your batch today and unlock a world of flavor and wellness.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/57ef4ede-61ce-40f5-a4fa-950ffe107d57.42b40429fe4f42dbb6af6a4486ca135d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/57ef4ede-61ce-40f5-a4fa-950ffe107d57.42b40429fe4f42dbb6af6a4486ca135d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/57ef4ede-61ce-40f5-a4fa-950ffe107d57.42b40429fe4f42dbb6af6a4486ca135d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1532424484, 'Fresh White Nectarines, 2 lb Bag', 4.48, '810248031878', 'Discover the delightful sweetness of these Fresh White Nectarines. Enjoy them on their own as a sweet snack or use them in a variety of recipes. For breakfast, you could slice them to put into your oatmeal or use them to make a delicious yogurt parfait. You can also use these fresh nectarines in several baking recipes including a comforting crisp topped with ice cream, a tasty upside-down cake, or a scrumptious tart. You can even use them to make a jam or a smooth sorbet. However you choose to use them, their sweet flavor will bring a smile to everyone\'s face. Treat the family to the irresistible taste of Fresh White Nectarines.', 'Fresh White Nectarines, 2lb Bag Slice as a sweet topping for waffles or pancakes Add to iced tea to create a refreshing summertime flavor Use in a variety of baking recipes Make a tasty jam or a smooth sorbet Enjoy on their own as a satisfying snack', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e4ece64c-b28b-4c34-a1c0-b4876e0a3760.d541c68c2edd514e5d0a099bc88bdd19.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4ece64c-b28b-4c34-a1c0-b4876e0a3760.d541c68c2edd514e5d0a099bc88bdd19.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4ece64c-b28b-4c34-a1c0-b4876e0a3760.d541c68c2edd514e5d0a099bc88bdd19.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1567276662, 'Fresh Red Kiwi, 1 lb Package', 5, '014668530014', 'Savor the irresistible taste of Fresh Red Kiwi. Enjoy this tasty kiwi on its own as a healthy snack or incorporate it into a variety of delicious recipes. For breakfast, you can make a sweet fruit bowl with sliced kiwi, strawberries, pineapple, and cantaloupe. For an extra special treat, top with a dollop of whipped cream. Cut it into small pieces and put it in a fresh salad along with chicken, cucumbers, tomatoes, and a light dressing. You can even use kiwi to make a sweet sorbet or scrumptious muffins. Enjoy the sweet and juicy taste of Fresh Red Kiwi.', 'Fresh Red Kiwi, 1 lb Package Flavorful addition to many recipes Enjoy on its own or add to a mixed fruit salad Add to your fresh garden salad Get creative and make a refreshing sorbet Explore all the delicious ways to add fresh kiwi to your favorite recipes', 'Unbranded', 'https://i5.walmartimages.com/asr/bf8797ca-1c58-49d0-a318-e1ce2ca09e38.b180bb1eb433e4e63fb27da156ad1ad4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bf8797ca-1c58-49d0-a318-e1ce2ca09e38.b180bb1eb433e4e63fb27da156ad1ad4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bf8797ca-1c58-49d0-a318-e1ce2ca09e38.b180bb1eb433e4e63fb27da156ad1ad4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1572264967, 'Sweet Gourmet Fresh Bosc Pear, 2lbs Bag', 4.97, '847473004155', 'Discover the Fresh Bosc Pear - a premium produce with a sweet and juicy taste, distinctive elongated shape, and brownish-golden skin. Perfect for snacking, cooking, and baking, this versatile fruit holds up well under heat and adds a touch of sweetness to your dishes in theri 2 Lb Bag presentation. Rich in essential vitamins and minerals, the Bosc pear is a nutritious and healthy addition to your fruit basket. Order now and indulge in the goodness of this delicious fruit.', 'Indulge in the sweet and juicy flavor of our Sweet Gourmet Bosc Pears! Hand-selected for their irresistible taste and exceptional quality, these pears are perfect for snacking, baking, or adding to your favorite salads Each 2lb bag is filled with premium pears that are carefully harvested at peak ripeness to ensure maximum sweetness and flavor. With their soft, buttery texture and delicate skin, these pears are a true gourmet delight. Plus, they\'re packed with essential nutrients and antioxidants, making them a healthy and delicious choice for any time of day. Whether you\'re enjoying them as a snack or using them in your favorite recipes, our Sweet Gourmet Bosc Pears are sure to satisfy your sweet tooth and elevate your culinary creations. Don\'t miss out on this delectable and healthy treat - order yours today!', 'Sweet Gourmet', 'https://i5.walmartimages.com/asr/3866b95c-bb90-4016-b3e6-098cce8edda2.d8d4ba6c1612a33bdea814be6077e6c5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3866b95c-bb90-4016-b3e6-098cce8edda2.d8d4ba6c1612a33bdea814be6077e6c5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3866b95c-bb90-4016-b3e6-098cce8edda2.d8d4ba6c1612a33bdea814be6077e6c5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1584572816, 'Bulk Lemons', 0.58, 'deleted_725422040532', 'short description is not available', 'Bulk Lemons', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1587808087, 'Fresh Limes, 2 lb Bag', 4.98, 'deleted_095829600395', 'Add zest and flavor to your meals and beverages with these Limes. Freshly squeezed limes provide a healthy dose of vitamin C to your diet and are a key ingredient in many recipes, from homemade salsa to chicken dishes. The citrusy tropical flavor of these limes are sure to add a zing to all your cooked meals. Drizzle lime juice over fish or add it to your favorite sauces. Serve wedges of raw lime with your favorite cocktails and use them when baking cakes, cookies, and tarts. These limes are sold in a two-pound bag, so you\'ll have plenty for all your culinary creations. Enjoy the refreshing, tart flavor of Limes.', 'Fresh and juicy limes Drizzle lime juice over fish or add it to your favorite sauces Serve wedges of raw lime with your favorite cocktails Use them when baking cakes, cookies, and tarts Refreshing, tart flavor Seedless', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/01030543-b4e9-494a-a36c-9ed4cdadf5e9.db4f01fa29b2cfff8a217c3dd99c6b23.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/01030543-b4e9-494a-a36c-9ed4cdadf5e9.db4f01fa29b2cfff8a217c3dd99c6b23.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/01030543-b4e9-494a-a36c-9ed4cdadf5e9.db4f01fa29b2cfff8a217c3dd99c6b23.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1591209191, 'Fieldpack Unbranded Fresh Strawberries 2 lb Bag', 4.32, 'deleted_850042995051', 'short description is not available', 'Fresh Strawberries, 2 lb Best when enjoyed at room temperature Light, refreshing taste Healthy sweet treat Prior to serving gently wash them and remove leafy cap Refrigerate your strawberries in the original container to maintain freshness, they should approximately last 3-5 days after purchase Keep dry for optimal freshness', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1599172053, 'Fresh Valencia Oranges, 1 Each', 0.97, 'deleted_000000040136', 'Known for their sweet flavor, Valencia Oranges have a thin skin and are typically very juicy. It is the most popular orange for juicing. It\'s juice will remain perfectly sweet even after air exposure. With a balanced sweet-to-tart flavor ratio that carries over to their juice, Valencia Oranges are widely available during the spring and summer months. Use Valencia oranges to make fresh orange juice, or use their flesh, juice, and zest in baked goods, cocktails, sauces, and marinades. Keep some sunshine on hand with Valencia Oranges. Available by the each.', 'Valencia Oranges Small in size, bursting in flavor Sweet and tangy Typically more difficult to peel than navel Typically more juicier than a navel Available by the each', 'Fresh Produce', 'https://i5.walmartimages.com/asr/383d6fe9-8325-4619-a4eb-af17f924bd38.bba0fcace8118f8889d6846da04fb9dd.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/383d6fe9-8325-4619-a4eb-af17f924bd38.bba0fcace8118f8889d6846da04fb9dd.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/383d6fe9-8325-4619-a4eb-af17f924bd38.bba0fcace8118f8889d6846da04fb9dd.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1622484445, 'Freshness Guaranteed Pineapple Breakfast Bowl', 4.47, '717524671370', 'short description is not available', 'Freshness Guaranteed Pineapple Breakfast Bowl', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1622897274, 'Fresh Navel Oranges, 8 lb Bag', 8.94, 'deleted_818654011743', 'Enjoy the juicy goodness of these Large Bagged Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, these Large Bagged Oranges will add flavor to any meal or beverage.', 'A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1627132362, 'Wonderful Pomegrante Granada', 3.47, '406569425092', 'short description is not available', 'Wonderful Pomegrante Granada', 'WONDERFUL', 'https://i5.walmartimages.com/asr/8e97d70d-382a-454e-a04f-81a7d15be75b.cd4eb5620f1de4b827928eac63bc0af1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8e97d70d-382a-454e-a04f-81a7d15be75b.cd4eb5620f1de4b827928eac63bc0af1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8e97d70d-382a-454e-a04f-81a7d15be75b.cd4eb5620f1de4b827928eac63bc0af1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1638069540, 'Superfresh Kids Fuji Apples, 2lb', 4.97, '883391000039', 'There is an inherent spicy-savory flavor to these Fuji Apples that makes them an all-around favorite for both fresh and cooked uses. It is perhaps natural that this apple, with its Japanese heritage, would pair well with Asian flavors such as cilantro, chili pepper, rice vinegar and sesame. This is a wine-friendly apple, making it a good choice for recipes served as an appetizer or main course accompanied by wine. It pairs particularly well with Riesling, Chianti, Merlot and Pinot Noir wines.', 'Super sweet Fresh and sophisticated flavor Hints of spice and savory earth character Juicy and aromatic Healthy snack', 'Superfresh Kids', 'https://i5.walmartimages.com/asr/a6b0c885-1e17-4e40-b422-94e049649e49.160bff1b1d9038e51f7a76f259eaecf2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6b0c885-1e17-4e40-b422-94e049649e49.160bff1b1d9038e51f7a76f259eaecf2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6b0c885-1e17-4e40-b422-94e049649e49.160bff1b1d9038e51f7a76f259eaecf2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1657099619, 'Watermelon', 0.97, '406555458110', 'short description is not available', 'Watermelon', 'Unbranded', 'https://i5.walmartimages.com/asr/14487aaf-d86a-4b46-acaf-7621b90286bb.fb737768267fcdc95c33f355b730ad15.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/14487aaf-d86a-4b46-acaf-7621b90286bb.fb737768267fcdc95c33f355b730ad15.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/14487aaf-d86a-4b46-acaf-7621b90286bb.fb737768267fcdc95c33f355b730ad15.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1677195107, 'Fresh Navel Oranges, 4 lb Bag', 8.98, '014668120017', 'Fresh Navel Oranges are a good addition to a healthy diet along with other fruit. They\'re oval with a thick, easy-to-remove peel and segments that separate cleanly. Oranges are a fruit that contains vitamin C and other nutrients that can be eaten as is or juiced for a smooth beverage at breakfast. It is suitable for use in all kinds of sweet and savory dishes, from cakes to weeknight chicken dinners. Citric acid fruits like oranges can be stored at room temperature for several days or in the refrigerator for up to two weeks. Available in a 4 lb package, these Fresh Navel Oranges are great for the entire family.', 'Fresh Navel Oranges, 4 lb Bag A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0039e8fe-9fd3-45e9-a4e3-ba5a49d3d9a4.a2f2806080b5f6e94ea11458020db16e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0039e8fe-9fd3-45e9-a4e3-ba5a49d3d9a4.a2f2806080b5f6e94ea11458020db16e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0039e8fe-9fd3-45e9-a4e3-ba5a49d3d9a4.a2f2806080b5f6e94ea11458020db16e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1698410900, 'Freshness Guaranteed Oranges & Grapefruit', 3.97, '717524701268', 'short description is not available', 'Freshness Guaranteed Oranges & Grapefruit', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1703778874, 'Fresh Sumo Citrus Mandarin, 2lb Bag', 5.74, 'deleted_725422000079', 'Bursting with juicy sweetness, Sumo Citrus Mandarins are one of the world\'s largest and sweetest mandarins. Distinguished for its Top Knot and uneven skin, this rare seedless hybrid variety delivers the ultimate citrus experience: incredibly sweet and easy-to-peel, without the mess! Can you peel it in one go? Each bag includes two pounds of Sumo Citrus Mandarins, so you can share the sweetest obsession! For best flavor, don\'t refrigerate Sumo Citrus Mandarins. Compact and portable, Sumo Citrus Mandarins are great to pack in your lunchbox, toss into our gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Share the sweetness with Sumo Citrus Mandarins.', 'One of the world\'s largest and sweetest mandarins No mess and easy-to-peel for more fun Each bag contains 2 pounds of Sumo Citrus Mandarins Incredibly sweet and seedless The perfect on-the-go snack', 'Sumo Citrus', 'https://i5.walmartimages.com/asr/187211cd-42d7-4851-9958-781f44b37aa6.1b06330a47dcfb08cd86f7132b033f09.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/187211cd-42d7-4851-9958-781f44b37aa6.1b06330a47dcfb08cd86f7132b033f09.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/187211cd-42d7-4851-9958-781f44b37aa6.1b06330a47dcfb08cd86f7132b033f09.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1715859885, 'Fresh Apricots, lb', 2.28, '406533017759', 'short description is not available', 'Fresh Apricots, lb', 'Unbranded', 'https://i5.walmartimages.com/asr/947ce4fd-9610-4470-a43f-9de27118c2b3.7c361eaa14939b58f1f5c7baf162e9a3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/947ce4fd-9610-4470-a43f-9de27118c2b3.7c361eaa14939b58f1f5c7baf162e9a3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/947ce4fd-9610-4470-a43f-9de27118c2b3.7c361eaa14939b58f1f5c7baf162e9a3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1732105323, 'Ingrilli 100% Lemon Juice from Concentrate, 4 Fl Oz Squeeze Bottles (Pack of 3)', 12.4, '642709101710', 'The Highest Product Standards From our orchard-to-bottle manufacturing process to our strict quality standards, we take pride in knowing that every bottle of Ingrilli products lives up to the Ingrilli family name. TRULY ORGANIC PRODUCTS At Ingrilli, we don’t just “label” our organic line as such – we live it. We test every batch of our organic products against common pesticides, and we have zero tolerance for any contamination or preservatives. That’s why we’ve earned the official USDA Organic seal of approval. NON-GMO Ingrilli is proud to be an official participant of the Non-GMO Project, and we are Non-GMO Project verified for all of our products. A TRADITION OF HIGH MANUFACTURING STANDARDS When we first opened our doors in 1880, we promised to deliver the highest-quality, freshest products on the market – and we still live to that standard today. That’s why we only use the freshest fruit and the latest production equipment, processes, and facilities to produce every bottle of Ingrilli juice on the shelves', 'FRESH FLAVOR, FRESH TASTE: Made from Argentinian and Brazilian 100% lemon juice concentrate, Ingrilli tastes as fresh as cutting into fresh lemons VERSATILE FLAVOR: Ingrilli Lemon Juice can be used for cooking, baking, salads and drink mixers. GOOD FOR EVERYONE: Ingrilli Lemon juice is is Non-GMO Project Verified, OU kosher certified, Vegan Certified and Gluten-Free', 'Ingrilli', 'https://i5.walmartimages.com/asr/3cbabd0c-5616-4708-9105-82c00edf9947.cf776292cff59bc6bbb7f4773d75669c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3cbabd0c-5616-4708-9105-82c00edf9947.cf776292cff59bc6bbb7f4773d75669c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3cbabd0c-5616-4708-9105-82c00edf9947.cf776292cff59bc6bbb7f4773d75669c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1732560925, 'Fresh Blueberries, 1 Pint Container', 3.17, '033383221014', 'Fresh Blueberries are a delightful and nutritious treat that brings a burst of flavor to any dish. These plump and juicy berries are picked at the peak of freshness, ensuring a sweet and tangy taste that is hard to resist. Perfect for snacking, baking, or adding to your favorite recipes, these blueberries are a versatile fruit that can be enjoyed in countless ways. Whether you sprinkle them on top of your morning cereal, blend them into a smoothie, or bake them into a delicious pie, Fresh Blueberries are sure to satisfy your cravings for a healthy and delicious snack.', 'Are you ready to experience the vibrant taste and health benefits of Fresh Blueberries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Blueberries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. The versatility of blueberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these blue gems into your baking endeavors, whether it\'s muffins, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Not only are blueberries delicious, but they also offer an array of health benefits. Loaded with antioxidants, vitamins, and dietary fiber, blueberries are known to promote heart health, support brain function, and boost the immune system. They are a nutritious choice that will keep you feeling good from the inside out. Our Fresh Blueberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness. Treat yourself to the delightful taste and nutritional benefits of Fresh Blueberries. Elevate your dishes, satisfy your cravings, and experience the joy of these plump and juicy berries. Order your batch today and unlock a world of flavor and wellness.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/58566f1b-31b1-4e76-b0c2-39403a93c0c7.c8b5bd91935856cbdb15b7587d8c031e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58566f1b-31b1-4e76-b0c2-39403a93c0c7.c8b5bd91935856cbdb15b7587d8c031e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58566f1b-31b1-4e76-b0c2-39403a93c0c7.c8b5bd91935856cbdb15b7587d8c031e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1768002064, 'Large Bagged Oranges', 9.96, 'deleted_605049623076', 'short description is not available', 'Large Bagged Oranges', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1781899163, 'Fresh Sweet Sapphire Black Seedless Grape, 2 Lb', 3.48, 'deleted_855199008494', 'short description is not available', 'Fresh Sweet Sapphire Black Seedless Grape, 2 Lb', 'Unbranded', 'https://i5.walmartimages.com/asr/d9c5680d-fced-48a2-8e27-9e4a67d5bc75.890d8fe474586d43179ca364afb149e2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9c5680d-fced-48a2-8e27-9e4a67d5bc75.890d8fe474586d43179ca364afb149e2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9c5680d-fced-48a2-8e27-9e4a67d5bc75.890d8fe474586d43179ca364afb149e2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1790604366, 'Taylor Farms Melon Trio with Cantaloupe, Honeydew, and Watermelon, 16 oz Tray', 6.47, '030223038276', 'Introducing Taylor Farms Melon Trio, your go-to choice for a refreshing, nutritious, and delicious snack! This 16oz medley brings together juicy watermelon, sweet cantaloupe, and succulent honeydew melon, offering a vibrant burst of flavors. Each melon is carefully picked at peak ripeness, ensuring the perfect balance of taste and texture. Ideal for a quick snack, summer picnics, or a delightful addition to your fruit platter, Taylor Farms Melon Trio is the ultimate treat for your taste buds and a healthy option for the whole family.', 'Taylor Farms Melon Trio 16 Oz Introducing Taylor Farms Melon Trio, your go-to choice for a refreshing, nutritious, and delicious snack! This 16oz medley brings together juicy watermelon, sweet cantaloupe, and succulent honeydew melon, offering a vibrant burst of flavors. Each melon is carefully picked at peak ripeness, ensuring the perfect balance of taste and texture. Ideal for a quick snack, summer picnics, or a delightful addition to your fruit platter, Taylor Farms Melon Trio is the ultimate treat for your taste buds and a healthy option for the whole family.', 'Taylor Farms', 'https://i5.walmartimages.com/asr/033a8788-0eba-4fda-a2ed-8c764d32ec73.1a11444053c0eddce2ba608d54b36eff.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/033a8788-0eba-4fda-a2ed-8c764d32ec73.1a11444053c0eddce2ba608d54b36eff.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/033a8788-0eba-4fda-a2ed-8c764d32ec73.1a11444053c0eddce2ba608d54b36eff.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1799988531, 'Organic Limes 1# Bag', 2.98, 'deleted_857392008189', 'Fresh bagged organic limes', '1 lb mesh-bag organic persian lime', 'FRESHQUITA', 'https://i5.walmartimages.com/asr/afcbe2ac-a8d9-4165-b891-5e12cc4bb587.5a9ac963525b28f279d074f701e0600c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/afcbe2ac-a8d9-4165-b891-5e12cc4bb587.5a9ac963525b28f279d074f701e0600c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/afcbe2ac-a8d9-4165-b891-5e12cc4bb587.5a9ac963525b28f279d074f701e0600c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1810869685, 'Fieldpack Unbranded Watermelon Seedless', 5.67, 'deleted_850046329234', 'Enjoy the sweet, refreshing taste of a Seedless Watermelon. Seedless Watermelon is great for breakfast, lunch, dessert, or when you want a snack. Watermelon is a good source of vitamin C, vitamin A, and potassium making them an excellent healthy treat. Cut the watermelon into chunks for a quick snack, infuse it with water for a refreshing drink, or chop it up and make a mouthwatering watermelon salad with feta and mint. This watermelon is great for sharing with friends and family or keep it for yourself. Bring it to your next cookout or get it as a sweet after dinner treat with friends.', 'Fresh Seedless Watermelon: Enjoy a fresh Seedless Watermelon on its own or add to a mixed fruit salad Serve at your next neighborhood barbecue Get creative and make a watermelon cocktail or a refreshing sorbet Sweet and Juicy Explore all the delicious ways to add fresh watermelon to your favorite recipes', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1829446358, 'Avocado Per Each', 1.18, '', 'short description is not available', 'Avocado Per Each', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/0b27dfbf-7446-495a-9169-7a4870dca6e4.8dc71e65fc81b403186e3f7bc997aa63.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0b27dfbf-7446-495a-9169-7a4870dca6e4.8dc71e65fc81b403186e3f7bc997aa63.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0b27dfbf-7446-495a-9169-7a4870dca6e4.8dc71e65fc81b403186e3f7bc997aa63.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1844288190, 'Welchs Fuji Fresh Apple, 3 lb Bag', 4.67, 'deleted_095829211331', 'There is an inherent spicy-savory flavor to these Fuji Apples that makes them an all-around favorite for both fresh and cooked uses. It is perhaps natural that this apple, with its Japanese heritage, would pair well with Asian flavors such as cilantro, chili pepper, rice vinegar and sesame. This is a wine-friendly apple, making it a good choice for recipes served as an appetizer or main course accompanied by wine. It pairs particularly well with Riesling, Chianti, Merlot and Pinot Noir wines.', 'Super sweet Fresh and sophisticated flavor Hints of spice and savory earth character Juicy and aromatic Healthy snack', 'Welch\'s', 'https://i5.walmartimages.com/asr/9f63f465-13e0-477d-ba11-d56869eab2a5.c54edd59621326df5b8f5bcc14dbc69a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9f63f465-13e0-477d-ba11-d56869eab2a5.c54edd59621326df5b8f5bcc14dbc69a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9f63f465-13e0-477d-ba11-d56869eab2a5.c54edd59621326df5b8f5bcc14dbc69a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1855868814, 'Fieldpack Marketside Yumi Organic Seedless Watermelon', 14.97, '045009899583', 'Enjoy the sweet, refreshing taste of a Seedless Watermelon. Seedless Watermelon is great for breakfast, lunch, dessert, or when you want a snack. Watermelon is a good source of vitamin C, vitamin A, and potassium making them an excellent healthy treat. Cut the watermelon into chunks for a quick snack, infuse it with water for a refreshing drink, or chop it up and make a mouthwatering watermelon salad with feta and mint. This watermelon is great for sharing with friends and family or keep it for yourself. Bring it to your next cookout or get it as a sweet after dinner treat with friends.', 'Fresh Seedless Watermelon: Enjoy a fresh Seedless Watermelon on its own or add to a mixed fruit salad Serve at your next neighborhood barbecue Get creative and make a watermelon cocktail or a refreshing sorbet Sweet and Juicy Explore all the delicious ways to add fresh watermelon to your favorite recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1884281156, 'Sliced Apples 1.75oz', 1, '649632001834', 'Fresh cut sliced Apples are a delicious healthy snack. It contains 1.75 ounces of ready to eat sliced apples.', 'Sliced Apples 1.75oz', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1899624331, 'Taylor Farms Fresh Cut Mango, 16 oz Tray', 5.44, '030223034131', 'Enjoy the sweet, tropical flavor of Mango. These precut pieces are great for breakfast, lunch, dessert, or when you want a snack. Mango is a good source of vitamin C making it an excellent healthy treat. You can eat it right out of the container, infuse them with water and mint for a refreshing drink, or chop them up and make a mouthwatering mango salsa with jalapenos, tomatoes, and red onion. With 16-ounces in each container, this mango is great for sharing with friends and family or keep it for yourself. It comes in a closable container to help maintain freshness. Bring home Mango today for a refreshing, healthy treat. Convenient solutions with value added in every item.', 'Marketside Mango 16 oz Comes in a re-closable container to help maintain freshness Great for breakfast, lunch, dessert, or when you want a snack No preservatives, artificial colors, or artificial flavors Convenient and portable Share with friends and family or keep for yourself Make a fruit bowl topped with whipped cream or a yogurt parfait Enjoy on their own or in a variety of recipes', 'Taylor Farms', 'https://i5.walmartimages.com/asr/98601406-cfdc-4672-8f92-efec82897713.30231b3dc9a3d7da241f416509aa032c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/98601406-cfdc-4672-8f92-efec82897713.30231b3dc9a3d7da241f416509aa032c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/98601406-cfdc-4672-8f92-efec82897713.30231b3dc9a3d7da241f416509aa032c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1906351227, 'Tropic Sun Kiwi Verfrut Clam 1.5lb', 2.97, '', 'Treat yourself to the delicious and refreshing taste of kiwi. Kiwi are known for their sweet, tangy, and soft flesh and nutritional benefits. They are packed with vitamin C, fiber, and antioxidants. They\'re also fat-free and have a low glycemic index. Enjoy a fresh kiwi with your breakfast to start your day off on the right foot or bring one to work and treat yourself to a scrumptious healthy snack at the office. You can also serve them up in a big fresh fruit salad with all your favorite fruits like strawberries, apples, blueberries and more. They\'re even perfect for topping pies, tres leches cakes, tarts and more for dessert. The possibilities are endless when you bring home Kiwi', 'Delicious sweet and tangy kiwi fruit Packed with Vitamin C, fiber and antioxidants with a scrumptious fruit taste Enjoy a fresh kiwi with your breakfast to start your day off on the right foot Bring one to work and treat yourself to a scrumptious healthy snack at the office Great for school lunches', 'Tropic sun', 'https://i5.walmartimages.com/asr/5cd05ccd-4ea5-4083-83f7-026c65c70d52.a74e07db6e6b4a75f7ad77e2fb28eef8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5cd05ccd-4ea5-4083-83f7-026c65c70d52.a74e07db6e6b4a75f7ad77e2fb28eef8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5cd05ccd-4ea5-4083-83f7-026c65c70d52.a74e07db6e6b4a75f7ad77e2fb28eef8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1910053051, 'Welch\'s Peaches 2 lbs', 4.92, '095829211560', 'Welch\'s Peaches 2 lbs', 'Welch’s® Fresh peaches are grown in the United States and Chile. A Welch’s® Fresh peach contains approximately 39 calories. They are rich in vital minerals such as potassium, copper, fluoride, and iron, as well as health-promoting antioxidants.', 'Welch\'s', 'https://i5.walmartimages.com/asr/e41e970d-0f11-4ca2-83b9-178071fb73a4.cc1694540743d6d4ca45709e9541d00b.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e41e970d-0f11-4ca2-83b9-178071fb73a4.cc1694540743d6d4ca45709e9541d00b.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e41e970d-0f11-4ca2-83b9-178071fb73a4.cc1694540743d6d4ca45709e9541d00b.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1945557206, 'APPLE RED 5# VALUE', 4.98, '804305001904', 'APPLE RED 5# VALUE', 'Freshness Guaranteed Red Apples, 5 lb Bag: Sweet, crisp, and juicy Creamy white flesh with low acidity Excellent snacking apple Higher antioxidants due to the rich, deep red skin Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp, and apple pie Sweet, crisp, and juicy Creamy white flesh with low acidity Excellent snacking apple Higher antioxidants due to the rich, deep red skin Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp, and apple pie Adds flavor to a variety of recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b3e1c937-7675-4007-89c6-1071b69fb0f0.327b55f97321fce18fc6c8a946edf834.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3e1c937-7675-4007-89c6-1071b69fb0f0.327b55f97321fce18fc6c8a946edf834.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3e1c937-7675-4007-89c6-1071b69fb0f0.327b55f97321fce18fc6c8a946edf834.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1951826257, 'JUICE LEMONADE', 76.21, '', 'What says relaxing with family and friends better than a big glass of ice-cold lemonade? Ours is sweet, tart, so refreshing and chock full of Vitamin C. Perfect for enjoying those long, lazy days of summer... all year long.', 'No artificial sweeteners or high fructose corn syrup added No artificial flavors, colors or preservatives Gluten-free No GMO ingredients 100% Daily Value Vitamin C', 'Langers', 'https://i5.walmartimages.com/asr/19000fc1-e2ab-4d87-9081-fd6f6e1d0c97.b597b5f794b5347109336fb8ee72469f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19000fc1-e2ab-4d87-9081-fd6f6e1d0c97.b597b5f794b5347109336fb8ee72469f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/19000fc1-e2ab-4d87-9081-fd6f6e1d0c97.b597b5f794b5347109336fb8ee72469f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1983247185, 'Large Bagged Oranges', 8.94, 'deleted_850045535049', 'short description is not available', 'Large Bagged Oranges', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1985015337, 'Taylor Farms Fresh Cut Watermelon, 38 oz Tray', 9.24, '030223038009', 'Taylor Farms Watermelon 38 ounces in a plastic container with lid. Perfect fresh sweet watermelon perfect for parties or to be shared.', 'Taylor Farms Watermelon 38 Oz', 'Taylor Farms', 'https://i5.walmartimages.com/asr/256a79c3-9e5a-4943-a249-3c1ad075117e.ec907ca72a1b05af3b7bc05e063f05c3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/256a79c3-9e5a-4943-a249-3c1ad075117e.ec907ca72a1b05af3b7bc05e063f05c3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/256a79c3-9e5a-4943-a249-3c1ad075117e.ec907ca72a1b05af3b7bc05e063f05c3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (1987845157, 'Fresh Organic Blueberries Dry Pint Container', 4.96, '858110006050', 'Fresh Blueberries are a delightful and nutritious treat that brings a burst of flavor to any dish. These plump and juicy berries are picked at the peak of freshness, ensuring a sweet and tangy taste that is hard to resist. Perfect for snacking, baking, or adding to your favorite recipes, these blueberries are a versatile fruit that can be enjoyed in countless ways. Whether you sprinkle them on top of your morning cereal, blend them into a smoothie, or bake them into a delicious pie, Fresh Blueberries are sure to satisfy your cravings for a healthy and delicious snack.', 'Are you ready to experience the vibrant taste and health benefits of Fresh Blueberries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Blueberries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. The versatility of blueberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these blue gems into your baking endeavors, whether it\'s muffins, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Not only are blueberries delicious, but they also offer an array of health benefits. Loaded with antioxidants, vitamins, and dietary fiber, blueberries are known to promote heart health, support brain function, and boost the immune system. They are a nutritious choice that will keep you feeling good from the inside out. Our Fresh Blueberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness. Treat yourself to the delightful taste and nutritional benefits of Fresh Blueberries. Elevate your dishes, satisfy your cravings, and experience the joy of these plump and juicy berries. Order your batch today and unlock a world of flavor and wellness.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/c2ba8df8-8d4a-4cb4-8141-d81b19fcc6e4.e53fe1f9eaa58f9ff95ae592f0f3db95.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c2ba8df8-8d4a-4cb4-8141-d81b19fcc6e4.e53fe1f9eaa58f9ff95ae592f0f3db95.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c2ba8df8-8d4a-4cb4-8141-d81b19fcc6e4.e53fe1f9eaa58f9ff95ae592f0f3db95.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2000589495, 'HARVEAST Dried Apple Slices | Unsulfured Gourmet Dehydrated Apples, No Sugar, Gluten Free, Kosher, Vegan, Non-GMO | Dried Sliced Apple Fruit in Resealable Bag, Delicious Healthy Snack 20 Oz 2 Pack', 41.13, '686754386012', 'Why Choose HARVEAST Dried Apple Slices? We at HARVEAST take pride in cultivating delicious, healthy & mouthwateringly sweet dried apples from the hearty & robust apple trees on our farm. Our all-natural dehydrated apple slices are responsibly grown and packaged with care without the use of gluten, preservatives, GMO or added sugar/sulfur. They are tasted, tested and inspected several times throughout the growing, cultivating and drying process to maintain great taste & consumer safety. Our hard work pays off when we see our customers enjoying our mouthwatering dried apples. Four Image Highlights 2 Pound Resealable Bag After you are done snacking on these delicious dried apple slices, simply reseal the included bag to keep them fresh and flavorful. Need to satisfy your sweet tooth again? Simply unseal the bag and snack away. No more chip clips or food storage clamps needed! Perfect Gourmet Snack Gift Your loved one, friends and family will love these delicious dehydrated apple fruit slices! They are a perfect healthy snack gift for people of all ages and lifestyles. Gift it to them for a birthday, Mother’s Day, Christmas, Father’s Day or any other special occasion! Remarkably Nutritious & Flavorsome These dried apples are a hearty, healthy and absolutely delicious snack. You will love how each bite offers a tender, yet chewy texture, as well as delightfully sweet taste. Get a large percentage of your daily value in vitamins, fiber, potassium and other minerals when snacking on this dried fruit. Delicious Ingredient for Snacks & Meals You will love how you can add these dehydrated apple slices to your daily yogurt, smoothies, salad, tea, oatmeal, granola, trail mix, ice cream, cake, pie & other meals! Want to make a delicious meat & cheese platter? Add this delectable dried fruit to your next charcutier board to impress your friends and family!', 'Delicious Dried Apple Slices - These kosher dehydrated apples are unsulfured for your health & safety. They have a lusciously sweet taste, while also providing you outstanding nutritional value. They are rich in many vitamins and minerals, particularly vitamin C and potassium. Healthy Snack for the Entire Family - You will be amazed that such a delectable treat can provide your body an abundance of fiber, vitamin C, potassium, vitamin K, vitamin B6, manganese, and copper! Our non-GMO dried apple slices are fat-free. low in calories & high in flavor! Truly a perfect addition for the kid s lunch box or simply a healthy nibble to satisfy your sweet-tooth. Gluten Free, Kosher, Vegan, Unsulfured - Rest easy knowing that these dried apple fruit slices are all-natural, unsulfured, gluten free, vegan & Kosher! No sugar or syrups are ever added in the process of cultivating or packaging these dehydrated apples. It is a healthy & mouth-watering snack! Add to Yogurt, Smoothies, Cereal & Salad - Add these delicious & delicate dried apple slices to your favorite snacks & meals. We have customers all over the world use these nutritious dried apples in their yogurt, smoothies, salad, cereal, cheese platter, charcutier boards, granola, trail mix, pies, cakes, ice cream & much more! Cultivated & Dried to Perfection - We take pride in growing & sourcing our gourmet dried apple slices directly from our farm-grown, luscious & robust apple trees. Our premium dehydrated apples are naturally grown and dried without the use of harmful chemicals or GMOs.', 'HARVEAST', 'https://i5.walmartimages.com/asr/2606894b-59f5-422e-9575-5bd575bc3627.db516e7bf7431b73ed9b54b6c989f616.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2606894b-59f5-422e-9575-5bd575bc3627.db516e7bf7431b73ed9b54b6c989f616.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2606894b-59f5-422e-9575-5bd575bc3627.db516e7bf7431b73ed9b54b6c989f616.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2016610380, 'Taylor Farms Fresh Cut Watermelon, 32 oz Tray', 7.36, 'deleted_030223038016', 'Enjoy the refreshing sweetness of Taylor Farms Cut Watermelon. Hand-picked at peak ripeness, our juicy watermelon slices are a perfect summer treat. Each bite bursts with flavor and hydrating goodness. Whether enjoyed on its own or added to fruit salads, smoothies, or desserts, our cut watermelon is sure to satisfy your cravings. Indulge in this delicious, ready-to-eat delight today.', 'Taylor Farms Watermelon 32 Oz Tub Enjoy the refreshing sweetness of Taylor Farms Cut Watermelon. Hand-picked at peak ripeness, our juicy watermelon slices are a perfect summer treat. \\ Each bite bursts with flavor and hydrating goodness. Whether enjoyed on its own or added to fruit salads, smoothies, or desserts, our cut watermelon is sure to satisfy your cravings. Indulge in this delicious, ready-to-eat delight today.', 'Taylor Farms', 'https://i5.walmartimages.com/asr/dd1294d4-57ec-477e-9524-d4f7b5f39f04.41fbe85d27a5d2a09b8263ed29fb9575.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dd1294d4-57ec-477e-9524-d4f7b5f39f04.41fbe85d27a5d2a09b8263ed29fb9575.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/dd1294d4-57ec-477e-9524-d4f7b5f39f04.41fbe85d27a5d2a09b8263ed29fb9575.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2118600458, 'Seedless Watermelon Bin', 317.65, 'deleted_860036002214', 'Seedless watermelon is a delicious, sweet fruit. Watermelon is perfect for healthy snacking, fun gatherings, and feeding large families. A summertime favorite that is dense in nutrients and packs delicious, juicy flavor. Watermelon is especially tasty when served cold, and enjoys a long shelf life. . Enjoy watermelon on its own, or try it in salads, desserts, and more. Its red, sweet fruit is enjoyable at picnics or simply out of a bowl in your own home. Try a fresh watermelon today!', 'Seedless Watermelon, 1 Each Sweet Juicy Fresh Dense in nutrients. Perfect for families Great for large gatherings Long shelf life Healthy Snack', 'Optima', 'https://i5.walmartimages.com/asr/d2e7598b-13ec-4dd8-86f5-f31ac3dfec9e.d31fe27ba791a600950a5c23d83b80f1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d2e7598b-13ec-4dd8-86f5-f31ac3dfec9e.d31fe27ba791a600950a5c23d83b80f1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d2e7598b-13ec-4dd8-86f5-f31ac3dfec9e.d31fe27ba791a600950a5c23d83b80f1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2131486870, 'Yellow Mango Bag', 4.92, '851039002165', 'Treat yourself to a burst of tropical goodness when you bring home a bag of Yellow Honey Mangos. Mangoes boast a deliciously sweet fragrance and juicy flavor that is sure to wake up your taste buds. They are packed with over 20 vitamins and minerals including A and C, making them not only scrumptious but also a healthy treat. They can be used for everything from salads and smoothies to fresh salsas and luscious desserts. For the best experience, these mangos should be cut in half, sliced while in the peel and then scooped out. Bring home a bag of Yellow Honey Mangos today.', 'Deliciously fresh, sweet and juicy. Packed with sweet tropical flavor. Makes a healthy snack.', 'Unbranded', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2143745234, 'Bulk Lemons', 0.58, 'deleted_810343020616', 'short description is not available', 'Medium Lemon', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2157109169, 'Taylor Farms Fruit Bowl W/coconut 10 Oz', 5.97, '030223038283', 'Introducing our mouthwatering Taylor Farms Fruit Bowl with coconut, a perfect blend of fresh, wholesome ingredients to satisfy your taste buds and nutritional needs. This bountiful fruit bowl features fresh cut ingredients, it is the ultimate choice for parties, picnics, or a nutritious snack. Relish the delightful harmony of flavors and textures while enjoying the benefits of fresh, quality produce.', 'Taylor Farms Fruit Bowl with Coconut 10 Oz Blend of Fresh and Wholesome ingredients Fruit Bowl that Features Fresh Ingredients', 'Taylor Farms', 'https://i5.walmartimages.com/asr/ae5054c0-ea2a-4df8-a02d-270f2953352d.13e364e09be22fcef911facdd6c870d2.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ae5054c0-ea2a-4df8-a02d-270f2953352d.13e364e09be22fcef911facdd6c870d2.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ae5054c0-ea2a-4df8-a02d-270f2953352d.13e364e09be22fcef911facdd6c870d2.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2183980195, 'Sliced Sweet Apples 1.75oz', 1, '649632001841', 'Enjoy a convenient, fresh snack at home or on-the-go. This snack pack features fresh cut red sweet apples. Make snack time fresh and easy with Sliced Sweet Apples it contains 1.75 ounces.', 'Sliced Sweet Apples 1.75oz', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2203737783, 'Freshness Guaranteed Seasonal Fruit Blend 16 Oz', 7.97, 'deleted_717524792099', 'Enjoy a healthy snack with an assortment of refreshing fruits in this Fruit blend.Arranged in a transparent tray with a lid. Tender and sweet, these different fruits provide you with many essential nutrients you need every day, along with a blend of different flavors. The pre-cut fruits also make it a convenient option for snacking. For a special treat, use them to make a delicious yogurt parfait or a tasty fruit salad. Keep refrigerated until ready to enjoy. Add some fresh fruit to your daily menu today with this Fruit Blend.', 'Freshness Guaranteed Seasonal Fruit Blend 16 Oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2236861684, 'Fresh Mighty Red Strawberries, 20 oz Container', 5.47, '812049005157', 'The sweet, juicy flavor of Fresh Mighty Red Strawberries make them a refreshing and delicious treat. These strawberries are larger than normal strawberries, making them perfect for dipping in chocolate. Decorate them with white-chocolate drizzle, crushed nuts, chocolate sprinkles, and more for a special touch. They are great for special occasions such as Valentine’s Day, Easter, and Mother’s Day or strawberry desserts. They contain essential vitamins and nutrients like vitamin C, dietary fiber, potassium, vitamin B and magnesium, making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh Mighty Red Strawberries today and savor the delectable flavor.', 'Sweet and juicy treat for all ages Larger than normal strawberries Perfect for dipping in chocolate Decorate them with white chocolate drizzle, crushed nuts, chocolate sprinkles for a strawberry dessert Contain essential vitamins and nutrients Prior to serving gently wash them and remove leafy cap Refrigerate your strawberries in the original container to maintain freshness, they should approximately last 3-5 days after purchase', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/8fdba577-a091-4d41-afad-9ed9628023ce.caeb8b4457242a6f0927aa459595512b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8fdba577-a091-4d41-afad-9ed9628023ce.caeb8b4457242a6f0927aa459595512b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8fdba577-a091-4d41-afad-9ed9628023ce.caeb8b4457242a6f0927aa459595512b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2253140533, 'Fresh Sugarbee Apples, 2lb Bag', 4.72, 'deleted_812333012793', 'Introducing the SugarBee apple - a crunchy and juicy delight that\'s perfect for snacking, baking, or cooking. Our apples are grown with love and care, hand-picked at their peak ripeness for maximum natural sweetness. With a unique combination of sweet and tart flavors, the SugarBee apple is sure to become your new favorite. Plus, they\'re non-GMO and sustainably grown, making them a nutritious and eco-friendly choice. Order now and experience the taste of pure goodness!', 'Crunchy Fresh Apples Min. Dia. 63 mm (2-1/2 inch). Oh honey, that\'s good! U.S. Extra fancy. May be coated with food-grade vegetable and/or shellac-based wax resin to maintain freshness. Fresh Produce of USA. Whole and made with organic ingredients.', 'SugarBee', 'https://i5.walmartimages.com/asr/a6a29b9a-2fb7-439a-b837-911c8bb2b7fc.8f9f8170b8c55867216cd5be38f2cb75.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6a29b9a-2fb7-439a-b837-911c8bb2b7fc.8f9f8170b8c55867216cd5be38f2cb75.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a6a29b9a-2fb7-439a-b837-911c8bb2b7fc.8f9f8170b8c55867216cd5be38f2cb75.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2295105827, 'Fresh Extra Small Greenhouse Grown Strawberries, 12 oz Container', 2.17, '699058999918', 'Add some sweetness to your day with extra small, snacking-sized greenhouse grown strawberries. These fun, sweet and flavorful strawberries are part of our premium selection. Each small strawberry is great to be enjoyed as a yummy and healthy snack. Serve up a bowl plain or topped with whipped cream for a delicious treat. Add to fruit salads, ice cream, yogurt or milkshakes. Use it to top off cereal, pancakes or waffles. They contain essential vitamins and nutrients like vitamin C, dietary fiber, potassium, vitamin B and magnesium, making them perfect for a healthy diet. It is also great as a topping on cheesecake and other dessert recipes. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use.', 'Fresh Extra Small Greenhouse Grown Strawberries, 12 oz Package: Premium selection Prior to serving gently wash the strawberries and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/3f63b4a1-93b8-4f9b-b41e-297e4ae95b8b.567e78bdadb679b76727d80d03a33aa1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3f63b4a1-93b8-4f9b-b41e-297e4ae95b8b.567e78bdadb679b76727d80d03a33aa1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3f63b4a1-93b8-4f9b-b41e-297e4ae95b8b.567e78bdadb679b76727d80d03a33aa1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2380214976, 'Taylor Farms Fruit Bowl with Watermelon, Cantaloupe, Pineapple, and Grapes, 40 oz Tray', 10.97, '030223038337', 'Taylor Farms fresh cut Fruit bowl in Plastic Tray. Ready to be opened and shared. It includes 40 ounces of assorted fruit.', 'Taylor Farms Fruit Bowl 40 Oz', 'Taylor Farms', 'https://i5.walmartimages.com/asr/93cb1aa3-05b3-46ec-869a-b474dc164c90.92064ee0c50b765612148ee48f6bacb7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/93cb1aa3-05b3-46ec-869a-b474dc164c90.92064ee0c50b765612148ee48f6bacb7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/93cb1aa3-05b3-46ec-869a-b474dc164c90.92064ee0c50b765612148ee48f6bacb7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2387305951, 'Welch\'s Fresh Black Plums - Sweet & Juicy Snack', 5.47, '095829211584', 'Experience the delightful taste of Welch\'s Fresh Black Plums, perfect for a healthy snack or as part of your favorite dishes. These sweet, juicy plums are packed with fiber, vitamin A, and other essential nutrients. Enjoy them fresh, as they are, or add them to salads for a burst of flavor. Each pound has approximately 3-4 plums, offering a meaty yet juicy texture for your enjoyment. Whether as a snack or ingredient, these plums enhance your diet with their unique taste and healthy benefits.', 'Welch\'s Fresh Black Plums provide a sweet and juicy experience. Approximately 3-4 plums per pound ensure fresh quality. Ideal for snacking or adding to salads and recipes. Rich source of vitamin A and essential nutrients. Fresh condition ensures optimal taste and texture. Enhances a healthy diet with fiber and vitamins.', 'Welch\'s', 'https://i5.walmartimages.com/asr/8fb9678b-cf67-4306-89c7-8756c5727941.022d54a44fab14367fdd71c846faca85.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8fb9678b-cf67-4306-89c7-8756c5727941.022d54a44fab14367fdd71c846faca85.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8fb9678b-cf67-4306-89c7-8756c5727941.022d54a44fab14367fdd71c846faca85.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2401603739, 'Taylor Farms Fresh Cut Mango, 10 oz Tray', 3.97, '030223034209', 'Freshness Guaranteed Mango in plastic tray. Has delicious fresh cut Mango slices it contains 10 ounces of mango.', 'Taylor Farms Mango 10 Oz', 'Taylor Farms', 'https://i5.walmartimages.com/asr/47177ecd-ae41-4070-8830-0274cb62544a.9be94ec9bb18f50ad63c71bcb1bafed3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/47177ecd-ae41-4070-8830-0274cb62544a.9be94ec9bb18f50ad63c71bcb1bafed3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/47177ecd-ae41-4070-8830-0274cb62544a.9be94ec9bb18f50ad63c71bcb1bafed3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2413650945, 'Fresh Navel Oranges, 4 lb Bag', 4.96, 'deleted_850029221111', 'Fresh Oranges are a good addition to a healthy diet along with other fruit. They\'re oval with thick, easy-to-remove peel and segments that separate cleanly. Oranges are a fruit that contains vitamin C and other nutrients that can be eaten as is or juiced for a smooth beverage at breakfast. It is suitable for use in all kinds of sweet and savory dishes, from cakes to weeknight chicken dinners. Citric acid fruits like oranges can be stored at room temperature for several days or in the refrigerator for up to two weeks. Available in a 4 lb package.', 'Florida red grapefruit grown sustainably with respect to the environment. From get well gifts to congratulations gifts, it makes the perfect healthy gift. High in Vitamin C and A making it a healthy choice. Perfect blend of tart and sweet. Enjoy it for yourself or send it as a gift. Mailed straight from the grower in Indian River County Florida as fresh as it gets!', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/f74666a9-0646-412e-8ee6-752fde0782cc.09c0b695647707e0e81564cda80ceb95.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f74666a9-0646-412e-8ee6-752fde0782cc.09c0b695647707e0e81564cda80ceb95.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f74666a9-0646-412e-8ee6-752fde0782cc.09c0b695647707e0e81564cda80ceb95.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2438543741, 'Freshness Guaranteed Sunshine Trio 16 Oz', 7.47, 'deleted_717524776945', 'short description is not available', 'Freshness Guaranteed Sunshine Trio 16 Oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2439709182, 'Fresh Navel Orange, lb', 0.97, '406585344018', 'Enjoy the juicy goodness of Fresh Navel Oranges (China Nebo). A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these navel oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Fresh Navel Oranges add flavor to any meal or beverage', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast Adds flavor to a variety or recipes', 'Unbranded', 'https://i5.walmartimages.com/asr/05a33b9e-e4f0-4b24-8ba0-28dc215544fe.95088f3c9af8ad72e4d74ecfeb07d36e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/05a33b9e-e4f0-4b24-8ba0-28dc215544fe.95088f3c9af8ad72e4d74ecfeb07d36e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/05a33b9e-e4f0-4b24-8ba0-28dc215544fe.95088f3c9af8ad72e4d74ecfeb07d36e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2482832018, 'Fresh Navel Oranges, 4 lb Bag', 4.96, 'deleted_605049623151', 'Stock up on several of these juicy Lemons to enjoy with each day while meal planning. Squeeze a few to make delicious homemade lemonade and provide a healthy dose of vitamin C to your diet. Drizzle lemon juice over fish or add it to your favorite sauces. Serve slices with your favorite cocktails and use when baking cakes, cookies and tarts. They are sold in-store at a per-unit price, so you can stock up on as many as you need. You can even buy just one single lemon at a time. Pair them with other fresh fruit from Walmart.', 'Florida red grapefruit grown sustainably with respect to the environment. From get well gifts to congratulations gifts, it makes the perfect healthy gift. High in Vitamin C and A making it a healthy choice. Perfect blend of tart and sweet. Enjoy it for yourself or send it as a gift. Mailed straight from the grower in Indian River County Florida as fresh as it gets!', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/f74666a9-0646-412e-8ee6-752fde0782cc.09c0b695647707e0e81564cda80ceb95.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f74666a9-0646-412e-8ee6-752fde0782cc.09c0b695647707e0e81564cda80ceb95.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f74666a9-0646-412e-8ee6-752fde0782cc.09c0b695647707e0e81564cda80ceb95.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2569986501, 'Ingrilli 100% Lemon Juice from Concentrate, 7 Fl Oz Squeeze Bottles (Pack of 3)', 15.98, '642709101833', 'The Highest Product Standards From our orchard-to-bottle manufacturing process to our strict quality standards, we take pride in knowing that every bottle of Ingrilli products lives up to the Ingrilli family name. TRULY ORGANIC PRODUCTS At Ingrilli, we don’t just “label” our organic line as such – we live it. We test every batch of our organic products against common pesticides, and we have zero tolerance for any contamination or preservatives. That’s why we’ve earned the official USDA Organic seal of approval. NON-GMO Ingrilli is proud to be an official participant of the Non-GMO Project, and we are Non-GMO Project verified for all of our products. A TRADITION OF HIGH MANUFACTURING STANDARDS When we first opened our doors in 1880, we promised to deliver the highest-quality, freshest products on the market – and we still live to that standard today. That’s why we only use the freshest fruit and the latest production equipment, processes, and facilities to produce every bottle of Ingrilli juice on the shelves', 'FRESH FLAVOR, FRESH TASTE: Made from Argentinian and Brazilian 100% lemon juice concentrate, Ingrilli tastes as fresh as cutting into fresh lemons VERSATILE FLAVOR: Ingrilli 100% Lemon Juice can be used for cooking, baking, salads and drink mixers. GOOD FOR EVERYONE: Ingrilli 100% Lemon Juice is Non-GMO Project Verified, OU kosher certified, Vegan Certified and Gluten-Free', 'Ingrilli', 'https://i5.walmartimages.com/asr/531b1eb0-95fc-453d-89b9-56f16af423a5.d1d46245d2a47ee56120c38cf9dc9044.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/531b1eb0-95fc-453d-89b9-56f16af423a5.d1d46245d2a47ee56120c38cf9dc9044.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/531b1eb0-95fc-453d-89b9-56f16af423a5.d1d46245d2a47ee56120c38cf9dc9044.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2570036938, 'Fresh Driscoll\'s Sweetest Batch Strawberries, 14 oz Container', 5.52, '715756200542', 'The berry bursting with flavors of strawberry candy and fruit punch, these juicy strawberries are selected for their extra-sweet deliciousness. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. They contain essential vitamins and nutrients like vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell to keep them fresh and ready for use.', 'Premium selection Only Driscoll\'s grows Sweetest Batch berries from one proprietary berry variety. Bursting with flavors of strawberry candy and fruit punch, these juicy strawberries are selected for their extra-sweet deliciousness. Refrigerate your strawberries in the original Clam Shell tray to maintain freshness Delicious on their own as a healthy snack or as part of a recipe Rich in vitamin C', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/d4cc2d9e-9131-4451-aa01-febbb93a447b.14ec8c66ee7e19906d7717b9e841e0e5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4cc2d9e-9131-4451-aa01-febbb93a447b.14ec8c66ee7e19906d7717b9e841e0e5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d4cc2d9e-9131-4451-aa01-febbb93a447b.14ec8c66ee7e19906d7717b9e841e0e5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2597709776, 'Taylor Farms Fresh Cut Pineapple, 32 oz Tray', 8.66, '030223038023', 'Taylor Farms fresh cut Pineapple 32 ounces in a plastic container ready to be opened and shared.', 'Taylor Farms Pineapple 32 Oz', 'Taylor Farms', 'https://i5.walmartimages.com/asr/08cb7ce2-6194-472f-bec9-912d1847f661.8b311952cf8f8a556a4985e2e4227bab.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/08cb7ce2-6194-472f-bec9-912d1847f661.8b311952cf8f8a556a4985e2e4227bab.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/08cb7ce2-6194-472f-bec9-912d1847f661.8b311952cf8f8a556a4985e2e4227bab.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2617193510, 'Fresh Navel Oranges, 4 lb Bag', 4.96, 'deleted_845857001431', 'Fresh Oranges are a good addition to a healthy diet along with other fruit. They\'re oval with thick, easy-to-remove peel and segments that separate cleanly. Oranges are a fruit that contains vitamin C and other nutrients that can be eaten as is or juiced for a smooth beverage at breakfast. It is suitable for use in all kinds of sweet and savory dishes, from cakes to weeknight chicken dinners. Citric acid fruits like oranges can be stored at room temperature for several days or in the refrigerator for up to two weeks. Available in a 4 lb package.', 'Florida red grapefruit grown sustainably with respect to the environment. From get well gifts to congratulations gifts, it makes the perfect healthy gift. High in Vitamin C and A making it a healthy choice. Perfect blend of tart and sweet. Enjoy it for yourself or send it as a gift. Mailed straight from the grower in Indian River County Florida as fresh as it gets!', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/f74666a9-0646-412e-8ee6-752fde0782cc.09c0b695647707e0e81564cda80ceb95.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f74666a9-0646-412e-8ee6-752fde0782cc.09c0b695647707e0e81564cda80ceb95.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f74666a9-0646-412e-8ee6-752fde0782cc.09c0b695647707e0e81564cda80ceb95.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2663226391, 'Fresh Driscoll\'s Sweetest Batch Strawberries, 10 oz Container', 3.33, '715756200511', 'The berry bursting with flavors of strawberry candy and fruit punch, these juicy strawberries are selected for their extra-sweet deliciousness. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. They contain essential vitamins and nutrients like vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell to keep them fresh and ready for use.', 'Premium selection Sourced with high quality standards Recommended to wash before consuming Refrigerate your strawberries in the original Clam Shell tray to maintain freshness Keep dry for optimal freshness Delicious on their own as a healthy snack or as part of a recipe Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/185c27d2-ca68-425c-ad91-2105a7cbabea.50f669434dbcd90b3a8d40c6d048ecc4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/185c27d2-ca68-425c-ad91-2105a7cbabea.50f669434dbcd90b3a8d40c6d048ecc4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/185c27d2-ca68-425c-ad91-2105a7cbabea.50f669434dbcd90b3a8d40c6d048ecc4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2710388201, 'Fresh Driscoll\'s Sweetest Batch Raspberries, 6 oz Container', 4.99, '715756100637', 'Sweetest batch raspberries are a special variety selected for their extra-sweet deliciousness. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as a topping for pancakes, bake them in a mouthwatering bread, mix them with lemon and water for a flavorful and refreshing drink. They contain essential vitamins and nutrients like vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them and enjoy the fresh taste. Refrigerate the berries in original Clam Shell to keep them fresh and ready for use.', 'Premium selection Only Driscoll\'s grows Sweetest Batch berries from proprietary berry variety Bursting with delicious raspberry flavor, these juicy raspberries are selected for their extra-sweet deliciousness. Refrigerate your raspberries in the original Clam Shell tray to maintain freshness', 'Driscoll\'s Inc.', 'https://i5.walmartimages.com/asr/8f2cd517-b15b-4ac8-a715-149b6e315a91.ce2d785d0b327d01b97fe7875f35e41f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8f2cd517-b15b-4ac8-a715-149b6e315a91.ce2d785d0b327d01b97fe7875f35e41f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8f2cd517-b15b-4ac8-a715-149b6e315a91.ce2d785d0b327d01b97fe7875f35e41f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2726721698, 'Fresh Florida Sapodilla, Each', 3.33, '897505002093', 'Discover the sweet and creamy flavor of fresh florida sapodilla, a tropical fruit with a unique taste and texture. with its brown skin and soft, buttery pulp, this sapodilla is perfect for snacking, adding to salads, or using in recipes. try it today and experience the exotic taste of florida!', 'Sweet and Creamy: Sapodillas are known for their sweet and creamy flesh, perfect for snacking or using in recipes. High in Fiber: Sapodillas are a good source of dietary fiber, making them a great choice for those looking to increase their fiber intake. No Added Preservatives: Fresh Florida Sapodillas are free from added preservatives, ensuring you get the best flavor and texture. Fresh Florida Sapodilla', 'Fresh Produce', 'https://i5.walmartimages.com/asr/4bbd11c4-573a-4b82-8a75-a438df7293b8.3eb91bc1f0898735c780e9a6067cc7fa.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4bbd11c4-573a-4b82-8a75-a438df7293b8.3eb91bc1f0898735c780e9a6067cc7fa.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4bbd11c4-573a-4b82-8a75-a438df7293b8.3eb91bc1f0898735c780e9a6067cc7fa.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2738417602, 'Taylor Farms Fresh Cut Watermelon, 16 oz Tray', 3.84, '030223034117', 'Experience a burst of summertime goodness with this delicious Freshness Guaranteed Watermelon. This pre-cut ripe watermelon is juicy, sweet, and refreshing to the taste. In addition, watermelons are a great natural source of vitamins A and C. Carry them with you and eat them straight out of the tray any time you want, at home, or on-the-go. Pair them with a tasty salad or sandwich for a nutritious and delicious lunch. You can also use them as a naturally sweet ingredient in a fruit salad. Add some fresh fruit to your daily menu with this Freshness Guaranteed Watermelon.Freshness Guaranteed provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Watermelon, 16 oz Tray: Pre-cut watermelon chunks Convenient take-and-go packaging Good source of vitamins A and C No preservatives, artificial colors or artificial flavors Perfect for your next backyard cookout Net weight: 16 oz Sweet and Juicy', 'Taylor Farms', 'https://i5.walmartimages.com/asr/f01c3f51-10f7-4f52-ab3d-5eb1b87a24b4.546b7f6eb29df5f8c35c73f813cf7818.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f01c3f51-10f7-4f52-ab3d-5eb1b87a24b4.546b7f6eb29df5f8c35c73f813cf7818.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f01c3f51-10f7-4f52-ab3d-5eb1b87a24b4.546b7f6eb29df5f8c35c73f813cf7818.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2748105343, 'Mandarins 5lb Bag', 7.97, 'deleted_091636000274', 'You peel \'em, then you eat \'em. There isn\'t a simpler snack. They are quick, easy, nutritious and delicious. Happy hour, lunch hour, power hour, any hour–mandarins bring those extra feels to life', 'Easy Peel Seedless Sweet and Juicy', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/bd991d70-6535-491d-af5b-0f42e5854444.728446b06766cc2da1b1dc73908e13d0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd991d70-6535-491d-af5b-0f42e5854444.728446b06766cc2da1b1dc73908e13d0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/bd991d70-6535-491d-af5b-0f42e5854444.728446b06766cc2da1b1dc73908e13d0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2778650860, 'Cantaloupe', 2.5, '406585080961', 'short description is not available', 'Cantaloupe', 'Unbranded', 'https://i5.walmartimages.com/asr/ec0bf0b8-528f-4c46-944b-0d398d032554.5d6f2a67795900032c4b0d32ff2044fc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec0bf0b8-528f-4c46-944b-0d398d032554.5d6f2a67795900032c4b0d32ff2044fc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ec0bf0b8-528f-4c46-944b-0d398d032554.5d6f2a67795900032c4b0d32ff2044fc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2788874263, 'Fresh Red Grapes', 117.28, 'deleted_850550002036', 'Treat yourself to the delicious, juicy flavor of Fresh Red Grapes. These grapes are bursting with flavor, so you can easily enjoy a handful as a fresh snack any time of day. Enjoy them for breakfast, lunch, dinner, or dessert. They are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the fresh taste of Fresh Red Grapes.', 'Fresh Red Grapes: Red grapes that are bursting with delicious flavor Enjoy a handful as a fresh snack any time of day Pair with your favorite meats and cheeses for a charcuterie appetizer Incorporate into fruit salad Perfect for quick, easy and healthy snacks Freeze them and use as ice cubes that won\'t melt', 'GRAPE', 'https://i5.walmartimages.com/asr/5a44901d-7c8a-4a2a-93b4-6e7fc95f51e2_1.c4f0beae139d3380b74c19e82e90f2fe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a44901d-7c8a-4a2a-93b4-6e7fc95f51e2_1.c4f0beae139d3380b74c19e82e90f2fe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a44901d-7c8a-4a2a-93b4-6e7fc95f51e2_1.c4f0beae139d3380b74c19e82e90f2fe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2799892982, 'Fieldpack Unbranded Papaya', 1.14, 'deleted_857962007376', 'Get flavor and nutrition with our Fresh Papaya. Papaya is a tropical fruit that originated in the tropics of the Americas and is known to be a great source of vitamins C, A, fiber, and antioxidants. When ripe, this fruit has a butter-like texture with a fairly sweet flavor similar to cantaloupe and can be eaten raw, without skin or seeds. Papaya can be prepared in a variety of ways; you can mix them with grapefruit and avocado for a bright summer salad, add them to a zesty salsa for some sweetness, freeze them and turn them into refreshing popsicle spears, or bake them in the oven with a melted brown sugar mixture. The sky\'s the limit! Get ready for a taste-bud party with Fresh Papaya.', 'Creamy, butter-like flavor when ripe Rich in vitamins A, C, fiber, and antioxidants Fairly sweet flavor like cantaloupe and mango Great addition to smoothies, salads, salsa, and more Delicious and nutritious', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/68dc6b98-1c47-4d5b-8edf-ec73d319a040.8753fc2505594b8a1f11e7be644cfebe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68dc6b98-1c47-4d5b-8edf-ec73d319a040.8753fc2505594b8a1f11e7be644cfebe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68dc6b98-1c47-4d5b-8edf-ec73d319a040.8753fc2505594b8a1f11e7be644cfebe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2817506512, 'Freshness Guaranteed Melon Trio Medium', 8.98, '263526000002', 'short description is not available', 'Freshness Guaranteed Melon Trio Medium', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2829893059, 'Rancho Meladuco California-Grown Medjool Dates, Whole Fresh Un-Pitted, 1 lb. Box Dates', 10.9, '851418008139', 'Did you know dates are the only Superfood that tastes like Candy? Soft and chewy, dates taste like caramel and brown sugar. Our 1 lb. box of sweet and delicious California Grown Medjool Dates will become your new favorite go-to sweet treat. Dates are a nutrient dense, bite sized fruit grown in the warm sunny deserts of Southern California under our plentiful Sunshine. Celebrating the history of California\'s date farms and love affair with dates, you\'ll find a recipe for the classic roadside date shake right on the box. Dates are the better-for-you natural \"candy\", providing sustained energy and fuel for both competitive athletes and everyday people alike, and are versatile enough to add a touch of sweetness to countless dishes and recipes. Dates contain more potassium ounce for ounce than bananas and are a good source of daily fiber as well as containing iron, magnesium and other essential vitamins and nutrients. Despite their sweetness dates are lower on the glycemic index for people monitoring their blood sugar. We love our dates stuffed with a little crunchy nut butter, ice cream, or even tangy blue cheese. Chop them and add to oatmeal, yogurt, salads, or savory dishes or add them to your baked goods for a nutrient dense natural sweetener. Dates are one of the top trending foods for good reason and we\'re sure you\'ll fall in love with dates too! These dates contain a seed so please enjoy with care and remove the seed before eating. Allergen warning: our dates are packed in a facility that may also process tree nuts & peanuts. Allergens not contained: free of soy, gluten, egg, dairy, casein. Condition: Whole, un-pitted Organic Medjool dates. No sugar added. Shelf stable, but to enhance freshness store in a cool location.', 'One pound box of whole, un-pitted Medjool Dates Approximately 20-25 dates per pound Contains a seed, remove before eating. Tastes like caramel and brown sugar with hints of cinnamon Naturally sweet, whole fruit and nutrient dense superfood No added sugar CONTAINS WHOLE, UN-PITTED CALIFORNIA GROWN MEDJOOL DATES- Grown and hand picked in the Coachella Valley of Southern California. Our Dates are a delicious and nutritious snack that is perfect for any occasion. Our Dates are naturally SWEET and SOFT, and are packed with essential vitamins and minerals. They are a great source of dietary fibers, and are a great way to satisfy your sweet tooth without the guilt. Enjoy them as a snack, or add them to your favorite recipes for a delicous and healthy treat.', 'Rancho Meladuco Date Farm', 'https://i5.walmartimages.com/asr/4b1f0262-0812-4cfb-9787-f20dadcc6e10.4937c4155238eeb5f3dac0fe1d377544.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4b1f0262-0812-4cfb-9787-f20dadcc6e10.4937c4155238eeb5f3dac0fe1d377544.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4b1f0262-0812-4cfb-9787-f20dadcc6e10.4937c4155238eeb5f3dac0fe1d377544.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2838447209, '2.5lbs Organic Pitted Dates | 100% Algerian Deglet Noor | Certified ORGANIC, NON-GMO, VEGAN, KOSHER, naturally sweet and Gluten-free, NO sugar added, NO sulfurs or preservatives, Nut-Free.', 17.99, '860003981009', 'The Soleil Deglet Noor dates bring you a taste of tradition, purity, and nutritional goodness—all in one bite. No matter if you’re seeking organic dates pitted unsweetened or looking to stock up on dates bulk, this is the quality you’ve been waiting for. USDA ORGANIC CERTIFIED & ALL-NATURAL These halal dates are USDA Organic certified and made with nothing but nature—no added sugar, no sulfurs, no preservatives. Our pitted dates organic no sugar added are also non-GMO, gluten-free, and nut-free, making them a clean, guilt-free snack for any lifestyle. AUTHENTIC ALGERIAN DEGLET NOOR Harvested from Algeria’s sunlit oases, our Deglet dates—also known as Deglet Noor dates organic pitted—are cherished for their light golden translucence and firm texture. As one of the most sought-after dry dates, they’ve earned their title as “the Queen of all dates.” DISTINCTIVE FLAVOR & TEXTURE With just the right amount of medium sweetness, these dates organic offer a chewy bite and finish with a nutty note similar to roasted peanuts. They’re perfect straight out of the bag or added to recipes. NATURALLY ENERGIZING Rich in vitamins, minerals, and balanced natural sugars, these organic dates pitted unsweetened provide lasting energy. They’re an ideal snack, especially great dates for pregnancy, active lifestyles, or whenever you crave something sweet. PURITY YOU CAN TASTE From datiles naturales organicos to datiles organicos sin azucar, these seedless snacks are known across cultures for their purity and nutritional value. Available in organic dates bulk package for everyday enjoyment. Enjoy the heritage and flavor with the Soleil Deglet Noor dates organic pitted — your perfect choice for clean, nourishing, and versatile snacking. ORDER yours NOW. Whether you\'re stocking up on deglet dates bulk or trying dry dates for the first time, there\'s no better way to snack naturally.', 'USDA Organic Certified – Grown without synthetic pesticides or fertilizers, the Soleil organic pitted dates meet the highest organic standards and are fully USDA Organic certified. Premium Deglet Noor Variety – Known as \"the Queen of all dates,\" Deglet Noor organic dates (meaning \"dates of light\") are prized for their translucent appearance, medium sweetness, and firm texture. Delicious Nutty Flavor – These dried dates pitted no sugar added taste yummy and offer a pleasant, nutty aftertaste reminiscent of lightly roasted peanuts, making them a naturally satisfying treat. Nutrient-Rich Energy Boost – With balanced natural sugars, vitamins, and essential minerals, the organic dates pitted snacks make a healthy option when craving something sweet or a quick source of energy. 100% Natural & Allergen-Friendly – Non-GMO, gluten-free, nut-free, with no added sugar, sulfurs, or preservatives, these seedless dates are a clean and guilt-free indulgence. Healthy natural and delicious snack for the whole family!', 'Soleil', 'https://i5.walmartimages.com/asr/38566fae-5327-4b0e-b49c-e4de24fecc0c.0a8d2f5746cbcda5b716b39ea34c7017.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/38566fae-5327-4b0e-b49c-e4de24fecc0c.0a8d2f5746cbcda5b716b39ea34c7017.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/38566fae-5327-4b0e-b49c-e4de24fecc0c.0a8d2f5746cbcda5b716b39ea34c7017.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2857471990, 'Freshness Guaranteed Fruit Mix Large', 10.98, '263522000006', 'Enjoy a healthy snack with an assortment of popular fruits in this Freshness Guaranteed Fruit Mix. Arranged to perfection in a partitioned tray with a transparent lid. Tender and sweet, these different fruits provide you with the essential nutrients you need every day as you go on with your busy life. The separate partitions and the pre-cut fruits also make it a convenient option for snacking. Enjoy the sweet goodness of this Freshness Guaranteed Fruit Mix. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Fruit Mix Large', 'Freshness Guaranteed', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2878973462, 'Freshness Guaranteed Fresh Fruit Medley Bowl, 10 oz', 5.97, '194346097180', 'Experience a burst of fresh flavor with this Freshness Guaranteed Fresh Fruit Medley Bowl. This delicious medley contains strawberries, blueberries and coconut and blueberries arranged in a transparent tray with a lid. Carry them with you and eat them straight out of the tray any time you want, at home or on the go. You can also use them to top desserts and ice creams, in a fruit salad or blend them with ice to make smoothies. Add some fresh fruit to your day with this Freshness Guaranteed Fresh Fruit Medley Bowl. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Fresh Fruit Medley Bowl, 10 oz Delicious mix of strawberries, blueberries, and coconuts Sweet, refreshing treat Great for breakfast, lunch, dessert, or when you want a snack Ingredients may vary by season Enjoy right out of the container, blend into a smoothie, or use as a fresh topping for ice cream and more Share with friends and family or keep for yourself Comes in a re-closable container to help maintain freshness', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/b0f678f1-7013-4d96-8246-a276a875f782.943dda685e9845a4b5860c0f72b1280f.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b0f678f1-7013-4d96-8246-a276a875f782.943dda685e9845a4b5860c0f72b1280f.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b0f678f1-7013-4d96-8246-a276a875f782.943dda685e9845a4b5860c0f72b1280f.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2891463141, 'Melon Trio 16 Oz', 6.47, 'deleted_717524415806', 'short description is not available', 'Melon Trio 16 Oz', 'Unbranded', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2892696341, 'Superfresh Granny Smith Kids Apples, 2lb - Fresh Tart & Crisp Variety', 5.46, '883391000794', 'Discover the irresistible flavor of Superfresh Granny Smith Apples. These crisp and juicy apples are known for their tart, subtly sweet taste and firm texture. Perfect for various recipes, they can be used in both savory and sweet dishes. Enjoy them fresh, as a snack, or incorporate them into your meals for breakfast, lunch, and dinner. Cook them with butter and spices for a simple delight, or create an apple pie that everyone loves. Superfresh Granny Smith Apples are ideal for every occasion and meal.', 'Firm and juicy with a crisp texture and a tart, acidic, yet subtly sweet flavor Perfect for breakfast, lunch, dinner, or dessert Enjoy fresh as a snack or cook in a skillet for easy dishes Create sweet treats like apple pies or savory dishes like apple slaw Flexible ingredient for a wide range of recipes Naturally grown and handpicked for the best quality', 'Superfresh Kids', 'https://i5.walmartimages.com/asr/ddb68a2a-e882-4080-9913-b66b38c8e217.572b8479db3d0b2a326737e498ad1730.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ddb68a2a-e882-4080-9913-b66b38c8e217.572b8479db3d0b2a326737e498ad1730.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ddb68a2a-e882-4080-9913-b66b38c8e217.572b8479db3d0b2a326737e498ad1730.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2918254984, 'Fresh Driscoll\'s Tropical Bliss Strawberries, 9 oz Container', 3.99, '715756211333', 'The berry bursting with natural flavors of fruit punch, pineapple and passionfruit, these juicy strawberries are selected for their extra-sweet deliciousness. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, or mix them with cucumbers for a light and flavorful salad. They contain essential vitamins and nutrients like vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use.', 'Premium selection Only Driscoll\'s grows Tropical Bliss Strawberries from one proprietary berry variety. Driscoll\'s Tropical Bliss Strawberries combine the classic flavor or sweet berries and refreshing notes of tropical punch, with hints of pineapple and passionfruit. With naturally white and yellow hues, they are perfectly ripe and intensely sweet at first, balanced by a crisp finish. Refrigerate your strawberries in the original Clam Shell tray to maintain freshness Delicious on their own as a healthy snack or as part of a recipe Rich in vitamin C', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/1ebc796c-b840-4e08-8c39-300760d84f57.c4c6ec410d9547a3a86630a4b703f559.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1ebc796c-b840-4e08-8c39-300760d84f57.c4c6ec410d9547a3a86630a4b703f559.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1ebc796c-b840-4e08-8c39-300760d84f57.c4c6ec410d9547a3a86630a4b703f559.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2927637126, 'Fieldpack Unbranded Fresh Blueberries Dry Pint', 3.96, '793573199850', 'short description is not available', 'Fieldpack Unbranded Fresh Blueberries Dry Pint', 'FIELDPACK UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (2948406945, 'Fresh Strawberries, 1 lb', 3.24, '852575008741', 'The sweet, juicy flavor of Fresh Strawberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. They contain essential vitamins and nutrients like, vitamin C, dietary fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh Strawberries today and savor the delectable flavor.', 'Prior to serving gently wash the fruit and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/b54a64ad-e961-46cf-b60c-bc763716fb0b.a481cdfd237c5ab5438d5c9e90bead07.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b54a64ad-e961-46cf-b60c-bc763716fb0b.a481cdfd237c5ab5438d5c9e90bead07.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b54a64ad-e961-46cf-b60c-bc763716fb0b.a481cdfd237c5ab5438d5c9e90bead07.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3013821133, 'Fresh Blueberries, 6 oz', 4.12, '850011052044', 'Fresh Blueberries are a delightful and nutritious treat that brings a burst of flavor to any dish. These plump and juicy berries are picked at the peak of freshness, ensuring a sweet and tangy taste that is hard to resist. Perfect for snacking, baking, or adding to your favorite recipes, these blueberries are a versatile fruit that can be enjoyed in countless ways. Whether you sprinkle them on top of your morning cereal, blend them into a smoothie, or bake them into a delicious pie, Fresh Blueberries are sure to satisfy your cravings for a healthy and delicious snack.', 'Are you ready to experience the vibrant taste and health benefits of Fresh Blueberries? These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Blueberries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. The versatility of blueberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack, or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these blue gems into your baking endeavors, whether it\'s muffins, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Not only are blueberries delicious, but they also offer an array of health benefits. Loaded with antioxidants, vitamins, and dietary fiber, blueberries are known to promote heart health, support brain function, and boost the immune system. They are a nutritious choice that will keep you feeling good from the inside out. Our Fresh Blueberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness. Treat yourself to the delightful taste and nutritional benefits of Fresh Blueberries. Elevate your dishes, satisfy your cravings, and experience the joy of these plump and juicy berries. Order your batch today and unlock a world of flavor and wellness. Fresh', 'Fresh Produce', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3046250946, 'Welch Fresh Black Seedless Grapes, 3lb', 9.97, '095829210556', 'Treat yourself to the delicious, juicy flavor of Fresh Black Seedless Grapes. These grapes are bursting with flavor and are completely seedless, so you can easily enjoy a handful as a fresh snack any time of day. Prized for their lush, juicy pulp, very sweet flavors, and highly aromatic skins that offer a pleasant chewiness, they are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto.', 'Welch fresh black Seedless Grape Wash before use Keep refrigerated', 'Welch\'s', 'https://i5.walmartimages.com/asr/04f6076f-bc86-46c9-a597-5bd2f455c266.ec41895adce76827f713d880764e05a9.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/04f6076f-bc86-46c9-a597-5bd2f455c266.ec41895adce76827f713d880764e05a9.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/04f6076f-bc86-46c9-a597-5bd2f455c266.ec41895adce76827f713d880764e05a9.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3048415499, 'Ingrilli 100% Lemon Juice from Concentrate, 7 Fl Oz Squeeze Bottles (Pack of 6)', 21.98, '642709101840', 'The Highest Product Standards From our orchard-to-bottle manufacturing process to our strict quality standards, we take pride in knowing that every bottle of Ingrilli products lives up to the Ingrilli family name. TRULY ORGANIC PRODUCTS At Ingrilli, we don’t just “label” our organic line as such – we live it. We test every batch of our organic products against common pesticides, and we have zero tolerance for any contamination or preservatives. That’s why we’ve earned the official USDA Organic seal of approval. NON-GMO Ingrilli is proud to be an official participant of the Non-GMO Project, and we are Non-GMO Project verified for all of our products. A TRADITION OF HIGH MANUFACTURING STANDARDS When we first opened our doors in 1880, we promised to deliver the highest-quality, freshest products on the market – and we still live to that standard today. That’s why we only use the freshest fruit and the latest production equipment, processes, and facilities to produce every bottle of Ingrilli juice on the shelves', 'FRESH FLAVOR, FRESH TASTE: Made from Argentinian and Brazilian 100% lemon juice concentrate, Ingrilli tastes as fresh as cutting into fresh lemons VERSATILE FLAVOR: Ingrilli 100% Lemon Juice can be used for cooking, baking, salads and drink mixers. GOOD FOR EVERYONE: Ingrilli 100% Lemon Juice is Non-GMO Project Verified, OU kosher certified, Vegan Certified and Gluten-Free', 'Ingrilli', 'https://i5.walmartimages.com/asr/531b1eb0-95fc-453d-89b9-56f16af423a5.d1d46245d2a47ee56120c38cf9dc9044.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/531b1eb0-95fc-453d-89b9-56f16af423a5.d1d46245d2a47ee56120c38cf9dc9044.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/531b1eb0-95fc-453d-89b9-56f16af423a5.d1d46245d2a47ee56120c38cf9dc9044.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3109520666, 'Nature Fresh USDA Organic Greenhouse Grown Strawberries, 12 oz Container', 6.98, '689259005723', 'The sweet, juicy flavor of Fresh USDA Organic Greenhouse Grown Strawberries make them a refreshing and delicious treat. These sweet and flavorful strawberries are our premium selection. They are great for homemade smoothies, desserts, or enjoying as a yummy and healthy snack. Serve up a bowl plain or topped with whipped cream for a delicious treat. Add to fruit salads, ice cream, yogurt or milkshakes. Use it to top off cereal, pancakes or waffles. It is also great as a topping for strawberry cheesecake and other dessert recipes. These organic berries contain essential vitamins and nutrients like, vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use.', 'Premium selection Certified organic Prior to serving gently wash the strawberries and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'Nature Fresh', 'https://i5.walmartimages.com/asr/eb86f20b-ffe7-4a37-8ec3-d7b714915603.f01b04d31fe002da0f41d0e4f43348a6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eb86f20b-ffe7-4a37-8ec3-d7b714915603.f01b04d31fe002da0f41d0e4f43348a6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/eb86f20b-ffe7-4a37-8ec3-d7b714915603.f01b04d31fe002da0f41d0e4f43348a6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3132157567, 'Del Monte Pineapple Mango Chunks in Extra Light Syrup, 52', 8.97, '024000258209', 'Del Monte Pineapple Mango Chunks in Extra Light Syrup, 52 oz Jar makes it easy to enjoy high quality fruit in minutes. Pineapple and mango chunks are carefully packed in extra light syrup for a ready to eat fruit snack you can feel good about. Del Monte Pineapple Mango Chunks in Extra Light Syrup offers a good source of Vitamin C, making a convenient, wholesome and ready to eat fruit option for busy nights. Picked and packed at the peak of freshness, and immersed in extra light syrup, the Del Monte jarred fruit is ideal as part of a quick lunch snack or as a flavorful addition to fruit cocktail or salads. Each jar is easy to open, reseal, and store for a convenient fruit snack whenever you need delicious fruit on-the-go. Bring wholesome goodness to your family with Del Monte!', 'One 52 oz jar of Del Monte Pineapple Mango Chunks in Extra Light Syrup Del Monte Pineapple Mango Chunks in Extra Light Syrup offers a quick and easy way to have a citrus fruit snack in just minutes Made with pineapple and mango picked at the peak of freshness and immersed in extra light syrup Del Monte Pineapple Mango Chunks in Extra Light Syrup is ideal for fruit cocktail or salads Bring wholesome goodness to your family with Del Monte Pineapple Mango Chunks in Extra Light Syrup', 'Del Monte', 'https://i5.walmartimages.com/asr/5904b2c7-5c23-45a1-85d6-cec38c052ae0.12bb5a1debf27855b50f07921a11b676.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5904b2c7-5c23-45a1-85d6-cec38c052ae0.12bb5a1debf27855b50f07921a11b676.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5904b2c7-5c23-45a1-85d6-cec38c052ae0.12bb5a1debf27855b50f07921a11b676.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3194841369, 'Freshness Guaranteed Fruit Mix, 32 oz', 7.97, '194346121526', 'Indulge in a burst of fruity goodness with Freshness Guaranteed Fruit Mix! This delectable blend of cantaloupe, grapes, and blueberries is perfect for snacking, potlucks, and dinner parties. You can also use it to add a sweet, flavorful touch to your desserts, ice creams, fruit salads, or smoothies. Packed with essential nutrients, this tender and sweet fruit mix offers a medley of flavors that will leave your taste buds craving for more. Treat yourself to some fresh fruits every day with Freshness Guaranteed Fruit Mix. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Fruit Mix, 32 oz Delicious blend of cantaloupe, grapes, and blueberries Bring the container to a potluck, dinner party, or enjoy some straight out of the container Use to top desserts and ice creams, in a fruit salad, or blend them with ice to make smoothies', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/886b4c94-b246-46a4-aae8-bfad30a3b6ac.c9f318b45c967c031be8a53c557fd762.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/886b4c94-b246-46a4-aae8-bfad30a3b6ac.c9f318b45c967c031be8a53c557fd762.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/886b4c94-b246-46a4-aae8-bfad30a3b6ac.c9f318b45c967c031be8a53c557fd762.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3255413172, 'Fresh Apricots, 1 lb', 3.98, '033383402505', 'Treat everyone to the sweet taste of Fresh California Grown Apricots. These apricots are great to pack in lunches or to hand out to the kids as a tasty after-school snack. Add these apricots to a fruit salad to serve at your next party or to a delectable salad as a sweet topping. Serve them with cheese, salami, and almonds for a wonderful picnic cheese plate. You could also slice them to top your yogurt and granola for a healthy breakfast, or even make a tasty apricot crumble dessert for your next dinner party. The culinary opportunities are endless with Fresh California Grown Apricots.', 'Fresh California Grown Apricots, 16 oz Clam Shell Enjoy on their own as a satisfying snack Use in a variety of baking recipes Make a tasty jam or a smooth sorbet Slice as a sweet topping for waffles or pancakes Add to iced tea to create a refreshing summertime flavor', 'Produce UB', 'https://i5.walmartimages.com/asr/58f608b4-1e61-4e2d-b399-29535b43cac3.699ad7120cdb554eaec886680d225c20.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58f608b4-1e61-4e2d-b399-29535b43cac3.699ad7120cdb554eaec886680d225c20.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/58f608b4-1e61-4e2d-b399-29535b43cac3.699ad7120cdb554eaec886680d225c20.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3273044853, 'Fresh Navel Oranges, 4 lb Bag', 4.96, 'deleted_818654011712', 'Fresh Oranges are a good addition to a healthy diet along with other fruit. They\'re oval with thick, easy-to-remove peel and segments that separate cleanly. Oranges are a fruit that contains vitamin C and other nutrients that can be eaten as is or juiced for a smooth beverage at breakfast. It is suitable for use in all kinds of sweet and savory dishes, from cakes to weeknight chicken dinners. Citric acid fruits like oranges can be stored at room temperature for several days or in the refrigerator for up to two weeks. Available in a 4 lb package.', 'A good addition to a healthy diet Easy to peel segments High in Vitamin C and A making it a healthy choice. Perfect blend of tart and sweet. Enjoy it for yourself or send it as a gift. Mailed straight from the grower in Indian River County Florida as fresh as it gets! Store fresh oranges at room temperature or refrigerate', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/f74666a9-0646-412e-8ee6-752fde0782cc.09c0b695647707e0e81564cda80ceb95.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f74666a9-0646-412e-8ee6-752fde0782cc.09c0b695647707e0e81564cda80ceb95.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f74666a9-0646-412e-8ee6-752fde0782cc.09c0b695647707e0e81564cda80ceb95.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3324679059, 'Del Monte Red Grapefruit in Extra Light Syrup, 52 oz Jar', 8.97, '024000258162', 'Del Monte Red Grapefruit in Extra Light Syrup, 52 oz Jar makes it easy to enjoy high quality fruit in minutes. Red Grapefruit is packed with delicious, ripe grapefruit slices in extra light syrup for a ready to eat fruit snack you can feel good about. Del Monte Red Grapefruit in Extra Light Syrup offers a good source of Vitamin C, making a convenient, wholesome and ready to eat citrus fruit option for busy nights. Picked and packed at the peak of freshness, peeled and sectioned, and immersed in extra light syrup, the jarred fruit slices are ideal as part of a quick lunch snack or as a flavorful addition to fruit cocktail. Each jar is easy to open, reseal, and store for a convenient fruit snack whenever you need delicious fruit on-the-go. Bring wholesome goodness to your family with Del Monte!', 'One 52 oz jar of Del Monte Red Grapefruit in Extra Light Syrup Del Monte Red Grapefruit in Extra Light Syrup offers a quick and easy way to have a citrus fruit snack in just minutes Made with red grapefruit picked at the peak of freshness and immersed in extra light syrup Del Monte Red Grapefruit in Extra Light Syrup is ideal for fruit cocktail or salads Bring wholesome goodness to your family with Del Monte Red Grapefruit in Extra Light Syrup', 'Del Monte', 'https://i5.walmartimages.com/asr/aa7099b7-725d-4df9-ba62-1cf0af297908.099f2ac0ff45898ca86c20aead92fa1a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa7099b7-725d-4df9-ba62-1cf0af297908.099f2ac0ff45898ca86c20aead92fa1a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/aa7099b7-725d-4df9-ba62-1cf0af297908.099f2ac0ff45898ca86c20aead92fa1a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3453246207, 'Pitted Dates - 10oz-Naturally Sweet and Nutrient-Rich Pitted Dates', 9.98, '783214600234', 'Indulge in the naturally sweet and nutrient-rich goodness of Pitted Dates - 10oz. These delicious fruits offer a satisfyingly sweet flavor that is perfect for curbing cravings and providing a quick energy boost. Packed with essential vitamins, minerals, and fiber, pitted dates are not only delicious but also offer numerous health benefits. They are naturally rich in antioxidants and are known to support digestion, boost energy levels, and promote overall well-being. Enjoy pitted dates straight out of the package as a convenient and wholesome snack option. Their chewy texture and sweet taste make them a delightful treat for any time of day. Additionally, you can easily incorporate pitted dates into your favorite recipes, such as smoothies, baked goods, salads, and more, for added sweetness and nutritional value. Each package contains 10oz of pitted dates, providing ample quantity for snacking or cooking needs. Whether you\'re at home, at work, or on the go, these conveniently packaged dates are perfect for satisfying hunger and nourishing your body with natural goodness. Choose pitted dates as a healthier alternative to processed snacks, as they are low in fat, cholesterol-free, and offer a natural source of sweetness that is free from added sugars. Elevate your snacking experience with the wholesome goodness of pitted dates and enjoy a delicious and nutritious treat with every bite. Net Weight:10 oz', 'Natural Sweetness: These pitted dates offer a naturally sweet flavor, perfect for satisfying sweet cravings without added sugars. Nutrient-Rich: Pitted Dates are packed with essential vitamins, minerals, and fiber, making them a wholesome and nutritious snack option. Versatile Use: Enjoy pitted dates on their own as a quick and convenient snack, or incorporate them into recipes for added sweetness and texture. Convenient Packaging: Each package contains 10oz of pitted dates, providing a convenient and portable snack option for on-the-go indulgence. Healthy Snacking: Dates are low in fat and cholesterol-free, making them an excellent choice for those looking to maintain a balanced and healthy diet.', 'Motherland Groceries', 'https://i5.walmartimages.com/asr/42228025-ba16-4bf4-b998-6dae6d2136ca.024cbd31eb47043482a4ea0e5faeac26.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42228025-ba16-4bf4-b998-6dae6d2136ca.024cbd31eb47043482a4ea0e5faeac26.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/42228025-ba16-4bf4-b998-6dae6d2136ca.024cbd31eb47043482a4ea0e5faeac26.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3474874939, 'Freshness Guaranteed Watermelon 32 Oz', 7.36, 'deleted_717524409614', 'Experience a burst of summertime goodness with this delicious Freshness Guaranteed Watermelon. This pre-cut ripe watermelon is juicy, sweet, and refreshing to the taste. In addition, watermelons are a great natural source of vitamins A and C. Carry them with you and eat them straight out of the tray any time you want, at home, or on-the-go. Pair them with a tasty salad or sandwich for a nutritious and delicious lunch. You can also use them as a naturally sweet ingredient in a fruit salad. Add some fresh fruit to your daily menu with this Freshness Guaranteed Watermelon.Freshness Guaranteed provides you and your family with high quality fresh food that save you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Watermelon 32 Oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3506401309, 'Fresh Envy Apples, 2 lb Bag', 4.97, 'deleted_804305001270', 'Treat yourself to the ultimate apple experience when you bring home Fresh Envy Apples. Whether sliced on top of salad, served on a platter with your favorite cheese or eaten \"au naturel,\" Envy apple makes the experience so much more memorable and remarkable for you and the ones you love. There are people who simply accept what life offers up and then there are those who seek more. Envy shows that you choose to make each moment supremely delightful and that you know the difference between ordinary and extraordinary. Envy is an invitation to enjoy a small moment to savour and raise your expectations of what an apple can be.', 'Envy apples Enjoy the ultimate apple experience Beautifully balanced sweetness Uplifting fresh aroma Delightfully satisfying crunch Adds flavor to a variety of recipes', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1b8e5adc-122a-4e3b-8afc-fdfd0859b0ad.43ed09716e46e0bb470a86621df2af36.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1b8e5adc-122a-4e3b-8afc-fdfd0859b0ad.43ed09716e46e0bb470a86621df2af36.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1b8e5adc-122a-4e3b-8afc-fdfd0859b0ad.43ed09716e46e0bb470a86621df2af36.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3540968236, 'Fresh Grown White Nectarines', 0.76, 'deleted_799424030358', 'short description is not available', 'Fresh Grown White Nectarines', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3662658848, 'Fresh Clementines, 3lb Bag', 6.47, '860003000670', 'Enjoy the juicy goodness of citrus when you eat a Fresh Clementine. Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Among the smallest fruits in the orange family, clementines have a pleasing sweet-tart flavor and are typically seedless. Generally a winter fruit, clementines are now available year-round in most markets. Clementines are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the mandarins hang out in a bowl on your counter or table to breathe. Compact and portable, clementines are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious Fresh Clementines on hand for an easy, healthy treat.', 'Delicious, sweet, juicy citrus Pleasing sweet-tart flavor Easy to peel and segment Excellent source of vitamin C, potassium, and folic acid For maximum flavor, do not refrigerate Typically seedless You\'ll have plenty for everyone with this 3-pound bag', 'Fieldpack Unbranded', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d9ab5cfa-d0a8-4811-89a4-21340d203979.38416fb0219739eb6a2502179f5b8a34.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3709040623, 'Ingrilli 100% Lemon Juice from Concentrate, 4 Fl Oz Squeeze Bottles (Pack of 24)', 31.92, '642709101741', 'The Highest Product Standards From our orchard-to-bottle manufacturing process to our strict quality standards, we take pride in knowing that every bottle of Ingrilli products lives up to the Ingrilli family name. TRULY ORGANIC PRODUCTS At Ingrilli, we don’t just “label” our organic line as such – we live it. We test every batch of our organic products against common pesticides, and we have zero tolerance for any contamination or preservatives. That’s why we’ve earned the official USDA Organic seal of approval. NON-GMO Ingrilli is proud to be an official participant of the Non-GMO Project, and we are Non-GMO Project verified for all of our products. A TRADITION OF HIGH MANUFACTURING STANDARDS When we first opened our doors in 1880, we promised to deliver the highest-quality, freshest products on the market – and we still live to that standard today. That’s why we only use the freshest fruit and the latest production equipment, processes, and facilities to produce every bottle of Ingrilli juice on the shelves', 'FRESH FLAVOR, FRESH TASTE: Made from Argentinian and Brazilian 100% lemon juice concentrate, Ingrilli tastes as fresh as cutting into fresh lemons VERSATILE FLAVOR: Ingrilli Lemon Juice can be used for cooking, baking, salads and drink mixers. GOOD FOR EVERYONE: Ingrilli Lemon juice is is Non-GMO Project Verified, OU kosher certified, Vegan Certified and Gluten-Free', 'Ingrilli', 'https://i5.walmartimages.com/asr/3cbabd0c-5616-4708-9105-82c00edf9947.cf776292cff59bc6bbb7f4773d75669c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3cbabd0c-5616-4708-9105-82c00edf9947.cf776292cff59bc6bbb7f4773d75669c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3cbabd0c-5616-4708-9105-82c00edf9947.cf776292cff59bc6bbb7f4773d75669c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3711629612, '11LB Large Size Medjool Dates-Golden Dates Farm-California Fresh-Dried Fruits', 46, '727785392273', 'Our Medjool dates have no added preservatives and no chemical. They taste great and are the best quality you will get at a reasonable price. They are naturally and locally grown in California by Golden Dates Farm. These Medjool dates have plenty of health benefits. They contain potassium, fibers, vitamin B, and much more. Simply eat them as a snack on their own or add them to oatmeal, shakes, baked goods, or smoothies. If you have any questions feel free to message us!', 'Fresh Medjool Dates Large Size Dried Fruit Sweet Juicy Naturally and Locally Grown in California Dried Fruit Medjool', 'Golden Dates Farm', 'https://i5.walmartimages.com/asr/1927d188-da79-42b2-8e93-7e42234d2955.97d9b453ebac89f65c5d02ed5e40b07f.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1927d188-da79-42b2-8e93-7e42234d2955.97d9b453ebac89f65c5d02ed5e40b07f.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1927d188-da79-42b2-8e93-7e42234d2955.97d9b453ebac89f65c5d02ed5e40b07f.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3775809406, 'Fresh Navel Oranges, 8 lb Bag', 8.94, 'deleted_033383130064', 'Enjoy the juicy goodness of these Large Bagged Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, these Large Bagged Oranges will add flavor to any meal or beverage.', 'A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3794301012, 'Seneca Original Apple Chips | Made from Fresh 100% Red Delicious Apples | Yakima Valley Orchards | Seasonally Picked | Crisped Apple Perfection | Foil-Lined Freshness Bag | 0.7 ounce (Pack of 24)', 30.99, '', 'Seneca Original Apple Chips are seasonally grown and harvested from orchards located in the fertile, rich volcanic soils of the Pacific Northwest\'s Yakima Valley region in Washington State.', 'Seneca Original Apple Chips | Made from Fresh 100% Red Delicious Apples | Yakima Valley Orchards | Seasonally Picked | Crisped Apple Perfection | Foil-Lined Freshness Bag | 0.7 ounce (Pack of 24)', 'Seneca Foods', 'https://i5.walmartimages.com/asr/d3c4c41e-f7bb-4671-844c-c9ea62534744.221b83be577b0ebe164c2ae791ecdf16.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d3c4c41e-f7bb-4671-844c-c9ea62534744.221b83be577b0ebe164c2ae791ecdf16.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d3c4c41e-f7bb-4671-844c-c9ea62534744.221b83be577b0ebe164c2ae791ecdf16.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3851283793, 'Medjool Dates: Naturally Sweet, Pure, and Chemical-Free', 14.99, '783214599569', 'Savor the untainted sweetness with our Medjool Dates – a naturally sweet, pure, and chemical-free delight. Experience the purely plump and juicy texture of these dates, free from any chemical additives, ensuring an authentic and unaltered taste that nature intended. Our Medjool Dates provide a nutrient boost without the use of any chemicals, Enjoy their natural sweetness on its own or incorporate them into your sweet and savory dishes, adding a chemical-free touch to your culinary creations. Experience a natural and chemical-free energy boost with the high content of natural sugars like glucose, fructose, and sucrose found in Medjool Dates. Whether enjoyed as a quick vitality snack or integrated into your meals, these dates stand as a wholesome and natural choice. For your convenience and purity, our premium Organic Medjool Dates come pit-freed, ensuring an unaltered, chemical-free snacking experience. Elevate your snacking moments with the simplicity and authenticity of Organic Medjool Dates – a pure and naturally sweet gem.', 'Unadulterated Sweetness: Our Medjool Dates are a naturally sweet delight, untainted by chemicals, providing a pure and genuine flavor. Purely Plump and Juicy: Indulge in the purely plump and juicy texture of our Medjool Dates, free from any chemical additives, ensuring an authentic and unaltered taste. Chemical-Free : Our Organic Medjool Dates offer a nutrient-rich snack without the use of any chemicals. Versatile Culinary Delight: Enjoy the pure and natural sweetness of Medjool Dates on their own or incorporate them into sweet and savory dishes, adding a chemical-free sweetness to your culinary creations. Energy Boost, Naturally: With natural sugars like glucose, fructose, and sucrose, these dates provide a natural and chemical-free energy boost, making them a wholesome choice for quick vitality. Pit-Freed and Unaltered: Our premium Organic Medjool Dates come pit-freed, ensuring an unaltered, chemical-free snacking experience, maintaining the integrity of these naturally sweet gems.', 'Motherland Groceries', 'https://i5.walmartimages.com/asr/95ea795f-9644-4c4c-8cf8-ef0ee8739999.cf69436d080378aa20aa0242a8bbcdef.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/95ea795f-9644-4c4c-8cf8-ef0ee8739999.cf69436d080378aa20aa0242a8bbcdef.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/95ea795f-9644-4c4c-8cf8-ef0ee8739999.cf69436d080378aa20aa0242a8bbcdef.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3864761761, 'Fresh Navel Oranges, 8 lb Bag', 8.94, 'deleted_036515110088', 'Fresh Oranges are a good addition to a healthy diet along with other fruit. They\'re oval with thick, easy-to-remove peel and segments that separate cleanly. Oranges are a fruit that contains vitamin C and other nutrients that can be eaten as is or juiced for a smooth beverage at breakfast. It is suitable for use in all kinds of sweet and savory dishes, from cakes to weeknight chicken dinners. Citric acid fruits like oranges can be stored at room temperature for several days or in the refrigerator for up to two weeks. Available in a 8 lb package.', 'A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3882100423, 'Freshness Guaranteed Seasonal Fruit Blend 10 Oz', 3.57, 'deleted_717524784254', 'Freshness Guaranteed Seasonal Fruit Blend 10 ounces in a plastic container. This delicious Seasonal Fruit Blend is ready to eat and is a healthy snack.', 'Freshness Guaranteed Seasonal Fruit Blend 10 Oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1935136a-1e17-4b5f-8d6a-b362a07e7163.03d5778a809fbcaa05e17582053f6cf0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3912916823, 'Ingrilli 100% Lemon Juice from Concentrate, 4 Fl Oz Squeeze Bottles (Pack of 6)', 15.43, '642709101727', 'The Highest Product Standards From our orchard-to-bottle manufacturing process to our strict quality standards, we take pride in knowing that every bottle of Ingrilli products lives up to the Ingrilli family name. TRULY ORGANIC PRODUCTS At Ingrilli, we don’t just “label” our organic line as such – we live it. We test every batch of our organic products against common pesticides, and we have zero tolerance for any contamination or preservatives. That’s why we’ve earned the official USDA Organic seal of approval. NON-GMO Ingrilli is proud to be an official participant of the Non-GMO Project, and we are Non-GMO Project verified for all of our products. A TRADITION OF HIGH MANUFACTURING STANDARDS When we first opened our doors in 1880, we promised to deliver the highest-quality, freshest products on the market – and we still live to that standard today. That’s why we only use the freshest fruit and the latest production equipment, processes, and facilities to produce every bottle of Ingrilli juice on the shelves', 'FRESH FLAVOR, FRESH TASTE: Made from Argentinian and Brazilian 100% lemon juice concentrate, Ingrilli tastes as fresh as cutting into fresh lemons VERSATILE FLAVOR: Ingrilli Lemon Juice can be used for cooking, baking, salads and drink mixers. GOOD FOR EVERYONE: Ingrilli Lemon juice is is Non-GMO Project Verified, OU kosher certified, Vegan Certified and Gluten-Free', 'Ingrilli', 'https://i5.walmartimages.com/asr/3cbabd0c-5616-4708-9105-82c00edf9947.cf776292cff59bc6bbb7f4773d75669c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3cbabd0c-5616-4708-9105-82c00edf9947.cf776292cff59bc6bbb7f4773d75669c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3cbabd0c-5616-4708-9105-82c00edf9947.cf776292cff59bc6bbb7f4773d75669c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3916211150, 'Fresh Lemon, Each', 0.58, '', 'Lemons are a kitchen essential, known for their bright yellow color and tangy, refreshing flavor. Perfect for cooking, baking, and beverages, they add a zesty touch to both sweet and savory dishes. Packed with vitamin C and natural antioxidants, lemons are not only delicious but also a nutritious choice for enhancing your meals and drinks with vibrant freshness. Available by the each.', 'Sold individually Firm fruit with spots of green will be the most tart but; the flavor will mellow and rind will yellow more over time Packed with vitamin C Ideal for making lemon water, iced tea, and lemonade Use for adding flavor to baked fish and sauces Tasty ingredient in desserts Available for in-store purchase only', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/5594b6bc-4970-4e57-9041-01e84cef443a.0d5cc90345977bc8ddaa7c6602a4c383.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5594b6bc-4970-4e57-9041-01e84cef443a.0d5cc90345977bc8ddaa7c6602a4c383.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5594b6bc-4970-4e57-9041-01e84cef443a.0d5cc90345977bc8ddaa7c6602a4c383.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3976863513, 'Fresh Passion Fruit, Each', 2.74, 'deleted_851502006348', 'Get ready for a tropical taste bomb with this juicy Fresh Passion Fruit. This fresh and whole fruit has a hard purple shell protecting the bright yellow interior with black seeds. Cut the fruit in half, scoop the pulp out with a spoon and enjoy. If it\'s too tart, try sprinkling sugar to sweeten the treat. You can also use this fresh passion fruit in several baking recipes including a delicious cream pie or fruit truffles. You can even use them to make a marinade or a passion fruit vinaigrette. However you choose to use them, their sweet flavor will bring a smile to everyone\'s face. Treat the family to the irresistible taste of Fresh Passion Fruit.', 'Fresh Passion Fruit, Each Sweet and juicy Fresh and whole fruit with a hard purple shell Scoop the pulp out with a spoon and enjoy Use to make a delicious cream pie or fruit truffles Make a marinade or a passion fruit vinaigrette salad dressing', 'Fresh Produce', 'https://i5.walmartimages.com/asr/68dc6b98-1c47-4d5b-8edf-ec73d319a040.8753fc2505594b8a1f11e7be644cfebe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68dc6b98-1c47-4d5b-8edf-ec73d319a040.8753fc2505594b8a1f11e7be644cfebe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68dc6b98-1c47-4d5b-8edf-ec73d319a040.8753fc2505594b8a1f11e7be644cfebe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3980497997, 'Freshness Guaranteed Melon Mix, 32 oz', 9.97, '194346121519', 'Get ready for a burst of fruity goodness with Freshness Guaranteed Melon Mix! This delicious blend of cantaloupe and honeydew is perfect for snacking, potlucks, and dinner parties. You can also use it to add a sweet, flavorful touch to your desserts, ice creams, fruit salads, or smoothies. Packed with essential nutrients, this tender and sweet fruit blend offers a medley of flavors that you need every day. Add some fresh fruits to your daily menu today with Freshness Guaranteed Melon Mix! Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Melon Mix, 32 oz Delicious blend of cantaloupe and honeydew Bring the container to a potluck, dinner party, or enjoy some straight out of the container Use to top desserts and ice creams, in a fruit salad, or blend them with ice to make smoothies', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/b2f6ec48-59eb-4747-b132-10fbc6935e69.4fbb2f9483ad19ed042cd2d8defa4d48.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b2f6ec48-59eb-4747-b132-10fbc6935e69.4fbb2f9483ad19ed042cd2d8defa4d48.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b2f6ec48-59eb-4747-b132-10fbc6935e69.4fbb2f9483ad19ed042cd2d8defa4d48.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (3989756577, 'Fresh Navel Oranges, 8 lb Bag', 8.94, 'deleted_845857001448', 'Fresh Oranges are a good addition to a healthy diet along with other fruit. They\'re oval with thick, easy-to-remove peel and segments that separate cleanly. Oranges are a fruit that contains vitamin C and other nutrients that can be eaten as is or juiced for a smooth beverage at breakfast. It is suitable for use in all kinds of sweet and savory dishes, from cakes to weeknight chicken dinners. Citric acid fruits like oranges can be stored at room temperature for several days or in the refrigerator for up to two weeks. Available in a 8 lb package.', 'A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/96fc49a5-e281-4329-8a19-8da6dd59fb9f.182dd7b4be8635bae8fefed18a8eefd1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5044430820, 'MEDJOOL DATES. Premium Fresh Small Dates. Packed in Box. Tight Skin Naturally Grown in California. (5lb)', 28.99, '744365767306', 'Small Premium Medjool Dates Grown in California at Golden Dates Farm Packed in Boxes - Experience the essence of natural sweetness with our Small Premium Medjool Dates! These petite gems are handpicked for exceptional quality, delivering a delightful burst of flavor. With their 30% moisture content and chewy texture, they\'re ideal for snacking, culinary creations, or gifting on special occasions. Store in a cool, dry area, store in the box or container in the refrigerator or freezer. A healthy and natural sweet snack that is loaded with beneficial vitamins and minerals. Direct from our farm to your door! Grown and packed in California USA - Free Priority Mail USPS Shipping.', 'Medjool Dates packed in shrink wrapped box. Straight from our farm to your door. No Preservatives, Non GMO, Vegan, No artificial additives. Mother Nature’s gift. Healthy & tasty all natural energy. Perfect for snacking, sweetening cereals or your favorite drink. High in Fiber, Antioxidants, Omega Fats, and loaded with Protein. Low Carb\'s. Naturally Heart Healthy & Cholesterol Free. Healthy life style’s Essentials. Vegetarian /Vegan delight from California Desert.', 'Golden Dates Farm', 'https://i5.walmartimages.com/asr/5a9518b5-dc05-4f7e-8a97-5c92c1f256ce.250bc48c0e2a2304125451926dc0287a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a9518b5-dc05-4f7e-8a97-5c92c1f256ce.250bc48c0e2a2304125451926dc0287a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a9518b5-dc05-4f7e-8a97-5c92c1f256ce.250bc48c0e2a2304125451926dc0287a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5070057477, 'MEDJOOL DATES. Premium Fresh Small Dates. Packed in Box. Tight Skin Naturally Grown in California. (11lb)', 49.99, '744365767313', 'Small Premium Medjool Dates Grown in California at Golden Dates Farm Packed in Boxes - Experience the essence of natural sweetness with our Small Premium Medjool Dates! These petite gems are handpicked for exceptional quality, delivering a delightful burst of flavor. With their 30% moisture content and chewy texture, they\'re ideal for snacking, culinary creations, or gifting on special occasions. Store in a cool, dry area, store in the box or container in the refrigerator or freezer. A healthy and natural sweet snack that is loaded with beneficial vitamins and minerals. Direct from our farm to your door! Grown and packed in California USA.', 'Medjool Dates packed in shrink wrapped box. Straight from our farm to your door. No Preservatives, Non GMO, Vegan, No artificial additives. Mother Nature’s gift. Healthy & tasty all natural energy. Perfect for snacking, sweetening cereals or your favorite drink. High in Fiber, Antioxidants, Omega Fats, and loaded with Protein. Low Carb\'s. Naturally Heart Healthy & Cholesterol Free. Healthy life style’s Essentials. Vegetarian /Vegan delight from California Desert. . .', 'Golden Dates Farm', 'https://i5.walmartimages.com/asr/5a9518b5-dc05-4f7e-8a97-5c92c1f256ce.250bc48c0e2a2304125451926dc0287a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a9518b5-dc05-4f7e-8a97-5c92c1f256ce.250bc48c0e2a2304125451926dc0287a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5a9518b5-dc05-4f7e-8a97-5c92c1f256ce.250bc48c0e2a2304125451926dc0287a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5094408659, 'Fresh Picasso Melon, Each', 4.48, '736558000505', 'Treat yourself to the refreshing flavor of a fresh Picasso Melon. Enjoy this tasty melon on its own as a healthy snack or incorporate it into a variety of delicious recipes. For breakfast, you can make a sweet fruit bowl with sliced melon, strawberries, pineapple, and kiwi. For an extra special treat, top with a dollop of whipped cream. Cut it into small pieces and put it in a fresh salad along with chicken, cucumbers, tomatoes, and a light dressing. You can even use Picasso Melon to make a refreshing summer cocktail, a spreadable jam or a light sorbet. Enjoy the sweet and juicy taste of fresh Picasso Melon.', 'Ideal addition to every kitchen Flavorful addition to many recipes Enjoy on its own or add to a mixed fruit salad Add to your fresh garden salad Get creative & make a fruit cocktail or a refreshing sorbet Explore all the delicious ways to add fresh Picasso Melon to your favorite recipes', 'Picasso Melon', 'https://i5.walmartimages.com/asr/55e9f3c9-c8fd-408b-90b7-ad8cd7d4e0ac.87ba527096a51a093cc249a8c1307d1b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/55e9f3c9-c8fd-408b-90b7-ad8cd7d4e0ac.87ba527096a51a093cc249a8c1307d1b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/55e9f3c9-c8fd-408b-90b7-ad8cd7d4e0ac.87ba527096a51a093cc249a8c1307d1b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5148256463, 'Fresh Limes, 2 lb Bag', 4.98, '', 'Limes are a versatile citrus fruit, loved for their tangy, refreshing flavor and vibrant green color. Perfect for enhancing drinks, marinades, and desserts, they add a zesty twist to both sweet and savory dishes. Rich in vitamin C and bursting with aroma, limes are a kitchen staple that brings freshness and flavor to every meal. Available in a 2 lb bag.', 'Fresh Limes, 2 lb Bag', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/9b785f2a-eb91-4f60-a730-e2708689b315.26c32c3ac789cd1fc6c60ee0b6ce4106.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b785f2a-eb91-4f60-a730-e2708689b315.26c32c3ac789cd1fc6c60ee0b6ce4106.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9b785f2a-eb91-4f60-a730-e2708689b315.26c32c3ac789cd1fc6c60ee0b6ce4106.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5148386130, 'Fresh Peelz Lemon, Each', 0.58, '091636001356', 'Indulge in the freshness of California with our Fresh Peelz Lemon. Each lemon is carefully picked under the radiant Californian sunshine, bringing you the classic tart flavor that lemons are renowned for. Whether you\'re looking to add a zesty kick to your meals or refresh your drinks with some citrus flair, these versatile lemons are perfect for any culinary endeavor. From enhancing your favorite dishes to lending their zest to baking and drinks, these lemons are a must-have kitchen essential.', 'Classic Tart Lemon Flavor Juicy and Versatile for Any Use Grown in California Sunshine Great for Cooking, Baking, and Drinks Perfect for Enhancing Culinary Creations Fresh and High-Quality Lemons', 'Peelz Citrus', 'https://i5.walmartimages.com/asr/53ff1194-05a9-43bd-a4f2-d25e93e39ce5.4db69282de6274ecbeb055a8982c525c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/53ff1194-05a9-43bd-a4f2-d25e93e39ce5.4db69282de6274ecbeb055a8982c525c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/53ff1194-05a9-43bd-a4f2-d25e93e39ce5.4db69282de6274ecbeb055a8982c525c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5157327534, 'Fresh Tangerines, 2 lb Bag', 2.88, '848163004479', 'Tangerines, with their small size and convenient peel, are a fantastic choice for a quick snack in lunch boxes or while on the move. They have a delightful sweetness, few seeds, and offer numerous health benefits. Tangerines are rich in Vitamin A, provide ample fiber, folate, and potassium. Whether enjoyed on their own or combined with a crisp leafy green salad, tangerines are a delicious and nutritious option.', 'Fresh Tangerines, 2 lb Bag Bursting with vitamins Make a creamy smoothie or a delicious tart Add to a salad or use as a garnish for a cocktail Easy to peel and segment', 'Noble', 'https://i5.walmartimages.com/asr/919f649b-7bbe-4281-bb2f-13828389d1b4.5d62aab1b53dc50c22701af463773588.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/919f649b-7bbe-4281-bb2f-13828389d1b4.5d62aab1b53dc50c22701af463773588.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/919f649b-7bbe-4281-bb2f-13828389d1b4.5d62aab1b53dc50c22701af463773588.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5211389478, 'Fresh Organic Oranges, 4 lb Bag', 5.97, '095829310775', 'Enjoy the fresh sweetness of Marketside Organic Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite adult beverage. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Marketside Organic Oranges add flavor to any meal or beverage.Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', '4 lb Bag of Fresh Organic Oranges Great Source of Vitamin C Ideal for Snacks and Recipes Perfect for Smoothies and Desserts Guaranteed Freshness by Walmart Sourced from Trusted Farmers', 'Fresh Produce', 'https://i5.walmartimages.com/asr/e4685626-7fd0-4eab-8c9d-f3c718b76a30.e976058c7d2944efc5b70d2b64001d5c.webp?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4685626-7fd0-4eab-8c9d-f3c718b76a30.e976058c7d2944efc5b70d2b64001d5c.webp?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e4685626-7fd0-4eab-8c9d-f3c718b76a30.e976058c7d2944efc5b70d2b64001d5c.webp?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5246028175, 'Freshness Guaranteed Mixed Fruit Bowl, 20 oz', 9.98, '194346219520', 'Enjoy a delicious treat with our Freshness Guaranteed Fruit Blend. This 20-ounce package contains a refreshing mix of ripe, and juicy grapes and apples, all cut and ready for you to enjoy. Every piece has a crisp, sweet taste that can be savored right from the pack. Our fruit blend is a perfect addition to your breakfast, a great snack for work or school, or a refreshing side dish at any meal. The resealable packaging helps keep the fruit fresh between snacking. Enjoy the quality and convenience of our Freshness Guaranteed Fruit Blend with Grapes & Apples. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Fruit Blend with Grapes & Apples, 20 oz (Refrigerated) Mix of ripe, and juicy grapes and apples, all cut and ready for you to enjoy Great snack for work or school Refreshing side dish at any meal Re-closable container to maintain freshness at refrigerated temperatures', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/d1926c7d-a8cb-48aa-9d2e-98ccafd6cfe6.0b10a7e22e57eeac4ab4f997602678bb.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d1926c7d-a8cb-48aa-9d2e-98ccafd6cfe6.0b10a7e22e57eeac4ab4f997602678bb.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d1926c7d-a8cb-48aa-9d2e-98ccafd6cfe6.0b10a7e22e57eeac4ab4f997602678bb.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5251436560, 'Freshness Guaranteed Tropical Berry 10oz', 7.97, '194346219506', 'short description is not available', 'Freshness Guaranteed Tropical Berry 10oz', 'Freshness Guaranteed', 'https://i5.walmartimages.com/asr/c31daf9c-71c7-4bd9-9b65-25d5a030a9cb.87ac6bf1f84b897164170bd946ee9a37.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c31daf9c-71c7-4bd9-9b65-25d5a030a9cb.87ac6bf1f84b897164170bd946ee9a37.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c31daf9c-71c7-4bd9-9b65-25d5a030a9cb.87ac6bf1f84b897164170bd946ee9a37.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5256904046, 'Fresh Organic Oranges, 3 lb Bag', 5.97, '033383104027', 'Enjoy the fresh sweetness of Fresh Organic Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite adult beverage. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Fresh Organic Oranges add flavor to any meal or beverage.', 'Fresh Organic Oranges, 3 lb Bag Great source of vitamin C Fresh, sweet citrus flavor for snacking or recipes Versatile for breakfast, lunch, desserts, and beverages Ideal for smoothies, salads, marmalade, and sorbet', 'Unbranded', 'https://i5.walmartimages.com/asr/cb01a034-7861-4b08-a68d-de81e21bbbab.d2a4092166d7fcb05d80e44fafa4f1f2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb01a034-7861-4b08-a68d-de81e21bbbab.d2a4092166d7fcb05d80e44fafa4f1f2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cb01a034-7861-4b08-a68d-de81e21bbbab.d2a4092166d7fcb05d80e44fafa4f1f2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5257897434, 'Melocotones, 1 Lb.', 1.45, '400094119730', 'Melocotones, 1 Lb.', 'Melocotones', 'Unbranded', 'https://i5.walmartimages.com/asr/1afffc75-ca5d-46d5-80bc-7b95deac75e2.91f173824ccfe4f2f276a7bd8203557e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1afffc75-ca5d-46d5-80bc-7b95deac75e2.91f173824ccfe4f2f276a7bd8203557e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1afffc75-ca5d-46d5-80bc-7b95deac75e2.91f173824ccfe4f2f276a7bd8203557e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5288715245, 'Imported Medjool Dates, 3 Pounds – Unsweetened and Unsulphured , Vegan, Sirtfood, Bulk Dates.', 27.07, '840374818586', 'Imported Medjool dates have been considered a delicacy for thousands of years. Their exceptional nutritional value as well as their delightfully sweet flavor earned them a place at the tables of kings. Today dates are not the luxury food they used to be, so everyone can enjoy the benefits they offer. These fruits are delicious, sweet, free of “bad” fats, and give you a boost of energy. Imported Medjool dates contain 50% more potassium than bananas. Imported Medjool dates make a great standalone snack, and they can also be used in a variety of recipes. They go especially well with granolas, candy, biscuits, and salads. You can also add them to special cereal dishes, like couscous or wild rice casserole. Adding some dates to sweeten your protein shake can improve its taste as well as boost its nutritional value.', '✔️Premium Quality, Large Size, Fat Free, Cholesterol Free, Sodium Free, High in Potassium, Grown in Israel. ✔️The Imported Medjool Dates are the finest dates in the world. Dates are thought to be one of the world’s oldest cultivated fruits. ✔️Each date is handpicked to ensure its exceptional quality and size. Imported Medjool Dates are truly the cream of a very exclusive crop. These dates are the largest, the sweetest and the juiciest. Extremely meaty dates with tiny pits. Imported Medjool Dates are fresh and ready for you to enjoy in your home. They are great for cooking, baking and snacking. ✔️The Imported Medjool Dates from Food to Live are high in vitamins, and minerals.', 'Food to Live', 'https://i5.walmartimages.com/asr/b48cfe91-f008-4767-a383-c70b48abf7ac.11f7cc13075447451fa30fad65ff1578.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b48cfe91-f008-4767-a383-c70b48abf7ac.11f7cc13075447451fa30fad65ff1578.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b48cfe91-f008-4767-a383-c70b48abf7ac.11f7cc13075447451fa30fad65ff1578.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5295981573, 'Fresh Bluey Kiwi Fruit, 2 lb Clamshell', 5.12, '732313002425', 'Introducing this delightful Fresh Kiwi Fruit, a vibrant and flavorful treat that will make your taste buds dance with joy! Our Kiwi fruit, featuring Bluey, offers a delightful twist on this delicious fruit. Bluey, the lovable and mischievous character from the popular animated series, adds an extra element of fun and excitement to your Kiwi fruit experience. With its bright green flesh and a burst of tangy sweetness, this Kiwi fruit is sure to delight both kids and adults alike. But it\'s not just about the playful character on the packaging - the real star of the show is the Kiwi fruit itself. Packed with essential vitamins and minerals, our Kiwi fruit is a nutritional powerhouse. With a high vitamin C content, it supports a healthy immune system and helps keep you feeling your best. The fiber content aids in digestion and promotes a healthy gut, while the antioxidants present in Kiwi fruit contribute to overall well-being. Not only is our Kiwi fruit healthy, but it\'s also incredibly versatile. Slice it up and add it to your breakfast cereal or yogurt for a burst of freshness. Blend it into a smoothie for a refreshing and nutritious drink. Or simply enjoy it as a snack on its own - the choice is yours! With its fuzzy brown skin and vibrant green flesh, our Kiwi fruit, featuring Bluey, is not only a feast for the taste buds but also a visual delight. Its unique appearance and irresistible flavor make it a standout fruit that is bound to impress your family and friends. So why wait? Treat yourself to the delightful combination of Kiwi fruit and Bluey and experience the joy and goodness they bring. Order your Kiwi fruit with Bluey today and embark on a delicious and nutritious journey that will leave you wanting more!', 'Fresh Bluey Kiwi Fruit, 2 lb Clamshell Delicious sweet and tangy kiwi fruit Packed with Vitamin C, fiber and antioxidants with a scrumptious fruit taste Slice it up and add it to your breakfast cereal or yogurt for a burst of freshness Blend it into a smoothie for a refreshing and nutritious drink', 'Fresh Produce', 'https://i5.walmartimages.com/asr/8da49291-9aab-4833-9092-c01683a3b360.480a8bed82ccb9328c62291a3619a14c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8da49291-9aab-4833-9092-c01683a3b360.480a8bed82ccb9328c62291a3619a14c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8da49291-9aab-4833-9092-c01683a3b360.480a8bed82ccb9328c62291a3619a14c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5364758046, 'Fresh Bluey Kiwi Fruit, 1 lb Clamshell', 33.98, '732313002418', 'Introducing the delightful Fresh Kiwi Fruit, a vibrant and flavorful treat that will make your taste buds dance with joy! Our Kiwi fruit, featuring Bluey, offers a delightful twist on this delicious fruit. Bluey, the lovable and mischievous character from the popular animated series, adds an extra element of fun and excitement to your Kiwi fruit experience. With its bright green flesh and a burst of tangy sweetness, this Kiwi fruit is sure to delight both kids and adults alike. But it\'s not just about the playful character on the packaging - the real star of the show is the Kiwi fruit itself. Packed with essential vitamins and minerals, our Kiwi fruit is a nutritional powerhouse. With a high vitamin C content, it supports a healthy immune system and helps keep you feeling your best. The fiber content aids in digestion and promotes a healthy gut, while the antioxidants present in Kiwi fruit contribute to overall well-being. Not only is our Kiwi fruit healthy, but it\'s also incredibly versatile. Slice it up and add it to your breakfast cereal or yogurt for a burst of freshness. Blend it into a smoothie for a refreshing and nutritious drink. Or simply enjoy it as a snack on its own - the choice is yours! With its fuzzy brown skin and vibrant green flesh, our Kiwi fruit, featuring Bluey, is not only a feast for the taste buds but also a visual delight. Its unique appearance and irresistible flavor make it a standout fruit that is bound to impress your family and friends. So why wait? Treat yourself to the delightful combination of Kiwi fruit and Bluey and experience the joy and goodness they bring. Order your Fresh Kiwi Fruit with Bluey today and embark on a delicious and nutritious journey that will leave you wanting more!', 'Fresh Bluey Kiwi Fruit, 1 lb Clamshell Delicious sweet and tangy kiwi fruit Packed with vitamin C, fiber and antioxidants with a scrumptious fruit taste Enjoy a fresh kiwi with your breakfast to start your day off on the right foot Bring one to work and treat yourself to a scrumptious healthy snack at the office Great for school lunches Perfect for topping desserts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/26a01767-b95e-4fc6-b3c5-9203a35d0495.932ffc123d5b7300a358e6c6fc812148.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/26a01767-b95e-4fc6-b3c5-9203a35d0495.932ffc123d5b7300a358e6c6fc812148.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/26a01767-b95e-4fc6-b3c5-9203a35d0495.932ffc123d5b7300a358e6c6fc812148.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5442106978, 'Fresh Local Roots Greenhouse Grown Strawberries, 10 oz Container', 3.67, '850048924765', 'The sweet, juicy flavor of Greenhouse Grown Strawberries make them a refreshing and delicious treat. These sweet and flavorful strawberries are grown in a greenhouse and found in our premium selection. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. They contain essential vitamins and nutrients like vitamin C, dietary fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh Greenhouse Grown Strawberries today and savor the delectable flavor.', 'Fresh Greenhouse Grown Strawberries, 10 oz: Premium selection Prior to serving gently wash the strawberries and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'Local Roots', 'https://i5.walmartimages.com/asr/373f0c0a-d976-4518-967c-9e8c626d1a10.fd992b4534c99ffa7bba91525be393cb.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/373f0c0a-d976-4518-967c-9e8c626d1a10.fd992b4534c99ffa7bba91525be393cb.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/373f0c0a-d976-4518-967c-9e8c626d1a10.fd992b4534c99ffa7bba91525be393cb.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5458257362, 'WHOLLY GUACAMOLE Restaurant Style Medium, 7.5 oz Plastic Bowl', 4.97, '616112353561', 'WHOLLY GUACAMOLE Restaurant Style Guacamole is crafted with everything “extra” – for more flavor, more enjoyment and more family pleasing dinner solutions. With a kick of jalapeno pepper, this medium-spiced guac is sure to ignite your senses and make Taco Night a success. Add Restaurant style to your sandwich or salad, create the perfect veggie dip, or enjoy it with tortilla chips for a tasty snack. Gluten-free, vegan, kosher and has no preservatives added. An ideal flavor enhancer to keep on hand in your refrigerator that’s the perfect companion for sandwiches, dipping and more. Includes one, 7.5oz plastic bowl of WHOLLY GUACAMOLE Restaurant Style Medium. All trademarks, logos and images are owned by Hormel Foods Corporation, its subsidiaries and affiliates. Copyright MegaMex Foods, LLC', 'Made with hand-scooped 100% Hass Avocados; Vegan, Kosher, Gluten-free No Preservatives added and no artificial flavors The perfect addition to breakfast, lunch, or dinner! Spread it on a burger, sandwich, or toast; makes a delicious dip for chips or vegetables; or swap it for mayo in an upgraded version of chicken salad Enjoy as a ready-made appetizer, a side to your favorite Mexican dish, or while watching the big game with a crowd Includes one, 7.5 oz plastic bowl of WHOLLY GUACAMOLE Restaurant Style Medium; Packaged for freshness and great taste', 'WHOLLY GUACAMOLE', 'https://i5.walmartimages.com/asr/ab2df63d-8376-4f37-b176-0c5ce3b9bd06.660cdf9e08e9251e560f4fac40cebc20.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ab2df63d-8376-4f37-b176-0c5ce3b9bd06.660cdf9e08e9251e560f4fac40cebc20.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ab2df63d-8376-4f37-b176-0c5ce3b9bd06.660cdf9e08e9251e560f4fac40cebc20.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5474918527, 'Fresh Jumbo Blueberries, 9.8 oz Container', 5.22, '812049006185', 'Hand-picked at the peak of freshness, our Fresh Jumbo Blueberries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Enjoy them straight out of the container as a refreshing and guilt-free snack or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. The possibilities are endless with these Fresh Jumbo Blueberries.', 'Fresh Jumbo Blueberries, 9.8 oz Container Over twice the size of an average blueberry and bursting with flavor Add to your cereal or yogurt Blend them into a smoothie or add them to baked goods Loaded with antioxidants, vitamins, and dietary fiber Explore all the delicious ways to add fresh blueberries to your favorite recipes', 'Multiple', 'https://i5.walmartimages.com/asr/917f864c-0a9d-4924-b555-91120c735786.b3b8a71f8ed27a7ccb25dfdf368225cf.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/917f864c-0a9d-4924-b555-91120c735786.b3b8a71f8ed27a7ccb25dfdf368225cf.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/917f864c-0a9d-4924-b555-91120c735786.b3b8a71f8ed27a7ccb25dfdf368225cf.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5538151410, 'Fieldpack Unbranded Fresh Grown Yellow Peaches', 3.24, '405679097960', 'Fieldpack Unbranded Fresh Grown Yellow Peaches', 'Tree Ripe Peach', 'Unbranded', 'https://i5.walmartimages.com/asr/3c583c46-e570-460f-8e9c-7febc8531b31_1.e24f01e0bb4d79a848a29a6874ef4a4a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3c583c46-e570-460f-8e9c-7febc8531b31_1.e24f01e0bb4d79a848a29a6874ef4a4a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3c583c46-e570-460f-8e9c-7febc8531b31_1.e24f01e0bb4d79a848a29a6874ef4a4a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5613730291, 'Fresh White Peaches, 2 lb Bag', 4.48, '810248031861', 'Discover the delightful sweetness of these Fresh White Peaches. Enjoy them on their own as a sweet snack or use them in a variety of recipes. For breakfast, you could slice them to put into your oatmeal or use them to make a delicious yogurt parfait. You can also use these fresh peaches in several baking recipes including a comforting crisp topped with ice cream, a tasty upside-down cake, or a scrumptious tart. You can even use them to make a jam or a smooth sorbet. However you choose to use them, their sweet flavor will bring a smile to everyone\'s face. Treat the family to the irresistible taste of Fresh White Peaches.', 'Enjoy on their own as a satisfying snack Use in a variety of baking recipes Make a tasty jam or a smooth sorbet Slice as a sweet topping for waffles or pancakes Add to iced tea to create a refreshing summertime flavor', 'Fresh Produce', 'https://i5.walmartimages.com/asr/07cd6088-a317-43fd-9d0a-2e03b11a6488.3cebee9dacdb588607b78d96acb1e592.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/07cd6088-a317-43fd-9d0a-2e03b11a6488.3cebee9dacdb588607b78d96acb1e592.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/07cd6088-a317-43fd-9d0a-2e03b11a6488.3cebee9dacdb588607b78d96acb1e592.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5617599069, 'PalmSpring Premium Sagae Dates - 400gm', 21.99, '', 'Experience the ultimate taste of wellness with our PalmSpring Premium Saudi Dates. Sourced directly from the lush palm oases of Saudi Arabia, these dates are a treasure trove of health and flavor. Our carefully selected, plump dates are all-natural, making them a perfect guilt-free snack for health enthusiasts and gourmets alike.', 'RAW VEGAN GLUTEN FREE NO SUGAR ADDED GOOD SOURCE OF FIBER NON-GMO 100% NATURAL', 'PALMSPRING', 'https://i5.walmartimages.com/asr/d5ee1105-a88c-4a68-8e19-641a564facea.bbef7726ec11b73fa3ffb5f67e784f0a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d5ee1105-a88c-4a68-8e19-641a564facea.bbef7726ec11b73fa3ffb5f67e784f0a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/d5ee1105-a88c-4a68-8e19-641a564facea.bbef7726ec11b73fa3ffb5f67e784f0a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5625681207, 'Welchs Kiwi Clamshell 1.3lb', 2.97, '095829211690', 'Treat yourself to the delicious and refreshing taste of kiwi. Kiwi are known for their sweet, tangy, and soft flesh and nutritional benefits. They are packed with vitamin C, fiber, and antioxidants. They\'re also fat-free and have a low glycemic index. Enjoy a fresh kiwi with your breakfast to start your day off on the right foot or bring one to work and treat yourself to a scrumptious healthy snack at the office. You can also serve them up in a big fresh fruit salad with all your favorite fruits like strawberries, apples, blueberries and more. They\'re even perfect for topping pies, tres leches cakes, tarts and more for dessert. The possibilities are endless when you bring home Kiwi', 'Delicious sweet and tangy kiwi fruit Packed with Vitamin C, fiber and antioxidants with a scrumptious fruit taste Great for school lunches Perfect for topping desserts', 'Welch', 'https://i5.walmartimages.com/asr/3457fe20-82d9-477f-91ed-17770dc7a761.a4d298cea4f5dd40beab44fc27a28240.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3457fe20-82d9-477f-91ed-17770dc7a761.a4d298cea4f5dd40beab44fc27a28240.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3457fe20-82d9-477f-91ed-17770dc7a761.a4d298cea4f5dd40beab44fc27a28240.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5676328193, 'PALMSPRING Premium Safawi Dates 400g', 21.99, '', 'Indulge in the rich and naturally sweet taste of PalmSpring Premium Safawi Dates - 400gm. These premium dried fruits from Saudi Arabia are a healthy snack or versatile addition to your recipes. Made by PALMSPRING, they are 100% natural, non-GMO, raw, vegan, gluten-free, and a good source of fiber. Enjoy the wholesome goodness of PalmSpring Premium Safawi Dates without added sugar.', 'No sugar added Good source of fiber Non-GMO Raw Vegan Gluten-free 100% natural', 'PALMSPRING', 'https://i5.walmartimages.com/asr/c75fd4de-5032-4d83-b874-281027a32679.e99ce9e21455489c42930bd9d9d18cab.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c75fd4de-5032-4d83-b874-281027a32679.e99ce9e21455489c42930bd9d9d18cab.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c75fd4de-5032-4d83-b874-281027a32679.e99ce9e21455489c42930bd9d9d18cab.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5716723627, 'Fresh Driscoll\'s Raspberries, 8 oz Heart-Shaped Container', 6.99, '715756100538', 'The sweet, juicy flavor of Fresh Raspberries make them a refreshing and delicious treat. The heart-shaped clamshell makes the perfect gift for special occasions. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with yogurt and granola for a light and flavorful snack, or enjoy their delicious flavor all on their own. They contain essential vitamins and nutrients like, vitamin C, dietary fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh Strawberries today and savor the delectable flavor.', 'The sweet, juicy flavor of Fresh Raspberries make them a refreshing and delicious treat. The heart-shaped clamshell makes the perfect gift for special occasions. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with yogurt and granola for flavorful snack, or enjoy them as a snack on their own. They contain essential vitamins and nutrients like, vitamin C, dietary fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use. Pick up Fresh Raspberries today and savor the delectable flavor.', 'Driscoll\'s Inc.', 'https://i5.walmartimages.com/asr/5374279a-523f-4aaa-9381-260a15dc595f.4264bd5ea4fa42f12a76ae0e6653fe5f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5374279a-523f-4aaa-9381-260a15dc595f.4264bd5ea4fa42f12a76ae0e6653fe5f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5374279a-523f-4aaa-9381-260a15dc595f.4264bd5ea4fa42f12a76ae0e6653fe5f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5740868866, 'PALMSPRING Ajwa Dates - Raw Vegan Gluten-Free 400g', 21.99, '', 'PalmSpring Premium Ajwa Dates - 400gm offers a delightful taste of natural sweetness, sourced directly from Saudi Arabia\'s fertile lands. These premium dried fruits embody the essence of quality and purity, ensuring a RAW VEGAN GLUTEN FREE 100% NATURAL experience with every bite. Perfect for those seeking wholesome indulgence, PalmSpring Premium Ajwa Dates redefine the standards of dried fruits with their exceptional flavor and authenticity.', 'RAW VEGAN GLUTEN FREE 100% NATURAL', 'PALMSPRING', 'https://i5.walmartimages.com/asr/2aaf739d-ce55-4a52-8ba2-626e8e163432.93ff211e8b45598207ca9296c70da78b.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2aaf739d-ce55-4a52-8ba2-626e8e163432.93ff211e8b45598207ca9296c70da78b.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/2aaf739d-ce55-4a52-8ba2-626e8e163432.93ff211e8b45598207ca9296c70da78b.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5800382851, 'Pomegranate Arils, Ready to Eat Pomegranate Seeds, 8 oz Cup', 6.97, 'deleted_683953001777', 'Pomegranate Seeds Conventional, Fresh Cut Pomegranate, Super Food, High in Fiber, Heart Healthy in a plastic cup.', 'High in Fiber No Preservatives3 Washed and Ready to Eat Heart Healthy Super Food', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/fb89360b-14e6-4bae-b2e0-30b40e1202b7.ecdcb1ac6e5f31d9491f5581098c5f98.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb89360b-14e6-4bae-b2e0-30b40e1202b7.ecdcb1ac6e5f31d9491f5581098c5f98.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/fb89360b-14e6-4bae-b2e0-30b40e1202b7.ecdcb1ac6e5f31d9491f5581098c5f98.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (5980119684, 'Fresh Ready to Eat Mixed Red and Green Grapes', 5.22, '263689000000', 'Enjoy a refreshing burst of natural sweetness with our fresh ready to eat mixed red and green grapes. This assortment features a vibrant combination of juicy red and crisp green grapes, each carefully handpicked and plucked from the stem for your convenience. Rich in antioxidants and vitamins, these grapes offer a nutritious snack option. Their appealing colors add a delightful visual touch to any fruit bowl or salad. Savor the contrasting flavors of the succulent reds and tangy greens in every bite. They\'re ideal for snacking, adding to dishes, or creating a flavorful grape juice. Relish the goodness of Fresh Mixed Grapes today.', 'Fresh Mixed Grapes Handpicked for their freshness and juiciness, ensuring a delightful snack experience Features a mix of red and green grapes, offering contrasting flavors Great for snacking, adding to fruit bowls, salads, or making refreshing grape juice Vibrant red and green colors add a touch of freshness to any dish', 'Fresh Produce', 'https://i5.walmartimages.com/asr/ecba6cc8-8412-4ed1-8c90-b948734eaf6b.6954dbd60503d9f051441c07e2c50ea8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecba6cc8-8412-4ed1-8c90-b948734eaf6b.6954dbd60503d9f051441c07e2c50ea8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ecba6cc8-8412-4ed1-8c90-b948734eaf6b.6954dbd60503d9f051441c07e2c50ea8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (6695573280, 'Organic California Medjool Dates, 1 Pound – Non-GMO Whole Dry Fancy Dates with Pits', 18.32, '840374820749', 'Indulge in nature\'s candy with delectable California Medjool Dates from Food to Live . These soft, juicy, and unsweetened dates are a guilt-free treat packed with fiber, B vitamins, and essential minerals like calcium, iron, copper, and selenium. Grown and harvested in the USA, these non-GMO, vegan, kosher, and gluten-free dates are the perfect snack for those following a Sirtfood diet or simply looking to boost their nutritional intake. With a large size and meaty texture, these dates are sure to satisfy your sweet cravings without any added sugars or sulfites. Enjoy them straight out of the bag or incorporate them into your favorite recipes. Boasting a long shelf life of up to 1.5 years, these Organic California Medjool Dates are a convenient and delicious addition to your pantry.', '✔️MEDJOOL DATES: Unsweetened Organic California Medjool Dates with pits from Food to Live, perfect as a nutritious snack. ✔️NON-GMO & VEGAN: These fancy dates are non-GMO, unsulphured, vegan, kosher, gluten-free, and sodium-free. ✔️NUTRIENT-RICH: Rich in fiber, B vitamins, calcium, iron, copper, and selenium, making Organic California Medjool Dates a great addition to your diet. ✔️SOFT & JUICY: Enjoy the delightful taste of Organic California Medjool Dates from Food to Live, nature\'s candy - soft, juicy. ✔️LONG-LASTING FRESHNESS: With proper storage, these dates can stay fresh for up to 1 year.', 'Food to Live', 'https://i5.walmartimages.com/asr/15e38386-2f10-483b-8988-58e254c973a7.19c4c6c4d6b6eb2b4f04ba57ddb103a6.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/15e38386-2f10-483b-8988-58e254c973a7.19c4c6c4d6b6eb2b4f04ba57ddb103a6.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/15e38386-2f10-483b-8988-58e254c973a7.19c4c6c4d6b6eb2b4f04ba57ddb103a6.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (7593624638, 'Fresh Small Hass Avocado Bag, 4-5 Count', 6.87, '852761008609', 'Avocados aren’t just great-tasting fresh produce items, but they are a nutrient-dense fruit that can be enjoyed throughout the year. Hass avocados are a versatile ingredient with a creamy texture and mild flavor that can be used in many different types of recipes and dishes that are perfect for enjoying at barbecues and outdoor gatherings with friends and family during the summer. Enjoy Small avocados in countless ways that will make those barbecues and gatherings with family and friends even more exciting. Use avocados in flavorful recipes that everybody can share and enjoy while being together outside. Try avocados in individual Mexican food items like tacos or burritos, as part of appetizers like avocado crostini, or in a fresh guacamole or avocado dip so everybody can dip tortilla chips into something delicious. The possibilities are deliciously endless if you need additional food options for barbecues. Not only is a Small avocado a great ingredient to use in numerous ways, but it is also a healthy food that contributes unsaturated “good” fats and almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9. A Small ripe avocado will have a dark green to nearly black skin color, a bumpy skin texture and should yield to gentle pressure without leaving indentations or feeling mushy. Avocados with a slightly bumpy texture should be ripe in 1 to 2 days. They will also be somewhat firm and have a dark green and black speckled color. Once you’ve selected the perfect bag of avocados, you’ll be ready to enjoy all kinds of different healthy foods and recipes for the next time you’re enjoying an outdoor gathering with friends and families.', 'Bag of 4 Small Hass Avocados Fresh fruit with a creamy texture and mild flavor Fresh avocados are great for using in tacos, burritos, appetizers, avocado dip and fresh guacamole so that you have delicious food to share and enjoy during barbecues and the summer months A cholesterol free fruit that contains almost 20 vitamins, minerals and phytonutrients including Vitamin E, Vitamin K, Vitamin C and Vitamins B5 and B9 Small hass avocados are the lowest sugar fruit and provide unsaturated “good fats” that help absorb Vitamin A, Vitamin D, Vitamin K and Vitamin E Small ripe avocados will have dark green to nearly black skin color, a bumpy texture and should yield to gentle pressure without leaving indentations', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/57d0ccdc-b7fa-4f73-aae4-42a1b8f4f64d.408d0c83a663cb912c7a4dbf7d130792.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/57d0ccdc-b7fa-4f73-aae4-42a1b8f4f64d.408d0c83a663cb912c7a4dbf7d130792.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/57d0ccdc-b7fa-4f73-aae4-42a1b8f4f64d.408d0c83a663cb912c7a4dbf7d130792.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (8940073338, 'Super Fresh Kids Golden Apple, 2lb Pouch', 4.47, '883391000053', 'The Super fresh Kids 2lb apples are an ideal choice for the whole family to easily enjoy fresh fruit. Packed in a convenient 2-pound bag, these apples are selected for their quality — freshness, firmness, and great taste — and are specially designed so that children can easily handle them. This packaging provides enough fruit for multiple snacks and is perfect for taking to work, school, or keeping at home ready to slice. Additionally, the Super fresh brand (through Super fresh Growers) has designed this packaging with attention to detail: games and graphics aimed at children, fruit sized comfortably for their hands, and a family-oriented approach that makes this bag an appealing option for everyday consumption.', 'Convenient 2lb bag of fresh apples, perfect for families. High-quality selection: fresh, firm, and flavorful apples. Kid-friendly design: apples sized for small hands for easy handling. Attractive packaging: features games and graphics aimed at children. Ideal for snacks: suitable for school, work, or at-home consumption. Family-oriented: encourages healthy fruit consumption in daily routines. Ready-to-use: easy to slice or eat on the go.', 'Superfresh Kids', 'https://i5.walmartimages.com/asr/9764efea-094a-43c0-9c39-7579ee148427.e3df7a783575561c6a61dccc45d7c80d.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9764efea-094a-43c0-9c39-7579ee148427.e3df7a783575561c6a61dccc45d7c80d.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9764efea-094a-43c0-9c39-7579ee148427.e3df7a783575561c6a61dccc45d7c80d.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (8951705922, 'Super Fresh Kids Gala Apple, 2lb Pouch', 4.47, '883391000800', 'The Super fresh Kids Gala 2lb apples offer a fun and nutritious option for children and families alike. Packed in a 2-pound bag, these Gala apples have been selected for their mild, slightly sweet flavor, crisp bite, and appealing size for small hands. The packaging features friendly graphics aimed at young children, making them ideal for snacks, taking to school or the park, or simply having at home ready as a healthy treat. The brand combines quality and presentation to encourage the daily consumption of fresh fruit among kids, while parents enjoy the convenience and taste of an accessible and delicious apple.', 'Convenient 2lb bag of fresh Gala apples. Sweet and mild flavor with a crisp, crunchy texture. Kid-friendly size: apples sized for small hands for easy handling. Attractive packaging: features fun and friendly graphics aimed at children. Ideal for snacks: perfect for school, park, or at-home consumption. Promotes healthy eating: encourages children to eat fresh fruit daily. Ready-to-use: easy to slice or eat on the go.', 'Superfresh Kids', 'https://i5.walmartimages.com/asr/359fe44e-21cb-46ae-87e9-237b0d87aed8.4cacd32d67a531083d1c0f47664d3809.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/359fe44e-21cb-46ae-87e9-237b0d87aed8.4cacd32d67a531083d1c0f47664d3809.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/359fe44e-21cb-46ae-87e9-237b0d87aed8.4cacd32d67a531083d1c0f47664d3809.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (10062874809, 'Fresh Apples Red Value Bag, 5lb', 4.98, 'deleted_888289402285', 'Treat yourself to the sweet taste of Freshness Guaranteed Red Apples. These apples are known for their classic sweet flavor with mild acidity and creamy white flesh with low acidity. Crisp and juicy, these apples have higher levels of antioxidants due to the rich, deep red skin. Enjoy one with breakfast or lunch or as a fresh snack any time of day. An excellent snacking or juicing apple, the Red is an excellent addition to green, fruit, and chopped salads, or an unexpected twist to sandwiches, quesadillas, or burgers. You can even pair them with sharp cheeses and crackers to create a stunning appetizer cheese board to share with guests. The possibilities are endless with Freshness Guaranteed Red Apples. Freshness Guaranteed provides you and your family with high-quality fresh food that saves you time and money, many of which are cooked fresh or prepared in stores. Convenient solutions with value added in every Freshness Guaranteed item.', 'Freshness Guaranteed Red Apples, 5 lb Bag: Sweet, crisp, and juicy Creamy white flesh with low acidity Excellent snacking apple Higher antioxidants due to the rich, deep red skin Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp, and apple pie Sweet, crisp, and juicy Creamy white flesh with low acidity Excellent snacking apple Higher antioxidants due to the rich, deep red skin Make a creamy smoothie or a nutritious juice blend Serve with your pancake breakfast Adds flavor to a variety of recipes Make apple butter or applesauce Make sweet desserts like apple cobbler, apple crisp, and apple pie Adds flavor to a variety of recipes', 'Fresh Produce', 'https://i5.walmartimages.com/asr/0039e8fe-9fd3-45e9-a4e3-ba5a49d3d9a4.a2f2806080b5f6e94ea11458020db16e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0039e8fe-9fd3-45e9-a4e3-ba5a49d3d9a4.a2f2806080b5f6e94ea11458020db16e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0039e8fe-9fd3-45e9-a4e3-ba5a49d3d9a4.a2f2806080b5f6e94ea11458020db16e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (12739971135, 'Fresh USDA Organic WOW Greenhouse Grown Strawberries, 10 oz Container', 5.97, '057836960015', 'The sweet, juicy flavor of Fresh USDA Organic Greenhouse Grown Strawberries make them a refreshing and delicious treat. These sweet and flavorful strawberries are our premium selection. They are great for homemade smoothies, desserts, or enjoying as a yummy and healthy snack. Serve up a bowl plain or topped with whipped cream for a delicious treat. Add to fruit salads, ice cream, yogurt or milkshakes. Use it to top off cereal, pancakes or waffles. It is also great as a topping for strawberry cheesecake and other dessert recipes. These organic berries contain essential vitamins and nutrients like, vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use.', 'Premium selection Certified organic Prior to serving gently wash the strawberries and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful strawberry salad, or puree them to make a delicious cocktail', 'SUNSET', 'https://i5.walmartimages.com/asr/99ab7d06-22be-415d-8079-ff24650b8799.fa9f060bb87df8eed8014f782ffb9fa7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/99ab7d06-22be-415d-8079-ff24650b8799.fa9f060bb87df8eed8014f782ffb9fa7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/99ab7d06-22be-415d-8079-ff24650b8799.fa9f060bb87df8eed8014f782ffb9fa7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (12852163028, 'Fresh Pears Bartlett Bulk, Each', 0.88, '000000044097', 'Savor the sweet taste of Fresh Bartlett Pears. Bartlett Pears are aromatic and have a definitive pear flavor that make them great for breakfast, lunch, dinner, and dessert. Chop the pears up and add them to muffins with walnuts and vanilla for a sweet treat that’s great for breakfast to get your morning started on a high note. Slice them up and top a pizza with prosciutto, goat cheese, and arugula for a mouthwatering meal perfect for a family dinner or dinner party. Cut the pear in half and cook it in a skillet with butter, brown sugar, and vanilla and serve with a scoop of vanilla ice cream for a decadent dessert. Enjoy tasty meals any time of day with Fresh Bartlett Pears.', 'Fresh Bartlett Pears, Bulk Sweet, crisp, and juicy Excellent snacking pear Make a creamy smoothie or a nutritious juice blend Add to your salad for extra crunch and flavor Adds flavor to a variety of recipes Make pear butter or poached pears Make sweet desserts like pear cobbler, pear crisp or pear tarts', 'Fresh Produce', 'https://i5.walmartimages.com/asr/30cc8efb-5b20-4ac6-bb3c-9fa90c794fa0.b89a069e7c9c472c3d7510e72ba4edae.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/30cc8efb-5b20-4ac6-bb3c-9fa90c794fa0.b89a069e7c9c472c3d7510e72ba4edae.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/30cc8efb-5b20-4ac6-bb3c-9fa90c794fa0.b89a069e7c9c472c3d7510e72ba4edae.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (12934961111, 'Fresh Sweet Rainier Cherries, 1.25 LB Bag', 6.97, '850421002219', 'Enjoy the vibrant taste of summer with our Fresh Sweet Rainier Cherries. Known for their golden-yellow color with a blush of red, Rainier cherries offer a uniquely sweet flavor and crisp texture that sets them apart.', 'Appearance: Pale yellow skin with a red blush, creamy yellow flesh. Texture: Semi-firm, plump, and tender flesh. Low in calories. Contain antioxidants like anthocyanins, which may have anti-inflammatory and anti-cancer properties.', 'PRODUCE ITEM', 'https://i5.walmartimages.com/asr/51cacfa1-6f44-469b-9cb2-5ba659fc078f.baec78caf7b135268aba9b1d08dd294e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/51cacfa1-6f44-469b-9cb2-5ba659fc078f.baec78caf7b135268aba9b1d08dd294e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/51cacfa1-6f44-469b-9cb2-5ba659fc078f.baec78caf7b135268aba9b1d08dd294e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (13484116304, 'Fresh USDA Organic Nature Fresh Greenhouse Grown Strawberries, 10 oz Container', 4.98, '689259006096', 'The sweet, juicy flavor of Fresh USDA Organic Greenhouse Grown Strawberries make them a refreshing and delicious treat. These sweet and flavorful strawberries are our premium selection. They are great for homemade smoothies, desserts, or enjoying as a yummy and healthy snack. Serve up a bowl plain or topped with whipped cream for a delicious treat. Add to fruit salads, ice cream, yogurt or milkshakes. Use it to top off cereal, pancakes or waffles. It is also great as a topping for strawberry cheesecake and other dessert recipes. These organic berries contain essential vitamins and nutrients like, vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell tray to keep them fresh and ready for use.', 'Premium selection Certified organic Prior to serving gently wash the strawberries and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/db00e0eb-42ff-46b9-8086-27191d4712c5.65d2a895443b1d3b3eccdbbfeb472a63.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/db00e0eb-42ff-46b9-8086-27191d4712c5.65d2a895443b1d3b3eccdbbfeb472a63.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/db00e0eb-42ff-46b9-8086-27191d4712c5.65d2a895443b1d3b3eccdbbfeb472a63.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (13508117005, 'Fresh Kiwi, 1lb Package', 2.43, '756110195852', 'Treat yourself to the delicious and refreshing taste of kiwi. Kiwi are known for their sweet, tangy, and soft flesh and nutritional benefits. They are packed with vitamin C, fiber, and antioxidants. They\'re also fat-free and have a low glycemic index. Enjoy a fresh kiwi with your breakfast to start your day off on the right foot or bring one to work and treat yourself to a scrumptious healthy snack at the office. You can also serve them up in a big fresh fruit salad with all your favorite fruits like strawberries, apples, blueberries and more. They\'re even perfect for topping pies, tres leches cakes, tarts and more for dessert. The possibilities are endless when you bring home Kiwi', 'Delicious sweet and tangy kiwi fruit Packed with Vitamin C, fiber and antioxidants with a scrumptious fruit taste Enjoy a fresh kiwi with your breakfast to start your day off on the right foot Bring one to work and treat yourself to a scrumptious healthy snack at the office Great for school lunches Perfect for topping desserts', 'Unbranded', 'https://i5.walmartimages.com/asr/6ffef26e-8b4c-437a-a8e3-d9a9a3bdabd6.ea046fd5847687c2a43c54107770e41c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6ffef26e-8b4c-437a-a8e3-d9a9a3bdabd6.ea046fd5847687c2a43c54107770e41c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/6ffef26e-8b4c-437a-a8e3-d9a9a3bdabd6.ea046fd5847687c2a43c54107770e41c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (13736673403, 'Kiwi Clamshell 1lb', 2.93, 'deleted_014668501007', 'Mighties Kiwi', 'Delicious sweet and tangy kiwi fruit Packed with Vitamin C, fiber and antioxidants with a scrumptious fruit taste Enjoy a fresh kiwi with your breakfast to start your day off on the right foot', 'PRODUCE UNBRANDED', 'https://i5.walmartimages.com/asr/3f0ac4b1-084a-4ac7-9a73-64aca0daf6c3.cbe453816e4dc6b00ce2c1fb28fbbb29.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3f0ac4b1-084a-4ac7-9a73-64aca0daf6c3.cbe453816e4dc6b00ce2c1fb28fbbb29.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3f0ac4b1-084a-4ac7-9a73-64aca0daf6c3.cbe453816e4dc6b00ce2c1fb28fbbb29.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (13793119436, 'DOMEX SUPERFRESH GROWERS', 4.94, '888289401158', 'DOMEX SPRFR GRWRS APL SNGL FRT BAG', 'Apples, Organic, Granny Smith 2-3/8 in min dia. USDA Organic. Certified Organic by Washington State Department of Agriculture. US extra fancy. daisygirlorganics.com. cmiorchards.com. Facebook/DaisyGirlOrganics. Product of USA.', 'Unbranded', 'https://i5.walmartimages.com/asr/f260b4ba-7f38-4e6a-a0dc-dbd39ab62739_1.57732e503dd596fe3cb77e6c4dc995c0.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f260b4ba-7f38-4e6a-a0dc-dbd39ab62739_1.57732e503dd596fe3cb77e6c4dc995c0.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f260b4ba-7f38-4e6a-a0dc-dbd39ab62739_1.57732e503dd596fe3cb77e6c4dc995c0.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (14158265066, 'Shams Pitted Pressed Date Paste | Baking Dates | 14.1 oz (Pack of 4)', 23.99, '794711995792', 'Elevate your baking with Shams Pitted Pressed Date Paste, the perfect all-natural sweetener made from high-quality, pitted dates. At 28.2 oz, this generous jar is packed with the rich, caramel-like flavor of dates, offering a healthier alternative to refined sugars and artificial sweeteners. Ideal for a variety of recipes, from cakes and cookies to smoothies and energy bars, this date paste provides natural sweetness, fiber, and essential nutrients in every bite. Made from carefully selected dates and pressed to perfection, Shams Date Paste has a smooth, velvety texture that blends easily into your favorite baking creations. Whether you\'re baking treats, adding sweetness to savory dishes, or making homemade snacks, this versatile paste adds depth and flavor while keeping your recipes wholesome and delicious. Choose Shams Pitted Pressed Date Paste for a naturally sweet, nutritious, and flavorful ingredient to enhance your culinary creations!', 'Premium Shams Pitted Pressed Date Paste for Rich, Natural Sweetness – Made from 100% high-quality, pitted dates, offering a rich, smooth texture and natural, caramel-like sweetness perfect for a wide range of recipes. Ideal for Baking and Cooking – This versatile date paste is a perfect ingredient for baking, smoothies, energy bars, or as a healthier sweetener for sauces, dressings, and snacks. Ample Supply and Long-Lasting Freshness – Generously packaged in a large 28.2 oz jar, ensuring you have plenty of this nutrient-rich date paste on hand for frequent use. Naturally Sweet, No Added Sugar or Preservatives – A wholesome, pure product with no added sugars, artificial sweeteners, or preservatives, making it a clean, natural alternative to processed sweeteners. Rich in Fiber, Potassium, and Nutrients – Packed with natural fiber, potassium, and essential nutrients, this date paste provides a nutritious and delicious way to add natural sweetness to your meals.', 'Shams', 'https://i5.walmartimages.com/asr/f0ca3d0c-2f6f-4e49-bd2e-78e8740f5c79.8f7c320065fc836faa0d058be3555fe5.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f0ca3d0c-2f6f-4e49-bd2e-78e8740f5c79.8f7c320065fc836faa0d058be3555fe5.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f0ca3d0c-2f6f-4e49-bd2e-78e8740f5c79.8f7c320065fc836faa0d058be3555fe5.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (14694750135, 'Organic Medjool Dates 2Lbs', 25, '860003432853', 'Organic Medjool Dates 2Lbs', 'Organic Packed with nutrients Fresh from our farms', 'Natures Anthem', 'https://i5.walmartimages.com/asr/c967c932-2e0e-43e1-80e5-127450abaa5c.45efa3f42af5b3d51e1c6e9b9fdb5901.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c967c932-2e0e-43e1-80e5-127450abaa5c.45efa3f42af5b3d51e1c6e9b9fdb5901.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c967c932-2e0e-43e1-80e5-127450abaa5c.45efa3f42af5b3d51e1c6e9b9fdb5901.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (14993803615, 'Fresh Navel Oranges, 4 lb Bag', 3.97, '095829601712', 'Fresh Navel Oranges are a good addition to a healthy diet along with other fruit. They\'re oval with a thick, easy-to-remove peel and segments that separate cleanly. Oranges are a fruit that contains vitamin C and other nutrients that can be eaten as is or juiced for a smooth beverage at breakfast. It is suitable for use in all kinds of sweet and savory dishes, from cakes to weeknight chicken dinners. Citric acid fruits like oranges can be stored at room temperature for several days or in the refrigerator for up to two weeks. Available in a 4 lb package, these Fresh Navel Oranges are great for the entire family.', 'Fresh Navel Oranges, 4 lb Bag A good addition to a healthy diet Easy to peel segments Contains vitamin C and other nutrients Can be juiced for a breakfast beverage Suitable for use in all kinds of sweet and savory dishes Store fresh oranges at room temperature or refrigerate', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (15020316716, 'Marketside Fresh Cut Pineapple, 24 oz Tray', 6.47, '194346455942', 'Treat yourself to a refreshing taste of the tropics with the 24 oz bowl of Marketside Cut Pineapple. Hand-cut for peak ripeness, this bowl is packed with sweet, golden pineapple that’s bursting with juicy flavor and ready to enjoy right out of the container. Whether you\'re adding it to your morning smoothie, packing it for a quick snack, or serving it as a healthy side at dinner, this pineapple delivers a crisp texture and naturally sweet taste that everyone will love. Packaged in a peel and reseal container, it’s designed for maximum freshness and on-the-go convenience: perfect for busy lifestyles, school lunches, or outdoor adventures. Backed by the Marketside commitment to quality, the Pineapple Bowl makes it easier than ever to bring high-quality, ready-to-eat fruit into your daily routine. Fresh ideas and quality ingredients, that\'s how Marketside brings the best foods to your table. We are committed to deliver freshness that you can taste and see. Marketside offers the best in fresh food, guaranteed by Walmart, working in partnership with farmers, bakers and chefs for the highest quality, authentic ingredients and favorite recipes.', 'Marketside Fresh Cut Pineapple, 24 oz Tray Sweet, juicy, and hand-cut for peak ripeness and maximum flavor No prep needed; perfect for quick snacks, lunch sides, or healthy desserts Keeps fruit fresh longer and adds grab-and-go convenience Ideal for busy mornings, school lunches, or road trip snacks Great for smoothies, fruit salads, yogurt bowls, or just as-is Shareable portion that’s great for families or entertaining', 'Marketside', 'https://i5.walmartimages.com/asr/a7919365-d74e-4c77-a0d8-986676daf9ec.82ae4437f61ab969e2adc490746458ce.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a7919365-d74e-4c77-a0d8-986676daf9ec.82ae4437f61ab969e2adc490746458ce.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a7919365-d74e-4c77-a0d8-986676daf9ec.82ae4437f61ab969e2adc490746458ce.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (15354824613, '(3 pack) Rancho Meladuco California-Grown Medjool Dates, Whole Fresh Un-Pitted, 1 lb. Box Dates', 32.7, '460325017242', 'Did you know dates are the only Superfood that tastes like Candy? Soft and chewy, dates taste like caramel and brown sugar. Our 1 lb. box of sweet and delicious California Grown Medjool Dates will become your new favorite go-to sweet treat. Dates are a nutrient dense, bite sized fruit grown in the warm sunny deserts of Southern California under our plentiful Sunshine. Celebrating the history of California\'s date farms and love affair with dates, you\'ll find a recipe for the classic roadside date shake right on the box. Dates are the better-for-you natural \"candy\", providing sustained energy and fuel for both competitive athletes and everyday people alike, and are versatile enough to add a touch of sweetness to countless dishes and recipes. Dates contain more potassium ounce for ounce than bananas and are a good source of daily fiber as well as containing iron, magnesium and other essential vitamins and nutrients. Despite their sweetness dates are lower on the glycemic index for people monitoring their blood sugar. We love our dates stuffed with a little crunchy nut butter, ice cream, or even tangy blue cheese. Chop them and add to oatmeal, yogurt, salads, or savory dishes or add them to your baked goods for a nutrient dense natural sweetener. Dates are one of the top trending foods for good reason and we\'re sure you\'ll fall in love with dates too! These dates contain a seed so please enjoy with care and remove the seed before eating. Allergen warning: our dates are packed in a facility that may also process tree nuts & peanuts. Allergens not contained: free of soy, gluten, egg, dairy, casein. Condition: Whole, un-pitted Organic Medjool dates. No sugar added. Shelf stable, but to enhance freshness store in a cool location.', 'One pound box of whole, un-pitted Medjool Dates Approximately 20-25 dates per pound Contains a seed, remove before eating. Tastes like caramel and brown sugar with hints of cinnamon Naturally sweet, whole fruit and nutrient dense superfood No added sugar CONTAINS WHOLE, UN-PITTED CALIFORNIA GROWN MEDJOOL DATES- Grown and hand picked in the Coachella Valley of Southern California. Our Dates are a delicious and nutritious snack that is perfect for any occasion. Our Dates are naturally SWEET and SOFT, and are packed with essential vitamins and minerals. They are a great source of dietary fibers, and are a great way to satisfy your sweet tooth without the guilt. Enjoy them as a snack, or add them to your favorite recipes for a delicous and healthy treat.', 'Rancho Meladuco', 'https://i5.walmartimages.com/asr/9636fe50-358a-41c3-800f-90678c60bc07.6ef5a666f5392aa59e7f3c368ecd9304.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9636fe50-358a-41c3-800f-90678c60bc07.6ef5a666f5392aa59e7f3c368ecd9304.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/9636fe50-358a-41c3-800f-90678c60bc07.6ef5a666f5392aa59e7f3c368ecd9304.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (15421721133, 'Fresh Blueberries Driscoll\'s Sweetest Batch, Dry Pint Container', 6.62, '715756500178', 'Sweetest batch blueberries are a special variety selected for their extra-sweet deliciousness. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as a topping for pancakes, bake them in a mouthwatering bread, mix them with lemon and water for a flavorful and refreshing drink. They contain essential vitamins and nutrients like vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them and enjoy the fresh taste. Refrigerate the berries in original Clam Shell to keep them fresh and ready for use.', 'Premium selection Only Driscoll\'s grows Sweetest Batch Blueberries from proprietary berry variety Bursting with delicious flavor, these juicy berries are selected for their extra-sweet deliciousness. Refrigerate your blueberries in the original package to maintain freshness Delicious on their own as a healthy snack or as part of a recipe', 'Driscoll\'s Inc.', 'https://i5.walmartimages.com/asr/a3ba3fa6-7184-42d2-b90a-43679b696992.442d97fdaae27d3eb475c188a1c1b64a.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a3ba3fa6-7184-42d2-b90a-43679b696992.442d97fdaae27d3eb475c188a1c1b64a.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/a3ba3fa6-7184-42d2-b90a-43679b696992.442d97fdaae27d3eb475c188a1c1b64a.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (15444959398, 'Premium Khudri Saudi Dates (2.2 LB) – Fresh, Nutrient-Rich, High in Antioxidants & Fiber – Whole Dates from Saudi Arabia – Entaj Al Nakheel brand', 20.99, '', 'Indulge in the natural sweetness and rich flavor of Khudri dates from Entaj Al Nakheel, a premium selection imported directly from Saudi Arabia. These whole dates are carefully harvested and packaged to preserve their soft, chewy texture and nutritional benefits. Packed with fiber and antioxidants, these versatile dates make for a delightful healthy snack, perfect for baking, smoothies, or as a natural sweetener. The elegant packaging, adorned with traditional geometric patterns, makes this 2.2 lb box an excellent gift choice or a sophisticated addition to your pantry.', 'Indulge in the natural sweetness of premium Khudri dates from Entaj Al Nakheel, a brand that sources these dates directly from Saudi Arabia. These whole dates are carefully harvested and packaged to preserve their rich, authentic flavor and soft, chewy texture. Naturally packed with fiber and antioxidants, these dates can satisfy your sweet cravings while providing nutritional benefits. The elegant packaging, adorned with traditional geometric patterns, makes these dates an excellent gift choice or a sophisticated addition to your pantry. Enjoy these dates as a wholesome snack any time of day, or use them in cooking, baking, or as a natural sweetener in your recipes. The protective window box preserves the freshness of the dates while allowing you to see the product.', 'Entaj Al Nakheel', 'https://i5.walmartimages.com/asr/11e11544-9107-4961-833c-a680891b1488.39bcf6b126dbfdec5954abaefe1f9af3.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/11e11544-9107-4961-833c-a680891b1488.39bcf6b126dbfdec5954abaefe1f9af3.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/11e11544-9107-4961-833c-a680891b1488.39bcf6b126dbfdec5954abaefe1f9af3.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (16228157176, 'Welchs Green Grapes, 3 Lb', 9.97, '095829210112', 'Treat yourself to the delicious, juicy flavor of Fresh /White Grapes. These grapes are bursting with sweet flavor, so you can easily enjoy a handful as a fresh snack any time of day. Enjoy them for breakfast, lunch, dinner, or dessert. They are also perfect for creating stunning cheese boards and charcuterie plates by pairing them with fresh cheese, crackers, or delectable meats like prosciutto. If you want to be really creative, you can freeze them and use them and ice cubes that won\'t melt and release water into your favorite drinks. Treat yourself to the whole fresh taste of Fresh White Grapes. Fresh Product.', 'Freeze and use as cubes Great for using in fruit salad Pair with your favorite meats and cheeses for a charcuterie appetizer', 'Welch\'s', 'https://i5.walmartimages.com/asr/4e50cb5f-2717-4b43-9153-16c69e3f6627.be4a6973b570bf7c5b7820b6e8eeeae7.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4e50cb5f-2717-4b43-9153-16c69e3f6627.be4a6973b570bf7c5b7820b6e8eeeae7.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4e50cb5f-2717-4b43-9153-16c69e3f6627.be4a6973b570bf7c5b7820b6e8eeeae7.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (16462316478, 'Fresh Sour Oranges for Juicing and Cooking', 1.98, '897505002604', 'Fresh Sour Oranges are ideal for adding tangy citrus flavor to recipes. These tart and tangy fruits, known for their slightly bitter undertone, are perfect for culinary applications such as marinades, dressings, beverages, and traditional dishes. Typically medium-sized with a thick, textured peel, they exhibit a vibrant orange color when ripe. Whether you\'re cooking, juicing, or making a refreshing beverage, these sour oranges bring a zesty zing to any dish. Enjoy the unique flavor and aromatic freshness that only sour oranges can deliver.', 'Fresh Sour Oranges for a perfect tangy flavor Tart and tangy with a slightly bitter undertone, ideal for culinary and beverage applications Medium-sized fruit with a thick, textured peel; bright orange color when ripe Ideal for cooking and juicing Food condition: Fresh Fruit type: Citrus', 'Fresh King Inc/Unity Groves', 'https://i5.walmartimages.com/asr/56ca316a-4c2e-4653-b00e-78c33eab874e.9de35614fd46be44016e9f9094b45473.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/56ca316a-4c2e-4653-b00e-78c33eab874e.9de35614fd46be44016e9f9094b45473.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/56ca316a-4c2e-4653-b00e-78c33eab874e.9de35614fd46be44016e9f9094b45473.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (16511653326, 'Fresh Tropical Breadfruit - Versatile and Nutritious Alternative', 1.38, '897505002598', 'Fresh Breadfruit is a versatile tropical fruit prized for its starchy texture and mild flavor. When cooked, it becomes tender and hearty, making it a satisfying addition to both sweet and savory recipes. This fresh fruit can be baked, boiled, fried, or roasted, and is often used as a wholesome alternative to potatoes or rice. With its golden-green exterior and creamy white interior, it brings a taste of the islands right to your kitchen. Enjoy Fresh Breadfruit as part of a nourishing meal or experiment with it in your favorite recipes for a unique twist. Fresh Breadfruit is a delicious way to add variety to your table. Food Condition: Fresh.', 'Fresh Breadfruit, Each Large tropical fruit with a mild, starchy flavor Can be baked, boiled, fried, or roasted Excellent alternative to potatoes or rice Golden-green exterior with creamy white interior Perfect for both sweet and savory recipes Also known as \'Ulu\' and \'Panapen\' around the world. Food Condition: Fresh.', 'Unbranded', 'https://i5.walmartimages.com/asr/68dc6b98-1c47-4d5b-8edf-ec73d319a040.8753fc2505594b8a1f11e7be644cfebe.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68dc6b98-1c47-4d5b-8edf-ec73d319a040.8753fc2505594b8a1f11e7be644cfebe.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/68dc6b98-1c47-4d5b-8edf-ec73d319a040.8753fc2505594b8a1f11e7be644cfebe.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (16511957433, 'Welch\'s Blueberries 6oz', 3.87, '095829210686', 'Fresh Blueberries are a delightful and nutritious treat that brings a burst of flavor to any dish. These plump and juicy berries are picked at the peak of freshness, ensuring a sweet and tangy taste that is hard to resist. Perfect for snacking, baking, or adding to your favorite recipes, these blueberries are a versatile fruit that can be enjoyed in countless ways. Whether you sprinkle them on top of your morning cereal, blend them into a smoothie, or bake them into a delicious pie, Fresh Blueberries are sure to satisfy your cravings for a healthy and delicious snack.', 'These little bursts of flavor are not only delicious but also packed with nutrients, making them an ideal addition to your diet. Hand-picked at the peak of freshness, our Fresh Blueberries are plump, juicy, and bursting with natural sweetness. Each berry is carefully selected to ensure the perfect balance of sweetness and tanginess, ensuring a delightful taste sensation with every bite. The versatility of blueberries knows no bounds. Enjoy them straight out of the container as a refreshing and guilt-free snack or sprinkle them over your morning cereal or yogurt for a burst of fruity goodness. Blend them into a smoothie for a nutritious and energizing drink that will kickstart your day. Get creative in the kitchen and incorporate these blue gems into your baking endeavors, whether it\'s muffins, cakes, or pies, their vibrant color and juicy texture will enhance any recipe. Not only are blueberries delicious, but they also offer an array of health benefits. Loaded with antioxidants, vitamins, and dietary fiber, blueberries are known to promote heart health, support brain function, and boost the immune system. They are a nutritious choice that will keep you feeling good from the inside out. Our Fresh Blueberries come conveniently packaged and can be enjoyed immediately or stored in the refrigerator for later use. The possibilities are endless with these versatile berries, allowing you to explore new culinary creations and indulge in their wholesome goodness. Treat yourself to the delightful taste and nutritional benefits of Fresh Blueberries. Elevate your dishes, satisfy your cravings, and experience the joy of these plump and juicy berries. Order your batch today and unlock a world of flavor and wellness.', 'Welch\'s', 'https://i5.walmartimages.com/asr/92f21f75-4f8b-4b8c-812c-84473f813869.b7912692e380478f5a100991660f3ae7.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/92f21f75-4f8b-4b8c-812c-84473f813869.b7912692e380478f5a100991660f3ae7.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/92f21f75-4f8b-4b8c-812c-84473f813869.b7912692e380478f5a100991660f3ae7.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (16804910930, 'Welch Cherries, 1 Lb.', 6.97, '095829211621', 'Cherries are a family favorite: ideal as a snack, the perfect addition to breakfast with oatmeal or yogurt, an excellent ingredient for baking or salads, and delicious on their own. Our family recipe for cherry cookies is a hit with family and friends. Rich in antioxidants, they are a source of vitamin C, potassium, and fiber. Low in calories compared to other sweet fruits, they have been associated with anti-inflammatory benefits and improved sleep thanks to their natural melatonin content.', 'Rich in antioxidants, they are a source of vitamin C, potassium, and fiber. Ideal for snacks They are usually eaten fresh, in desserts or in jams They help reduce oxidative stress and contribute to cardiovascular health.', 'Welch\'s', 'https://i5.walmartimages.com/asr/c41d615c-e21e-45bc-8ee1-85d7cc6999a5.a2f7b4488207c40d7995718007abee6c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c41d615c-e21e-45bc-8ee1-85d7cc6999a5.a2f7b4488207c40d7995718007abee6c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c41d615c-e21e-45bc-8ee1-85d7cc6999a5.a2f7b4488207c40d7995718007abee6c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (16975920583, 'Fresh Rambutan Clam 12 oz - Exotic Fresh Fruit', 4.97, '000000030410', 'Rambutans are tropical fruits native to Southeast Asia. Their spikey red shell makes them visually distinct, reminiscent of a hairy lychee. Inside, the juicy and sweet white flesh closely resembles that of a lychee, offering a delightful balance of sweet and tangy flavors. Ideal for a refreshing snack or a unique addition to fruit salads. Sold fresh, these rambutans are carefully packed in a 12 oz clam shell to ensure they arrive in perfect condition, ready to bring a tropical touch to your fruit bowl.', 'Fresh tropical rambutan fruits, known for their sweet and juicy flavor. 12 oz clam shell ensures freshness and convenience. Ideal for snacking, fruit salads, or tropical recipes. Naturally sourced from Southeast Asia, an exotic addition to your fruit selection. Supports a healthy diet with rich fiber and vitamins. Fast delivery with optimal refrigeration to maintain quality.', 'Unbranded', 'https://i5.walmartimages.com/asr/392edd21-1311-4e90-8ab4-a2d4e49bd34a.f57f876be1f72078125ae14ff5b0e6a4.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/392edd21-1311-4e90-8ab4-a2d4e49bd34a.f57f876be1f72078125ae14ff5b0e6a4.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/392edd21-1311-4e90-8ab4-a2d4e49bd34a.f57f876be1f72078125ae14ff5b0e6a4.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17081672250, 'Yellow Peach, 2 lb Bag', 3.88, '033383322186', 'Yellow Flesh Peaches, per Pound', 'Fresh Yellow Flesh Peaches', 'Fresh Produce', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17280560931, '80 Acres Farms Micro-topia Microgreens, 0.75 oz Clam Shell, Fresh', 2.98, '817578022415', '80 Acres Farms Micro-topia Microgreens is a symphony of lively flavors, colors and textures harmoniously blended to make your mouth sing.', 'Zero Pesticides Sustainably Grown Fresher Longer No Need To Wash Non-GMO Grown Indoors', '80 Acres Farms', 'https://i5.walmartimages.com/asr/1f8483d7-8149-4eb1-9a89-b8526719eab2.2b7e2f4ae0465c008c5efab7b353ab0a.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1f8483d7-8149-4eb1-9a89-b8526719eab2.2b7e2f4ae0465c008c5efab7b353ab0a.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1f8483d7-8149-4eb1-9a89-b8526719eab2.2b7e2f4ae0465c008c5efab7b353ab0a.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17283650637, 'Thai Guava Fresh Tropical Fruit, Each', 1.32, '897505002611', 'Thai Guava is a fresh, crisp, and refreshing tropical fruit ideal for snacking or enhancing your favorite dishes. It features a vibrant green skin with a pale interior and offers a mildly sweet flavor with a crunchy texture, making it a unique treat. Enjoy it fresh with a sprinkle of salt or chili for an adventurous twist, or incorporate it into salads and smoothies. Thai Guava is a fresh, juicy fruit option providing a tropical experience that’s both delicious and versatile. Experience it fresh for the ultimate taste.', 'Thai Guava, Each Bright green skin with pale, crisp interior Mildly sweet flavor with crunchy texture Great for snacking, salads, or smoothies Can be paired with salt or chili for a bold taste Refreshing tropical fruit option Available fresh for optimal taste', 'Unbranded', 'https://i5.walmartimages.com/asr/5db2abb0-5b85-4289-bd09-89334a0d17d4.89e6322dda6b3556d68e1982ce4b7af1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5db2abb0-5b85-4289-bd09-89334a0d17d4.89e6322dda6b3556d68e1982ce4b7af1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5db2abb0-5b85-4289-bd09-89334a0d17d4.89e6322dda6b3556d68e1982ce4b7af1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17358255648, 'Fresh Whole Shallots 16oz Bag', 2.88, '045255126501', 'Experience the exquisite flavor of Fresh Whole Shallots, perfect for enhancing any dish. These 16oz bags are filled with fresh, aromatic, and versatile shallots, which are indispensable for chefs and home cooks alike. They provide a milder taste than onions, making them ideal for salads, dressings, and more. Their fine texture and unique blend of garlic and onion flavors elevate your culinary creations, whether sautéed, roasted, or used raw. Keep these handy for adding depth and flair to sauces, marinades, and soups.', 'Fresh and Aromatic: Our whole shallots are carefully sourced to ensure premium quality and rich flavors. Versatile Ingredient: Perfect for use in a wide variety of recipes, from salads to sauces. Food Condition: Fresh, ensuring you get the best taste and texture. Ideal for Cooking: Adds depth and flair to your culinary creations with its unique garlic-onion flavor.', 'Unbranded', 'https://i5.walmartimages.com/asr/5cb7625b-8a08-4125-bf87-74e2105f20fd.6a315818580725349bb4f8bc82b2e62f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5cb7625b-8a08-4125-bf87-74e2105f20fd.6a315818580725349bb4f8bc82b2e62f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/5cb7625b-8a08-4125-bf87-74e2105f20fd.6a315818580725349bb4f8bc82b2e62f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17401664280, 'Bright Farms Butter Crunch 8 Oz', 4.97, '850051825158', 'BrightFarms Butter Crunch is the perfect base for any salad, burger or sandwich. It combines our signature Crunchy Green Leaf Lettuce with our Sweet Baby Butter for an approachable and satisfying blend that is versatile and packed with texture. Grown nearby in a state-of-the-art greenhouse, the salad greens go from farm to store in as little as 24 hours ensuring they are fresh, crunchy and long-lasting in your fridge -- in fact we guarantee it! By growing indoors using a hands-free growing process, we eliminate the use of pesticides on our produce so that the greens are ready to eat from the container, with no need to wash. At BrightFarms, we are on a mission to grow salads in a way that is better for people and the planet, transforming the way people eat and enjoy fresh produce - and shaping a more sustainable future for food.', 'Pesticide, herbicide and fungicide free greens Greenhouse grown, for guaranteed fresh greens year-round No need to wash Responsibly grown, harnessing the power of technology to do more with less: less water, less land, less shipping fuel to produce more Non-GMO Perfect for salads, sandwiches, wraps and more', 'BrightFarms', 'https://i5.walmartimages.com/asr/4f37c7f7-12b8-441f-bd31-ca357e7f5dcd.00142ac5563c1347abd76f3f16dff76c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4f37c7f7-12b8-441f-bd31-ca357e7f5dcd.00142ac5563c1347abd76f3f16dff76c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/4f37c7f7-12b8-441f-bd31-ca357e7f5dcd.00142ac5563c1347abd76f3f16dff76c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17452455869, 'Flavorables Vampire Killer Seasoned Fresh Petite Potatoes in Microwave-Safe 16 oz Tray', 4.48, '813652011450', 'Flavorables® Fresh Petite Potatoes – Vampire Killer Seasoning is a delightful fresh vegetable option that transforms snack time into a bold flavor adventure. This 16 oz microwave-safe pack is designed for ultimate convenience and taste. Fresh potatoes are seasoned with Spiceology\'s “Vampire Killer” blend that includes garlic, Parmesan, onion, and sea salt. Ready to cook in minutes, these fresh potatoes offer a crispy texture whether prepared in the microwave or air fryer. Perfect for key occasions as a snack, a flavorful side, or a standout at parties, these fresh potatoes appeal to adventurous eaters who love bold flavors.', '16 oz pack for convenient snacking – easy to prepare and share. Unique and bold flavor profile – Garlic, Parmesan, sea salt, and onion come together in the “Vampire Killer” seasoning for a taste that stands out. Crispy texture for maximum enjoyment – cooks quickly in the microwave or air fryer for a satisfying bite. Perfect for parties and gatherings – a flavorful side dish or snack that pairs with any occasion. High-quality ingredients used – real fresh petite potatoes with authentic spices from Spiceology®. Ideal for adventurous snackers – crafted for those who crave big flavors and bold combinations with a fresh twist.', 'Flavorables', 'https://i5.walmartimages.com/asr/13fd16ef-4e96-4cba-afab-7a771295f295.c94ebc2bfc77e765141e37a7c004bb17.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13fd16ef-4e96-4cba-afab-7a771295f295.c94ebc2bfc77e765141e37a7c004bb17.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/13fd16ef-4e96-4cba-afab-7a771295f295.c94ebc2bfc77e765141e37a7c004bb17.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17489620872, '20 Pack Clear Plastic Berry Clamshell Vented Container for blueberry, Cherry Tomatoes', 29.49, '', '20 Pack Clear Plastic Berry Clamshell Vented Container for blueberry, Cherry Tomatoes', 'Material: blueberry Clamshell Container is made of PET material, which is safe and odorless, has a good preservation function, and is convenient and practical. Set includes: 20 packs of blueberry containers, the size of each blueberry container is: 5-1/4X4X4 Inch, hinged box for fruit, salad The clear design allows you to clearly see the berries inside. Clear plastic berry containers are the perfect display solution for farmers markets and produce stands.', 'JLK-ZHOU', 'https://i5.walmartimages.com/asr/c79f8005-aa6b-4d77-83c5-59b6fb87655f.4c535245a926703e5f3d4700a84fec65.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c79f8005-aa6b-4d77-83c5-59b6fb87655f.4c535245a926703e5f3d4700a84fec65.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c79f8005-aa6b-4d77-83c5-59b6fb87655f.4c535245a926703e5f3d4700a84fec65.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17530472909, 'Cucumber Trellis for Climbing Plants Outdoor, 63”x 63” Foldable A-Frame Garden Trellis for Raised Bed with Climbing Net and Plant Support Clip for Vegetable Grape Tomato', 31.49, '', 'Garden trellis are an essential and important element in the gardening life, and beautiful plants need heart to take care of them. The charm of plants lies in their ability to reflect the flavour of nature in the most delicate way, while adding life to our home life. A-frame cucumber trellis can grow various plants from both sides of the trellis. These shapes promote airflow for the climber, and the plant will have plenty of sunlight to maximize photosynthesis. Let you get a better harvest. Hassle-free to assemble and disassemble for compact storage in the off-season. Light weight, easy to move. Legs insert into soil for the best stability, stands up in heavy winds. The included netting, clips, and ties can also provide appropriate support and exercise for growing plants, keeping vegetable and fruit vines away from the ground, which is a good solution to the problem of overweight vines and easy to harvest. A garden climbing frame is suitable for providing support for climbing plants such as cucumbers, peas, zucchini, grapes, tomatoes, flowers, etc. Help you make the most of limited garden space and harvest more fruits! Widely Applicable:', '🍇【A Frame Design】The A-shaped design provides 2 growing surfaces to plant your beloved vegetables and flowers, and the inclined design not only maximizes the use of garden space, provides a good growing environment for plants, but also enables your plants to get more sunlight to cultivate higher quality fruits and vegetables, enabling you to maximize harvest and yield. 🥒【High Quality & Perfect Size】Our trellis for cucumbers is made of high quality plastic coated steel pipes in the size of 63 x 63 inches, with a weatherproof, rustproof, durable surface coating that will serve you well for a long time. The triangular design provides stability in windy areas, it will stand firmly and protect your plants well even in harsh weather conditions. 🍅【Let Your Plants Thrive】: Don\'t let your cucumber plants tangle or get stuck in the shade, the garden trellis for vegetables is equipped with nylon mesh and plant binding to fix and support plants, providing a clear climbing path for your plants, and effectively preventing branches and leaves from falling off or breaking, make them more beautifu and healthy.', 'HZY', 'https://i5.walmartimages.com/asr/8357f843-280e-420e-b90d-ba30d36fe5e4.31c094b439bce6a8727c47ae49717fe3.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8357f843-280e-420e-b90d-ba30d36fe5e4.31c094b439bce6a8727c47ae49717fe3.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8357f843-280e-420e-b90d-ba30d36fe5e4.31c094b439bce6a8727c47ae49717fe3.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17530522751, '48 x 48 Inch Garden Cucumber Trellis Vegetable Arch Trellis Green Bean Pea Grape Tomato Squash Trellises for Raised Bed Climbing Plants Outdoor', 42.95, '', 'Help others learn more about this product by uploading a video!5.0 out of 5 stars 48 x 48 Inch Garden Cucumber Trellis Vegetable Arch Trellis Green Bean Pea Grape Tomato Squash Trellises for Raised Bed Climbing Plants Outdoor Share: Found a lower price? Let us know. Although we can\'t match every price reported, we\'ll use your feedback to ensure that our prices remain competitive. Fields with an asterisk * are required** 010203040506070809101112 01020304050607080910111213141516171819202122232425262728293031 *Enter the store name where you found this product* Please select province Please select province * 010203040506070809101112 01020304050607080910111213141516171819202122232425262728293031 Submit Feedback Warranty & Support Feedback', 'Arch Cucumber Trellis: The A-shaped garden trellis is more stable than the traditional A-Frame garden trellis. The garden arch trellis is designed in the shape of a A, allowing for rows to be planted on either side. The arched design maximizes the use of garden space. The garden vegetable trellis provides a good growing environment for climbing plants. Large Garden Cucumber Trellis: Dimensions (L x H): 122 * 122 cm / 48 x 48 inches. The gardening trellis is equipped with nylon netting and plant straps to secure and support plants, increase the vertical space for vegetable and fruit vines, and effectively prevent branches from falling off and breaking. Premium Material: Our cucumber garden trellis is made of durable metal coated steel core. The coating makes the garden arch trellis rust and water resistant. Reliable strength resists damage from heat and harsh weather. Durable nylon netting supports the sturdy melon crop.', 'HZY', 'https://i5.walmartimages.com/asr/0d96db96-1e89-46ab-828d-e904decae2fd.ec9a9627b9aa259562d101e638610630.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d96db96-1e89-46ab-828d-e904decae2fd.ec9a9627b9aa259562d101e638610630.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/0d96db96-1e89-46ab-828d-e904decae2fd.ec9a9627b9aa259562d101e638610630.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17533171400, 'Baby Goblins Mini Decorative Pumpkins, Fresh, 3-Count Pack', 3.28, '823298001883', 'Add a touch of Halloween magic to your seasonal décor with Baby Goblins Mini Pumpkins. These fresh, solid dark green pumpkins bring bold color and natural charm to fall decorating. Perfect for tablescapes, party accents, and porch displays, this convenient 3-pack makes it simple to create a festive look indoors or out.', 'Fresh mini pumpkins in solid dark green color Seasonal accents for Halloween décor, autumn parties, and festive displays Compact size works well for tabletops, centerpieces, and mantels Three-pack offers versatile decorating options Each pumpkin is naturally unique in shape and appearance', 'Baby Goblins', 'https://i5.walmartimages.com/asr/e76ecfed-ae07-41f4-9cba-7671a9cd66cf.346bf696124c7248650185dd0be140e2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e76ecfed-ae07-41f4-9cba-7671a9cd66cf.346bf696124c7248650185dd0be140e2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e76ecfed-ae07-41f4-9cba-7671a9cd66cf.346bf696124c7248650185dd0be140e2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17559058041, 'Thickened Cucumber Trellis for Raised Garden Bed,Foldable Frame Metal Vegetable Trellis for Climbing Plants Outdoor Plant Support for Grape Tomato Peas, Fruit, Vine,Bean(Green)', 49.99, '', 'The sleek metal design adds a touch of modern elegance to your outdoor space, while their foldable frame makes them convenient to store when not in use. Thickened Cucumber Trellis for Raised Garden Bed,Foldable Frame Metal Vegetable Trellis for Climbing Plants Outdoor Plant Support for Grape Tomato Peas, Fruit, Vine,Bean(Green) Share: Found a lower price? Let us know. Although we can\'t match every price reported, we\'ll use your feedback to ensure that our prices remain competitive. Fields with an asterisk * are required **01020304050607080910111201020304050607080910111213141516171819202122232425262728293031*Enter the store name where you found this product*Please select province Please select province *01020304050607080910111201020304050607080910111213141516171819202122232425262728293031Submit Feedback Suitable for Many Kinds of Climbing Vegetable Vine Foldable Frame Metal Garden Trellis Foldable Frame Metal Garden Trellis Foldable Frame Metal Garden Trellis Sturdy Frame is Quite an Aesthetic Asset to Your Garden. Easy to Assemble and Disassemble Videos for this product Foldable Frame Metal Garden Trellis Warranty & Support Feedback', '【HIGH COST PERFORMANCE】Besides the frame trellis, we also provide multiple accessories for your need.Includes 8 x panel trellis, 12 x screw, 6 x ground stakes,20Pcs cable zip ties,a pair of gloves.You may assemble the unit according to the picture.It can also be combined into your favorite or suitable shape. 【DURABLE METAL TRELLS】Trellis frame is made of high duty alloy with Powder Coating that is Anti-Corrosion,Waterproof,Sunscreen and Colorfast.It can withstand harsh weather conditions and will last for many planting seasons.No need to replace your plant Trellis every year. 【EASY TO USE and STORE】Simply fasten the panel with screws,A beautiful garden vegetable frames is perfectly set up,It is easy to be foldable and convenient to store after dismantling.', 'HZY', 'https://i5.walmartimages.com/asr/af2f8fdc-654a-4379-8e13-5e1ab3f4f3e4.0269616a9fb89d3c1d5e45b987511ce2.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af2f8fdc-654a-4379-8e13-5e1ab3f4f3e4.0269616a9fb89d3c1d5e45b987511ce2.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/af2f8fdc-654a-4379-8e13-5e1ab3f4f3e4.0269616a9fb89d3c1d5e45b987511ce2.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17561561312, 'Cucumber Trellis for Raised Beds, 45 x 53 Inch Adjustable Size A-Frame Garden Trellis for Climbing Plant Outdoors with Climbing Net and Plant Support Clip for Vegetable Grape Tomato Garden Supplies', 39.09, '', 'Page 11Page 1 of 1 Cucumber Trellis for Raised Beds, 45 x 53 Inch Adjustable Size A-Frame Garden Trellis for Climbing Plant Outdoors with Climbing Net and Plant Support Clip for Vegetable Grape Tomato Garden Supplies Share: Found a lower price? Let us know. Although we can\'t match every price reported, we\'ll use your feedback to ensure that our prices remain competitive. Fields with an asterisk * are required** 010203040506070809101112 01020304050607080910111213141516171819202122232425262728293031 *Enter the store name where you found this product* Please select province Please select province * 010203040506070809101112 01020304050607080910111213141516171819202122232425262728293031 Submit Feedback LifeisLuck LifeisLuck Videos for this product A-Frame Cucumber Trellis for Raised Beds for Vegetable Videos for this product Trellis for Cucumbers If You\'d Like To Grow Your Own Food Videos for this product Customer Review: Not symmetrical and crooked Warranty & Support Feedback', 'Customizable A-Frame Structure: Elevate your garden with our versatile Adjustable-size A-frame garden trellis for cucumbers. Crafted with 37 straight stakes of 15.74 inches, 2 longer straight stakes of 18.1 inches, 4 A-Fork connectors, and 4 straight connectors, this trellis adapts to your garden\'s needs, providing optimal support for cucumber plants and other climbing vegetables. Innovative Equal Tee and Equal Cross Design: Experience unparalleled stability with the inclusion of 10 equal Tee and 10 equal Cross connectors in our cucumber trellis. This thoughtfully designed vegetable trellis ensures that your cucumber plants, as well as other climbing plants like beans and tomatoes, stand firm and secure throughout the growing season. Durable Construction for Longevity: Crafted with durability in mind, our cucumber trellis features 30 cable zip ties for secure attachment and 1 Pack of 1.8*2.7m garden netting for added climbing. (The size of the net can be cut at will according to your own needs, or fixed with cable ties). Whether you\'re looking for a sturdy trellis for climbing plants outdoors or a reliable cucumber trellis for a raised bed, our product guarantees longevity and resistance to the elements.', 'HZY', 'https://i5.walmartimages.com/asr/ae517f46-d939-4bc8-9c87-40cb3961f201.29e58dacb6cd4ecfdd665a39dab5d691.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ae517f46-d939-4bc8-9c87-40cb3961f201.29e58dacb6cd4ecfdd665a39dab5d691.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/ae517f46-d939-4bc8-9c87-40cb3961f201.29e58dacb6cd4ecfdd665a39dab5d691.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17562170306, 'Baby Ghosts & Goblins Mini Decorative Pumpkins, Fresh Green & White, 4-Count pack', 3.28, '823298001937', 'Celebrate Halloween and autumn gatherings with Baby Ghosts and Goblins Mini Pumpkins. These fresh, solid-colored pumpkins feature a mix of deep green and creamy white tones that add bold contrast to seasonal decorating. The 4 count bag makes it simple to style centerpieces, brighten porch displays, or create unique party accents. Baby Ghosts and Goblins Mini Pumpkins bring a festive and versatile touch to fall celebrations.', 'Fresh mini pumpkins in solid green and white colors Seasonal accents for Halloween décor, fall parties, and autumn displays Compact size makes them ideal for centerpieces, tabletops, and mantels Four-pack provides decorating versatility and value Naturally unique in shape and appearance for authentic seasonal style', 'Frey Farms', 'https://i5.walmartimages.com/asr/e2f9ae44-a574-4f4a-8727-357ff294f3d0.e2db5b2cd2aee4a7970f75b4ab824429.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2f9ae44-a574-4f4a-8727-357ff294f3d0.e2db5b2cd2aee4a7970f75b4ab824429.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/e2f9ae44-a574-4f4a-8727-357ff294f3d0.e2db5b2cd2aee4a7970f75b4ab824429.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17601611107, 'Fresh Peeled Garlic Cloves, 1lb', 5.97, '', 'Garlic Cloves are perfect for salad dressings, marinades, sushi, stir fry & wok cooking, veggies, seafood, chicken & other meats.. Its a must-have in Indian curries. This is a convenient way of making Indian curries with ginger already in a paste. Use it at the beginning of cooking to create a sweet, garlicky base. Add it at the end- traditionally garlic bread, marinades and sauces- for a deeper, more pungent flavor.', 'Makes vegetable ornament more realistic and lifelike It can also be used as an enlightenment toy for children to learn about kinds of vegetables. Suitable for home, supermarket, vegetable shop, art training institution, kindergarten, hotel, etc', 'Unbranded', 'https://i5.walmartimages.com/asr/c8d11d6f-307c-4553-bf25-5bffdff9e3bc.4cff24e8924b18f565b784fb70d06252.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8d11d6f-307c-4553-bf25-5bffdff9e3bc.4cff24e8924b18f565b784fb70d06252.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/c8d11d6f-307c-4553-bf25-5bffdff9e3bc.4cff24e8924b18f565b784fb70d06252.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17687202926, 'Sunchaser Apples 3lb Bag', 3.22, '883391004907', 'Naturally Sweet, Wildly Adventurous. Sunchaser™ apples are sweet, crisp, and ready to fuel your day. Take one with you and bite into adventure. Sunchaser apples sport warm, sweet flavors with a gentle crunch, and familiar aromatics that remind you of your fun days outside with family and friends. Grown in the heart of Washington state apple country, Sunchaser apples soak up summer sun, clean water, and healthy soils, packing flavor and nutrients for your next great escape. Powered by the perfect balance of carbohydrates, fiber, and natural sugars, Sunchaser apples give you clean, steady energy for life’s everyday adventures. Send it with Sunchaser apples!', 'Naturally sweet, crisp, and ready to fuel your day. Warm, sweet flavors. Gentle crunch and familiar aromatics. Perfect balance of carbohydrates, fiber, and natural sugars', 'Sunchaser', 'https://i5.walmartimages.com/asr/76352ca5-3b1e-4d99-a220-3abc6a8111a5.4a976baa8cd6430c1f5a6def0b64f920.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/76352ca5-3b1e-4d99-a220-3abc6a8111a5.4a976baa8cd6430c1f5a6def0b64f920.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/76352ca5-3b1e-4d99-a220-3abc6a8111a5.4a976baa8cd6430c1f5a6def0b64f920.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17703609853, 'Djon-Djon Dried Mushrooms 20g', 4.98, '850008908651', 'Quisqueya Djon-Djon Dried Mushrooms bring the rich, earthy flavor of Haiti’s most beloved culinary ingredient to your kitchen. Known for their deep umami taste and distinctive aroma, Djon-Djon mushrooms are a staple in Haitian cuisine, most famously used in Diri Djon Djon (black mushroom rice). These premium dried mushrooms are carefully selected, sun-dried, and packed to preserve their natural flavor and nutrients.', 'Authentic Haitian Ingredient – Sourced and produced in Haiti for true Caribbean flavor. Rich, Earthy Taste – Adds depth and umami to rice, stews, soups, and sauces. Premium Quality – Carefully dried to lock in aroma, flavor, and nutrients. Nutrient-Rich – Good source of protein and iron, low in fat and sodium. Versatile Use – Ideal for traditional Haitian dishes like Diri Djon Djon, as well as gourmet recipes. Easy to Prepare – Simply soak in hot water before use to release its signature flavor. Shelf-Stable – Long storage life when kept in a cool, dry place. Convenient Size – 0.70 oz (20g) pouch, perfect for home cooking.', 'Quisqueya', 'https://i5.walmartimages.com/asr/deaacf40-fd49-4d42-942e-364fd4fb6e28.ff3ac57629344b9dc820b01511e1ff43.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/deaacf40-fd49-4d42-942e-364fd4fb6e28.ff3ac57629344b9dc820b01511e1ff43.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/deaacf40-fd49-4d42-942e-364fd4fb6e28.ff3ac57629344b9dc820b01511e1ff43.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17768064974, 'Quiskeya Djon-Djon Dried Mushrooms 50g', 9.58, '850008908385', 'Quisqueya Djon-Djon Dried Mushrooms bring the rich, earthy flavor of Haiti’s most beloved culinary ingredient to your kitchen. Known for their deep umami taste and distinctive aroma, Djon-Djon mushrooms are a staple in Haitian cuisine, most famously used in Diri Djon Djon (black mushroom rice). These premium dried mushrooms are carefully selected, sun-dried, and packed to preserve their natural flavor and nutrients.', 'Authentic Haitian Ingredient – Sourced and produced in Haiti for true Caribbean flavor. Rich, Earthy Taste – Adds depth and umami to rice, stews, soups, and sauces. Premium Quality – Carefully dried to lock in aroma, flavor, and nutrients. Nutrient-Rich – Good source of protein and iron, low in fat and sodium. Versatile Use – Ideal for traditional Haitian dishes like Diri Djon Djon, as well as gourmet recipes. Easy to Prepare – Simply soak in hot water before use to release its signature flavor. Shelf-Stable – Long storage life when kept in a cool, dry place.', 'Quisqueya', 'https://i5.walmartimages.com/asr/deaacf40-fd49-4d42-942e-364fd4fb6e28.ff3ac57629344b9dc820b01511e1ff43.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/deaacf40-fd49-4d42-942e-364fd4fb6e28.ff3ac57629344b9dc820b01511e1ff43.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/deaacf40-fd49-4d42-942e-364fd4fb6e28.ff3ac57629344b9dc820b01511e1ff43.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17799813927, 'Organic Grape Tomato', 4.97, '811717030590', 'short description is not available', 'Organic Grape Tomato', 'Unbranded', 'https://i5.walmartimages.com/asr/1d884035-a21a-401a-9426-0c96471dc865.815df32a6a555b69d5439739ef296a1e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d884035-a21a-401a-9426-0c96471dc865.815df32a6a555b69d5439739ef296a1e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1d884035-a21a-401a-9426-0c96471dc865.815df32a6a555b69d5439739ef296a1e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17806260260, 'Grape Tomatoes', 2.77, '852366005133', 'short description is not available', 'Grape Tomatoes', 'Unbranded', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (17980859105, 'Fresh Colada Royale Pineapple', 4.88, '643126972334', 'Boldly Exotic. Pure indulgence. Dole’s latest tropical masterpiece, 15 years in the making and exclusively grown in Honduras, is a completely non-GMO pineapple variety that redefines indulgence. Its soft golden color is lighter and brighter than your typical pineapple, signaling a more refined fruit—juicier, more aromatic, and bursting with a sweet and tangy complexity that truly captivates the palate. With a smaller core for maximum edible fruit and 2.5X higher vitamin B6 levels than other pineapples, Colada Royale™ is as nutritionally rich as it is indulgent. This fresh tropical fruit is perfect for both culinary creativity and everyday luxury. Colada Royale™ isn’t just grown, it’s nurtured with intention. A portion of every purchase supports the development of a community center in Honduras, dedicated to delivering education, healthcare, and vocational training to uplift the region where the fruit’s journey began.', 'Fresh Colada Royale Pineapple Naturally sweeter, golden-fleshed pineapple with a refined tropical flavor Nutritionally rich with 2.5X more vitamin B6 than typical pineapples Supports education, healthcare, and community growth in Honduras', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/8a81f072-bd1a-4390-9bf6-b6645c071227.c882d7f00b1eeefacab2f6b37149f89d.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8a81f072-bd1a-4390-9bf6-b6645c071227.c882d7f00b1eeefacab2f6b37149f89d.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8a81f072-bd1a-4390-9bf6-b6645c071227.c882d7f00b1eeefacab2f6b37149f89d.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18002104746, 'Fresh Navel Oranges, 8 lb Bag', 9.97, '072240601187', 'Enjoy the juicy goodness of Fresh Navel Oranges. A great source of vitamin C, these oranges can be a satisfying afternoon snack, or you can use them in a variety of recipes. For breakfast, use these navel oranges to make a rich and creamy smoothie or serve them alongside your pancakes, sausage, and eggs. Slice these oranges and use them to add flavor to a lunchtime salad or as a garnish for your favorite cocktail. Oranges are used in many tasty desserts like ambrosia, orange bars, and zesty orange pie. Get creative in the kitchen and make homemade orange marmalade or a refreshing orange sorbet. However you choose to use them, Fresh Navel Oranges add flavor to any meal or beverage.', 'Great source of vitamin C Use to add zest and flavor to your meals and beverages Enjoy on their own or in a variety of recipes Make a creamy orange smoothie Serve with your pancake breakfast Adds flavor to a variety or recipes Use as a garnish for your favorite cocktail Make sweet desserts like ambrosia, orange bars, and orange pie', 'FIELDPACK UNBRANDED', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18061719361, 'Prico Fresh Squash Chunks, 16oz', 2.97, '687398561063', 'Add some fresh flavor to your meal with \"Calabaza en Trozos\" fresh squash. This versatile vegetable can be used in a variety of dishes to create delicious and decadent meals. You place in the slow cooker with chicken breast, kidney beans, and spices. Create tasty and flavorful meals with this vegetable.', 'Versatile ingredient Roast the whole squash for the perfect side dish put into a slow cooker, and mix with chicken breast, beans, and spices for a flavorful dish Versatile ingredient Roast the whole squash for the perfect side dish or chop into cubes, put into a slow cooker, and mix with chicken breast, beans, and spices for a flavorful dish Use it to create a sweet and decadent pie', 'PRICO PRODUCE LLC', 'https://i5.walmartimages.com/asr/3d930da9-7178-4bb0-b48d-728ebb5dbea4.689e07664daabd8535976b6a726f2f06.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3d930da9-7178-4bb0-b48d-728ebb5dbea4.689e07664daabd8535976b6a726f2f06.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/3d930da9-7178-4bb0-b48d-728ebb5dbea4.689e07664daabd8535976b6a726f2f06.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18124201399, 'Spice World Fresh Garlic Sleeve, 3 Count', 1.74, '070969000908', 'Take your culinary creations to the next level with fresh, flavorful Garlic. Garlic\'s signature flavors become caramelized and sweeter when cooked, making it a perfect accompaniment to many dishes such as pasta, shrimp, chicken, stews, and more. Garlic also goes great in creamed soups, on all types of roasts, in a variety of egg dishes, or used simply with sauteed or roasted vegetables. To prepare garlic for cooking, you\'ll need to break it up into individual cloves and peel the skin. Once you\'ve done this, you can mince the garlic by chopping it into fine pieces. Spice up your next meal with a tasty clove of fresh Garlic.', 'Spice World Fresh Garlic Bulbs, 3 count', 'Fresh Produce', 'https://i5.walmartimages.com/asr/1987f303-5f7b-4250-a4be-15735b797999.ee158276b27318447e0e876cc3b1291b.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1987f303-5f7b-4250-a4be-15735b797999.ee158276b27318447e0e876cc3b1291b.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/1987f303-5f7b-4250-a4be-15735b797999.ee158276b27318447e0e876cc3b1291b.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18264416588, 'Fresh Jalapeno Pepper, Approx. 3-5 per 0.25 Pound', 0.41, '000000047135', 'Jalapeno Peppers, 1 Lb.', 'Jalapeno Pepper, 1 each: Naturally low in calories Rich in vitamins C, B6, A, and K Stuff jalapeno peppers and wrap in bacon for poppers, add to enchiladas or chili, or make a zesty salsa Approximately 3-5 peppers per .25 lb Versatile and delicious Jalapeno Peppers, 1 lb. Approximately 17 jalapenos per lb.', 'Fresh Produce', 'https://i5.walmartimages.com/asr/540e857c-d063-4ad1-96a4-553c237171b3.080e0d33d92e26a5822927761234c7f1.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/540e857c-d063-4ad1-96a4-553c237171b3.080e0d33d92e26a5822927761234c7f1.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/540e857c-d063-4ad1-96a4-553c237171b3.080e0d33d92e26a5822927761234c7f1.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18264416589, 'Fresh Kishu Kisses Mandarins, 1 lb Bag', 1.64, '899783002147', 'Enjoy the delightful freshness of Kishu Kisses Mandarins, perfect for snacking anytime. These miniature mandarins offer a burst of sweetness and tang with every bite, packed in a convenient 1 lb bag. Great for kids and adults alike, they are easy to peel and full of flavor, making them an ideal choice for healthy munching throughout the day. With high vitamin C content and other nutritional benefits, these mandarins are both delicious and nutritious, sourced and packaged with care for superior quality and taste.', 'Sweet and tangy flavor ideal for fresh snacking Each bag contains 1 lb of tiny mandarins Easy to peel and enjoy for all ages Packed with Vitamin C and essential nutrients Perfect for adding zest to your fruit salads', 'Kishu Kisses', 'https://i5.walmartimages.com/asr/f489b337-9c7f-4b1e-83b7-e5af3681c33c.3c70ddca48cdf1acacaf7b9241a934dc.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f489b337-9c7f-4b1e-83b7-e5af3681c33c.3c70ddca48cdf1acacaf7b9241a934dc.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/f489b337-9c7f-4b1e-83b7-e5af3681c33c.3c70ddca48cdf1acacaf7b9241a934dc.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18296219457, 'Fresh Green Leaf Lettuce, Each', 2.62, '882623762677', 'Fresh Green Leaf Lettuce is the perfect way to add more greens to your diet. This leafy lettuce is the perfect base for creating a variety of salads. Chop it up, add a protein like grilled chicken, a cheese like feta, candied pecans, and dried cranberries with a sweet vinaigrette for a sweet and tangy salad. Add it to spring rolls for a crunchy, refreshing addition. You could use it as a lettuce boat or wrap when you are wanting to still eat leafy greens but don\'t want a salad. It\'s low in calories making it perfect for adding to a healthy diet. Enjoy the crisp and refreshing taste of Fresh Green Leaf Lettuce.', 'Fresh Green Leaf Lettuce, Each Perfect base for creating salads Chop it and mix with grilled chicken, feta cheese, candied pecans, dried cranberries and a vinaigrette Add it to a spring roll for fresh addition Use it as a lettuce wrap or lettuce boat for something different Low calorie making it perfect for a healthy diet', 'Fresh Produce', 'https://i5.walmartimages.com/asr/43584fcd-d522-41d9-8b26-c8e671d4850e.86fe376258eaa7ba3a75e3e261877292.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/43584fcd-d522-41d9-8b26-c8e671d4850e.86fe376258eaa7ba3a75e3e261877292.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/43584fcd-d522-41d9-8b26-c8e671d4850e.86fe376258eaa7ba3a75e3e261877292.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18314008883, 'Fresh Peelz California Mandarin Oranges, 3 lb Bag', 3.97, '091636000021', 'Peelz mandarin oranges are nature’s most convenient snack; juicy, sweet, and easy to peel. Grown in California and picked at peak ripeness, these seedless mandarin oranges are a great source of vitamin C and perfect for busy days, lunch boxes, or healthy snacking at home. No prep, no mess; just delicious citrus flavor in every bite. Peelz mandarin oranges are happiness you can hold.', 'Fresh mandarin oranges Seedless, sweet, and easy-to-peel Excellent source of vitamin C Great for snacks, school lunches, and on-the-go Grown and harvested in California Naturally flavorful and refreshing', 'Peelz Citrus', 'https://i5.walmartimages.com/asr/7c8c9121-96a3-4d5e-8da8-6981f68f9dbb.33ecd59b68702f0e535a4b203736e185.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c8c9121-96a3-4d5e-8da8-6981f68f9dbb.33ecd59b68702f0e535a4b203736e185.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/7c8c9121-96a3-4d5e-8da8-6981f68f9dbb.33ecd59b68702f0e535a4b203736e185.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18334352056, 'Fresh Strawberries, 2 lb Package', 8.78, '715756200221', 'The sweet, juicy flavor of Fresh Strawberries make them a refreshing and delicious treat. Enjoy them for breakfast, lunch, dinner, or dessert. Use them as topping for pancakes, bake them in a mouthwatering bread, mix them with cucumbers for a light and flavorful salad, or puree them for strawberry shortcake. They contain essential vitamins and nutrients like, vitamin C, fiber, potassium, vitamin B and magnesium making them perfect for a healthy diet. Prior to serving simply gently wash them, remove the leafy caps, and enjoy the fresh taste. Refrigerate the berries in original Clam Shell to keep them fresh and ready for use. Pick up Fresh Strawberries today and savor the delectable flavor.', 'Fresh Strawberries, 2 lb: Prior to serving gently wash them and remove leafy cap Refrigerate your strawberries in the original Clam Shell container to maintain freshness Keep dry for optimal freshness Rich in vitamin C Use them as topping for pancakes, mix them with spinach and goat cheese for a light and flavorful salad, or puree them to make a delicious cocktail', 'FIELDPACK UNBRANDED', '', '', ''); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18340206833, 'Fresh Peelz California Mandarin Oranges, 5 lb Bag', 6.67, '091636000038', 'Peelz mandarin oranges are nature’s most convenient snack; juicy, sweet, and easy to peel. Grown in California and picked at peak ripeness, these seedless mandarin oranges are a great source of vitamin C and perfect for busy days, lunch boxes, or healthy snacking at home. No prep, no mess; just delicious citrus flavor in every bite. Peelz mandarin oranges are happiness you can hold.', 'Fresh mandarin oranges Seedless, sweet, and easy-to-peel Excellent source of vitamin C Great for snacks, school lunches, and on-the-go Grown and harvested in California Naturally flavorful and refreshing', 'Peelz Citrus', 'https://i5.walmartimages.com/asr/8eb8e0f4-d2f7-47fd-95a1-a5a1378897bc.a65fd83ff834e5a470d1be3e51b7daac.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8eb8e0f4-d2f7-47fd-95a1-a5a1378897bc.a65fd83ff834e5a470d1be3e51b7daac.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8eb8e0f4-d2f7-47fd-95a1-a5a1378897bc.a65fd83ff834e5a470d1be3e51b7daac.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18340256470, 'Organic Grape Tomato', 3.98, '741243001453', 'short description is not available', 'Organic Grape Tomato', 'Unbranded', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b95ba6f2-9927-49d6-91b9-a5cb893c49ac.a4ecb396d30d1009ae015fe71c1afa7e.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18379756903, 'Brightfarms Butter Crunch 4 Oz', 2.48, '857062004992', 'BrightFarms Butter Crunch is the perfect base for any salad, burger or sandwich. It combines our signature Crunchy Green Leaf Lettuce with our Sweet Baby Butter for an approachable and satisfying blend that is versatile and packed with texture. Grown nearby in a state-of-the-art greenhouse, the salad greens go from farm to store in as little as 24 hours ensuring they are fresh, crunchy and long-lasting in your fridge -- in fact we guarantee it! By growing indoors using a hands-free growing process, we eliminate the use of pesticides on our produce so that the greens are ready to eat from the container, with no need to wash. At BrightFarms, we are on a mission to grow salads in a way that is better for people and the planet, transforming the way people eat and enjoy fresh produce - and shaping a more sustainable future for food.', 'Pesticide, herbicide and fungicide free greens Greenhouse grown, for guaranteed fresh greens year-round No need to wash Responsibly grown, harnessing the power of technology to do more with less: less water, less land, less shipping fuel to produce more Non-GMO Perfect for salads, sandwiches, wraps and more', 'BrightFarms', 'https://i5.walmartimages.com/asr/b3a8160d-9f4a-409e-97ec-bce088429a1a.d75498a01d56c4f0e2c5d8431982aa04.png?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3a8160d-9f4a-409e-97ec-bce088429a1a.d75498a01d56c4f0e2c5d8431982aa04.png?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/b3a8160d-9f4a-409e-97ec-bce088429a1a.d75498a01d56c4f0e2c5d8431982aa04.png?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18404772802, 'Rambutan Bag 12oz', 4.98, '858335003872', 'Fresh Rambutan brings a burst of tropical sweetness to your table with its juicy, mildly tart flavor and exotic appeal. This unique fruit has a soft, translucent flesh that\'s easy to peel and enjoy, revealing a refreshing taste similar to lychee or grapes. The seed in the center can even be cooked and eaten, adding versatility to your kitchen creations. Perfect for snacking, fruit salads, or party platters, rambutan makes a colorful and fun addition to any occasion. Add a touch of the tropics to your day with Fresh Rambutan.', 'Rambutan Bag 12oz Sweet and mildly acidic tropical fruit with juicy flesh Easy to peel to enjoy the soft, refreshing inside Seed in the center can be cooked and eaten Great for fruit salads, desserts, or snacking Vibrant, eye-catching fruit ideal for entertaining', 'Unbranded', 'https://i5.walmartimages.com/asr/77e6eb3b-0889-432a-a260-8b57077acea9.ca904ceed7db4651ca4f1cee9934400f.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77e6eb3b-0889-432a-a260-8b57077acea9.ca904ceed7db4651ca4f1cee9934400f.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77e6eb3b-0889-432a-a260-8b57077acea9.ca904ceed7db4651ca4f1cee9934400f.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18545811032, 'Fresh Mandarin, 2 lb Bag', 4.47, '856552006898', 'Enjoy the juicy goodness of citrus when you eat a Fresh Mandarin Orange. Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Generally a winter fruit, mandarins are now available year-round in most markets. Mandarins are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the mandarins hang out in a bowl on your counter or table to breathe. Compact and portable, mandarins are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious fresh mandarin on hand for an easy, healthy treat.', 'Excellent source of vitamin C, potassium, and folic acid Easy to peel and segment Delicious, sweet, juicy citrus', 'Tropic sun', 'https://i5.walmartimages.com/asr/77fe3f93-6452-4025-86fb-580abf7cfee1.7211c31e4ad71d91494cdfed05f06348.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77fe3f93-6452-4025-86fb-580abf7cfee1.7211c31e4ad71d91494cdfed05f06348.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77fe3f93-6452-4025-86fb-580abf7cfee1.7211c31e4ad71d91494cdfed05f06348.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (18827366854, 'Fresh Whole Yellow Jumbo Onion, lb', 1.77, '400094290262', 'Cebolla Amarillas, 1 Lb.', 'Less pungent than other varieties of onions Mild, sweet flavor Great in dishes that feature onion as a primary flavor, like onion soup Yummy addition to salads and sandwiches Store in the refrigerator for best results Packed with minerals and vitamins Delicious and nutritious', 'Cebolla Amarillas', 'https://i5.walmartimages.com/asr/8adcca7f-66b3-443c-a934-933e6b40f4e5.814b32ee4d8a412896cf27b4bf01095c.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8adcca7f-66b3-443c-a934-933e6b40f4e5.814b32ee4d8a412896cf27b4bf01095c.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/8adcca7f-66b3-443c-a934-933e6b40f4e5.814b32ee4d8a412896cf27b4bf01095c.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (19131953443, 'Welch Fresh Mandarin, 2 lb Bag', 4.47, '095829851704', 'Enjoy the juicy goodness of citrus when you eat a Fresh Mandarin Orange. Deliciously sweet and juicy, these orange orbs of goodness are very easy to peel. Generally a winter fruit, mandarins are now available year-round in most markets. Mandarins are an excellent source of vitamin C, potassium, and folic acid. For maximum flavor, don\'t refrigerate; just let the mandarins hang out in a bowl on your counter or table to breathe. Compact and portable, mandarins are great to pack in your lunchbox, toss into your gym bag for a post-workout refreshment, or take on a road trip as a healthy alternative to those gas station snacks. Keep some easy-to-peel, juicy, sweet, and delicious fresh mandarin on hand for an easy, healthy treat.', 'Excellent source of vitamin C, potassium, and folic acid Easy to peel and segment Delicious, sweet, juicy citrus', 'Welch\'s', 'https://i5.walmartimages.com/asr/77fe3f93-6452-4025-86fb-580abf7cfee1.7211c31e4ad71d91494cdfed05f06348.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77fe3f93-6452-4025-86fb-580abf7cfee1.7211c31e4ad71d91494cdfed05f06348.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/77fe3f93-6452-4025-86fb-580abf7cfee1.7211c31e4ad71d91494cdfed05f06348.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); -INSERT INTO `Walmart` (`item_id`, `name`, `retail_price`, `upc`, `shortDescription`, `longDescription`, `brandName`, `thumbnailImage`, `mediumImage`, `largeImage`) VALUES (19226723392, 'FRESH SQUASH CHAYOTE', 2.27, '687398561285', 'Create tasty meals and side dishes with Chayote Squash. It\'s ideal to use for creating authentic Cajun cuisine and can be grilled, stir-fried, boiled, steamed or baked. This chayote squash can also be sliced or shredded and used in salads and slaws, or you can boil it and mash like a potato. It has a mild and slightly sweet taste with light notes of cucumber. Naturally low in calories and fat, chayote squash is an excellent source of vitamin C, vitamin B6, folate, fiber, and potassium. Expand your culinary repertoire when you use Chayote Squash to create delicious dishes.', 'Ideal for making authentic Cajun dishes Can be grilled, stir-fried, boiled, steamed or baked Slice or shred raw chayote to use in salads and slaws Mild and slightly sweet taste Provides an excellent source of vitamin C, vitamin B6, folate, dietary fiber and potassium Use in soups, stews, curries and casseroles', 'PRICO PRODUCE', 'https://i5.walmartimages.com/asr/cc50caec-e342-4082-af5d-863233ba8261.d00f4210171436005691efba725fa6a8.jpeg?odnHeight=100&odnWidth=100&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc50caec-e342-4082-af5d-863233ba8261.d00f4210171436005691efba725fa6a8.jpeg?odnHeight=180&odnWidth=180&odnBg=ffffff', 'https://i5.walmartimages.com/asr/cc50caec-e342-4082-af5d-863233ba8261.d00f4210171436005691efba725fa6a8.jpeg?odnHeight=450&odnWidth=450&odnBg=ffffff'); diff --git a/WalmartPipeline/TaxonomyBrowsing/generateTaxonomy.js b/WalmartPipeline/TaxonomyBrowsing/generateTaxonomy.js index c5191c3..3722cc0 100644 --- a/WalmartPipeline/TaxonomyBrowsing/generateTaxonomy.js +++ b/WalmartPipeline/TaxonomyBrowsing/generateTaxonomy.js @@ -1,74 +1,60 @@ +/** + * generateTaxonomy.js + * + * Downloads the Walmart product taxonomy and saves it to JSON. + * Run this first, then use browseTaxonomyExport.js to pick which + * subtrees you want to export as CSVs. + * + * Needs WM_CONSUMER_ID, WM_KEY_VERSION, WM_PRIVATE_KEY in .env. + */ + +import dotenv from 'dotenv'; +dotenv.config(); import crypto from 'crypto'; import fs from 'fs'; import path from 'path'; +import { fileURLToPath } from 'url'; -// Walmart base -const BASE = 'https://developer.api.walmart.com'; +const __filename = fileURLToPath(import.meta.url); -// Taxonomy endpoint (Affiliates v1 taxonomy docs) -// If your earlier working script used a different path, swap it here. +const BASE = 'https://developer.api.walmart.com'; const TAXONOMY_PATH = '/api-proxy/service/affil/product/v2/taxonomy'; -// Output files -const OUT_PRETTY = path.resolve(process.cwd(), 'taxonomy.json'); -const OUT_RAW = path.resolve(process.cwd(), 'taxonomy_raw.json'); - -/* -------------------- AUTH / HEADERS -------------------- */ - -const keyData = { - consumerId: '39d025f8-e575-48cf-aa4e-22f89da4c16f', - keyVer: '5', // keep as STRING; must match walmart.io key version exactly - privateKeyPem: `-----BEGIN RSA PRIVATE KEY----- -MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQC1hpiZMh1pyN6k -oDO95qK3L+/uY3M+sUpcnQkuNdFPBChh3jxEjn3zQLm88rdBTKQVqDD8E7g2KBHX -wYaSiKqqXcBkMkPfEEyTE/I//BjDF5dS+sgR6uIJmfsNVIVkY7laxo0STFCO3G+V -gkHTp8u/lJ5Aa8NSxu4BYlR0wBpze40aHYBeQw/+QuPvZzNeUf5YNC3rs5eId2f5 -N0rA2mZfY1myzE6UarW+5+WrWbkR0Bwrvs+8B/S8Jh4QFmh2EDaucisx96MXSH5S -3BuzBxqE9Txo4TKGu0y/aDmRU1Ij5WP88VnURU3vna1UF5n/pPw6InzvcQkeGS1o -thpyvCvtAgMBAAECggEABFOmXm5twvqOQpRa0/Gxo9YX/0iJoZPPdcPhLdF5N/lU -bqdUGeyojxoD41rkHviDXpXH9x9YxwevQp7QcrygjsU6Xv2YuekC3j69ycjcHKqf -UlygHdc3O2r/tHOr1G2RFhITIIbHEqSpqqY9ke7paxtaOQKojqpL/F1jdr8WduM9 -WQqbpgk+Hc6PIYVdUeALMX+IGNWbZiX6zqm85IKUdAA4/V0RCMl/j9ySBP6TsT06 -5IXK63urXl+AOJh1tHV79GP/waETEc6rQ8Ntn9p3HsUtsx6qiLSky7E2m2L3rdVd -LOzM2vVQDKr0SMGfx4/ZA79OJbLvJnwon9l4WdxmeQKBgQDb4L7sI4FnnD7uAaV5 -NTxt6ELJIpgxalTXbGiD6BoGN7LPbRfLJmKP4pGbNkfxtLZKsrTXOE1z5bTurRzY -dsH9pEmhBf7SdYtNrnPZCfOwpZaK/PyVdIggnaAiVYD6Q5urNcTltOA9SLdxGJyE -Ny8GpdB/ItmRCUkru4uk8L3KFQKBgQDTWOaBQRPvrL7sl4nVrTlfaxDTYulFgqSx -j3ag+RBhCwvFVNxb710moIEtThpDnaLNJCc6JQ+QebrsDP7Q49eOxqKbbbLOHGrt -akkeMROg6+MaL7HMAMsjCj7hBnpSjCg94ldHuJ0d8/PB60amIES/TTOyTsssxIlD -HcoX4JsIeQKBgDVHF/wP/mMksPrq2zWreKEJDmW+RDJ1GWm5kvmjW+r1xBYO0R0g -h/FlbPK3DGe86g7fjoI32kyi9FyBBeRNomPbUxv5X+2PHdoM03Vbu/ippvi2pF1y -hymgCBVJsp7xkt7BgJxIX6152TlGRWakGHj75LFpuF40ac52+zdUPiihAoGASmQU -XpKljctkOKruXUPn2eo5te4u5cSia81vmCGS3lWhAwhnuAR86Ue9sFC5detajpKX -LCQ3Ykc2wDeiyawpB5xrSAJI2buu93pd2j60BgSBn4oCLyhoWCEXGOXK0Jt83qt4 -xUn6I7zmo+9Iotjg2eU2uSB663sSRYmKxPTOHSECgYEAr9GDqLgORkKWwXhMAe3h -R0tYdGzWqpOiVNi1hcNMGfNwQekfIAM9NVarIib5JYPkSQQQWJZVXcTlR2YZbf9/ -P5VgNbNkV23Nq7j926cpbSlgb+UsZOCC5zTaJ0L6oePnK5R38v54y2XC9ccqW6FP -sVP5T4Vx30thw2cpbOY227Q= ------END RSA PRIVATE KEY-----`, -}; - -function canonicalizeForSignature({ consumerId, ts, keyVer }) { - const map = { - 'WM_CONSUMER.ID': String(consumerId).trim(), - 'WM_CONSUMER.INTIMESTAMP': String(ts).trim(), - 'WM_SEC.KEY_VERSION': String(keyVer).trim(), - }; +function loadCredentials() { + const consumerId = process.env.WM_CONSUMER_ID; + const keyVer = process.env.WM_KEY_VERSION; + const privateKeyPem = process.env.WM_PRIVATE_KEY; + + if (!consumerId || !keyVer || !privateKeyPem) { + throw new Error( + 'Missing Walmart credentials in .env: WM_CONSUMER_ID, WM_KEY_VERSION, WM_PRIVATE_KEY', + ); + } - const sortedKeys = Object.keys(map).sort(); - return sortedKeys.map((k) => map[k]).join('\n') + '\n'; + return { consumerId, keyVer, privateKeyPem }; } -function buildAuthHeaders() { - const id = String(keyData.consumerId).trim(); - const kv = String(keyData.keyVer).trim(); +// same signing logic as fetchProducts.js - Walmart needs this on every request +function buildAuthHeaders(creds) { + const id = String(creds.consumerId).trim(); + const kv = String(creds.keyVer).trim(); const ts = String(Date.now()).trim(); - const toSign = canonicalizeForSignature({ consumerId: id, ts, keyVer: kv }); + const fields = { + 'WM_CONSUMER.ID': id, + 'WM_CONSUMER.INTIMESTAMP': ts, + 'WM_SEC.KEY_VERSION': kv, + }; + + const canonicalized = + Object.keys(fields) + .sort() + .map((k) => fields[k]) + .join('\n') + '\n'; const signature = crypto - .sign('RSA-SHA256', Buffer.from(toSign, 'utf8'), { - key: keyData.privateKeyPem, + .sign('RSA-SHA256', Buffer.from(canonicalized, 'utf8'), { + key: creds.privateKeyPem, padding: crypto.constants.RSA_PKCS1_PADDING, }) .toString('base64'); @@ -83,44 +69,51 @@ function buildAuthHeaders() { }; } -/* -------------------- MAIN -------------------- */ +// fetches the taxonomy and saves two files: the raw response and a pretty-printed version +export async function run(opts = {}) { + const outPretty = + opts.outPretty ?? path.resolve(process.cwd(), 'taxonomy.json'); + const outRaw = + opts.outRaw ?? path.resolve(process.cwd(), 'taxonomy_raw.json'); + + const creds = loadCredentials(); -async function main() { const url = new URL(BASE + TAXONOMY_PATH); url.searchParams.set('format', 'json'); console.log('Requesting taxonomy:'); console.log(url.toString(), '\n'); - const headers = buildAuthHeaders(); - + const headers = buildAuthHeaders(creds); const res = await fetch(url.toString(), { headers }); const text = await res.text(); // Always save raw response for debugging - fs.writeFileSync(OUT_RAW, text, 'utf8'); - console.log(`Saved raw response to: ${OUT_RAW}`); + fs.writeFileSync(outRaw, text, 'utf8'); + console.log(`Saved raw response to: ${outRaw}`); if (!res.ok) { throw new Error(`HTTP ${res.status} ${res.statusText}\n${text}`); } - // Parse + pretty print let data; try { data = JSON.parse(text); } catch (e) { throw new Error( - `Response was not valid JSON. Raw response saved to taxonomy_raw.json.\nParse error: ${e.message}`, + `Response was not valid JSON. Raw response saved to ${path.basename(outRaw)}.\nParse error: ${e.message}`, ); } - fs.writeFileSync(OUT_PRETTY, JSON.stringify(data, null, 4), 'utf8'); - console.log(`Saved pretty taxonomy to: ${OUT_PRETTY}`); + fs.writeFileSync(outPretty, JSON.stringify(data, null, 4), 'utf8'); + console.log(`Saved taxonomy to: ${outPretty}`); + + return data; } -main().catch((e) => { - console.error('\nFailed to download taxonomy:'); - console.error(e.message); - process.exit(1); -}); +if (process.argv[1] === __filename) { + run().catch((e) => { + console.error('\nFailed to download taxonomy:', e.message); + process.exit(1); + }); +} diff --git a/WalmartPipeline/classify_ingredients.py b/WalmartPipeline/classify_ingredients.py index b679053..43d8672 100644 --- a/WalmartPipeline/classify_ingredients.py +++ b/WalmartPipeline/classify_ingredients.py @@ -1,24 +1,25 @@ #!/usr/bin/env python3 """ -Food Product Ingredient Classifier — Hybrid Edition (M4 Optimised) +classify_ingredients.py -Three-pass strategy: - Pass 1 — Explicit keyword rules (~65% of products, instant) - Pass 2 — Food-category default (~25% more, instant, no LLM) - Pass 3 — LLM for true unknowns (~10% or less) +Reads all the CSVs from walmart_CSVs/ and figures out which products are +cooking ingredients. Uses three passes: + 1. Keyword rules - catches ~65% of products instantly + 2. Category check - another ~25%, no LLM needed + 3. Ollama LLM - handles the remaining ~10% that are genuinely ambiguous -Recommended for Apple Silicon M4: +Run with --no-llm to skip the LLM entirely (that's the default from runner.js). +If you do want LLM mode, make sure ollama is running first: ollama pull llama3.2:1b - python classify_ingredients.py /path/to/folder -m llama3.2:1b -w 8 -b 25 + python classify_ingredients.py /path/to/csvs -m llama3.2:1b -w 8 -Setup: - 1. Install Ollama: https://ollama.com/download - 2. Pull model: ollama pull llama3.2:1b - 3. Run: python classify_ingredients.py /path/to/csv/folder -m llama3.2:1b -w 8 +The 15 category tags (PRODUCE, PROTEIN, DAIRY, etc.) are shared with +kroger_catalogue.js - any changes here should be reflected there too. """ import csv import json +import re import time import argparse import urllib.request @@ -27,16 +28,16 @@ from concurrent.futures import ThreadPoolExecutor, as_completed from threading import Lock -# ── Configuration ───────────────────────────────────────────────────────────── - -DEFAULT_MODEL = "llama3.2:1b" # fastest model; still accurate for classification -DEFAULT_WORKERS = 8 # M4 unified memory handles this easily +# --- Configuration --- +DEFAULT_MODEL = "llama3.2:1b" +DEFAULT_WORKERS = 8 DEFAULT_BATCH = 25 OLLAMA_BASE_URL = "http://localhost:11434" -# ══════════════════════════════════════════════════════════════════════════════ -# PASS 1 — EXPLICIT KEYWORD RULES -# ══════════════════════════════════════════════════════════════════════════════ +# --- keyword rules --- +# These two sets handle most of the work without touching the LLM. +# Non-ingredient check runs first so things like "frozen dinner" don't +# accidentally match "frozen vegetable" in the ingredient rules below. NON_INGREDIENT_KEYWORDS = { # Prepared / frozen meals @@ -44,7 +45,19 @@ "tv dinner", "microwave meal", "microwave popcorn", "heat and serve", "ready to eat", "ready-to-eat", "meal kit", "dinner kit", "lunch kit", "skillet meal", "hamburger helper", "tuna helper", - "mac and cheese dinner", "boxed dinner", + "mac and cheese dinner", "boxed dinner", "gumbo mix", "protein bowl", + # Cocktail / bar mixers + "cocktail syrup", "margarita mix", "craft mixer", "cocktail mixer", + # Gift sets / care packages (multi-product bundles, not ingredients) + "gift set", "gift basket", "gift box", "gift tower", "care package", "snack care package", + # Drink mixes / powdered beverages + "drink mix", "powdered drink", "kool-aid", "crystal light", + # Pancake / table syrup (condiment, not a cooking ingredient) + "pancake syrup", "table syrup", "maple flavored syrup", + # Instant noodles / ramen cups (complete meals) + "instant noodle", "ramen noodle soup", "cup noodle", "cup of noodle", + # Cake / cupcake toppers (decorative plastic/acrylic, not food) + "cake topper", "cake toppers", "cupcake topper", "cupcake toppers", # Snack foods "potato chip", "tortilla chip", "corn chip", "pita chip", "cheese puff", "cheese curl", "veggie straw", "veggie chip", @@ -56,22 +69,54 @@ "candy bar", "chocolate bar", "candy bag", "hard candy", "lollipop", "jawbreaker", "licorice", "taffy", "cotton candy", # Beverages - "soda", " cola", "ginger ale", "root beer", "cream soda", + "soda", "cola", "ginger ale", "root beer", "cream soda", "energy drink", "sports drink", "electrolyte drink", "fruit juice", "orange juice", "apple juice", "grape juice", "cranberry juice", "pineapple juice", "tomato juice", "lemonade", "limeade", "fruit punch", - "iced tea", "sweet tea", "kombucha", + "iced tea", "sweet tea", "diet tea", "bottled tea", "lemon tea", "leaf tea", "tea bag", + "yerba mate", "kombucha", "coffee drink", "bottled coffee", "cold brew bottle", "frappuccino", - "smoothie bottle", "juice smoothie", "drinkable yogurt", + "smoothie bottle", "juice smoothie", "drinkable yogurt", "dairy drink", "yogurt drink", "protein shake", "meal replacement shake", "sparkling water", "mineral water", "bottled water", "distilled water", "flavored water", "vitamin water", "coconut water bottle", - "beer ", " beer", "wine bottle", "spirits bottle", "whiskey bottle", + "beer", "wine bottle", "spirits bottle", "whiskey bottle", "vodka bottle", "rum bottle", "gin bottle", "tequila bottle", "hard seltzer", "hard cider", + "cold brew concentrate", + # Coffee pods / capsules / flavored coffees (not cooking ingredients) + "k-cup", "k cup", "coffee pod", "coffee capsule", "coffee single serve", "flavored coffee", + # General capsules (supplement capsules, espresso machine capsules, etc.) + "capsule", "softgel", "caplet", + # Candles (birthday candles, numeral candles, decorative - not food) + "candle", + # Clothing / merchandise + "hoodie", "sweatshirt", "t-shirt", "tote bag", "pullover shirt", + # Prepared soups (ready-to-eat, not cooking-ingredient condensed soups) + "chunky soup", "slow simmered soup", "chef boyardee", "chunky chili", + # Breakfast sandwiches and similar prepared foods (both forms since plural is irregular) + "breakfast sandwich", "breakfast sandwiches", "breakfast burrito", "biscuit sandwich", + # Snack jerky (not a cooking ingredient) + "jerky", + # Trail mix (snack, not an ingredient) + "trail mix", + # Pretzel snacks (pieces, bites, etc. — not a raw ingredient) + "pretzel", + # Flavored drink syrups (Torani, Monin etc. — for coffee drinks, not cooking) + "drink syrup", "coffee syrup", "flavored syrup", + # Snack packs / mini cookie packs + "snack pack", + # Pop-tarts and similar pastry snacks + "pop tarts", "pop-tart", + # Tea formats that slip past "tea bag" (pyramid sachets, loose leaf tins) + "pyramid sachet", "loose tea", "pyramid tea", + # Cake decoration companies / party supply decorations + "decopac", "wedding topper", "party topper", + # Non-food merchandise / signs + "banner", "yard sign", "signage", # Candy / confections - "candy", "confection", "breath mint", "chewing gum", " gum ", "bubble gum", + "candy", "confection", "marshmallow", "breath mint", "chewing gum", "gum", "bubble gum", # Breakfast cereals "breakfast cereal", "corn flakes", "frosted flakes", "fruit loops", "froot loops", "lucky charms", "cocoa puffs", "cap'n crunch", @@ -87,10 +132,8 @@ "croissant pack", "cinnamon roll pack", "brownie pack", "cookie pack", "cookie assortment", "pudding cup", "jello cup", "gelatin cup", "snack pudding", - # Supplements / vitamins - "vitamin c", "vitamin d", "vitamin e", "vitamin a", "vitamin b", + # Supplements / vitamins (single-letter vitamin keywords removed - too broad, catch fortified foods) "multivitamin", "supplement", "probiotic", "prebiotic", - "fish oil capsule", "omega-3 capsule", "protein powder", "whey protein", "casein protein", "plant protein powder", "creatine", "bcaa", "pre-workout", "melatonin", "sleep aid", "fiber supplement", "metamucil", @@ -133,277 +176,376 @@ "deli prepared", "deli meals", } -INGREDIENT_RULES: list[tuple[set[str], list[str]]] = [ - # PRODUCE - ({"fresh vegetable", "fresh fruit", "organic vegetable", "organic fruit", - "frozen vegetable", "frozen fruit", - "broccoli", "cauliflower", "spinach", "kale", "arugula", "romaine", - "iceberg lettuce", "butter lettuce", "mixed greens", "collard greens", - "brussels sprout", "cabbage", "bok choy", "napa cabbage", - "carrot", "celery", "cucumber", "zucchini", "squash", - "bell pepper", "jalapeño", "serrano pepper", "habanero", - "poblano", "anaheim pepper", "banana pepper", - "cherry tomato", "grape tomato", "roma tomato", - "red onion", "yellow onion", "white onion", "shallot", - "scallion", "green onion", "leek", - "garlic bulb", "garlic clove", "garlic head", - "portobello", "shiitake", "cremini", "button mushroom", - "oyster mushroom", "enoki", "chanterelle", - "asparagus", "artichoke", "beet", "turnip", "parsnip", - "sweet potato", "yam", "russet potato", "red potato", "yukon gold", - "fingerling potato", "corn on the cob", "fresh corn", - "green bean", "snap pea", "sugar snap", "snow pea", - "eggplant", "okra", "fennel bulb", "radish", "jicama", - "apple", "pear", "orange", "lemon", "lime", "grapefruit", - "banana", "mango", "pineapple", "papaya", "kiwi", - "strawberry", "blueberry", "raspberry", "blackberry", - "watermelon", "cantaloupe", "honeydew", - "peach", "nectarine", "plum", "apricot", "cherry", - "avocado", "fig", "pomegranate", "passion fruit", - }, ["PRODUCE"]), - # FRESH HERBS - ({"fresh basil", "fresh parsley", "fresh cilantro", "fresh thyme", - "fresh rosemary", "fresh mint", "fresh dill", "fresh chives", - "fresh tarragon", "fresh oregano", "fresh sage", - "fresh lemongrass", "fresh ginger root", "fresh turmeric root", - "herb bunch", "herb packet", - }, ["FRESH_HERB"]), - # PROTEIN - ({"chicken breast", "chicken thigh", "chicken wing", "chicken leg", - "chicken tender", "whole chicken", "chicken drumstick", - "ground chicken", "ground turkey", "turkey breast", "whole turkey", - "ground beef", "beef chuck", "beef brisket", "beef rib", - "flank steak", "skirt steak", "ribeye", "sirloin", "tenderloin", - "beef roast", "beef stew meat", "beef short rib", - "pork chop", "pork loin", "pork belly", "pork shoulder", - "pork tenderloin", "baby back rib", "pork rib", "spare rib", - "ham steak", "uncured ham", "spiral ham", - "lamb chop", "lamb leg", "ground lamb", "rack of lamb", - "salmon fillet", "salmon steak", "whole salmon", - "tuna steak", "tuna fillet", "tilapia", "cod fillet", "halibut", - "mahi mahi", "sea bass", "snapper", "trout", "catfish", - "shrimp", "scallop", "lobster tail", "crab leg", "crab meat", - "clam", "mussel", "oyster", "squid", "octopus", - "bacon", "pancetta", "prosciutto", "salami", "pepperoni", - "chorizo", "andouille", "bratwurst", "italian sausage", - "breakfast sausage", "sausage link", "sausage patty", - "deli turkey", "deli ham", "deli roast beef", "deli chicken", - "lunch meat", "deli meat", "sliced meat", - "tofu", "extra firm tofu", "silken tofu", "firm tofu", - "tempeh", "seitan", "textured vegetable protein", - "edamame", "black bean", "pinto bean", "kidney bean", - "chickpea", "lentil", "split pea", "navy bean", - "great northern bean", "cannellini bean", "fava bean", - "dozen eggs", "large eggs", "medium eggs", "free range egg", - "cage free egg", "organic egg", "egg whites", "liquid egg", - }, ["PROTEIN"]), - # DAIRY - ({"whole milk", "skim milk", "2% milk", "1% milk", "nonfat milk", - "reduced fat milk", "lactose free milk", "organic milk", - "buttermilk", "evaporated milk", "condensed milk", "dry milk", - "powdered milk", - "heavy cream", "heavy whipping cream", "whipping cream", - "half and half", "light cream", - "sour cream", "creme fraiche", - "cream cheese", "neufchatel", "mascarpone", "ricotta", - "cottage cheese", "farmers cheese", - "fresh mozzarella", "burrata", - "cheddar cheese", "cheddar block", "shredded cheddar", - "parmesan", "parmigiano", "romano cheese", "asiago", - "gruyere", "emmental", "swiss cheese", - "gouda", "edam", "havarti", "fontina", "provolone", - "brie", "camembert", "gorgonzola", "roquefort", "stilton", - "blue cheese", "feta cheese", "queso fresco", "queso blanco", - "monterey jack", "colby", "pepper jack", - "butter stick", "unsalted butter", "salted butter", "european butter", - "ghee jar", "clarified butter", - "greek yogurt", "plain yogurt", "whole milk yogurt", "nonfat yogurt", - "skyr", "kefir", "whipped cream can", - }, ["DAIRY"]), - # GRAIN - ({"all purpose flour", "bread flour", "whole wheat flour", - "cake flour", "pastry flour", "self rising flour", - "almond flour", "coconut flour", "oat flour", "rye flour", - "spelt flour", "cassava flour", "chickpea flour", "rice flour", - "white rice", "brown rice", "jasmine rice", "basmati rice", - "arborio rice", "wild rice", "instant rice", - "spaghetti", "penne", "rigatoni", "fusilli", "rotini", - "farfalle", "linguine", "fettuccine", "tagliatelle", - "angel hair", "orzo", "macaroni", "lasagna noodle", - "egg noodle", "ramen noodle", "soba noodle", "udon noodle", - "rice noodle", "vermicelli noodle", "glass noodle", - "rolled oat", "quick oat", "steel cut oat", "instant oat", - "cornmeal", "polenta", "grits", "semolina", - "breadcrumb", "panko", "plain breadcrumb", "italian breadcrumb", - "bread loaf", "sandwich bread", "whole wheat bread", "white bread", - "sourdough bread", "french bread", "baguette", "ciabatta", - "pita bread", "naan", "flatbread", - "flour tortilla", "corn tortilla", - "quinoa", "farro", "bulgur", "couscous", "barley", "millet", - "amaranth", "teff", "freekeh", "crouton", "stuffing mix", - }, ["GRAIN"]), - # BAKING - ({"baking soda", "baking powder", "cream of tartar", - "active dry yeast", "instant yeast", "rapid rise yeast", - "vanilla extract", "almond extract", "peppermint extract", - "lemon extract", "orange extract", - "food coloring", "gel food color", - "cocoa powder", "dutch process cocoa", "unsweetened cocoa", - "chocolate chip", "mini chocolate chip", "white chocolate chip", - "dark chocolate chip", "baking chocolate", "unsweetened chocolate", - "bittersweet chocolate", "semisweet chocolate", - "sprinkle", "nonpareil", "decorating sugar", "sanding sugar", - "cake mix", "brownie mix", "cookie mix", "muffin mix", - "pancake mix", "waffle mix", "biscuit mix", - "powdered sugar", "confectioners sugar", "icing sugar", - "granulated sugar", "cane sugar", - "brown sugar", "dark brown sugar", "light brown sugar", - "turbinado sugar", "raw sugar", "demerara sugar", - "corn syrup", "light corn syrup", "dark corn syrup", "molasses", - }, ["BAKING"]), - # SPICE - ({"black pepper", "white pepper", "peppercorn", - "sea salt", "kosher salt", "table salt", "himalayan salt", - "fleur de sel", "smoked salt", "celery salt", "garlic salt", - "garlic powder", "onion powder", - "cumin", "ground cumin", "cumin seed", - "paprika", "smoked paprika", "sweet paprika", "hot paprika", - "chili powder", "ancho chili", "chipotle powder", - "cayenne", "red pepper flake", "crushed red pepper", - "cinnamon", "ground cinnamon", "cinnamon stick", - "nutmeg", "ground nutmeg", - "oregano", "dried oregano", "thyme", "dried thyme", - "rosemary", "dried rosemary", "basil", "dried basil", - "bay leaf", "turmeric", "ground turmeric", - "coriander", "ground coriander", "fennel seed", "caraway seed", - "cardamom", "clove", "allspice", "ginger", "ground ginger", - "mustard seed", "ground mustard", "fenugreek", "nigella seed", - "sumac", "za'atar", "herbs de provence", "italian seasoning", - "old bay", "cajun seasoning", "creole seasoning", - "taco seasoning", "fajita seasoning", "ranch seasoning", - "curry powder", "garam masala", "ras el hanout", - "five spice", "everything bagel seasoning", - "lemon pepper", "steak seasoning", "bbq rub", "dry rub", - "vanilla bean", "saffron", "annatto", "achiote", - "dill weed", "dried dill", "marjoram", "dried sage", - }, ["SPICE"]), - # OIL_FAT - ({"olive oil", "extra virgin olive oil", - "vegetable oil", "canola oil", "sunflower oil", "safflower oil", - "corn oil", "soybean oil", "peanut oil", "grapeseed oil", - "avocado oil", "coconut oil", "palm oil", - "sesame oil", "toasted sesame oil", - "walnut oil", "flaxseed oil", "truffle oil", - "cooking spray", "nonstick spray", "baking spray", - "shortening", "vegetable shortening", "crisco", - "lard", "rendered lard", "duck fat", - "beef tallow", "margarine stick", "vegan butter", - }, ["OIL_FAT"]), - # CONDIMENT - ({"soy sauce", "tamari", "liquid aminos", "coconut aminos", - "fish sauce", "oyster sauce", "hoisin sauce", - "worcestershire sauce", - "hot sauce", "sriracha", "tabasco", "cholula", - "chili garlic sauce", "sambal oelek", "gochujang", - "apple cider vinegar", "white vinegar", "distilled vinegar", - "red wine vinegar", "white wine vinegar", "balsamic vinegar", - "sherry vinegar", "rice vinegar", "malt vinegar", - "dijon mustard", "whole grain mustard", "yellow mustard", - "ketchup", "mayonnaise", "light mayonnaise", - "relish", "sweet relish", "dill relish", - "bbq sauce", "barbecue sauce", "steak sauce", - "buffalo sauce", "wing sauce", - "teriyaki sauce", "ponzu sauce", "sweet chili sauce", - "pad thai sauce", "stir fry sauce", - "tahini", "miso paste", "red miso", "white miso", - "tomato paste", "marinara sauce", "pasta sauce", - "alfredo sauce", "pesto sauce", - "enchilada sauce", "salsa verde", "mole sauce", - "salsa jar", "chunky salsa", - "pickle", "dill pickle", "bread and butter pickle", - "pickled jalapeno", "giardiniera", - "capers", "anchovy paste", "anchovy fillet", - "sun dried tomato", "roasted red pepper", - "horseradish prepared", "wasabi paste", - }, ["CONDIMENT"]), - # CANNED_GOOD - ({"canned tomato", "diced tomato", "crushed tomato", "stewed tomato", - "whole peeled tomato", "san marzano", "fire roasted tomato", - "canned bean", "canned black bean", "canned chickpea", - "canned kidney bean", "canned pinto bean", "canned navy bean", - "canned lentil", "canned white bean", "canned cannellini", - "canned corn", "canned pumpkin", "canned yam", - "canned artichoke", "canned beet", "canned mushroom", - "canned water chestnut", "canned bamboo", - "canned green bean", "canned pea", "canned spinach", - "coconut milk can", "coconut cream can", "lite coconut milk", - "chicken broth", "beef broth", "vegetable broth", - "chicken stock", "beef stock", "bone broth", - "canned tuna", "canned salmon", "canned sardine", - "canned anchovy", "canned crab", "canned clam", - "rotel", "green chili can", "chipotle in adobo", - }, ["CANNED_GOOD"]), - # SWEETENER - ({"honey", "raw honey", "manuka honey", "clover honey", - "maple syrup", "pure maple syrup", - "agave", "agave nectar", "date syrup", "date sugar", - "stevia", "monk fruit sweetener", "erythritol", - "brown rice syrup", - }, ["SWEETENER"]), - # NUT_SEED - ({"almonds", "raw almonds", "roasted almonds", "sliced almonds", - "slivered almonds", "almond meal", - "walnuts", "walnut halves", "pecans", "cashews", - "pistachios", "pine nuts", "hazelnuts", "macadamia nut", - "brazil nut", "peanut", "raw peanut", "roasted peanut", - "peanut butter", "almond butter", "cashew butter", - "sunflower seed", "pumpkin seed", "pepita", - "sesame seed", "chia seed", "flaxseed", "ground flax", - "hemp seed", "poppy seed", - }, ["NUT_SEED"]), - # THICKENER - ({"cornstarch", "corn starch", "arrowroot", "arrowroot powder", - "tapioca starch", "tapioca pearl", "potato starch", - "unflavored gelatin", "agar agar", "agar powder", - "xanthan gum", "guar gum", "pectin", - }, ["THICKENER"]), - # ALCOHOL (cooking) - ({"cooking wine", "dry sherry", "mirin", "sake cooking", - "rice wine", "shaoxing wine", - }, ["ALCOHOL"]), - # OTHER_INGR (catch-all pantry) - ({"nutritional yeast", "dried mushroom", "porcini dried", - "seaweed", "nori sheet", "kombu", "wakame", - "dashi", "bonito flake", "matcha powder", - "rose water", "orange blossom water", "liquid smoke", - "raisin", "currant", "sultana", - "dried cranberry", "dried cherry", "dried apricot", "dried fig", - "dried date", "dried mango", "dried blueberry", "dried tomato", - "canned fruit", "canned peach", "canned pear", "canned pineapple", - "maraschino cherry", - "lemon juice bottle", "lime juice bottle", - "jam", "jelly", "preserves", "fruit spread", "marmalade", - "chutney", - "caramel sauce", "caramel topping", - "sweetened condensed milk", - "cream of mushroom soup", "cream of chicken soup", - "french onion soup can", - "harissa", "curry paste", "red curry paste", "green curry paste", - "yellow curry paste", "massaman paste", - "coconut butter", "cacao nib", "carob powder", - "vital wheat gluten", "citric acid", - "meat tenderizer", - "vinegar", - }, ["OTHER_INGR"]), +# Checked BEFORE INGREDIENT_RULES to fix tag conflicts caused by rule ordering. +# E.g. "blueberry yogurt" hits PRODUCE before DAIRY without this, "coffee with cardamom" +# hits SPICE, packaged "pie filling" hits PRODUCE. +PRIORITY_INGREDIENT_CHECKS: list[tuple[set[str], list[str]]] = [ + ({"yogurt", "kefir"}, ["DAIRY"]), + ({"pie filling"}, ["OTHER_INGR"]), + ({ + "ground coffee", "coffee bean", "coffee grounds", "roasted coffee", + "instant coffee", "espresso powder", "espresso bean", "coffee powder", + }, ["OTHER_INGR"]), + # Nuts/seeds with flavor modifiers (e.g. "sea salt") hit SPICE before NUT_SEED + ({ + "cashews", "almonds", "peanuts", "walnuts", "pecans", "pistachios", + "hazelnuts", "macadamia", "sunflower seeds", "pumpkin seeds", "pepitas", + }, ["NUT_SEED"]), + # Ham products hit PRODUCE when "apple" appears in "applewood smoked ham" + ({"smoked ham", "spiral ham", "whole ham", "applewood smoked"}, ["PROTEIN"]), ] -# ══════════════════════════════════════════════════════════════════════════════ -# PASS 2 — FOOD-CATEGORY DEFAULT -# If a product's category looks like a food/grocery category (and wasn't -# caught by explicit non-ingredient rules), assume it IS an ingredient. -# This eliminates most of the LLM queue. -# ══════════════════════════════════════════════════════════════════════════════ +# Ingredient rules - format is (keyword set, [tags to assign]). +# Synced with the search terms in kroger_catalogue.js FOOD_CATEGORIES. +# Kroger terms come first (marked "canonical"), then Walmart-specific variants. +# Keywords are matched against lowercased product name + category_name. + +INGREDIENT_RULES: list[tuple[set[str], list[str]]] = [ + + # --- PRODUCE --- + ({ + # Kroger search terms (canonical) + "fresh vegetable", "fresh fruit", "organic vegetable", "organic fruit", + "broccoli", "cauliflower", "spinach", "kale", "romaine", "mixed greens", + "brussels sprout", "cabbage", "carrot", "celery", "cucumber", "zucchini", + "bell pepper", "jalapeño", "cherry tomato", "roma tomato", + "red onion", "yellow onion", "shallot", "scallion", "leek", + "garlic bulb", "portobello", "shiitake", "cremini mushroom", + "asparagus", "artichoke", "beet", "turnip", "parsnip", + "sweet potato", "russet potato", "red potato", "yukon gold", + "corn on cob", "green bean", "snap pea", "snow pea", "eggplant", + "fennel", "radish", "apple", "pear", "orange", "lemon", "lime", + "banana", "mango", "pineapple", "papaya", "kiwi", + "strawberry", "blueberry", "raspberry", "blackberry", + "watermelon", "cantaloupe", "peach", "nectarine", "plum", "cherry", + "avocado", "pomegranate", + # Walmart-specific variants + "frozen vegetable", "frozen fruit", + "arugula", "iceberg lettuce", "butter lettuce", "collard greens", + "bok choy", "napa cabbage", + "serrano pepper", "habanero", "poblano", "anaheim pepper", "banana pepper", + "grape tomato", + "white onion", "green onion", + "garlic clove", "garlic head", + "cremini", "button mushroom", "oyster mushroom", "enoki", "chanterelle", + "fennel bulb", "jicama", "okra", + "yam", "fingerling potato", "fresh corn", "corn on the cob", + "sugar snap", "eggplant", + "grapefruit", "honeydew", "apricot", "fresh fig", "passion fruit", + }, ["PRODUCE"]), + + # --- FRESH_HERB --- + ({ + # Kroger search terms (canonical) + "fresh basil", "fresh parsley", "fresh cilantro", "fresh thyme", + "fresh rosemary", "fresh mint", "fresh dill", "fresh chives", + "fresh tarragon", "fresh oregano", "fresh sage", + "fresh lemongrass", "fresh ginger root", + # Walmart-specific variants + "fresh turmeric root", "herb bunch", "herb packet", + }, ["FRESH_HERB"]), + + # --- PROTEIN --- + ({ + # Kroger search terms (canonical) + "chicken breast", "chicken thigh", "chicken wing", "chicken drumstick", + "ground chicken", "whole chicken", "ground turkey", "turkey breast", + "ground beef", "beef chuck", "beef brisket", "ribeye", "sirloin", + "flank steak", "skirt steak", "beef roast", "beef short rib", + "pork chop", "pork loin", "pork belly", "pork shoulder", + "pork tenderloin", "baby back rib", "spiral ham", "ham steak", + "lamb chop", "lamb leg", "ground lamb", + "salmon fillet", "tuna fillet", "tilapia", "cod fillet", "halibut", + "mahi mahi", "sea bass", "trout", "catfish", + "shrimp", "scallop", "lobster tail", "crab leg", "crab meat", + "clam", "mussel", "oyster", + "bacon", "pancetta", "prosciutto", "salami", "pepperoni", + "chorizo", "andouille", "bratwurst", "italian sausage", + "breakfast sausage", + "deli turkey", "deli ham", "deli roast beef", "deli chicken", + "lunch meat", + "extra firm tofu", "silken tofu", "tempeh", "seitan", "edamame", + "black bean", "pinto bean", "kidney bean", "chickpea", "lentil", + "split pea", "navy bean", "cannellini bean", + "large eggs", "cage free egg", "organic egg", "egg whites", + # Walmart-specific variants + "chicken tender", "chicken leg", "whole turkey", + "beef rib", "tenderloin", "beef stew meat", + "pork rib", "spare rib", "uncured ham", + "rack of lamb", + "salmon steak", "whole salmon", "tuna steak", + "snapper", "squid", "octopus", + "sausage link", "sausage patty", "deli meat", "sliced meat", + "tofu", "firm tofu", "textured vegetable protein", + "great northern bean", "fava bean", + "dozen eggs", "medium eggs", "free range egg", "liquid egg", + }, ["PROTEIN"]), + + # --- DAIRY --- + ({ + # Kroger search terms (canonical) + "whole milk", "skim milk", "2% milk", "lactose free milk", "organic milk", + "buttermilk", "evaporated milk", "condensed milk", "powdered milk", + "heavy cream", "heavy whipping cream", "half and half", "light cream", + "sour cream", "creme fraiche", + "cream cheese", "mascarpone", "ricotta", "cottage cheese", + "fresh mozzarella", "burrata", + "cheddar cheese", "parmesan", "romano cheese", "asiago", + "gruyere", "swiss cheese", "gouda", "havarti", "fontina", "provolone", + "brie", "camembert", "gorgonzola", "blue cheese", + "feta cheese", "queso fresco", "monterey jack", "pepper jack", + "unsalted butter", "salted butter", "european butter", "ghee", + "greek yogurt", "plain yogurt", "whole milk yogurt", "skyr", "kefir", + # Walmart-specific variants + "1% milk", "nonfat milk", "reduced fat milk", + "whipping cream", "dry milk", + "neufchatel", "farmers cheese", + "cheddar block", "shredded cheddar", + "parmigiano", "emmental", "edam", + "roquefort", "stilton", "queso blanco", "colby", + "butter stick", "ghee jar", "clarified butter", + "nonfat yogurt", "whipped cream can", + }, ["DAIRY"]), + + # --- GRAIN --- + ({ + # Kroger search terms (canonical) + "all purpose flour", "bread flour", "whole wheat flour", + "cake flour", "almond flour", "coconut flour", "oat flour", "rye flour", + "chickpea flour", "rice flour", "cassava flour", + "white rice", "brown rice", "jasmine rice", "basmati rice", + "arborio rice", "wild rice", + "spaghetti", "penne", "rigatoni", "fusilli", "farfalle", + "linguine", "fettuccine", "angel hair", "orzo", "macaroni", + "lasagna noodle", "egg noodle", "ramen noodle", "soba noodle", + "udon noodle", "rice noodle", + "rolled oats", "quick oats", "steel cut oats", + "cornmeal", "polenta", "grits", "semolina", + "panko", "plain breadcrumb", + "sandwich bread", "whole wheat bread", "sourdough bread", + "french bread", "pita bread", "naan", "flatbread", + "flour tortilla", "corn tortilla", + "quinoa", "farro", "bulgur", "couscous", "barley", "millet", + # Walmart-specific variants + "pastry flour", "self rising flour", "spelt flour", "oat flour", + "instant rice", + "rotini", "tagliatelle", "vermicelli noodle", "glass noodle", + "rolled oat", "quick oat", "steel cut oat", "instant oat", + "breadcrumb", "italian breadcrumb", + "bread loaf", "white bread", "baguette", "ciabatta", + "amaranth", "teff", "freekeh", "crouton", "stuffing mix", + }, ["GRAIN"]), + + # --- BAKING --- + ({ + # Kroger search terms (canonical) + "baking soda", "baking powder", "cream of tartar", + "active dry yeast", "instant yeast", + "vanilla extract", "almond extract", "peppermint extract", + "cocoa powder", "dutch process cocoa", + "chocolate chips", "white chocolate chips", "baking chocolate", + "powdered sugar", "granulated sugar", "cane sugar", + "brown sugar", "turbinado sugar", "demerara sugar", + "corn syrup", "molasses", + "cake mix", "brownie mix", "pancake mix", "waffle mix", "muffin mix", + # Walmart-specific variants + "rapid rise yeast", + "lemon extract", "orange extract", + "food coloring", "gel food color", + "unsweetened cocoa", + "chocolate chip", "mini chocolate chip", "dark chocolate chip", + "white chocolate chip", "unsweetened chocolate", + "bittersweet chocolate", "semisweet chocolate", + "sprinkle", "nonpareil", "decorating sugar", "sanding sugar", + "cookie mix", "biscuit mix", + "confectioners sugar", "icing sugar", + "dark brown sugar", "light brown sugar", + "raw sugar", "light corn syrup", "dark corn syrup", + }, ["BAKING"]), + + # --- SPICE --- + ({ + # Kroger search terms (canonical) + "black pepper", "white pepper", "peppercorn", + "sea salt", "kosher salt", "himalayan salt", "garlic salt", + "garlic powder", "onion powder", + "cumin", "paprika", "smoked paprika", "chili powder", + "cayenne", "red pepper flake", + "cinnamon", "nutmeg", "oregano", "thyme", "rosemary", + "basil dried", "bay leaf", "turmeric", "coriander", + "fennel seed", "cardamom", "clove", "allspice", + "ground ginger", "mustard seed", "ground mustard", "fenugreek", + "sumac", "za'atar", "herbs de provence", "italian seasoning", + "cajun seasoning", "taco seasoning", + "curry powder", "garam masala", "ras el hanout", "five spice", + "lemon pepper", "steak seasoning", "bbq rub", + "vanilla bean", "saffron", "dill weed", "marjoram", + # Walmart-specific variants + "table salt", "fleur de sel", "smoked salt", "celery salt", + "ground cumin", "cumin seed", + "sweet paprika", "hot paprika", "ancho chili", "chipotle powder", + "crushed red pepper", + "ground cinnamon", "cinnamon stick", "ground nutmeg", + "dried oregano", "dried thyme", "dried rosemary", "dried basil", + "ground turmeric", "ground coriander", "caraway seed", + "nigella seed", + "old bay", "creole seasoning", "fajita seasoning", "ranch seasoning", + "everything bagel seasoning", + "dry rub", "annatto", "achiote", + "dried dill", "dried sage", + }, ["SPICE"]), + + # --- OIL_FAT --- + ({ + # Kroger search terms (canonical) + "olive oil", "extra virgin olive oil", + "vegetable oil", "canola oil", "sunflower oil", "safflower oil", + "corn oil", "soybean oil", "peanut oil", "grapeseed oil", + "avocado oil", "coconut oil", "sesame oil", "toasted sesame oil", + "walnut oil", "flaxseed oil", "truffle oil", + "cooking spray", "nonstick spray", + "shortening", "lard", "duck fat", "beef tallow", + "vegan butter", + # Walmart-specific variants + "palm oil", + "baking spray", + "vegetable shortening", "crisco", + "rendered lard", + "margarine stick", + }, ["OIL_FAT"]), + + # --- CONDIMENT --- + ({ + # Kroger search terms (canonical) + "soy sauce", "tamari", "liquid aminos", "coconut aminos", + "fish sauce", "oyster sauce", "hoisin sauce", "worcestershire sauce", + "hot sauce", "sriracha", "tabasco", "cholula", "sambal oelek", "gochujang", + "apple cider vinegar", "white vinegar", "red wine vinegar", + "white wine vinegar", "balsamic vinegar", "rice vinegar", "malt vinegar", + "dijon mustard", "whole grain mustard", "yellow mustard", + "ketchup", "mayonnaise", "relish", + "bbq sauce", "barbecue sauce", "steak sauce", "buffalo sauce", + "teriyaki sauce", "ponzu sauce", "sweet chili sauce", "stir fry sauce", + "tahini", "miso paste", + "tomato paste", "marinara sauce", "pasta sauce", "alfredo sauce", "pesto", + "enchilada sauce", "salsa verde", "salsa jar", + "pickle", "dill pickle", "pickled jalapeno", "giardiniera", + "capers", "sun dried tomato", "roasted red pepper", + "horseradish", "wasabi paste", + # Walmart-specific variants + "chili garlic sauce", + "distilled vinegar", "sherry vinegar", + "light mayonnaise", "sweet relish", "dill relish", + "wing sauce", "pad thai sauce", + "red miso", "white miso", + "pesto sauce", "mole sauce", "chunky salsa", + "bread and butter pickle", + "anchovy paste", "anchovy fillet", + "horseradish prepared", + }, ["CONDIMENT"]), + + # --- CANNED_GOOD --- + ({ + # Kroger search terms (canonical) + "canned tomato", "diced tomato", "crushed tomato", "whole peeled tomato", + "san marzano", "fire roasted tomato", + "canned black bean", "canned chickpea", "canned kidney bean", + "canned pinto bean", "canned navy bean", "canned cannellini", + "canned corn", "canned pumpkin", "canned artichoke", "canned mushroom", + "canned water chestnut", "canned green bean", + "coconut milk can", "coconut cream", + "chicken broth", "beef broth", "vegetable broth", + "chicken stock", "beef stock", "bone broth", + "canned tuna", "canned salmon", "canned sardine", "canned anchovy", + "canned crab", "canned clam", + "chipotle in adobo", "green chili can", + # Walmart-specific variants + "stewed tomato", + "canned bean", "canned lentil", "canned white bean", + "canned yam", "canned beet", "canned bamboo", + "canned pea", "canned spinach", + "coconut cream can", "lite coconut milk", + "rotel", + }, ["CANNED_GOOD"]), + + # --- NUT_SEED --- (before SWEETENER so "honey roasted cashews" tags as NUT_SEED not SWEETENER) + ({ + # Kroger search terms (canonical) + "raw almonds", "sliced almonds", "slivered almonds", + "walnut halves", "pecans", "cashews", "pistachios", + "pine nuts", "hazelnuts", "macadamia nut", "brazil nut", + "peanut butter", "almond butter", "cashew butter", + "sunflower seed", "pumpkin seed", "pepita", + "sesame seed", "chia seed", "flaxseed", "hemp seed", "poppy seed", + # Walmart-specific variants + "almonds", "roasted almonds", "almond meal", + "walnuts", "peanut", "raw peanut", "roasted peanut", + "ground flax", + }, ["NUT_SEED"]), + + # --- SWEETENER --- + ({ + # Kroger search terms (canonical) + "honey", "raw honey", "manuka honey", + "maple syrup", "pure maple syrup", + "agave nectar", "date syrup", + "stevia", "monk fruit sweetener", "erythritol", + # Walmart-specific variants + "clover honey", + "agave", + "date sugar", "brown rice syrup", + }, ["SWEETENER"]), + + # --- THICKENER --- + ({ + # Kroger search terms (canonical) + "cornstarch", "arrowroot powder", "tapioca starch", + "unflavored gelatin", "agar agar", "xanthan gum", "guar gum", "pectin", + # Walmart-specific variants + "corn starch", "arrowroot", + "tapioca pearl", "potato starch", + "agar powder", + }, ["THICKENER"]), + + # --- ALCOHOL (cooking only) --- + ({ + # Kroger search terms (canonical) + "cooking wine", "dry sherry", "mirin", "sake", "rice wine", "shaoxing wine", + # Walmart-specific variants + "sake cooking", + }, ["ALCOHOL"]), + + # --- OTHER_INGR (catch-all pantry) --- + ({ + # Kroger search terms (canonical) + "nutritional yeast", "dried mushroom", "nori sheet", "kombu", "wakame", + "dashi", "bonito flake", "matcha powder", + "rose water", "liquid smoke", + "raisins", "dried cranberry", "dried apricot", "dried fig", + "dried mango", "dried date", + "canned peach", "canned pear", "canned pineapple", + "lemon juice", "lime juice", + "jam", "jelly", "fruit preserves", "marmalade", "chutney", + "caramel sauce", "sweetened condensed milk", + "cream of mushroom soup", "cream of chicken soup", + "harissa", "red curry paste", "green curry paste", "yellow curry paste", + "coconut butter", "cacao nibs", "vital wheat gluten", "citric acid", + # Walmart-specific variants + "porcini dried", "seaweed", + "orange blossom water", + "raisin", "currant", "sultana", "dried cherry", "dried blueberry", + "dried tomato", "canned fruit", "maraschino cherry", + "lemon juice bottle", "lime juice bottle", + "fruit spread", + "caramel topping", "french onion soup can", + "curry paste", "massaman paste", + "cacao nib", "carob powder", "meat tenderizer", "vinegar", + }, ["OTHER_INGR"]), +] +# Pass 2 - if the category name looks like a food/grocery category and the +# product didn't get flagged as a non-ingredient, assume it's an ingredient. +# This knocks out most of what's left without needing the LLM. FOOD_CATEGORY_KEYWORDS = { "food", "grocery", "groceries", "pantry", "cooking", "baking", "ingredient", "produce", "meat", "seafood", "poultry", "dairy", @@ -418,7 +560,7 @@ "broth", "stock", "soup base", "cheese", "butter", "egg", "milk", "cream", "yogurt", "bread", "tortilla", "wrap", - "breakfast", "cereal grain", # NOTE: cereal grain ≠ "cereal" (covered by non-ingredient) + "breakfast", "cereal grain", # NOTE: "cereal grain" ≠ "cereal" (covered by non-ingredient) } @@ -429,25 +571,41 @@ def normalise(text: str) -> str: def is_food_category(category: str) -> bool: """Return True if the category string looks like a food/grocery category.""" cat = normalise(category) - for kw in FOOD_CATEGORY_KEYWORDS: - if kw in cat: - return True - return False + return any(kw in cat for kw in FOOD_CATEGORY_KEYWORDS) def rule_classify(row: dict) -> dict | None: name = normalise(row.get("name", "")) category = normalise(row.get("category_name", "")) combined = name + " " + category + # Strip punctuation so "cake topper," or "Coffee-" still match keyword boundaries + clean = re.sub(r'[^\w\s]', ' ', combined) + padded = f" {clean} " - # Pass 1a: explicit non-ingredient keywords + # Pass 1a: non-ingredient keywords - padded so brand names like "FirstChoiceCandy" + # don't trigger on the substring "candy". Also check plural form ({kw}s) so + # "tea bags", "energy bars", "cake toppers" etc. match alongside the singular. for kw in NON_INGREDIENT_KEYWORDS: - if kw in combined: + if f" {kw} " in padded or f" {kw}s " in padded: return {"ingredient": False, "classifiers": []} for cat_kw in NON_INGREDIENT_CATEGORIES: if cat_kw in category: return {"ingredient": False, "classifiers": []} + # Catch mint/breath-freshener candy products that slip through because a spice or + # produce keyword (e.g. "cinnamon", "strawberry") fires before the non-ingredient + # check can see that the product is a candy mint. + if any(k in name for k in ("breath mint", "sugar free mint", "sugar-free mint", + "mint tin", "mints bulk", "mint candy")): + return {"ingredient": False, "classifiers": []} + + # Priority ingredient checks - run before INGREDIENT_RULES to fix ordering conflicts + # (e.g. "blueberry yogurt" would match PRODUCE before DAIRY without this) + for keywords, tags in PRIORITY_INGREDIENT_CHECKS: + for kw in keywords: + if kw in combined: + return {"ingredient": True, "classifiers": tags} + # Pass 1b: explicit ingredient keywords for keywords, tags in INGREDIENT_RULES: for kw in keywords: @@ -458,10 +616,8 @@ def rule_classify(row: dict) -> dict | None: if is_food_category(category): return {"ingredient": True, "classifiers": ["OTHER_INGR"]} - return None # truly ambiguous → LLM - + return None # truly ambiguous -> LLM -# ── Ollama helpers ───────────────────────────────────────────────────────────── def check_ollama_running(): try: @@ -477,7 +633,7 @@ def check_ollama_running(): 2. If yes, assign 1-3 tags: PROTEIN, DAIRY, PRODUCE, GRAIN, BAKING, SPICE, OIL_FAT, CONDIMENT, CANNED_GOOD, SWEETENER, NUT_SEED, ALCOHOL, THICKENER, FRESH_HERB, OTHER_INGR -Respond ONLY with a JSON array — one object per product in the same order. +Respond ONLY with a JSON array - one object per product in the same order. Each: {"ingredient": true/false, "classifiers": ["TAG"]} No explanation. No markdown. Only the JSON array.""" @@ -519,10 +675,15 @@ def parse_json_array(text: str, expected: int) -> list[dict]: def build_prompt(row: dict) -> str: - parts = [f"Name: {row.get('name','').strip()}"] - if cat := row.get("category_name","").strip(): + """Build an LLM prompt line for a single product row.""" + parts = [f"Name: {row.get('name', '').strip()}"] + if brand := row.get("brandName", "").strip(): + parts.append(f"Brand: {brand}") + if size := row.get("size", "").strip(): + parts.append(f"Size: {size}") + if cat := row.get("category_name", "").strip(): parts.append(f"Category: {cat}") - if sd := row.get("shortDescription","").strip()[:200]: + if sd := row.get("shortDescription", "").strip()[:200]: parts.append(f"Desc: {sd}") return " | ".join(parts) @@ -543,13 +704,20 @@ def classify_batch_llm(model: str, batch: list[dict], retries: int = 2) -> list[ time.sleep(1) -# ── CSV I/O ─────────────────────────────────────────────────────────────────── +# Output columns - matches what fetchProducts.js produces (we added size, brandName, upc +# and dropped the image/color fields we don't need). +OUTPUT_FIELDS = [ + "name", "brandName", "size", "upc", + "ingredient", "classifiers", + "retail_price", "thumbnailImage", +] + def read_csvs(folder: str) -> list[dict]: csv.field_size_limit(10_000_000) rows = [] for csv_file in Path(folder).glob("*.csv"): - print(f" Reading {csv_file.name} …") + print(f" Reading {csv_file.name} ...") with open(csv_file, newline="", encoding="utf-8-sig") as f: for row in csv.DictReader(f): rows.append(row) @@ -558,35 +726,31 @@ def read_csvs(folder: str) -> list[dict]: def write_output(classified: list[dict], output_path: str): - fieldnames = ["name", "ingredient", "classifiers", "retail_price", - "thumbnailImage", "mediumImage", "largeImage", "color"] with open(output_path, "w", newline="", encoding="utf-8") as f: - writer = csv.DictWriter(f, fieldnames=fieldnames) + writer = csv.DictWriter(f, fieldnames=OUTPUT_FIELDS) writer.writeheader() writer.writerows(classified) n_ingr = sum(1 for r in classified if r["ingredient"]) - print(f"\nSaved → {output_path}") + print(f"\nSaved -> {output_path}") print(f" {n_ingr:,} ingredients / {len(classified):,} total products") def to_output_row(row: dict, result: dict) -> dict: return { - "name": row.get("name", ""), - "ingredient": result.get("ingredient", False), - "classifiers": "|".join(result.get("classifiers", [])), - "retail_price": row.get("retail_price", ""), + "name": row.get("name", ""), + "brandName": row.get("brandName", ""), + "size": row.get("size", ""), + "upc": row.get("upc", ""), + "ingredient": result.get("ingredient", False), + "classifiers": "|".join(result.get("classifiers", [])), + "retail_price": row.get("retail_price", ""), "thumbnailImage": row.get("thumbnailImage", ""), - "mediumImage": row.get("mediumImage", ""), - "largeImage": row.get("largeImage", ""), - "color": row.get("color", ""), } -# ── Main ────────────────────────────────────────────────────────────────────── - def main(): parser = argparse.ArgumentParser( - description="Hybrid rule+LLM ingredient classifier — M4 optimised." + description="Classify Walmart products as cooking ingredients using keyword rules + optional LLM." ) parser.add_argument("input_folder") parser.add_argument("-o", "--output", default="classified_ingredients.csv") @@ -597,16 +761,16 @@ def main(): parser.add_argument("-b", "--batch", type=int, default=DEFAULT_BATCH, help=f"Products per LLM call (default: {DEFAULT_BATCH})") parser.add_argument("--no-llm", action="store_true", - help="Skip LLM pass — output rules + category-default only (fast)") + help="Skip LLM pass - output rules + category-default only (fast)") args = parser.parse_args() - print(f"\n📂 Reading CSVs from: {args.input_folder}") + print(f"\nReading CSVs from: {args.input_folder}") rows = read_csvs(args.input_folder) if not rows: - print("⚠ No rows found.") + print("No rows found.") return - # ── Pass 1 + 2: Rule-based + category default (instant) ────────────────── + # Pass 1 + 2: keyword rules + category fallback (no LLM needed) print("\nPass 1+2: Rule-based + food-category default ...") t0 = time.time() @@ -629,20 +793,24 @@ def main(): if args.no_llm: print(f"\n--no-llm: outputting rule-classified rows only.") print(f" Skipping {len(llm_queue):,} unclassified products entirely.") - classified = [to_output_row(row, results[i]) for i, row in enumerate(rows) if results[i] is not None] + classified = [ + to_output_row(row, results[i]) + for i, row in enumerate(rows) + if results[i] is not None + ] write_output(classified, args.output) print(f" Total wall time: {(time.time()-t0)/60:.1f} min") return - # ── Pass 3: LLM for true unknowns ───────────────────────────────────────── + # Pass 3: ask the LLM about anything the rules couldn't figure out if llm_queue: - print(f"\nPass 3: LLM classification for {len(llm_queue):,} products …") + print(f"\nPass 3: LLM classification for {len(llm_queue):,} products ...") print(f" Model: {args.model} | Workers: {args.workers} | Batch: {args.batch}") - print(f" 💡 Tip: make sure you ran ollama pull {args.model}\n") + print(f" Tip: make sure you ran ollama pull {args.model}\n") available = check_ollama_running() if available is None: - print("⚠ Ollama not reachable — marking unknowns as non-ingredient.") + print("Ollama not reachable - marking unknowns as non-ingredient.") for orig_idx, _ in llm_queue: results[orig_idx] = {"ingredient": False, "classifiers": []} elif args.model.split(":")[0] not in available: @@ -650,8 +818,8 @@ def main(): for orig_idx, _ in llm_queue: results[orig_idx] = {"ingredient": False, "classifiers": []} else: - only_rows = [r for _, r in llm_queue] - batches = [ + only_rows = [r for _, r in llm_queue] + batches = [ (llm_queue[i : i + args.batch], only_rows[i : i + args.batch]) for i in range(0, len(llm_queue), args.batch) ] @@ -690,4 +858,4 @@ def process(b_idx, idx_row_pairs, row_batch): if __name__ == "__main__": - main() \ No newline at end of file + main() diff --git a/WalmartPipeline/fetchProducts.js b/WalmartPipeline/fetchProducts.js index 9178e86..8eddef1 100644 --- a/WalmartPipeline/fetchProducts.js +++ b/WalmartPipeline/fetchProducts.js @@ -1,92 +1,83 @@ +/** + * fetchProducts.js + * + * Pulls Walmart food products by category and saves them to CSVs. + * You can import run() from another script or just run this file directly. + * + * Credentials go in .env: + * WM_CONSUMER_ID, WM_KEY_VERSION, WM_PRIVATE_KEY + * + * All the config options (page size, delays, dedup settings, etc.) have + * defaults so calling run() with no arguments should just work. + */ + +import dotenv from 'dotenv'; +dotenv.config(); import crypto from 'crypto'; import fs from 'fs'; import path from 'path'; +import { fileURLToPath } from 'url'; -const CATEGORIES_DIR = 'WalmartPipeline/Categories'; -const OUT_DIR = 'WalmartPipeline/walmart_CSVs'; +const __filename = fileURLToPath(import.meta.url); -// Walmart endpoint const BASE = 'https://developer.api.walmart.com'; const PAGINATED_PATH = '/api-proxy/service/affil/product/v2/paginated/items'; - -// Page and Category Ping Delay -const COUNT_PER_PAGE = 500; -const REQUEST_DELAY_MS = 25; // between pages -const CATEGORY_DELAY_MS = 25; // between categories - -// Retry Attempt Tuning -const FETCH_ATTEMPTS = 5; -const RETRY_BASE_DELAY_MS = 50; - -// Output behavior -const EXPORT_PARENT_ROWS_TOO = false; // false = leaf-ish only -const DEDUPE_WITHIN_EACH_CATEGORY_CSV = true; // dedupe itemId inside each category CSV -const DEDUPE_WITHIN_SUBTREE_AGG = true; // dedupe within subtree aggregate -const DEDUPE_MASTER = false; // dedupe in global master - -// Logging const MAX_ERROR_BODY_CHARS = 1200; -/* -------------------- AUTH / HEADERS -------------------- */ - -const keyData = { - consumerId: '39d025f8-e575-48cf-aa4e-22f89da4c16f', - keyVer: '5', // keep as STRING; must match walmart.io key version exactly - privateKeyPem: `-----BEGIN RSA PRIVATE KEY----- -MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQC1hpiZMh1pyN6k -oDO95qK3L+/uY3M+sUpcnQkuNdFPBChh3jxEjn3zQLm88rdBTKQVqDD8E7g2KBHX -wYaSiKqqXcBkMkPfEEyTE/I//BjDF5dS+sgR6uIJmfsNVIVkY7laxo0STFCO3G+V -gkHTp8u/lJ5Aa8NSxu4BYlR0wBpze40aHYBeQw/+QuPvZzNeUf5YNC3rs5eId2f5 -N0rA2mZfY1myzE6UarW+5+WrWbkR0Bwrvs+8B/S8Jh4QFmh2EDaucisx96MXSH5S -3BuzBxqE9Txo4TKGu0y/aDmRU1Ij5WP88VnURU3vna1UF5n/pPw6InzvcQkeGS1o -thpyvCvtAgMBAAECggEABFOmXm5twvqOQpRa0/Gxo9YX/0iJoZPPdcPhLdF5N/lU -bqdUGeyojxoD41rkHviDXpXH9x9YxwevQp7QcrygjsU6Xv2YuekC3j69ycjcHKqf -UlygHdc3O2r/tHOr1G2RFhITIIbHEqSpqqY9ke7paxtaOQKojqpL/F1jdr8WduM9 -WQqbpgk+Hc6PIYVdUeALMX+IGNWbZiX6zqm85IKUdAA4/V0RCMl/j9ySBP6TsT06 -5IXK63urXl+AOJh1tHV79GP/waETEc6rQ8Ntn9p3HsUtsx6qiLSky7E2m2L3rdVd -LOzM2vVQDKr0SMGfx4/ZA79OJbLvJnwon9l4WdxmeQKBgQDb4L7sI4FnnD7uAaV5 -NTxt6ELJIpgxalTXbGiD6BoGN7LPbRfLJmKP4pGbNkfxtLZKsrTXOE1z5bTurRzY -dsH9pEmhBf7SdYtNrnPZCfOwpZaK/PyVdIggnaAiVYD6Q5urNcTltOA9SLdxGJyE -Ny8GpdB/ItmRCUkru4uk8L3KFQKBgQDTWOaBQRPvrL7sl4nVrTlfaxDTYulFgqSx -j3ag+RBhCwvFVNxb710moIEtThpDnaLNJCc6JQ+QebrsDP7Q49eOxqKbbbLOHGrt -akkeMROg6+MaL7HMAMsjCj7hBnpSjCg94ldHuJ0d8/PB60amIES/TTOyTsssxIlD -HcoX4JsIeQKBgDVHF/wP/mMksPrq2zWreKEJDmW+RDJ1GWm5kvmjW+r1xBYO0R0g -h/FlbPK3DGe86g7fjoI32kyi9FyBBeRNomPbUxv5X+2PHdoM03Vbu/ippvi2pF1y -hymgCBVJsp7xkt7BgJxIX6152TlGRWakGHj75LFpuF40ac52+zdUPiihAoGASmQU -XpKljctkOKruXUPn2eo5te4u5cSia81vmCGS3lWhAwhnuAR86Ue9sFC5detajpKX -LCQ3Ykc2wDeiyawpB5xrSAJI2buu93pd2j60BgSBn4oCLyhoWCEXGOXK0Jt83qt4 -xUn6I7zmo+9Iotjg2eU2uSB663sSRYmKxPTOHSECgYEAr9GDqLgORkKWwXhMAe3h -R0tYdGzWqpOiVNi1hcNMGfNwQekfIAM9NVarIib5JYPkSQQQWJZVXcTlR2YZbf9/ -P5VgNbNkV23Nq7j926cpbSlgb+UsZOCC5zTaJ0L6oePnK5R38v54y2XC9ccqW6FP -sVP5T4Vx30thw2cpbOY227Q= ------END RSA PRIVATE KEY-----`, -}; - -function canonicalizeForSignature({ consumerId, ts, keyVer }) { - const map = { - 'WM_CONSUMER.ID': String(consumerId).trim(), - 'WM_CONSUMER.INTIMESTAMP': String(ts).trim(), - 'WM_SEC.KEY_VERSION': String(keyVer).trim(), - }; +// columns we actually care about for ingredient matching +// dropped a bunch of stuff (images, ratings, tracking URLs) that we don't need +// added size because it helps with dedup and matching later + +const COLUMNS = [ + 'item_id', + 'name', + 'brandName', + 'size', + 'retail_price', + 'upc', + 'subtree_name', + 'category_id', + 'category_name', + 'category_path', + 'shortDescription', + 'thumbnailImage', +]; + +function loadCredentials() { + const consumerId = process.env.WM_CONSUMER_ID; + const keyVer = process.env.WM_KEY_VERSION; + const privateKeyPem = process.env.WM_PRIVATE_KEY; + + if (!consumerId || !keyVer || !privateKeyPem) { + throw new Error( + 'Missing Walmart credentials in .env: WM_CONSUMER_ID, WM_KEY_VERSION, WM_PRIVATE_KEY', + ); + } - const sortedKeys = Object.keys(map).sort(); - return sortedKeys.map((k) => map[k]).join('\n') + '\n'; + return { consumerId, keyVer, privateKeyPem }; } -function buildAuthHeaders() { - const id = String(keyData.consumerId).trim(); - const kv = String(keyData.keyVer).trim(); +// Walmart requires a signed auth header on every request +function buildAuthHeaders(creds) { + const id = String(creds.consumerId).trim(); + const kv = String(creds.keyVer).trim(); const ts = String(Date.now()).trim(); - const toSign = canonicalizeForSignature({ - consumerId: id, - ts, - keyVer: kv, - }); + const fields = { + 'WM_CONSUMER.ID': id, + 'WM_CONSUMER.INTIMESTAMP': ts, + 'WM_SEC.KEY_VERSION': kv, + }; + + const canonicalized = + Object.keys(fields) + .sort() + .map((k) => fields[k]) + .join('\n') + '\n'; const signature = crypto - .sign('RSA-SHA256', Buffer.from(toSign, 'utf8'), { - key: keyData.privateKeyPem, + .sign('RSA-SHA256', Buffer.from(canonicalized, 'utf8'), { + key: creds.privateKeyPem, padding: crypto.constants.RSA_PKCS1_PADDING, }) .toString('base64'); @@ -101,8 +92,6 @@ function buildAuthHeaders() { }; } -/* -------------------- helpers -------------------- */ - function sleep(ms) { return new Promise((resolve) => setTimeout(resolve, ms)); } @@ -128,11 +117,8 @@ function formatISO(d) { } function msToHMS(ms) { - const totalSeconds = Math.floor(ms / 1000); - const hours = Math.floor(totalSeconds / 3600); - const minutes = Math.floor((totalSeconds % 3600) / 60); - const seconds = totalSeconds % 60; - return `${hours}h ${minutes}m ${seconds}s (${ms} ms)`; + const s = Math.floor(ms / 1000); + return `${Math.floor(s / 3600)}h ${Math.floor((s % 3600) / 60)}m ${s % 60}s`; } function safeTruncate(s, n) { @@ -141,8 +127,7 @@ function safeTruncate(s, n) { return str.slice(0, n) + `... [truncated ${str.length - n} chars]`; } -/* -------------------- CSV parsing -------------------- */ - +// simple CSV parser - handles quoted fields and escaped quotes function parseCSV(text) { const rows = []; let i = 0; @@ -174,14 +159,12 @@ function parseCSV(text) { i++; continue; } - if (c === ',') { row.push(field); field = ''; i++; continue; } - if (c === '\n') { row.push(field); field = ''; @@ -190,12 +173,10 @@ function parseCSV(text) { i++; continue; } - if (c === '\r') { i++; continue; } - field += c; i++; } @@ -210,23 +191,16 @@ function parseCSV(text) { function rowsToObjects(rows) { if (!rows.length) return []; - const header = rows[0].map((h) => h.trim()); - const output = []; - - for (let r = 1; r < rows.length; r++) { + return rows.slice(1).map((cols) => { const obj = {}; - for (let c = 0; c < header.length; c++) { - obj[header[c]] = rows[r][c] ?? ''; - } - output.push(obj); - } - - return output; + header.forEach((h, i) => { + obj[h] = cols[i] ?? ''; + }); + return obj; + }); } -/* -------------------- subtree helpers -------------------- */ - function getDepth(pathValue) { const s = String(pathValue ?? '').trim(); if (!s) return Number.POSITIVE_INFINITY; @@ -237,7 +211,6 @@ function pickSubtreeRoot(objs) { const candidates = objs.filter( (o) => String(o.id ?? '').trim() && String(o.name ?? '').trim(), ); - if (!candidates.length) return null; candidates.sort((a, b) => { @@ -253,75 +226,56 @@ function pickSubtreeRoot(objs) { function isParentRow(allRows, row) { const p = String(row.path ?? '').trim(); if (!p) return false; - const prefix = p.endsWith('/') ? p : p + '/'; return allRows.some((o) => String(o.path ?? '').startsWith(prefix)); } -/* -------------------- row conversion -------------------- */ - function itemToRow(item, extra) { return { - subtree_id: extra.subtree_id, - subtree_name: extra.subtree_name, - - category_id: extra.category_id, - category_name: extra.category_name, - category_path: extra.category_path, - item_id: item?.itemId ?? '', name: item?.name ?? '', - msrp: item?.msrp ?? '', + brandName: item?.brandName ?? '', + size: item?.size ?? '', retail_price: item?.salePrice ?? '', upc: item?.upc ?? '', + subtree_name: extra.subtree_name, + category_id: extra.category_id, + category_name: extra.category_name, + category_path: extra.category_path, shortDescription: item?.shortDescription ?? '', - longDescription: item?.longDescription ?? '', - brandName: item?.brandName ?? '', thumbnailImage: item?.thumbnailImage ?? '', - mediumImage: item?.mediumImage ?? '', - largeImage: item?.largeImage ?? '', - color: item?.color ?? '', - customerRating: item?.customerRating ?? '', - stock: item?.stock ?? '', - productTrackingUrl: item?.productTrackingUrl ?? '', - categoryNode: item?.categoryNode ?? '', }; } -function csvHeader(columns) { - return columns.join(',') + '\n'; +function csvHeader() { + return COLUMNS.join(',') + '\n'; } -function rowToCSVLine(row, columns) { - return columns.map((k) => escapeCSV(row[k])).join(',') + '\n'; +function rowToCSVLine(row) { + return COLUMNS.map((k) => escapeCSV(row[k])).join(',') + '\n'; } -/* -------------------- Walmart fetching -------------------- */ - -async function fetchPage(url, attempts = FETCH_ATTEMPTS) { +async function fetchPage(url, creds, attempts, retryBaseDelayMs) { for (let i = 0; i < attempts; i++) { - const headers = buildAuthHeaders(); + const headers = buildAuthHeaders(creds); const res = await fetch(url, { headers }); - if (res.ok) { - return await res.json(); - } + if (res.ok) return await res.json(); const status = res.status; - const statusText = res.statusText; - const body = await res.text().catch(() => ''); - if (status === 429 || (status >= 500 && status <= 599)) { - const backoff = RETRY_BASE_DELAY_MS * Math.pow(2, i); - await sleep(backoff); + await sleep(retryBaseDelayMs * Math.pow(2, i)); continue; } - const err = new Error(`HTTP ${status} ${statusText}`); - err.httpStatus = status; - err.httpStatusText = statusText; - err.url = url; - err.responseBody = safeTruncate(body, MAX_ERROR_BODY_CHARS); + const body = await res.text().catch(() => ''); + const err = new Error(`HTTP ${status} ${res.statusText}`); + Object.assign(err, { + httpStatus: status, + httpStatusText: res.statusText, + url, + responseBody: safeTruncate(body, MAX_ERROR_BODY_CHARS), + }); throw err; } @@ -330,65 +284,43 @@ async function fetchPage(url, attempts = FETCH_ATTEMPTS) { throw err; } -async function fetchAllItemsForCategory(categoryId) { +async function fetchAllItemsForCategory(categoryId, creds, cfg) { let url = new URL(BASE + PAGINATED_PATH); url.searchParams.set('category', categoryId); - url.searchParams.set('count', String(COUNT_PER_PAGE)); + url.searchParams.set('count', String(cfg.countPerPage)); const allItems = []; while (true) { - const data = await fetchPage(url.toString()); + const data = await fetchPage( + url.toString(), + creds, + cfg.fetchAttempts, + cfg.retryBaseDelayMs, + ); const items = Array.isArray(data?.items) ? data.items : []; - allItems.push(...items); - if (!data?.nextPageExist || !data?.nextPage) { - break; - } + if (!data?.nextPageExist || !data?.nextPage) break; url = new URL( data.nextPage.startsWith('http') ? data.nextPage : BASE + data.nextPage, ); - - await sleep(REQUEST_DELAY_MS); + await sleep(cfg.requestDelayMs); } return allItems; } -/* -------------------- Logging / finalization -------------------- */ - -const runState = { - startedAt: new Date(), - endedAt: null, - exitReason: 'completed', - subtreeFilesProcessed: 0, - categoryRowsAttempted: 0, - categoryRowsSucceeded: 0, - categoryRowsFailed: 0, - failures: [], -}; - -let finalized = false; -let masterStreamRef = null; - -function writeRunLogFile(outPath) { +// write a JSON log file at the end so we can see what happened and debug failures +function writeRunLog(outPath, runState) { const endedAt = runState.endedAt ?? new Date(); - const elapsedMs = endedAt.getTime() - runState.startedAt.getTime(); - - const logFolder = path.resolve(outPath); - if (!fs.existsSync(logFolder)) { - fs.mkdirSync(logFolder, { recursive: true }); - } - + const elapsed = endedAt.getTime() - runState.startedAt.getTime(); const logName = `run_log_${sanitizeFilename(formatISO(runState.startedAt))}.json`; - const logPath = path.join(logFolder, logName); - const payload = { startedAt: formatISO(runState.startedAt), endedAt: formatISO(endedAt), - elapsed: msToHMS(elapsedMs), + elapsed: msToHMS(elapsed), exitReason: runState.exitReason, counts: { subtreeFilesProcessed: runState.subtreeFilesProcessed, @@ -398,73 +330,37 @@ function writeRunLogFile(outPath) { }, failures: runState.failures, }; - - fs.writeFileSync(logPath, JSON.stringify(payload, null, 4), 'utf8'); - console.log(`Log written: ${OUT_DIR}/${path.basename(logPath)}`); -} - -function finalizeAndExit(outPath, reason, code = 0) { - if (finalized) { - process.exit(code); - return; - } - - finalized = true; - runState.exitReason = reason ?? runState.exitReason; - runState.endedAt = new Date(); - - try { - if (masterStreamRef && !masterStreamRef.closed) { - masterStreamRef.end(); - } - } catch (_) {} - - try { - writeRunLogFile(outPath); - } catch (e) { - console.error('Failed to write log file:', e); - } - - process.exit(code); -} - -function registerExitHandlers(outPath) { - process.on('SIGINT', () => finalizeAndExit(outPath, 'SIGINT (Ctrl+C)', 130)); - process.on('SIGTERM', () => finalizeAndExit(outPath, 'SIGTERM', 143)); - - process.on('uncaughtException', (err) => { - runState.failures.push({ - type: 'uncaughtException', - message: String(err?.message ?? err), - stack: String(err?.stack ?? ''), - when: formatISO(new Date()), - }); - finalizeAndExit(outPath, 'uncaughtException', 1); - }); - - process.on('unhandledRejection', (reason) => { - runState.failures.push({ - type: 'unhandledRejection', - message: String(reason?.message ?? reason), - stack: String(reason?.stack ?? ''), - when: formatISO(new Date()), - }); - finalizeAndExit(outPath, 'unhandledRejection', 1); - }); + fs.writeFileSync( + path.join(outPath, logName), + JSON.stringify(payload, null, 2), + 'utf8', + ); + console.log(`Log written: ${logName}`); } -/* -------------------- main -------------------- */ +export async function run(config = {}) { + const cfg = { + categoriesDir: config.categoriesDir ?? 'WalmartPipeline/Categories', + outDir: config.outDir ?? 'WalmartPipeline/walmart_CSVs', + countPerPage: config.countPerPage ?? 500, + requestDelayMs: config.requestDelayMs ?? 25, + categoryDelayMs: config.categoryDelayMs ?? 25, + fetchAttempts: config.fetchAttempts ?? 5, + retryBaseDelayMs: config.retryBaseDelayMs ?? 50, + exportParentRows: config.exportParentRows ?? false, + dedupeWithinCategory: config.dedupeWithinCategory ?? true, + dedupeWithinSubtree: config.dedupeWithinSubtree ?? true, + dedupeMaster: config.dedupeMaster ?? false, + }; -async function main() { - const categoriesPath = path.resolve(process.cwd(), CATEGORIES_DIR); - const outPath = path.resolve(process.cwd(), OUT_DIR); + const creds = loadCredentials(); - registerExitHandlers(outPath); + const categoriesPath = path.resolve(process.cwd(), cfg.categoriesDir); + const outPath = path.resolve(process.cwd(), cfg.outDir); if (!fs.existsSync(categoriesPath)) { - throw new Error(`Missing folder: ${categoriesPath}`); + throw new Error(`Missing categories folder: ${categoriesPath}`); } - if (!fs.existsSync(outPath)) { fs.mkdirSync(outPath, { recursive: true }); } @@ -477,198 +373,176 @@ async function main() { throw new Error(`No .csv files found in ${categoriesPath}`); } - const columns = [ - 'subtree_id', - 'subtree_name', - 'category_id', - 'category_name', - 'category_path', - 'item_id', - 'name', - 'msrp', - 'retail_price', - 'upc', - 'shortDescription', - 'longDescription', - 'brandName', - 'thumbnailImage', - 'mediumImage', - 'largeImage', - 'color', - 'customerRating', - 'stock', - 'productTrackingUrl', - 'categoryNode', - ]; + const runState = { + startedAt: new Date(), + endedAt: null, + exitReason: 'completed', + subtreeFilesProcessed: 0, + categoryRowsAttempted: 0, + categoryRowsSucceeded: 0, + categoryRowsFailed: 0, + failures: [], + }; const masterFile = path.join(outPath, 'ALL_SUBTREES_PRODUCTS.csv'); const masterStream = fs.createWriteStream(masterFile, { encoding: 'utf8' }); - masterStreamRef = masterStream; - masterStream.write(csvHeader(columns)); + masterStream.write(csvHeader()); - const seenMaster = DEDUPE_MASTER ? new Set() : null; + const seenMaster = cfg.dedupeMaster ? new Set() : null; let masterCount = 0; - for (const file of subtreeFiles) { - const subtreeCsvPath = path.join(categoriesPath, file); - const text = fs.readFileSync(subtreeCsvPath, 'utf8'); - - const parsed = parseCSV(text); - const objsRaw = rowsToObjects(parsed); - - if (!objsRaw.length) { - continue; - } - - const root = pickSubtreeRoot(objsRaw); - const subtree_name = root?.name ?? path.basename(file, '.csv'); - const subtree_id = root?.id ?? ''; - - const subtreeLabel = sanitizeFilename( - `${subtree_name}_${subtree_id || 'unknown'}`, - ); - - // Subtree aggregate CSV - const subtreeAggFile = path.join(outPath, `${subtreeLabel}__ALL.csv`); - const subtreeAggStream = fs.createWriteStream(subtreeAggFile, { - encoding: 'utf8', - }); - subtreeAggStream.write(csvHeader(columns)); - - const seenSubtreeAgg = DEDUPE_WITHIN_SUBTREE_AGG ? new Set() : null; - let subtreeAggCount = 0; - - const rows = objsRaw - .map((o) => ({ - id: String(o.id ?? '').trim(), - name: String(o.name ?? '').trim(), - path: String(o.path ?? '').trim(), - })) - .filter((o) => o.id && o.name); - - for (const row of rows) { - const parent = isParentRow(rows, row); - - if (!EXPORT_PARENT_ROWS_TOO && parent) { - continue; - } - - runState.categoryRowsAttempted++; - - await sleep(CATEGORY_DELAY_MS); - - let items; - try { - items = await fetchAllItemsForCategory(row.id); - runState.categoryRowsSucceeded++; - } catch (e) { - runState.categoryRowsFailed++; - - runState.failures.push({ - type: 'categoryFetchFailed', - subtreeFile: file, - subtreeName: subtree_name, - subtreeId: subtree_id, - categoryId: row.id, - categoryName: row.name, - categoryPath: row.path, - message: String(e?.message ?? e), - httpStatus: e?.httpStatus ?? null, - url: e?.url ?? null, - responseBody: e?.responseBody ?? null, - stack: String(e?.stack ?? ''), - when: formatISO(new Date()), - }); - - console.error(`Failed category ${row.id} (${row.name}): ${e.message}`); - continue; - } - - const categoryLabel = sanitizeFilename( - `${subtree_name}_${subtree_id}__${row.name}_${row.id}`, + try { + for (const file of subtreeFiles) { + const subtreeCsvPath = path.join(categoriesPath, file); + const text = fs.readFileSync(subtreeCsvPath, 'utf8'); + const parsed = parseCSV(text); + const objsRaw = rowsToObjects(parsed); + + if (!objsRaw.length) continue; + + const root = pickSubtreeRoot(objsRaw); + const subtree_name = root?.name ?? path.basename(file, '.csv'); + const subtree_id = root?.id ?? ''; + const subtreeLabel = sanitizeFilename( + `${subtree_name}_${subtree_id || 'unknown'}`, ); - const categoryFile = path.join(outPath, `${categoryLabel}.csv`); - const categoryStream = fs.createWriteStream(categoryFile, { + + const subtreeAggFile = path.join(outPath, `${subtreeLabel}__ALL.csv`); + const subtreeAggStream = fs.createWriteStream(subtreeAggFile, { encoding: 'utf8', }); - categoryStream.write(csvHeader(columns)); - - const seenCategory = DEDUPE_WITHIN_EACH_CATEGORY_CSV ? new Set() : null; - let categoryCount = 0; - - for (const item of items) { - const itemId = String(item?.itemId ?? ''); - if (!itemId) continue; - - if (seenCategory) { - if (seenCategory.has(itemId)) continue; - seenCategory.add(itemId); + subtreeAggStream.write(csvHeader()); + + const seenSubtreeAgg = cfg.dedupeWithinSubtree ? new Set() : null; + let subtreeAggCount = 0; + + const rows = objsRaw + .map((o) => ({ + id: String(o.id ?? '').trim(), + name: String(o.name ?? '').trim(), + path: String(o.path ?? '').trim(), + })) + .filter((o) => o.id && o.name); + + for (const row of rows) { + if (!cfg.exportParentRows && isParentRow(rows, row)) continue; + + runState.categoryRowsAttempted++; + await sleep(cfg.categoryDelayMs); + + let items; + try { + items = await fetchAllItemsForCategory(row.id, creds, cfg); + runState.categoryRowsSucceeded++; + } catch (e) { + runState.categoryRowsFailed++; + runState.failures.push({ + type: 'categoryFetchFailed', + subtreeFile: file, + subtreeName: subtree_name, + categoryId: row.id, + categoryName: row.name, + categoryPath: row.path, + message: String(e?.message ?? e), + httpStatus: e?.httpStatus ?? null, + url: e?.url ?? null, + responseBody: e?.responseBody ?? null, + when: formatISO(new Date()), + }); + console.error( + `Failed category ${row.id} (${row.name}): ${e.message}`, + ); + continue; } - const outRow = itemToRow(item, { - subtree_id, - subtree_name, - category_id: row.id, - category_name: row.name, - category_path: row.path, + const categoryLabel = sanitizeFilename( + `${subtree_name}_${subtree_id}__${row.name}_${row.id}`, + ); + const categoryFile = path.join(outPath, `${categoryLabel}.csv`); + const categoryStream = fs.createWriteStream(categoryFile, { + encoding: 'utf8', }); + categoryStream.write(csvHeader()); + + const seenCategory = cfg.dedupeWithinCategory ? new Set() : null; + let categoryCount = 0; - // Per-category CSV - categoryStream.write(rowToCSVLine(outRow, columns)); - categoryCount++; + for (const item of items) { + const itemId = String(item?.itemId ?? ''); + if (!itemId) continue; + + if (seenCategory) { + if (seenCategory.has(itemId)) continue; + seenCategory.add(itemId); + } - // Subtree aggregate (dedup optional) - if (seenSubtreeAgg) { - if (!seenSubtreeAgg.has(itemId)) { - seenSubtreeAgg.add(itemId); - subtreeAggStream.write(rowToCSVLine(outRow, columns)); + const outRow = itemToRow(item, { + subtree_name, + category_id: row.id, + category_name: row.name, + category_path: row.path, + }); + + categoryStream.write(rowToCSVLine(outRow)); + categoryCount++; + + if (seenSubtreeAgg) { + if (!seenSubtreeAgg.has(itemId)) { + seenSubtreeAgg.add(itemId); + subtreeAggStream.write(rowToCSVLine(outRow)); + subtreeAggCount++; + } + } else { + subtreeAggStream.write(rowToCSVLine(outRow)); subtreeAggCount++; } - } else { - subtreeAggStream.write(rowToCSVLine(outRow, columns)); - subtreeAggCount++; - } - // Master (dedup optional) - if (seenMaster) { - if (!seenMaster.has(itemId)) { - seenMaster.add(itemId); - masterStream.write(rowToCSVLine(outRow, columns)); + if (seenMaster) { + if (!seenMaster.has(itemId)) { + seenMaster.add(itemId); + masterStream.write(rowToCSVLine(outRow)); + masterCount++; + } + } else { + masterStream.write(rowToCSVLine(outRow)); masterCount++; } - } else { - masterStream.write(rowToCSVLine(outRow, columns)); - masterCount++; } - } - await new Promise((resolve) => categoryStream.end(resolve)); - - if (categoryCount != 0) { - console.log( - `Wrote category CSV: ${path.basename(categoryFile)} (${categoryCount} rows)`, - ); + await new Promise((resolve) => categoryStream.end(resolve)); + if (categoryCount > 0) { + console.log( + `Wrote ${path.basename(categoryFile)} (${categoryCount} rows)`, + ); + } } - } - - await new Promise((resolve) => subtreeAggStream.end(resolve)); - - runState.subtreeFilesProcessed++; - console.log( - `Wrote subtree aggregate CSV: ${path.basename(subtreeAggFile)} (${subtreeAggCount} rows)`, - ); + await new Promise((resolve) => subtreeAggStream.end(resolve)); + runState.subtreeFilesProcessed++; + console.log( + `Wrote ${path.basename(subtreeAggFile)} (${subtreeAggCount} rows)`, + ); + } + } finally { + await new Promise((resolve) => masterStream.end(resolve)); + runState.endedAt = new Date(); + writeRunLog(outPath, runState); } - await new Promise((resolve) => masterStream.end(resolve)); - console.log( - `Wrote master CSV: ${path.basename(masterFile)} (${masterCount} rows)`, - ); + console.log(`Wrote ${path.basename(masterFile)} (${masterCount} rows)`); - finalizeAndExit(outPath, 'completed', 0); + return { + subtreeFilesProcessed: runState.subtreeFilesProcessed, + categoryRowsAttempted: runState.categoryRowsAttempted, + categoryRowsSucceeded: runState.categoryRowsSucceeded, + categoryRowsFailed: runState.categoryRowsFailed, + }; } -main().catch((err) => { - console.error(err); - finalizeAndExit(path.resolve(process.cwd(), OUT_DIR), 'main() catch', 1); -}); +// run directly if called as a script (not imported) +if (process.argv[1] === __filename) { + run().catch((err) => { + console.error(err.message ?? err); + process.exit(1); + }); +} diff --git a/package-lock.json b/package-lock.json index d8550b9..d2b3e30 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,8 @@ "version": "1.0.0", "license": "ISC", "dependencies": { + "@supabase/supabase-js": "^2.99.1", + "csv-parse": "^6.1.0", "dotenv": "^17.3.1", "lint": "^1.1.2", "node-fetch": "^2.7.0", @@ -36,6 +38,110 @@ "url": "https://eslint.org/donate" } }, + "node_modules/@supabase/auth-js": { + "version": "2.99.1", + "resolved": "https://registry.npmjs.org/@supabase/auth-js/-/auth-js-2.99.1.tgz", + "integrity": "sha512-x7lKKTvKjABJt/FYcRSPiTT01Xhm2FF8RhfL8+RHMkmlwmRQ88/lREupIHKwFPW0W6pTCJqkZb7Yhpw/EZ+fNw==", + "license": "MIT", + "dependencies": { + "tslib": "2.8.1" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@supabase/functions-js": { + "version": "2.99.1", + "resolved": "https://registry.npmjs.org/@supabase/functions-js/-/functions-js-2.99.1.tgz", + "integrity": "sha512-WQE62W5geYImCO4jzFxCk/avnK7JmOdtqu2eiPz3zOaNiIJajNRSAwMMDgEGd2EMs+sUVYj1LfBjfmW3EzHgIA==", + "license": "MIT", + "dependencies": { + "tslib": "2.8.1" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@supabase/postgrest-js": { + "version": "2.99.1", + "resolved": "https://registry.npmjs.org/@supabase/postgrest-js/-/postgrest-js-2.99.1.tgz", + "integrity": "sha512-gtw2ibJrADvfqrpUWXGNlrYUvxttF4WVWfPpTFKOb2IRj7B6YRWMDgcrYqIuD4ZEabK4m6YKQCCGy6clgf1lPA==", + "license": "MIT", + "dependencies": { + "tslib": "2.8.1" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@supabase/realtime-js": { + "version": "2.99.1", + "resolved": "https://registry.npmjs.org/@supabase/realtime-js/-/realtime-js-2.99.1.tgz", + "integrity": "sha512-9EDdy/5wOseGFqxW88ShV9JMRhm7f+9JGY5x+LqT8c7R0X1CTLwg5qie8FiBWcXTZ+68yYxVWunI+7W4FhkWOg==", + "license": "MIT", + "dependencies": { + "@types/phoenix": "^1.6.6", + "@types/ws": "^8.18.1", + "tslib": "2.8.1", + "ws": "^8.18.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@supabase/storage-js": { + "version": "2.99.1", + "resolved": "https://registry.npmjs.org/@supabase/storage-js/-/storage-js-2.99.1.tgz", + "integrity": "sha512-mf7zPfqofI62SOoyQJeNUVxe72E4rQsbWim6lTDPeLu3lHija/cP5utlQADGrjeTgOUN6znx/rWn7SjrETP1dw==", + "license": "MIT", + "dependencies": { + "iceberg-js": "^0.8.1", + "tslib": "2.8.1" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@supabase/supabase-js": { + "version": "2.99.1", + "resolved": "https://registry.npmjs.org/@supabase/supabase-js/-/supabase-js-2.99.1.tgz", + "integrity": "sha512-5MRoYD9ffXq8F6a036dm65YoSHisC3by/d22mauKE99Vrwf792KxYIIr/iqCX7E4hkuugbPZ5EGYHTB7MKy6Vg==", + "license": "MIT", + "dependencies": { + "@supabase/auth-js": "2.99.1", + "@supabase/functions-js": "2.99.1", + "@supabase/postgrest-js": "2.99.1", + "@supabase/realtime-js": "2.99.1", + "@supabase/storage-js": "2.99.1" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@types/node": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.5.0.tgz", + "integrity": "sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.18.0" + } + }, + "node_modules/@types/phoenix": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/@types/phoenix/-/phoenix-1.6.7.tgz", + "integrity": "sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==", + "license": "MIT" + }, + "node_modules/@types/ws": { + "version": "8.18.1", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz", + "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, "node_modules/acorn": { "version": "5.7.4", "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", @@ -326,6 +432,12 @@ "which": "^1.2.9" } }, + "node_modules/csv-parse": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-6.1.0.tgz", + "integrity": "sha512-CEE+jwpgLn+MmtCpVcPtiCZpVtB6Z2OKPTr34pycYYoL7sxdOkXDdQ4lRiw6ioC0q6BLqhc6cKweCVvral8yhw==", + "license": "MIT" + }, "node_modules/debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", @@ -809,6 +921,15 @@ "url": "https://github.com/sponsors/typicode" } }, + "node_modules/iceberg-js": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/iceberg-js/-/iceberg-js-0.8.1.tgz", + "integrity": "sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==", + "license": "MIT", + "engines": { + "node": ">=20.0.0" + } + }, "node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", @@ -1627,6 +1748,12 @@ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "license": "MIT" }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, "node_modules/type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", @@ -1647,6 +1774,12 @@ "dev": true, "license": "MIT" }, + "node_modules/undici-types": { + "version": "7.18.2", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz", + "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==", + "license": "MIT" + }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -1725,6 +1858,27 @@ "node": ">=0.10.0" } }, + "node_modules/ws": { + "version": "8.19.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.19.0.tgz", + "integrity": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, "node_modules/yallist": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", diff --git a/package.json b/package.json index d385f11..8726bdb 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,8 @@ "author": "", "license": "ISC", "dependencies": { + "@supabase/supabase-js": "^2.99.1", + "csv-parse": "^6.1.0", "dotenv": "^17.3.1", "lint": "^1.1.2", "node-fetch": "^2.7.0", diff --git a/runner.js b/runner.js new file mode 100644 index 0000000..dca4e02 --- /dev/null +++ b/runner.js @@ -0,0 +1,295 @@ +/** + * runner.js + * + * Runs the Walmart and Kroger pipelines. You can run all stages, just one + * pipeline, or pick specific stages by name. + * + * To add a new stage later (like Supabase import), just append an object + * to the STAGES array - there's already a commented-out placeholder for that. + * + * Usage: + * node runner.js --all + * node runner.js --walmart + * node runner.js --kroger --zipcode=92507 + * node runner.js --all --dry-run + * node runner.js --help + */ + +import dotenv from 'dotenv'; +dotenv.config(); + +import { spawn } from 'child_process'; +import path from 'path'; +import { fileURLToPath } from 'url'; +import { run as walmartFetch } from './WalmartPipeline/fetchProducts.js'; +import { importWalmart, importKroger } from './supabase_import.js'; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); + +const argv = process.argv.slice(2); + +function flag(name) { + return argv.includes(name); +} +function opt(prefix, def) { + return ( + (argv.find((a) => a.startsWith(prefix)) ?? '').replace(prefix, '') || def + ); +} + +const runAll = flag('--all'); +const runWalmart = flag('--walmart') || runAll; +const runKroger = flag('--kroger') || runAll; +const runSupabase = flag('--supabase') || runAll; +const runReclassify = flag('--reclassify'); // re-run classifier on existing walmart_CSVs without re-fetching +const isDryRun = flag('--dry-run'); +const useLLM = flag('--llm'); +const continueErr = flag('--continue-on-error'); +const showHelp = flag('--help') || flag('-h') || argv.length === 0; + +const zipcode = opt('--zipcode=', ''); +const stores = opt('--stores=', '10'); +const radius = opt('--radius=', '25'); +const llmModel = opt('--model=', 'llama3.2:1b'); +const llmWorkers = opt('--workers=', '8'); +const stagesArg = opt('--stages=', ''); + +// runs a subprocess and waits for it to finish +// stdio: 'inherit' pipes the output straight to our terminal +function spawn_(cmd, args) { + return new Promise((resolve, reject) => { + const child = spawn(cmd, args, { + stdio: 'inherit', + env: process.env, + cwd: __dirname, + }); + child.on('close', (code) => { + if (code === 0 || code === null) resolve(); + else + reject( + new Error(`"${cmd} ${args.join(' ')}" exited with code ${code}`), + ); + }); + child.on('error', (err) => reject(new Error(`${cmd}: ${err.message}`))); + }); +} + +// Each stage has an id, label, group, and a run() that returns a Promise. +// To add a new stage later just append another object to this array. +const STAGES = [ + { + id: 'walmart:fetch', + label: 'Fetch Walmart products from category CSVs', + group: 'walmart', + run: async () => { + // calls into fetchProducts.js directly instead of spawning a subprocess + // pass a config object to run() if you want to change the output dir, etc. + const stats = await walmartFetch(); + console.log( + `\n Succeeded: ${stats.categoryRowsSucceeded} categories` + + ` | Failed: ${stats.categoryRowsFailed}` + + ` | Subtrees: ${stats.subtreeFilesProcessed}`, + ); + }, + }, + + { + id: 'walmart:classify', + label: 'Classify Walmart products as ingredients (Python)', + group: 'walmart', + // reads from walmart_CSVs/, writes to classified_ingredients.csv + // no LLM by default - add --llm to enable ollama, --model= to change the model + run: () => + spawn_('python3', [ + 'WalmartPipeline/classify_ingredients.py', + 'WalmartPipeline/walmart_CSVs', + '-o', + 'WalmartPipeline/classified_ingredients.csv', + ...(useLLM ? ['-m', llmModel, '-w', llmWorkers] : ['--no-llm']), + ]), + }, + + { + id: 'kroger:build', + label: 'Build Kroger food catalogue for stores near a zip code', + group: 'kroger', + // --zipcode is required - kroger_catalogue.js will error if it's missing + run: () => { + if (!zipcode) throw new Error('kroger:build requires --zipcode=XXXXX'); + return spawn_('node', [ + 'KrogerPipeline/kroger_catalogue.js', + `--zipcode=${zipcode}`, + `--stores=${stores}`, + `--radius=${radius}`, + ...(isDryRun ? ['--dry-run'] : []), + ]); + }, + }, + + { + id: 'supabase:walmart', + label: 'Import Walmart ingredients into Supabase', + group: 'supabase', + run: () => importWalmart({ dryRun: isDryRun }), + }, + + { + id: 'supabase:kroger', + label: 'Import Kroger catalogue into Supabase', + group: 'supabase', + run: () => importKroger({ dryRun: isDryRun }), + }, +]; + +function selectStages() { + const validIds = new Set(STAGES.map((s) => s.id)); + + // --reclassify just re-runs the classifier on already-fetched CSVs + if (runReclassify) return STAGES.filter((s) => s.id === 'walmart:classify'); + + // --stages=... takes priority if given + if (stagesArg) { + const requested = stagesArg + .split(',') + .map((s) => s.trim()) + .filter(Boolean); + for (const id of requested) { + if (!validIds.has(id)) { + console.error( + `Unknown stage: "${id}". Valid stages: ${[...validIds].join(', ')}`, + ); + process.exit(1); + } + } + return STAGES.filter((s) => requested.includes(s.id)); + } + + return STAGES.filter((s) => { + if (s.group === 'walmart' && !runWalmart) return false; + if (s.group === 'kroger' && !runKroger) return false; + if (s.group === 'supabase' && !runSupabase) return false; + return true; + }); +} + +function printHelp() { + const stageList = STAGES.map((s) => ` ${s.id.padEnd(22)}${s.label}`).join( + '\n', + ); + console.log(` +Shopwise Pipeline Runner +===================================================== + +Usage: + node runner.js [flags] + +Flags: + --all Run all stages (kroger:enrich skipped unless --zipcode given) + --walmart Run walmart:fetch and walmart:classify + --reclassify Re-run walmart:classify on existing CSVs (skips the API fetch) + --kroger Run kroger:build (plus kroger:enrich if --zipcode is set) + --stages=a,b,c Pick specific stages by name, comma separated + --zipcode=XXXXX Zip code required for kroger:enrich + --stores=N Max stores for kroger:enrich (default: 10, or "all") + --radius=N Store search radius in miles (default: 25) + --dry-run Small batches, safe for testing + --llm Enable Ollama LLM in walmart:classify (default: rules-only) + --model=NAME Ollama model (default: llama3.2:1b) + --workers=N Parallel LLM workers (default: 8) + --supabase Run supabase:walmart and supabase:kroger + --continue-on-error Keep going after a stage fails instead of stopping + --help, -h Show this help text + +Stages (in order): +${stageList} + +Examples: + node runner.js --all + node runner.js --walmart + node runner.js --kroger --zipcode=90210 + node runner.js --all --dry-run + node runner.js --stages=walmart:fetch,kroger:build + node runner.js --walmart --llm --model=llama3.2:3b +`); +} + +async function main() { + if (showHelp) { + printHelp(); + return; + } + + const stages = selectStages(); + + if (!stages.length) { + console.error( + 'No stages selected. Use --all, --walmart, --kroger, --stages=..., or --help.', + ); + process.exit(1); + } + + const divider = '-'.repeat(60); + const divider2 = '='.repeat(60); + + console.log(`\nShopwise Pipeline Runner`); + console.log(divider2); + console.log(`Stages to run (${stages.length}):`); + stages.forEach((s, i) => console.log(` ${i + 1}. [${s.id}] ${s.label}`)); + if (isDryRun) console.log('\n DRY RUN - small batches only'); + + const results = []; + const t0 = Date.now(); + + for (const stage of stages) { + console.log(`\n${divider}`); + console.log(`[${stage.id}] ${stage.label}`); + console.log(divider); + + const ts = Date.now(); + try { + await stage.run(); + const elapsed = formatElapsed(ts); + console.log(`\n[${stage.id}] done in ${elapsed}`); + results.push({ id: stage.id, ok: true, elapsed }); + } catch (err) { + const elapsed = formatElapsed(ts); + console.error(`\n[${stage.id}] FAILED: ${err.message}`); + results.push({ id: stage.id, ok: false, elapsed, error: err.message }); + if (!continueErr) { + console.error( + `\nStopped. Run with --continue-on-error to keep going after failures.`, + ); + break; + } + } + } + + const total = formatElapsed(t0); + const failed = results.filter((r) => !r.ok); + + console.log(`\n${divider2}`); + console.log( + `Done in ${total} | ${results.length - failed.length}/${results.length} stages passed`, + ); + console.log(divider2); + results.forEach((r) => { + const status = r.ok ? '[ok] ' : '[FAIL]'; + const note = r.error ? ` - ${r.error}` : ''; + console.log(` ${status} [${r.id}] (${r.elapsed})${note}`); + }); + console.log(''); + + if (failed.length) process.exit(1); +} + +function formatElapsed(startTime) { + const ms = Date.now() - startTime; + return ms < 60_000 + ? `${(ms / 1000).toFixed(1)}s` + : `${Math.floor(ms / 60000)}m ${Math.floor((ms % 60000) / 1000)}s`; +} + +main().catch((err) => { + console.error('Fatal error:', err.message); + process.exit(1); +}); diff --git a/schema.sql b/schema.sql new file mode 100644 index 0000000..9f4987e --- /dev/null +++ b/schema.sql @@ -0,0 +1,44 @@ +-- Shopwise Supabase schema +-- Run this once in the Supabase SQL editor before running the import stage. +-- If you already created the tables via the dashboard, you can skip this. + +-- ── Walmart ingredients ────────────────────────────────────────────────────── +-- Only ingredient=True rows are imported. Re-runs require TRUNCATE first. + +CREATE TABLE IF NOT EXISTS walmart_ingredients ( + id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY, + created_at TIMESTAMPTZ DEFAULT NOW() NOT NULL, + name TEXT NOT NULL, + brand TEXT, + price NUMERIC NOT NULL, + classifiers TEXT[] NOT NULL, + image TEXT, + size TEXT NOT NULL +); + +CREATE INDEX IF NOT EXISTS walmart_ingredients_classifiers_idx + ON walmart_ingredients USING GIN (classifiers); + + +-- ── Kroger ingredients ─────────────────────────────────────────────────────── +-- Full food catalogue. Re-runs require TRUNCATE first. +-- store_id holds the semicolon-delimited store IDs as an array. +-- price holds the first available price across stores. + +CREATE TABLE IF NOT EXISTS kroger_ingredients ( + id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY, + created_at TIMESTAMPTZ DEFAULT NOW() NOT NULL, + name TEXT NOT NULL, + brand TEXT, + price NUMERIC NOT NULL, + classifiers TEXT[] NOT NULL, + image TEXT, + size TEXT NOT NULL, + store_id TEXT[] NOT NULL +); + +CREATE INDEX IF NOT EXISTS kroger_ingredients_classifiers_idx + ON kroger_ingredients USING GIN (classifiers); + +CREATE INDEX IF NOT EXISTS kroger_ingredients_store_id_idx + ON kroger_ingredients USING GIN (store_id); diff --git a/supabase_import.js b/supabase_import.js new file mode 100644 index 0000000..a96cf2c --- /dev/null +++ b/supabase_import.js @@ -0,0 +1,237 @@ +/** + * supabase_import.js + * + * Reads the classified Walmart and Kroger CSVs and uploads them to Supabase. + * This runs as a stage inside runner.js, but you can also call it directly + * if you just want to re-upload without touching anything else: + * + * node supabase_import.js --all + * node supabase_import.js --walmart + * node supabase_import.js --kroger + * node supabase_import.js --all --dry-run + * + * Before running, make sure: + * - SUPABASE_URL and SUPABASE_SERVICE_KEY are set in .env + * (needs the service role key, not the anon key — anon key will hit RLS) + * - You've run schema.sql in the Supabase SQL editor to create the tables + * - If you're re-importing, TRUNCATE the tables first to avoid duplicates + */ + +import { createClient } from '@supabase/supabase-js'; +import { parse } from 'csv-parse'; +import { createReadStream } from 'fs'; +import path from 'path'; +import { fileURLToPath } from 'url'; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); + +const SUPABASE_URL = process.env.SUPABASE_URL; +const SUPABASE_KEY = process.env.SUPABASE_SERVICE_KEY; + +// How many rows to send per API call. 1000 is a good balance between fewer +// round trips and not timing out on large payloads. +const BATCH_SIZE = 1000; + +const TABLE_WALMART = 'walmart_ingredients'; +const TABLE_KROGER = 'kroger_ingredients'; + +if (!SUPABASE_URL || !SUPABASE_KEY) { + console.error('Missing SUPABASE_URL or SUPABASE_SERVICE_KEY in environment'); + process.exit(1); +} + +const supabase = createClient(SUPABASE_URL, SUPABASE_KEY); + +// ── Helpers ─────────────────────────────────────────────────────────────────── + +// Splits a delimited string into a trimmed, filtered array. +// Used for comma-separated classifiers and semicolon-separated store IDs/prices. +function split(s, sep) { + if (!s) return []; + return s.split(sep).map((x) => x.trim()).filter(Boolean); +} + +// Returns a float or null — null means the field was empty/unparseable, +// which lets callers decide whether to skip the row. +function toFloat(s) { + const n = parseFloat(s); + return isNaN(n) ? null : n; +} + +// Wraps a file path in a csv-parse stream so we can iterate rows with +// `for await`. The `columns: true` option uses the first row as header names. +function csvParser(filePath) { + return createReadStream(filePath).pipe( + parse({ columns: true, skip_empty_lines: true, trim: true }), + ); +} + +// Sends one batch of rows to Supabase. In dry-run mode it just logs what +// it would have done instead of actually writing anything. +async function insertBatch(table, rows, dryRun) { + if (dryRun) { + console.log(` [dry-run] would insert ${rows.length} rows → ${table}`); + return; + } + const { error } = await supabase.from(table).insert(rows); + if (error) throw new Error(`${table} insert failed: ${error.message}`); +} + +// ── Walmart ─────────────────────────────────────────────────────────────────── +// Reads classified_ingredients.csv and uploads only the rows where +// ingredient=True (everything else was filtered out by classify_ingredients.py). +// Rows missing a name or price are skipped since both are NOT NULL in the table. + +export async function importWalmart({ dryRun = false } = {}) { + const file = path.join(__dirname, 'WalmartPipeline/classified_ingredients.csv'); + console.log(`\n Source: ${file}`); + + let batch = []; + let totalInserted = 0; + let skippedNonIngredient = 0; + let skippedMissingFields = 0; + + // Sends the current batch to Supabase and resets it. + async function flush() { + if (!batch.length) return; + await insertBatch(TABLE_WALMART, batch, dryRun); + totalInserted += batch.length; + batch = []; + process.stdout.write(`\r Inserted ${totalInserted.toLocaleString()} rows...`); + } + + for await (const row of csvParser(file)) { + // Only import rows that the classifier marked as a cooking ingredient + if (row.ingredient !== 'True') { + skippedNonIngredient++; + continue; + } + + const price = toFloat(row.retail_price); + + // Both name and price are NOT NULL in the table, so drop the row if either is missing + if (!row.name || price === null) { + skippedMissingFields++; + continue; + } + + batch.push({ + name: row.name, + brand: row.brandName || null, + price, + classifiers: split(row.classifiers, ','), + image: row.thumbnailImage || null, + size: row.size || '', + }); + + // Flush once we hit the batch limit to keep memory usage flat + if (batch.length >= BATCH_SIZE) await flush(); + } + + // Flush whatever is left over after the loop finishes + await flush(); + + console.log(`\n Done.`); + console.log(` Inserted : ${totalInserted.toLocaleString()}`); + console.log(` Skipped (not ingredient): ${skippedNonIngredient.toLocaleString()}`); + console.log(` Skipped (no name/price) : ${skippedMissingFields.toLocaleString()}`); +} + +// ── Kroger ──────────────────────────────────────────────────────────────────── +// Reads food_catalogue.csv and uploads the full catalogue. +// The price and store_id columns in the CSV are semicolon-delimited lists +// (one entry per store). We take the first price as a representative value +// and store all the store IDs as an array. + +export async function importKroger({ dryRun = false } = {}) { + const file = path.join(__dirname, 'kroger_output/catalogue/food_catalogue.csv'); + console.log(`\n Source: ${file}`); + + let batch = []; + let totalInserted = 0; + let skippedMissingFields = 0; + + async function flush() { + if (!batch.length) return; + await insertBatch(TABLE_KROGER, batch, dryRun); + totalInserted += batch.length; + batch = []; + process.stdout.write(`\r Inserted ${totalInserted.toLocaleString()} rows...`); + } + + for await (const row of csvParser(file)) { + // description is what we store as the product name — skip if it's blank + if (!row.description) { + skippedMissingFields++; + continue; + } + + // The price column looks like "2.99;3.49;2.99" — one price per store. + // We just grab the first one as a representative price for the product. + const price = toFloat(split(row.price, ';')[0]); + if (price === null) { + skippedMissingFields++; + continue; + } + + batch.push({ + name: row.description, + brand: row.brand || null, + price, + // classifier is a single tag like "PRODUCE" — wrap it in an array + // to match the classifiers column type on the Walmart table + classifiers: row.classifier ? [row.classifier] : [], + image: row.image_url || null, + size: row.size || '', + // store_ids looks like "70400786;70400343" — split into an array + store_id: split(row.store_ids, ';'), + }); + + if (batch.length >= BATCH_SIZE) await flush(); + } + + await flush(); + + console.log(`\n Done.`); + console.log(` Inserted : ${totalInserted.toLocaleString()}`); + console.log(` Skipped (no name/price): ${skippedMissingFields.toLocaleString()}`); +} + +// ── Entry point (when run directly) ────────────────────────────────────────── +// This block only runs when you call `node supabase_import.js` directly. +// When runner.js imports this file it just gets the exported functions above. + +const argv = process.argv.slice(2); +const runAll = argv.includes('--all'); +const runWalmart = argv.includes('--walmart') || runAll; +const runKroger = argv.includes('--kroger') || runAll; +const isDryRun = argv.includes('--dry-run'); + +async function main() { + if (!runWalmart && !runKroger) { + console.error( + 'Specify --walmart, --kroger, or --all\n' + + 'Example: node supabase_import.js --all --dry-run', + ); + process.exit(1); + } + + if (runWalmart) { + console.log('\n[supabase:walmart] Importing Walmart ingredients...'); + await importWalmart({ dryRun: isDryRun }); + } + + if (runKroger) { + console.log('\n[supabase:kroger] Importing Kroger ingredients...'); + await importKroger({ dryRun: isDryRun }); + } + + console.log('\nImport complete.'); +} + +if (process.argv[1] === fileURLToPath(import.meta.url)) { + main().catch((err) => { + console.error('Fatal:', err.message); + process.exit(1); + }); +}