[object Object]

← back to Designer Wallcoverings

Bucket B Harlequin: PG-first roll-variant recovery script (clone of Rebel Walls)

9d3551fdd6267496ea52e939f5b44f639dfed9ad · 2026-06-22 14:27:45 -0700 · Steve

- harlequin_catalog price source (price_retail direct; price_trade/0.65/0.85 fallback)
- bridge worklist shopify_id -> shopify_products.mfr_sku -> harlequin_catalog.mfr_sku
- 32/583 recover a real catalog price ($150 retail); 551 stay sample-only + Needs-Price
- shared 1k/day budget.cjs take('roll')/refund integration; stages remainder over cap
- draft-gate: never flips status, never duplicates, never force-prices

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

Files touched

Diff

commit 9d3551fdd6267496ea52e939f5b44f639dfed9ad
Author: Steve <steve@designerwallcoverings.com>
Date:   Mon Jun 22 14:27:45 2026 -0700

    Bucket B Harlequin: PG-first roll-variant recovery script (clone of Rebel Walls)
    
    - harlequin_catalog price source (price_retail direct; price_trade/0.65/0.85 fallback)
    - bridge worklist shopify_id -> shopify_products.mfr_sku -> harlequin_catalog.mfr_sku
    - 32/583 recover a real catalog price ($150 retail); 551 stay sample-only + Needs-Price
    - shared 1k/day budget.cjs take('roll')/refund integration; stages remainder over cap
    - draft-gate: never flips status, never duplicates, never force-prices
    
    Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
---
 shopify/scripts/bucketB-harlequin-roll-variants.js |   312 +
 .../scripts/data/bucketB/hq-run-report-dryrun.json | 10692 +++++++++++++++++++
 2 files changed, 11004 insertions(+)

diff --git a/shopify/scripts/bucketB-harlequin-roll-variants.js b/shopify/scripts/bucketB-harlequin-roll-variants.js
new file mode 100644
index 00000000..f6faf801
--- /dev/null
+++ b/shopify/scripts/bucketB-harlequin-roll-variants.js
@@ -0,0 +1,312 @@
+#!/usr/bin/env node
+/**
+ * bucketB-harlequin-roll-variants.js  (2026-06-22)  — owner: vp-dw-commerce
+ *
+ * Bucket B — Harlequin sample-only recovery (Steve APPROVED, feed-first, draft-gated,
+ * reversible). Clone of bucketB-rebelwalls-roll-variants.js pointed at harlequin_catalog.
+ * For the 583 Harlequin sample-only products (Sample variant present, no sellable ROLL),
+ * add the missing ROLL variant `{DW_SKU}` alongside the existing `{DW_SKU}-Sample` ($4.25).
+ *
+ * PRICE SOURCE — recover from PG first (feed-first), scrape only gaps:
+ *   harlequin_catalog (dw_unified) has price_retail, price_trade, mfr_sku, dw_sku.
+ *   The worklist is keyed by shopify_id (numeric); the bridge to a vendor mfr_sku is
+ *   shopify_products.mfr_sku (joined on the GID form). We then match that mfr_sku to
+ *   harlequin_catalog.mfr_sku (exact, lowercased — the catalog uses the full
+ *   "pattern-color-haw####-##" slug). The enriched TSV is produced upstream by that
+ *   PG join into data/bucketB-harlequin-enriched.tsv; this script never invents a price.
+ *
+ *   ONLY 32/583 recover a real per-product catalog price this way (catalog_retail,
+ *   $150 single roll). The other 551 carry bare-numeric Harlequin codes (113123, 111500)
+ *   or HRTW codes that DO NOT exist in harlequin_catalog (the catalog covers a different
+ *   Harlequin cohort), so they get NO roll variant — they STAY sample-only + tag
+ *   Needs-Price. We do NOT fuzzy-scrape bare-numeric codes (rejected for Rebel Walls as
+ *   high mis-match risk, DTD-A 2026-06-22) and we NEVER force-price.
+ *
+ * PRICING RULE (Harlequin is NOT Kravet-family):
+ *   prefer price_retail (already DW retail per single roll) -> use verbatim.
+ *   else if only price_trade (= trade/wholesale cost) -> DW retail = price_trade/0.65/0.85.
+ *   (No row in this cohort is trade-only, but the branch is implemented for correctness.)
+ *
+ * ORDER OF OPS (PostgreSQL BEFORE Shopify):
+ *   1. read recovered roll price from data/bucketB-harlequin-enriched.tsv (PG-sourced)
+ *   2. WRITE the roll price into dw_unified.shopify_products.retail_price for the matching
+ *      shopify_id (GID) -- source of truth first
+ *   3. create the ROLL variant on the Shopify product (sku on inventoryItem), reorder
+ *      roll-first, set metafields (mfr_sku, unit_of_measure, price_updated_at)
+ *   4. for unmatched (price_source=none): tag Needs-Price (+ Needs-Width/Needs-Image where
+ *      the catalog gave us no width/image) — NO variant, status untouched
+ *
+ * SHARED VARIANT BUDGET (budget.cjs, 1k/day, shared with Coordonné + Mind the Gap):
+ *   take('roll', N) before creating, refund the unused grant after — fail-closed refund so a
+ *   429/exit/partial never silently drains the daily slice. If the combined day would exceed
+ *   the cap (grant < want), the remainder is STAGED (deferred to the next window) and noted in
+ *   the report — never forced past the ceiling.
+ *
+ * HARD RULES enforced:
+ *   - NEVER DUPLICATE — operate on the EXISTING product by shopify_id; idempotent skip if a
+ *     non-Sample variant already exists. Never create a 2nd product.
+ *   - PRICE GATE — no recovered price => row stays sample-only, tag Needs-Price.
+ *   - PG dw_unified BEFORE Shopify.
+ *   - NEVER flip status. These are ACTIVE; we never set ACTIVE (no img+width work here) and
+ *     never demote. A DRAFT product would stay DRAFT.
+ *   - never touch title / customer-facing vendor field / display_variant tag.
+ *   - never the word "Wallpaper"; SKU never "Unknown" (sample sku is authoritative).
+ *
+ * Resumable: idempotent per product (skips already-has-roll; re-tagging is additive).
+ *
+ *   node bucketB-harlequin-roll-variants.js                          # DRY-RUN
+ *   node bucketB-harlequin-roll-variants.js --apply                  # LIVE
+ *   node bucketB-harlequin-roll-variants.js --apply --max-create 32  # cap roll creations
+ *   node bucketB-harlequin-roll-variants.js --apply --report data/bucketB/hq-run-report.json
+ */
+const https = require('https');
+const fs = require('fs');
+const os = require('os');
+const path = require('path');
+const { execFileSync } = require('child_process');
+
+const args = process.argv.slice(2);
+const APPLY = args.includes('--apply');
+const numArg = (flag, dflt) => { const i = args.indexOf(flag); return i >= 0 ? parseInt(args[i + 1], 10) : dflt; };
+const strArg = (flag, dflt) => { const i = args.indexOf(flag); return i >= 0 ? args[i + 1] : dflt; };
+const MAX_CREATE = numArg('--max-create', 900);
+const BATCH_SIZE = numArg('--batch-size', 100);
+const BATCH_GAP_MS = numArg('--batch-gap', 90000);
+const REPORT = strArg('--report', null);
+
+const TSV = path.join(os.homedir(), 'Projects/designerwallcoverings/today-viewer/data/bucketB-harlequin-enriched.tsv');
+const TODAY = new Date().toISOString().slice(0, 10);
+
+// shared daily Shopify variant budget (roll category — same as Rebel Walls Bucket B)
+const budget = require(path.join(os.homedir(), 'Projects/designerwallcoverings/scripts/variant-budget/budget.cjs'));
+const BUDGET_WHO = 'roll';
+
+const env = fs.readFileSync(path.join(os.homedir(), 'Projects/secrets-manager/.env'), 'utf8');
+const TOKEN = (env.match(/^SHOPIFY_ADMIN_TOKEN=(.*)$/m) || [])[1].replace(/['"]/g, '').trim();
+const STORE = 'designer-laboratory-sandbox.myshopify.com', API = '2024-10';
+const sleep = ms => new Promise(r => setTimeout(r, ms));
+function round2(n) { return Math.round((n + Number.EPSILON) * 100) / 100; }
+
+// ---- dw_unified write (PG-first) ------------------------------------------
+// worklist shopify_id is the NUMERIC product id; shopify_products keys on the GID form.
+function pgWriteRollPrice(rows) {
+  if (!rows.length) return '0';
+  const values = rows.map(r =>
+    `('gid://shopify/Product/${r.shopify_id}', ${r.price})`).join(',\n');
+  const sql = `
+BEGIN;
+CREATE TEMP TABLE _bBhq_price(gid text, roll_price numeric);
+INSERT INTO _bBhq_price(gid, roll_price) VALUES
+${values};
+UPDATE shopify_products sp
+   SET retail_price = b.roll_price
+  FROM _bBhq_price b
+ WHERE sp.shopify_id = b.gid;
+SELECT count(*) AS updated FROM _bBhq_price b JOIN shopify_products sp ON sp.shopify_id=b.gid;
+COMMIT;`;
+  const out = execFileSync('ssh', ['my-server',
+    `sudo -u postgres psql -d dw_unified -v ON_ERROR_STOP=1 -t -A`],
+    { input: sql, encoding: 'utf8', maxBuffer: 1 << 24 });
+  return out.trim();
+}
+
+// ---- Shopify GraphQL -------------------------------------------------------
+function gql(query, variables = {}) {
+  return new Promise((resolve, reject) => {
+    const body = JSON.stringify({ query, variables });
+    const req = https.request({ host: STORE, path: `/admin/api/${API}/graphql.json`, method: 'POST',
+      headers: { 'Content-Type': 'application/json', 'X-Shopify-Access-Token': TOKEN, 'Content-Length': Buffer.byteLength(body) } },
+      r => { let d = ''; r.on('data', c => d += c); r.on('end', () => { try { resolve(JSON.parse(d)); } catch (e) { reject(d); } }); });
+    req.on('error', reject); req.write(body); req.end();
+  });
+}
+async function gqlR(q, v, tries = 4) {
+  for (let i = 0; i < tries; i++) {
+    const r = await gql(q, v);
+    if (r && !r.errors) return r;
+    const throttled = (r.errors || []).some(e => /throttl/i.test(JSON.stringify(e)));
+    if (!throttled) return r;
+    await sleep(1500 * (i + 1));
+  }
+  return gql(q, v);
+}
+
+const Q_PRODUCT = `query($id:ID!){product(id:$id){id title status tags
+  options{name values}
+  variants(first:30){nodes{id title sku selectedOptions{name value} inventoryItem{id}}}}}`;
+const M_VAR_CREATE = `mutation($pid:ID!,$variants:[ProductVariantsBulkInput!]!){
+  productVariantsBulkCreate(productId:$pid,variants:$variants){
+    productVariants{id sku} userErrors{field message}}}`;
+const M_REORDER = `mutation($pid:ID!,$positions:[ProductVariantPositionInput!]!){
+  productVariantsBulkReorder(productId:$pid,positions:$positions){userErrors{field message}}}`;
+const M_MF = `mutation($mf:[MetafieldsSetInput!]!){metafieldsSet(metafields:$mf){userErrors{field message}}}`;
+const M_TAGS = `mutation($id:ID!,$tags:[String!]!){tagsAdd(id:$id,tags:$tags){userErrors{field message}}}`;
+
+// ---- worklist (enriched) ---------------------------------------------------
+// cols: shopify_id base_sku sample_sku mfr_sku price_retail price_trade price_source cat_width cat_width_in cat_image cat_disc
+function loadWork() {
+  const lines = fs.readFileSync(TSV, 'utf8').replace(/\n$/, '').split('\n');
+  return lines.map(l => {
+    const c = l.split('\t');
+    return {
+      shopify_id: (c[0] || '').trim(), base_sku: (c[1] || '').trim(),
+      sample_sku: (c[2] || '').trim(), mfr_sku: (c[3] || '').trim(),
+      price_retail: c[4] ? parseFloat(c[4]) : null,
+      price_trade: c[5] ? parseFloat(c[5]) : null,
+      price_source: (c[6] || '').trim(),
+      cat_width: (c[7] || '').trim(), cat_width_in: (c[8] || '').trim(),
+      cat_image: (c[9] || '').trim(), cat_disc: (c[10] || '').trim() === 't',
+    };
+  }).filter(r => r.shopify_id && /^\d+$/.test(r.shopify_id));
+}
+
+// Harlequin price rule (NOT Kravet-family): prefer retail verbatim; else trade/0.65/0.85.
+function rollPriceFor(r) {
+  if (r.price_retail != null && r.price_retail > 0) return { price: round2(r.price_retail), src: 'catalog_retail' };
+  if (r.price_trade != null && r.price_trade > 0) return { price: round2(r.price_trade / 0.65 / 0.85), src: 'catalog_trade_derived' };
+  return null;
+}
+
+(async () => {
+  const rows = loadWork();
+  const priced = []; const unpriced = [];
+  for (const r of rows) {
+    const p = rollPriceFor(r);
+    if (p) { r.roll_price = p.price; r.price_basis = p.src; priced.push(r); }
+    else unpriced.push(r);
+  }
+  console.log(`bucketB-harlequin — ${rows.length} products (${priced.length} priced, ${unpriced.length} no-price) — ${APPLY ? '🔴 LIVE' : 'DRY-RUN'}`);
+  console.log(`max-create=${MAX_CREATE} batch-size=${BATCH_SIZE} batch-gap=${BATCH_GAP_MS}ms`);
+
+  // shared budget snapshot
+  let budgetGrant = 0, budgetWant = 0;
+  if (priced.length) {
+    budgetWant = Math.min(priced.length, MAX_CREATE);
+    if (APPLY) {
+      budgetGrant = budget.take(BUDGET_WHO, budgetWant);
+      console.log(`budget.take('${BUDGET_WHO}', ${budgetWant}) -> granted ${budgetGrant}`);
+      if (budgetGrant < budgetWant) {
+        console.log(`⚠ shared 1k/day cap leaves only ${budgetGrant} roll slots; ${budgetWant - budgetGrant} priced rows STAGED for the next window`);
+      }
+    } else {
+      budgetGrant = Math.min(budget.remaining(BUDGET_WHO), budgetWant);
+      console.log(`(dry-run) budget.remaining('${BUDGET_WHO}')=${budget.remaining(BUDGET_WHO)} -> would create up to ${budgetGrant} this window`);
+    }
+  }
+  console.log('');
+
+  const report = { started: new Date().toISOString(), apply: APPLY, vendor: 'Harlequin', scrapedFresh: 0,
+    created: [], skippedAlreadyRoll: [], taggedNeedsPrice: [], staged: [], failed: [],
+    byPriceSource: {}, budget: { who: BUDGET_WHO, want: budgetWant, granted: budgetGrant, refunded: 0 }, geminiCostUsd: 0 };
+
+  // rows we may actually create this run (bounded by budget grant)
+  const toCreate = priced.slice(0, budgetGrant);
+  const stagedPriced = priced.slice(budgetGrant);
+  for (const s of stagedPriced) report.staged.push({ shopify_id: s.shopify_id, base_sku: s.base_sku, roll_price: s.roll_price, reason: 'budget-cap' });
+
+  // ---- PG-FIRST: write recovered roll prices to dw_unified before any Shopify write ----
+  // Write for ALL priced rows (source of truth), even staged ones — the price is known; only
+  // the Shopify variant is deferred. (Idempotent UPDATE; re-running is harmless.)
+  if (APPLY && priced.length) {
+    try {
+      const res = pgWriteRollPrice(priced.map(w => ({ shopify_id: w.shopify_id, price: round2(w.roll_price) })));
+      console.log(`PG (dw_unified) retail_price written — psql updated count: ${res}\n`);
+      report.pgUpdated = res;
+    } catch (e) {
+      console.error('PG write FAILED — refunding budget + aborting before Shopify:', e.message || e);
+      if (budgetGrant > 0) budget.refund(BUDGET_WHO, budgetGrant);
+      process.exit(2);
+    }
+  } else if (priced.length) {
+    console.log(`(dry-run) would write ${priced.length} retail_price rows to dw_unified first\n`);
+  }
+
+  // ---- Shopify: add ROLL variant to each (budget-permitted) priced product ----
+  let createdThisRun = 0, inBatch = 0;
+  for (const w of toCreate) {
+    const pid = `gid://shopify/Product/${w.shopify_id}`;
+    const pr = await gqlR(Q_PRODUCT, { id: pid });
+    const p = pr.data && pr.data.product;
+    if (!p) { console.log(`❌ ${w.shopify_id} ${w.base_sku} not found`); report.failed.push({ ...w, reason: 'not-found' }); continue; }
+
+    const vs = p.variants.nodes;
+    const sample = vs.find(v => /sample/i.test(v.title) || /-sample$/i.test(v.sku || ''));
+    const roll = vs.find(v => v !== sample);
+    if (roll) { console.log(`⏭  ${p.title.slice(0,46)} already has roll (${roll.sku})`); report.skippedAlreadyRoll.push({ ...w, existingRollSku: roll.sku }); continue; }
+
+    // SKU: prefer existing sample sku minus -Sample (authoritative), else base_sku. Never Unknown.
+    let skuBase = (sample && sample.sku) ? sample.sku.replace(/-sample$/i, '') : w.base_sku;
+    if (!skuBase) { console.log(`❌ ${w.shopify_id} — no derivable SKU — SKIP`); report.failed.push({ ...w, reason: 'no-sku' }); continue; }
+    const price = round2(w.roll_price);
+
+    console.log(`${APPLY ? '➕' : '·'} ${p.title.slice(0,44).padEnd(44)} [${p.status}] roll $${price} (${w.price_basis}) sku ${skuBase}`);
+    report.byPriceSource[w.price_basis] = (report.byPriceSource[w.price_basis] || 0) + 1;
+    if (!APPLY) { report.created.push({ ...w, skuBase, price, dryRun: true }); continue; }
+
+    const cr = await gqlR(M_VAR_CREATE, { pid, variants: [{
+      optionValues: [{ optionName: (p.options[0] && p.options[0].name) || 'Title', name: 'Single Roll' }],
+      price: String(price), taxable: true, inventoryPolicy: 'CONTINUE',
+      inventoryItem: { sku: skuBase, tracked: false },
+    }] });
+    const ue = cr.data?.productVariantsBulkCreate?.userErrors || [];
+    if (ue.length) { console.log(`   ❌ create: ${JSON.stringify(ue)}`); report.failed.push({ ...w, skuBase, reason: 'create-error', errors: ue }); continue; }
+    const newId = cr.data.productVariantsBulkCreate.productVariants[0].id;
+
+    if (sample) {
+      const ro = await gqlR(M_REORDER, { pid, positions: [{ id: newId, position: 1 }, { id: sample.id, position: 2 }] });
+      const re = ro.data?.productVariantsBulkReorder?.userErrors || [];
+      if (re.length) console.log(`   ⚠ reorder: ${JSON.stringify(re)}`);
+    }
+
+    const mf = await gqlR(M_MF, { mf: [
+      { ownerId: pid, namespace: 'custom', key: 'manufacturer_sku', type: 'single_line_text_field', value: w.mfr_sku || skuBase },
+      { ownerId: pid, namespace: 'dwc', key: 'manufacturer_sku', type: 'single_line_text_field', value: w.mfr_sku || skuBase },
+      { ownerId: pid, namespace: 'custom', key: 'price_updated_at', type: 'date', value: TODAY },
+      { ownerId: pid, namespace: 'global', key: 'unit_of_measure', type: 'single_line_text_field', value: 'Priced Per Single Roll' },
+    ] });
+    const me = mf.data?.metafieldsSet?.userErrors || [];
+    if (me.length) console.log(`   ⚠ metafields: ${JSON.stringify(me)}`);
+
+    report.created.push({ ...w, skuBase, price, variantId: newId });
+    createdThisRun++; inBatch++;
+    if (inBatch >= BATCH_SIZE) { console.log(`   …batch of ${inBatch} done — sleeping ${BATCH_GAP_MS/1000}s (≥90s bulk gap)`); await sleep(BATCH_GAP_MS); inBatch = 0; }
+    else await sleep(200);
+  }
+
+  // ---- refund unused budget grant (fail-closed) — granted but not consumed by a real create ----
+  if (APPLY && budgetGrant > 0) {
+    const unused = budgetGrant - createdThisRun;
+    if (unused > 0) { const back = budget.refund(BUDGET_WHO, unused); report.budget.refunded = back; console.log(`\nbudget.refund('${BUDGET_WHO}', ${unused}) -> returned ${back} (created ${createdThisRun}/${budgetGrant})`); }
+  }
+
+  // ---- unpriced: tag Needs-Price (+ Needs-Width/Needs-Image where catalog lacked them) ----
+  console.log(`\n--- tagging ${unpriced.length} unpriced rows (Needs-Price) ---`);
+  for (const w of unpriced) {
+    const tags = ['Needs-Price'];
+    if (!w.cat_width) tags.push('Needs-Width');
+    if (!w.cat_image) tags.push('Needs-Image');
+    if (!APPLY) { report.taggedNeedsPrice.push({ ...w, tags, dryRun: true }); continue; }
+    const pid = `gid://shopify/Product/${w.shopify_id}`;
+    const tr = await gqlR(M_TAGS, { id: pid, tags });
+    const te = tr.data?.tagsAdd?.userErrors || [];
+    if (te.length) { console.log(`   ⚠ tag ${w.base_sku}: ${JSON.stringify(te)}`); report.failed.push({ ...w, reason: 'tag-error', errors: te }); continue; }
+    report.taggedNeedsPrice.push({ ...w, tags });
+    await sleep(80);
+  }
+
+  report.finished = new Date().toISOString();
+  report.totals = {
+    rollVariantsCreated: report.created.filter(c => !c.dryRun).length,
+    rollVariantsWouldCreate: report.created.filter(c => c.dryRun).length,
+    stayedSampleOnly_NeedsPrice: report.taggedNeedsPrice.length,
+    stagedForNextWindow: report.staged.length,
+    skippedAlreadyHadRoll: report.skippedAlreadyRoll.length,
+    scrapedFresh: report.scrapedFresh,
+    failed: report.failed.length,
+  };
+  console.log(`\n=== SUMMARY ===`);
+  console.log(JSON.stringify(report.totals, null, 2));
+  console.log('byPriceSource:', JSON.stringify(report.byPriceSource));
+  console.log('budget:', JSON.stringify(report.budget));
+  if (REPORT) { fs.mkdirSync(path.dirname(REPORT), { recursive: true }); fs.writeFileSync(REPORT, JSON.stringify(report, null, 2)); console.log(`report -> ${REPORT}`); }
+})();
diff --git a/shopify/scripts/data/bucketB/hq-run-report-dryrun.json b/shopify/scripts/data/bucketB/hq-run-report-dryrun.json
new file mode 100644
index 00000000..7b0cbb1c
--- /dev/null
+++ b/shopify/scripts/data/bucketB/hq-run-report-dryrun.json
@@ -0,0 +1,10692 @@
+{
+  "started": "2026-06-22T21:27:06.721Z",
+  "apply": false,
+  "vendor": "Harlequin",
+  "scrapedFresh": 0,
+  "created": [],
+  "skippedAlreadyRoll": [],
+  "taggedNeedsPrice": [
+    {
+      "shopify_id": "6962137169971",
+      "base_sku": "DWHF-70000",
+      "sample_sku": "DWHF-70000-Sample",
+      "mfr_sku": "113002",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962137694259",
+      "base_sku": "DWHF-70001",
+      "sample_sku": "DWHF-70001-Sample",
+      "mfr_sku": "113003",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962138251315",
+      "base_sku": "DWHF-70006",
+      "sample_sku": "DWHF-70006-Sample",
+      "mfr_sku": "113022",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962138710067",
+      "base_sku": "DWHF-70007",
+      "sample_sku": "DWHF-70007-Sample",
+      "mfr_sku": "113023",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962139234355",
+      "base_sku": "DWHF-70008",
+      "sample_sku": "DWHF-70008-Sample",
+      "mfr_sku": "113040",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962139824179",
+      "base_sku": "DWHF-70009",
+      "sample_sku": "DWHF-70009-Sample",
+      "mfr_sku": "113018",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962140315699",
+      "base_sku": "DWHF-70010",
+      "sample_sku": "DWHF-70010-Sample",
+      "mfr_sku": "113019",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962140774451",
+      "base_sku": "DWHF-70011",
+      "sample_sku": "DWHF-70011-Sample",
+      "mfr_sku": "113020",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962141036595",
+      "base_sku": "DWHF-70012",
+      "sample_sku": "DWHF-70012-Sample",
+      "mfr_sku": "113021",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962141298739",
+      "base_sku": "DWHF-70013",
+      "sample_sku": "DWHF-70013-Sample",
+      "mfr_sku": "113014",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962141691955",
+      "base_sku": "DWHF-70014",
+      "sample_sku": "DWHF-70014-Sample",
+      "mfr_sku": "113015",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962142249011",
+      "base_sku": "DWHF-70015",
+      "sample_sku": "DWHF-70015-Sample",
+      "mfr_sku": "113016",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962142838835",
+      "base_sku": "DWHF-70016",
+      "sample_sku": "DWHF-70016-Sample",
+      "mfr_sku": "113017",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962143166515",
+      "base_sku": "DWHF-70017",
+      "sample_sku": "DWHF-70017-Sample",
+      "mfr_sku": "113000",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962143592499",
+      "base_sku": "DWHF-70018",
+      "sample_sku": "DWHF-70018-Sample",
+      "mfr_sku": "113001",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962144182323",
+      "base_sku": "DWHF-70021",
+      "sample_sku": "DWHF-70021-Sample",
+      "mfr_sku": "113004",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962144706611",
+      "base_sku": "DWHF-70022",
+      "sample_sku": "DWHF-70022-Sample",
+      "mfr_sku": "113005",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962145198131",
+      "base_sku": "DWHF-70023",
+      "sample_sku": "DWHF-70023-Sample",
+      "mfr_sku": "113006",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962145460275",
+      "base_sku": "DWHF-70024",
+      "sample_sku": "DWHF-70024-Sample",
+      "mfr_sku": "113007",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962145787955",
+      "base_sku": "DWHF-70025",
+      "sample_sku": "DWHF-70025-Sample",
+      "mfr_sku": "113008",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962146246707",
+      "base_sku": "DWHF-70026",
+      "sample_sku": "DWHF-70026-Sample",
+      "mfr_sku": "113009",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962146738227",
+      "base_sku": "DWHF-70027",
+      "sample_sku": "DWHF-70027-Sample",
+      "mfr_sku": "113010",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962147590195",
+      "base_sku": "DWHF-70034",
+      "sample_sku": "DWHF-70034-Sample",
+      "mfr_sku": "113041",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962148114483",
+      "base_sku": "DWHF-70035",
+      "sample_sku": "DWHF-70035-Sample",
+      "mfr_sku": "113042",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962148638771",
+      "base_sku": "DWHF-70040",
+      "sample_sku": "DWHF-70040-Sample",
+      "mfr_sku": "113011",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962148966451",
+      "base_sku": "DWHF-70041",
+      "sample_sku": "DWHF-70041-Sample",
+      "mfr_sku": "113012",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962149457971",
+      "base_sku": "DWHF-70042",
+      "sample_sku": "DWHF-70042-Sample",
+      "mfr_sku": "113013",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962149785651",
+      "base_sku": "DWHF-70045",
+      "sample_sku": "DWHF-70045-Sample",
+      "mfr_sku": "113055",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962150146099",
+      "base_sku": "DWHF-70046",
+      "sample_sku": "DWHF-70046-Sample",
+      "mfr_sku": "113056",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962150441011",
+      "base_sku": "DWHF-70047",
+      "sample_sku": "DWHF-70047-Sample",
+      "mfr_sku": "113043",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962150572083",
+      "base_sku": "DWHF-70048",
+      "sample_sku": "DWHF-70048-Sample",
+      "mfr_sku": "113044",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962150866995",
+      "base_sku": "DWHF-70049",
+      "sample_sku": "DWHF-70049-Sample",
+      "mfr_sku": "113045",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962151161907",
+      "base_sku": "DWHF-70050",
+      "sample_sku": "DWHF-70050-Sample",
+      "mfr_sku": "113046",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962151653427",
+      "base_sku": "DWHF-70051",
+      "sample_sku": "DWHF-70051-Sample",
+      "mfr_sku": "113047",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962152079411",
+      "base_sku": "DWHF-70052",
+      "sample_sku": "DWHF-70052-Sample",
+      "mfr_sku": "113048",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962152538163",
+      "base_sku": "DWHF-70053",
+      "sample_sku": "DWHF-70053-Sample",
+      "mfr_sku": "113068",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962152996915",
+      "base_sku": "DWHF-70054",
+      "sample_sku": "DWHF-70054-Sample",
+      "mfr_sku": "113060",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962153324595",
+      "base_sku": "DWHF-70055",
+      "sample_sku": "DWHF-70055-Sample",
+      "mfr_sku": "113061",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962153783347",
+      "base_sku": "DWHF-70056",
+      "sample_sku": "DWHF-70056-Sample",
+      "mfr_sku": "113052",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962154274867",
+      "base_sku": "DWHF-70057",
+      "sample_sku": "DWHF-70057-Sample",
+      "mfr_sku": "113053",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962154831923",
+      "base_sku": "DWHF-70058",
+      "sample_sku": "DWHF-70058-Sample",
+      "mfr_sku": "113054",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962155257907",
+      "base_sku": "DWHF-70059",
+      "sample_sku": "DWHF-70059-Sample",
+      "mfr_sku": "113062",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962155520051",
+      "base_sku": "DWHF-70060",
+      "sample_sku": "DWHF-70060-Sample",
+      "mfr_sku": "113063",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962155782195",
+      "base_sku": "DWHF-70061",
+      "sample_sku": "DWHF-70061-Sample",
+      "mfr_sku": "113064",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962156306483",
+      "base_sku": "DWHF-70062",
+      "sample_sku": "DWHF-70062-Sample",
+      "mfr_sku": "113049",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962156863539",
+      "base_sku": "DWHF-70063",
+      "sample_sku": "DWHF-70063-Sample",
+      "mfr_sku": "113050",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962157256755",
+      "base_sku": "DWHF-70064",
+      "sample_sku": "DWHF-70064-Sample",
+      "mfr_sku": "113051",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962157551667",
+      "base_sku": "DWHF-70065",
+      "sample_sku": "DWHF-70065-Sample",
+      "mfr_sku": "113065",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962157912115",
+      "base_sku": "DWHF-70066",
+      "sample_sku": "DWHF-70066-Sample",
+      "mfr_sku": "113066",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962158436403",
+      "base_sku": "DWHF-70067",
+      "sample_sku": "DWHF-70067-Sample",
+      "mfr_sku": "113067",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962158895155",
+      "base_sku": "DWHF-70068",
+      "sample_sku": "DWHF-70068-Sample",
+      "mfr_sku": "113057",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962159353907",
+      "base_sku": "DWHF-70069",
+      "sample_sku": "DWHF-70069-Sample",
+      "mfr_sku": "113058",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962159812659",
+      "base_sku": "DWHF-70070",
+      "sample_sku": "DWHF-70070-Sample",
+      "mfr_sku": "113059",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962160336947",
+      "base_sku": "DWHF-70078",
+      "sample_sku": "DWHF-70078-Sample",
+      "mfr_sku": "112942",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962160762931",
+      "base_sku": "DWHF-70079",
+      "sample_sku": "DWHF-70079-Sample",
+      "mfr_sku": "112943",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962161156147",
+      "base_sku": "DWHF-70080",
+      "sample_sku": "DWHF-70080-Sample",
+      "mfr_sku": "112944",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962161451059",
+      "base_sku": "DWHF-70081",
+      "sample_sku": "DWHF-70081-Sample",
+      "mfr_sku": "111166",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962161909811",
+      "base_sku": "DWHF-70083",
+      "sample_sku": "DWHF-70083-Sample",
+      "mfr_sku": "111168",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962162466867",
+      "base_sku": "DWHF-70084",
+      "sample_sku": "DWHF-70084-Sample",
+      "mfr_sku": "111169",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962162958387",
+      "base_sku": "DWHF-70085",
+      "sample_sku": "DWHF-70085-Sample",
+      "mfr_sku": "111170",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962163253299",
+      "base_sku": "DWHF-70086",
+      "sample_sku": "DWHF-70086-Sample",
+      "mfr_sku": "110762",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962163843123",
+      "base_sku": "DWHF-70088",
+      "sample_sku": "DWHF-70088-Sample",
+      "mfr_sku": "112929",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962164269107",
+      "base_sku": "DWHF-70089",
+      "sample_sku": "DWHF-70089-Sample",
+      "mfr_sku": "112930",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962164662323",
+      "base_sku": "DWHF-70090",
+      "sample_sku": "DWHF-70090-Sample",
+      "mfr_sku": "112931",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962165219379",
+      "base_sku": "DWHF-70091",
+      "sample_sku": "DWHF-70091-Sample",
+      "mfr_sku": "110104",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962165710899",
+      "base_sku": "DWHF-70092",
+      "sample_sku": "DWHF-70092-Sample",
+      "mfr_sku": "110108",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962166366259",
+      "base_sku": "DWHF-70093",
+      "sample_sku": "DWHF-70093-Sample",
+      "mfr_sku": "112935",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962166988851",
+      "base_sku": "DWHF-70094",
+      "sample_sku": "DWHF-70094-Sample",
+      "mfr_sku": "112936",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962167545907",
+      "base_sku": "DWHF-70095",
+      "sample_sku": "DWHF-70095-Sample",
+      "mfr_sku": "112937",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962168660019",
+      "base_sku": "DWHF-70097",
+      "sample_sku": "DWHF-70097-Sample",
+      "mfr_sku": "112920",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962168987699",
+      "base_sku": "DWHF-70098",
+      "sample_sku": "DWHF-70098-Sample",
+      "mfr_sku": "112938",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962169151539",
+      "base_sku": "DWHF-70099",
+      "sample_sku": "DWHF-70099-Sample",
+      "mfr_sku": "112939",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962169511987",
+      "base_sku": "DWHF-70100",
+      "sample_sku": "DWHF-70100-Sample",
+      "mfr_sku": "112940",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962169872435",
+      "base_sku": "DWHF-70101",
+      "sample_sku": "DWHF-70101-Sample",
+      "mfr_sku": "112941",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962170429491",
+      "base_sku": "DWHF-70102",
+      "sample_sku": "DWHF-70102-Sample",
+      "mfr_sku": "112927",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962171019315",
+      "base_sku": "DWHF-70103",
+      "sample_sku": "DWHF-70103-Sample",
+      "mfr_sku": "112928",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962171412531",
+      "base_sku": "DWHF-70104",
+      "sample_sku": "DWHF-70104-Sample",
+      "mfr_sku": "112917",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962171740211",
+      "base_sku": "DWHF-70105",
+      "sample_sku": "DWHF-70105-Sample",
+      "mfr_sku": "112918",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962172264499",
+      "base_sku": "DWHF-70106",
+      "sample_sku": "DWHF-70106-Sample",
+      "mfr_sku": "112923",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962172821555",
+      "base_sku": "DWHF-70107",
+      "sample_sku": "DWHF-70107-Sample",
+      "mfr_sku": "112924",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962173313075",
+      "base_sku": "DWHF-70108",
+      "sample_sku": "DWHF-70108-Sample",
+      "mfr_sku": "112925",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962173837363",
+      "base_sku": "DWHF-70109",
+      "sample_sku": "DWHF-70109-Sample",
+      "mfr_sku": "112926",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962174263347",
+      "base_sku": "DWHF-70110",
+      "sample_sku": "DWHF-70110-Sample",
+      "mfr_sku": "111863",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962174722099",
+      "base_sku": "DWHF-70111",
+      "sample_sku": "DWHF-70111-Sample",
+      "mfr_sku": "110767",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962175279155",
+      "base_sku": "DWHF-70112",
+      "sample_sku": "DWHF-70112-Sample",
+      "mfr_sku": "110771",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962175803443",
+      "base_sku": "DWHF-70113",
+      "sample_sku": "DWHF-70113-Sample",
+      "mfr_sku": "110772",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962176131123",
+      "base_sku": "DWHF-70114",
+      "sample_sku": "DWHF-70114-Sample",
+      "mfr_sku": "110773",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962176458803",
+      "base_sku": "DWHF-70115",
+      "sample_sku": "DWHF-70115-Sample",
+      "mfr_sku": "110776",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962176983091",
+      "base_sku": "DWHF-70116",
+      "sample_sku": "DWHF-70116-Sample",
+      "mfr_sku": "110777",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962177441843",
+      "base_sku": "DWHF-70117",
+      "sample_sku": "DWHF-70117-Sample",
+      "mfr_sku": "112921",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962177835059",
+      "base_sku": "DWHF-70118",
+      "sample_sku": "DWHF-70118-Sample",
+      "mfr_sku": "112922",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962178359347",
+      "base_sku": "DWHF-70120",
+      "sample_sku": "DWHF-70120-Sample",
+      "mfr_sku": "111571",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962178621491",
+      "base_sku": "DWHF-70121",
+      "sample_sku": "DWHF-70121-Sample",
+      "mfr_sku": "111572",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962178883635",
+      "base_sku": "DWHF-70122",
+      "sample_sku": "DWHF-70122-Sample",
+      "mfr_sku": "110379",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962179276851",
+      "base_sku": "DWHF-70123",
+      "sample_sku": "DWHF-70123-Sample",
+      "mfr_sku": "112932",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962179735603",
+      "base_sku": "DWHF-70124",
+      "sample_sku": "DWHF-70124-Sample",
+      "mfr_sku": "112933",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962180063283",
+      "base_sku": "DWHF-70125",
+      "sample_sku": "DWHF-70125-Sample",
+      "mfr_sku": "112934",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962180423731",
+      "base_sku": "DWHF-70127",
+      "sample_sku": "DWHF-70127-Sample",
+      "mfr_sku": "112906",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962180849715",
+      "base_sku": "DWHF-70128",
+      "sample_sku": "DWHF-70128-Sample",
+      "mfr_sku": "112907",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962181374003",
+      "base_sku": "DWHF-70129",
+      "sample_sku": "DWHF-70129-Sample",
+      "mfr_sku": "112908",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962181898291",
+      "base_sku": "DWHF-70130",
+      "sample_sku": "DWHF-70130-Sample",
+      "mfr_sku": "112889",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962182357043",
+      "base_sku": "DWHF-70131",
+      "sample_sku": "DWHF-70131-Sample",
+      "mfr_sku": "112890",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962182717491",
+      "base_sku": "DWHF-70132",
+      "sample_sku": "DWHF-70132-Sample",
+      "mfr_sku": "112891",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962183209011",
+      "base_sku": "DWHF-70133",
+      "sample_sku": "DWHF-70133-Sample",
+      "mfr_sku": "112913",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962183667763",
+      "base_sku": "DWHF-70134",
+      "sample_sku": "DWHF-70134-Sample",
+      "mfr_sku": "112914",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962183995443",
+      "base_sku": "DWHF-70135",
+      "sample_sku": "DWHF-70135-Sample",
+      "mfr_sku": "112915",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962184388659",
+      "base_sku": "DWHF-70136",
+      "sample_sku": "DWHF-70136-Sample",
+      "mfr_sku": "112898",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962184978483",
+      "base_sku": "DWHF-70137",
+      "sample_sku": "DWHF-70137-Sample",
+      "mfr_sku": "112899",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962185535539",
+      "base_sku": "DWHF-70138",
+      "sample_sku": "DWHF-70138-Sample",
+      "mfr_sku": "112900",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962185928755",
+      "base_sku": "DWHF-70139",
+      "sample_sku": "DWHF-70139-Sample",
+      "mfr_sku": "112901",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962186256435",
+      "base_sku": "DWHF-70140",
+      "sample_sku": "DWHF-70140-Sample",
+      "mfr_sku": "112909",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962186616883",
+      "base_sku": "DWHF-70141",
+      "sample_sku": "DWHF-70141-Sample",
+      "mfr_sku": "112910",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962187075635",
+      "base_sku": "DWHF-70142",
+      "sample_sku": "DWHF-70142-Sample",
+      "mfr_sku": "112902",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962187632691",
+      "base_sku": "DWHF-70143",
+      "sample_sku": "DWHF-70143-Sample",
+      "mfr_sku": "112903",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962188124211",
+      "base_sku": "DWHF-70144",
+      "sample_sku": "DWHF-70144-Sample",
+      "mfr_sku": "112904",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962188550195",
+      "base_sku": "DWHF-70145",
+      "sample_sku": "DWHF-70145-Sample",
+      "mfr_sku": "112905",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962188976179",
+      "base_sku": "DWHF-70146",
+      "sample_sku": "DWHF-70146-Sample",
+      "mfr_sku": "112887",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962189434931",
+      "base_sku": "DWHF-70147",
+      "sample_sku": "DWHF-70147-Sample",
+      "mfr_sku": "112888",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962189828147",
+      "base_sku": "DWHF-70148",
+      "sample_sku": "DWHF-70148-Sample",
+      "mfr_sku": "112911",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962190319667",
+      "base_sku": "DWHF-70149",
+      "sample_sku": "DWHF-70149-Sample",
+      "mfr_sku": "112912",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962190843955",
+      "base_sku": "DWHF-70153",
+      "sample_sku": "DWHF-70153-Sample",
+      "mfr_sku": "110635",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962191171635",
+      "base_sku": "DWHF-70154",
+      "sample_sku": "DWHF-70154-Sample",
+      "mfr_sku": "111060",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962191368243",
+      "base_sku": "DWHF-70155",
+      "sample_sku": "DWHF-70155-Sample",
+      "mfr_sku": "111062",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962191597619",
+      "base_sku": "DWHF-70156",
+      "sample_sku": "DWHF-70156-Sample",
+      "mfr_sku": "112847",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962191892531",
+      "base_sku": "DWHF-70157",
+      "sample_sku": "DWHF-70157-Sample",
+      "mfr_sku": "112848",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962192220211",
+      "base_sku": "DWHF-70158",
+      "sample_sku": "DWHF-70158-Sample",
+      "mfr_sku": "112849",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962192547891",
+      "base_sku": "DWHF-70159",
+      "sample_sku": "DWHF-70159-Sample",
+      "mfr_sku": "112850",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962192744499",
+      "base_sku": "DWHF-70160",
+      "sample_sku": "DWHF-70160-Sample",
+      "mfr_sku": "112843",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962192973875",
+      "base_sku": "DWHF-70161",
+      "sample_sku": "DWHF-70161-Sample",
+      "mfr_sku": "112844",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962193367091",
+      "base_sku": "DWHF-70162",
+      "sample_sku": "DWHF-70162-Sample",
+      "mfr_sku": "112845",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962193858611",
+      "base_sku": "DWHF-70163",
+      "sample_sku": "DWHF-70163-Sample",
+      "mfr_sku": "112846",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962194350131",
+      "base_sku": "DWHF-70164",
+      "sample_sku": "DWHF-70164-Sample",
+      "mfr_sku": "111242",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962194841651",
+      "base_sku": "DWHF-70165",
+      "sample_sku": "DWHF-70165-Sample",
+      "mfr_sku": "111243",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962195431475",
+      "base_sku": "DWHF-70166",
+      "sample_sku": "DWHF-70166-Sample",
+      "mfr_sku": "111244",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962195922995",
+      "base_sku": "DWHF-70167",
+      "sample_sku": "DWHF-70167-Sample",
+      "mfr_sku": "110617",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962196283443",
+      "base_sku": "DWHF-70168",
+      "sample_sku": "DWHF-70168-Sample",
+      "mfr_sku": "112827",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962196643891",
+      "base_sku": "DWHF-70169",
+      "sample_sku": "DWHF-70169-Sample",
+      "mfr_sku": "112828",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962196938803",
+      "base_sku": "DWHF-70170",
+      "sample_sku": "DWHF-70170-Sample",
+      "mfr_sku": "111476",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962197266483",
+      "base_sku": "DWHF-70171",
+      "sample_sku": "DWHF-70171-Sample",
+      "mfr_sku": "111477",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962197758003",
+      "base_sku": "DWHF-70172",
+      "sample_sku": "DWHF-70172-Sample",
+      "mfr_sku": "111497",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962198216755",
+      "base_sku": "DWHF-70173",
+      "sample_sku": "DWHF-70173-Sample",
+      "mfr_sku": "111770",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962198708275",
+      "base_sku": "DWHF-70174",
+      "sample_sku": "DWHF-70174-Sample",
+      "mfr_sku": "111752",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962199363635",
+      "base_sku": "DWHF-70175",
+      "sample_sku": "DWHF-70175-Sample",
+      "mfr_sku": "111753",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962199789619",
+      "base_sku": "DWHF-70176",
+      "sample_sku": "DWHF-70176-Sample",
+      "mfr_sku": "110894",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962200281139",
+      "base_sku": "DWHF-70177",
+      "sample_sku": "DWHF-70177-Sample",
+      "mfr_sku": "111584",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962200674355",
+      "base_sku": "DWHF-70178",
+      "sample_sku": "DWHF-70178-Sample",
+      "mfr_sku": "112836",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962201034803",
+      "base_sku": "DWHF-70179",
+      "sample_sku": "DWHF-70179-Sample",
+      "mfr_sku": "112837",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962201591859",
+      "base_sku": "DWHF-70181",
+      "sample_sku": "DWHF-70181-Sample",
+      "mfr_sku": "112829",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962202050611",
+      "base_sku": "DWHF-70182",
+      "sample_sku": "DWHF-70182-Sample",
+      "mfr_sku": "112830",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962202542131",
+      "base_sku": "DWHF-70183",
+      "sample_sku": "DWHF-70183-Sample",
+      "mfr_sku": "112831",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962203099187",
+      "base_sku": "DWHF-70184",
+      "sample_sku": "DWHF-70184-Sample",
+      "mfr_sku": "112832",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962203656243",
+      "base_sku": "DWHF-70185",
+      "sample_sku": "DWHF-70185-Sample",
+      "mfr_sku": "111051",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962204278835",
+      "base_sku": "DWHF-70186",
+      "sample_sku": "DWHF-70186-Sample",
+      "mfr_sku": "111070",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962204737587",
+      "base_sku": "DWHF-70187",
+      "sample_sku": "DWHF-70187-Sample",
+      "mfr_sku": "111236",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962205196339",
+      "base_sku": "DWHF-70188",
+      "sample_sku": "DWHF-70188-Sample",
+      "mfr_sku": "112841",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962205687859",
+      "base_sku": "DWHF-70189",
+      "sample_sku": "DWHF-70189-Sample",
+      "mfr_sku": "112842",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962206244915",
+      "base_sku": "DWHF-70190",
+      "sample_sku": "DWHF-70190-Sample",
+      "mfr_sku": "112833",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962206605363",
+      "base_sku": "DWHF-70191",
+      "sample_sku": "DWHF-70191-Sample",
+      "mfr_sku": "112834",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962206965811",
+      "base_sku": "DWHF-70192",
+      "sample_sku": "DWHF-70192-Sample",
+      "mfr_sku": "111775",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962207326259",
+      "base_sku": "DWHF-70193",
+      "sample_sku": "DWHF-70193-Sample",
+      "mfr_sku": "111488",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962207555635",
+      "base_sku": "DWHF-70194",
+      "sample_sku": "DWHF-70194-Sample",
+      "mfr_sku": "112852",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962207850547",
+      "base_sku": "DWHF-70195",
+      "sample_sku": "DWHF-70195-Sample",
+      "mfr_sku": "112853",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962208276531",
+      "base_sku": "DWHF-70196",
+      "sample_sku": "DWHF-70196-Sample",
+      "mfr_sku": "112839",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962208735283",
+      "base_sku": "DWHF-70197",
+      "sample_sku": "DWHF-70197-Sample",
+      "mfr_sku": "112840",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962209194035",
+      "base_sku": "DWHF-70198",
+      "sample_sku": "DWHF-70198-Sample",
+      "mfr_sku": "111756",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962209718323",
+      "base_sku": "DWHF-70199",
+      "sample_sku": "DWHF-70199-Sample",
+      "mfr_sku": "111758",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962209980467",
+      "base_sku": "DWHF-70200",
+      "sample_sku": "DWHF-70200-Sample",
+      "mfr_sku": "111736",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962210177075",
+      "base_sku": "DWHF-70201",
+      "sample_sku": "DWHF-70201-Sample",
+      "mfr_sku": "110883",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962210504755",
+      "base_sku": "DWHF-70202",
+      "sample_sku": "DWHF-70202-Sample",
+      "mfr_sku": "110886",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962210799667",
+      "base_sku": "DWHF-70203",
+      "sample_sku": "DWHF-70203-Sample",
+      "mfr_sku": "111573",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962211225651",
+      "base_sku": "DWHF-70204",
+      "sample_sku": "DWHF-70204-Sample",
+      "mfr_sku": "111760",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962211651635",
+      "base_sku": "DWHF-70205",
+      "sample_sku": "DWHF-70205-Sample",
+      "mfr_sku": "111761",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962212012083",
+      "base_sku": "DWHF-70206",
+      "sample_sku": "DWHF-70206-Sample",
+      "mfr_sku": "111763",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962212503603",
+      "base_sku": "DWHF-70210",
+      "sample_sku": "DWHF-70210-Sample",
+      "mfr_sku": "112779",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962212962355",
+      "base_sku": "DWHF-70211",
+      "sample_sku": "DWHF-70211-Sample",
+      "mfr_sku": "112780",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962213453875",
+      "base_sku": "DWHF-70212",
+      "sample_sku": "DWHF-70212-Sample",
+      "mfr_sku": "111059",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962214010931",
+      "base_sku": "DWHF-70213",
+      "sample_sku": "DWHF-70213-Sample",
+      "mfr_sku": "112604",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962214371379",
+      "base_sku": "DWHF-70214",
+      "sample_sku": "DWHF-70214-Sample",
+      "mfr_sku": "112605",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962214666291",
+      "base_sku": "DWHF-70215",
+      "sample_sku": "DWHF-70215-Sample",
+      "mfr_sku": "112606",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962214862899",
+      "base_sku": "DWHF-70216",
+      "sample_sku": "DWHF-70216-Sample",
+      "mfr_sku": "112607",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962215059507",
+      "base_sku": "DWHF-70217",
+      "sample_sku": "DWHF-70217-Sample",
+      "mfr_sku": "111222",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962215321651",
+      "base_sku": "DWHF-70218",
+      "sample_sku": "DWHF-70218-Sample",
+      "mfr_sku": "112771",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962215747635",
+      "base_sku": "DWHF-70219",
+      "sample_sku": "DWHF-70219-Sample",
+      "mfr_sku": "112772",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962216173619",
+      "base_sku": "DWHF-70220",
+      "sample_sku": "DWHF-70220-Sample",
+      "mfr_sku": "112773",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962216632371",
+      "base_sku": "DWHF-70221",
+      "sample_sku": "DWHF-70221-Sample",
+      "mfr_sku": "112764",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962216894515",
+      "base_sku": "DWHF-70222",
+      "sample_sku": "DWHF-70222-Sample",
+      "mfr_sku": "110906",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962217123891",
+      "base_sku": "DWHF-70223",
+      "sample_sku": "DWHF-70223-Sample",
+      "mfr_sku": "112768",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962217517107",
+      "base_sku": "DWHF-70224",
+      "sample_sku": "DWHF-70224-Sample",
+      "mfr_sku": "112769",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962218041395",
+      "base_sku": "DWHF-70225",
+      "sample_sku": "DWHF-70225-Sample",
+      "mfr_sku": "112770",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962218598451",
+      "base_sku": "DWHF-70226",
+      "sample_sku": "DWHF-70226-Sample",
+      "mfr_sku": "112611",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962219122739",
+      "base_sku": "DWHF-70227",
+      "sample_sku": "DWHF-70227-Sample",
+      "mfr_sku": "112612",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962219647027",
+      "base_sku": "DWHF-70228",
+      "sample_sku": "DWHF-70228-Sample",
+      "mfr_sku": "110594",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962219941939",
+      "base_sku": "DWHF-70229",
+      "sample_sku": "DWHF-70229-Sample",
+      "mfr_sku": "111230",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962220498995",
+      "base_sku": "DWHF-70230",
+      "sample_sku": "DWHF-70230-Sample",
+      "mfr_sku": "111720",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962220957747",
+      "base_sku": "DWHF-70231",
+      "sample_sku": "DWHF-70231-Sample",
+      "mfr_sku": "111721",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962221383731",
+      "base_sku": "DWHF-70232",
+      "sample_sku": "DWHF-70232-Sample",
+      "mfr_sku": "112763",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962221809715",
+      "base_sku": "DWHF-70233",
+      "sample_sku": "DWHF-70233-Sample",
+      "mfr_sku": "111241",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962222137395",
+      "base_sku": "DWHF-70234",
+      "sample_sku": "DWHF-70234-Sample",
+      "mfr_sku": "110622",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962222366771",
+      "base_sku": "DWHF-70235",
+      "sample_sku": "DWHF-70235-Sample",
+      "mfr_sku": "110101",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962222628915",
+      "base_sku": "DWHF-70236",
+      "sample_sku": "DWHF-70236-Sample",
+      "mfr_sku": "112777",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962222923827",
+      "base_sku": "DWHF-70237",
+      "sample_sku": "DWHF-70237-Sample",
+      "mfr_sku": "112778",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962223218739",
+      "base_sku": "DWHF-70238",
+      "sample_sku": "DWHF-70238-Sample",
+      "mfr_sku": "110556",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962223546419",
+      "base_sku": "DWHF-70239",
+      "sample_sku": "DWHF-70239-Sample",
+      "mfr_sku": "112765",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962223972403",
+      "base_sku": "DWHF-70240",
+      "sample_sku": "DWHF-70240-Sample",
+      "mfr_sku": "112766",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962224201779",
+      "base_sku": "DWHF-70241",
+      "sample_sku": "DWHF-70241-Sample",
+      "mfr_sku": "112767",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962224431155",
+      "base_sku": "DWHF-70242",
+      "sample_sku": "DWHF-70242-Sample",
+      "mfr_sku": "112608",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962224726067",
+      "base_sku": "DWHF-70243",
+      "sample_sku": "DWHF-70243-Sample",
+      "mfr_sku": "112609",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962225053747",
+      "base_sku": "DWHF-70244",
+      "sample_sku": "DWHF-70244-Sample",
+      "mfr_sku": "112610",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962225446963",
+      "base_sku": "DWHF-70245",
+      "sample_sku": "DWHF-70245-Sample",
+      "mfr_sku": "111075",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962225872947",
+      "base_sku": "DWHF-70246",
+      "sample_sku": "DWHF-70246-Sample",
+      "mfr_sku": "111076",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962226298931",
+      "base_sku": "DWHF-70247",
+      "sample_sku": "DWHF-70247-Sample",
+      "mfr_sku": "110367",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962226823219",
+      "base_sku": "DWHF-70248",
+      "sample_sku": "DWHF-70248-Sample",
+      "mfr_sku": "112602",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962227347507",
+      "base_sku": "DWHF-70249",
+      "sample_sku": "DWHF-70249-Sample",
+      "mfr_sku": "112603",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962227773491",
+      "base_sku": "DWHF-70250",
+      "sample_sku": "DWHF-70250-Sample",
+      "mfr_sku": "112774",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962228133939",
+      "base_sku": "DWHF-70251",
+      "sample_sku": "DWHF-70251-Sample",
+      "mfr_sku": "112775",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962228592691",
+      "base_sku": "DWHF-70252",
+      "sample_sku": "DWHF-70252-Sample",
+      "mfr_sku": "112760",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962228920371",
+      "base_sku": "DWHF-70253",
+      "sample_sku": "DWHF-70253-Sample",
+      "mfr_sku": "112761",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962229215283",
+      "base_sku": "DWHF-70254",
+      "sample_sku": "DWHF-70254-Sample",
+      "mfr_sku": "112762",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962229805107",
+      "base_sku": "DWHF-70256",
+      "sample_sku": "DWHF-70256-Sample",
+      "mfr_sku": "111071",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962230329395",
+      "base_sku": "DWHF-70257",
+      "sample_sku": "DWHF-70257-Sample",
+      "mfr_sku": "111439",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962230624307",
+      "base_sku": "DWHF-70258",
+      "sample_sku": "DWHF-70258-Sample",
+      "mfr_sku": "111441",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962230853683",
+      "base_sku": "DWHF-70259",
+      "sample_sku": "DWHF-70259-Sample",
+      "mfr_sku": "111079",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962231181363",
+      "base_sku": "DWHF-70260",
+      "sample_sku": "DWHF-70260-Sample",
+      "mfr_sku": "110884",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962231509043",
+      "base_sku": "DWHF-70261",
+      "sample_sku": "DWHF-70261-Sample",
+      "mfr_sku": "110887",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962231902259",
+      "base_sku": "DWHF-70262",
+      "sample_sku": "DWHF-70262-Sample",
+      "mfr_sku": "112598",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962232328243",
+      "base_sku": "DWHF-70263",
+      "sample_sku": "DWHF-70263-Sample",
+      "mfr_sku": "112599",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962232754227",
+      "base_sku": "DWHF-70264",
+      "sample_sku": "DWHF-70264-Sample",
+      "mfr_sku": "112600",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962233212979",
+      "base_sku": "DWHF-70265",
+      "sample_sku": "DWHF-70265-Sample",
+      "mfr_sku": "112601",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962233638963",
+      "base_sku": "DWHF-70266",
+      "sample_sku": "DWHF-70266-Sample",
+      "mfr_sku": "111574",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962234130483",
+      "base_sku": "DWHF-70270",
+      "sample_sku": "DWHF-70270-Sample",
+      "mfr_sku": "112744",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962234556467",
+      "base_sku": "DWHF-70271",
+      "sample_sku": "DWHF-70271-Sample",
+      "mfr_sku": "112745",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962234916915",
+      "base_sku": "DWHF-70272",
+      "sample_sku": "DWHF-70272-Sample",
+      "mfr_sku": "112746",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962235244595",
+      "base_sku": "DWHF-70273",
+      "sample_sku": "DWHF-70273-Sample",
+      "mfr_sku": "112747",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962235539507",
+      "base_sku": "DWHF-70274",
+      "sample_sku": "DWHF-70274-Sample",
+      "mfr_sku": "112742",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962235899955",
+      "base_sku": "DWHF-70275",
+      "sample_sku": "DWHF-70275-Sample",
+      "mfr_sku": "112743",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962236260403",
+      "base_sku": "DWHF-70276",
+      "sample_sku": "DWHF-70276-Sample",
+      "mfr_sku": "112755",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962236751923",
+      "base_sku": "DWHF-70277",
+      "sample_sku": "DWHF-70277-Sample",
+      "mfr_sku": "112756",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962237210675",
+      "base_sku": "DWHF-70278",
+      "sample_sku": "DWHF-70278-Sample",
+      "mfr_sku": "112757",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962237538355",
+      "base_sku": "DWHF-70279",
+      "sample_sku": "DWHF-70279-Sample",
+      "mfr_sku": "112733",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962237931571",
+      "base_sku": "DWHF-70280",
+      "sample_sku": "DWHF-70280-Sample",
+      "mfr_sku": "112734",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962238455859",
+      "base_sku": "DWHF-70281",
+      "sample_sku": "DWHF-70281-Sample",
+      "mfr_sku": "112735",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962239045683",
+      "base_sku": "DWHF-70282",
+      "sample_sku": "DWHF-70282-Sample",
+      "mfr_sku": "112752",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962239504435",
+      "base_sku": "DWHF-70283",
+      "sample_sku": "DWHF-70283-Sample",
+      "mfr_sku": "112753",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962239930419",
+      "base_sku": "DWHF-70284",
+      "sample_sku": "DWHF-70284-Sample",
+      "mfr_sku": "112754",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962240553011",
+      "base_sku": "DWHF-70285",
+      "sample_sku": "DWHF-70285-Sample",
+      "mfr_sku": "112736",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962241110067",
+      "base_sku": "DWHF-70286",
+      "sample_sku": "DWHF-70286-Sample",
+      "mfr_sku": "112737",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962241634355",
+      "base_sku": "DWHF-70287",
+      "sample_sku": "DWHF-70287-Sample",
+      "mfr_sku": "112738",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962242224179",
+      "base_sku": "DWHF-70288",
+      "sample_sku": "DWHF-70288-Sample",
+      "mfr_sku": "112748",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962242551859",
+      "base_sku": "DWHF-70289",
+      "sample_sku": "DWHF-70289-Sample",
+      "mfr_sku": "112749",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962242814003",
+      "base_sku": "DWHF-70290",
+      "sample_sku": "DWHF-70290-Sample",
+      "mfr_sku": "112750",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962243207219",
+      "base_sku": "DWHF-70291",
+      "sample_sku": "DWHF-70291-Sample",
+      "mfr_sku": "112751",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962243567667",
+      "base_sku": "DWHF-70292",
+      "sample_sku": "DWHF-70292-Sample",
+      "mfr_sku": "112739",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962244157491",
+      "base_sku": "DWHF-70293",
+      "sample_sku": "DWHF-70293-Sample",
+      "mfr_sku": "112740",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962244649011",
+      "base_sku": "DWHF-70294",
+      "sample_sku": "DWHF-70294-Sample",
+      "mfr_sku": "112741",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962244943923",
+      "base_sku": "DWHF-70297",
+      "sample_sku": "DWHF-70297-Sample",
+      "mfr_sku": "112648",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962245238835",
+      "base_sku": "DWHF-70298",
+      "sample_sku": "DWHF-70298-Sample",
+      "mfr_sku": "112644",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962245664819",
+      "base_sku": "DWHF-70299",
+      "sample_sku": "DWHF-70299-Sample",
+      "mfr_sku": "112653",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962246123571",
+      "base_sku": "DWHF-70300",
+      "sample_sku": "DWHF-70300-Sample",
+      "mfr_sku": "112636",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962246549555",
+      "base_sku": "DWHF-70301",
+      "sample_sku": "DWHF-70301-Sample",
+      "mfr_sku": "112637",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962246910003",
+      "base_sku": "DWHF-70302",
+      "sample_sku": "DWHF-70302-Sample",
+      "mfr_sku": "112638",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962247401523",
+      "base_sku": "DWHF-70303",
+      "sample_sku": "DWHF-70303-Sample",
+      "mfr_sku": "112656",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962247794739",
+      "base_sku": "DWHF-70304",
+      "sample_sku": "DWHF-70304-Sample",
+      "mfr_sku": "112629",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962248613939",
+      "base_sku": "DWHF-70306",
+      "sample_sku": "DWHF-70306-Sample",
+      "mfr_sku": "112635",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962248974387",
+      "base_sku": "DWHF-70307",
+      "sample_sku": "DWHF-70307-Sample",
+      "mfr_sku": "112652",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962249269299",
+      "base_sku": "DWHF-70308",
+      "sample_sku": "DWHF-70308-Sample",
+      "mfr_sku": "112633",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962249433139",
+      "base_sku": "DWHF-70309",
+      "sample_sku": "DWHF-70309-Sample",
+      "mfr_sku": "112634",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962249662515",
+      "base_sku": "DWHF-70310",
+      "sample_sku": "DWHF-70310-Sample",
+      "mfr_sku": "112631",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962250022963",
+      "base_sku": "DWHF-70311",
+      "sample_sku": "DWHF-70311-Sample",
+      "mfr_sku": "112632",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962250547251",
+      "base_sku": "DWHF-70312",
+      "sample_sku": "DWHF-70312-Sample",
+      "mfr_sku": "112649",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962250940467",
+      "base_sku": "DWHF-70313",
+      "sample_sku": "DWHF-70313-Sample",
+      "mfr_sku": "112654",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962251235379",
+      "base_sku": "DWHF-70314",
+      "sample_sku": "DWHF-70314-Sample",
+      "mfr_sku": "112643",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962251628595",
+      "base_sku": "DWHF-70315",
+      "sample_sku": "DWHF-70315-Sample",
+      "mfr_sku": "112647",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962252120115",
+      "base_sku": "DWHF-70316",
+      "sample_sku": "DWHF-70316-Sample",
+      "mfr_sku": "112639",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962252709939",
+      "base_sku": "DWHF-70317",
+      "sample_sku": "DWHF-70317-Sample",
+      "mfr_sku": "112640",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962253135923",
+      "base_sku": "DWHF-70318",
+      "sample_sku": "DWHF-70318-Sample",
+      "mfr_sku": "112627",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962253594675",
+      "base_sku": "DWHF-70319",
+      "sample_sku": "DWHF-70319-Sample",
+      "mfr_sku": "112628",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962253955123",
+      "base_sku": "DWHF-70320",
+      "sample_sku": "DWHF-70320-Sample",
+      "mfr_sku": "112642",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962254315571",
+      "base_sku": "DWHF-70321",
+      "sample_sku": "DWHF-70321-Sample",
+      "mfr_sku": "112645",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962254774323",
+      "base_sku": "DWHF-70322",
+      "sample_sku": "DWHF-70322-Sample",
+      "mfr_sku": "112655",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962255265843",
+      "base_sku": "DWHF-70323",
+      "sample_sku": "DWHF-70323-Sample",
+      "mfr_sku": "112658",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962255757363",
+      "base_sku": "DWHF-70324",
+      "sample_sku": "DWHF-70324-Sample",
+      "mfr_sku": "112641",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962256183347",
+      "base_sku": "DWHF-70325",
+      "sample_sku": "DWHF-70325-Sample",
+      "mfr_sku": "112659",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962256314419",
+      "base_sku": "DWHF-70326",
+      "sample_sku": "DWHF-70326-Sample",
+      "mfr_sku": "112651",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962256478259",
+      "base_sku": "DWHF-70327",
+      "sample_sku": "DWHF-70327-Sample",
+      "mfr_sku": "112657",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962256805939",
+      "base_sku": "DWHF-70328",
+      "sample_sku": "DWHF-70328-Sample",
+      "mfr_sku": "112650",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962257395763",
+      "base_sku": "DWHF-70329",
+      "sample_sku": "DWHF-70329-Sample",
+      "mfr_sku": "112646",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962258149427",
+      "base_sku": "DWHF-70333",
+      "sample_sku": "DWHF-70333-Sample",
+      "mfr_sku": "112235",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962258477107",
+      "base_sku": "DWHF-70334",
+      "sample_sku": "DWHF-70334-Sample",
+      "mfr_sku": "112252",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962258706483",
+      "base_sku": "DWHF-70335",
+      "sample_sku": "DWHF-70335-Sample",
+      "mfr_sku": "112253",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962259099699",
+      "base_sku": "DWHF-70336",
+      "sample_sku": "DWHF-70336-Sample",
+      "mfr_sku": "112254",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962259460147",
+      "base_sku": "DWHF-70337",
+      "sample_sku": "DWHF-70337-Sample",
+      "mfr_sku": "112255",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962259820595",
+      "base_sku": "DWHF-70338",
+      "sample_sku": "DWHF-70338-Sample",
+      "mfr_sku": "112250",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962260181043",
+      "base_sku": "DWHF-70339",
+      "sample_sku": "DWHF-70339-Sample",
+      "mfr_sku": "112251",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962260508723",
+      "base_sku": "DWHF-70340",
+      "sample_sku": "DWHF-70340-Sample",
+      "mfr_sku": "112256",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962261000243",
+      "base_sku": "DWHF-70341",
+      "sample_sku": "DWHF-70341-Sample",
+      "mfr_sku": "112236",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962261426227",
+      "base_sku": "DWHF-70342",
+      "sample_sku": "DWHF-70342-Sample",
+      "mfr_sku": "112237",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962261819443",
+      "base_sku": "DWHF-70343",
+      "sample_sku": "DWHF-70343-Sample",
+      "mfr_sku": "112238",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962262310963",
+      "base_sku": "DWHF-70344",
+      "sample_sku": "DWHF-70344-Sample",
+      "mfr_sku": "112239",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962262835251",
+      "base_sku": "DWHF-70345",
+      "sample_sku": "DWHF-70345-Sample",
+      "mfr_sku": "112231",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962263359539",
+      "base_sku": "DWHF-70346",
+      "sample_sku": "DWHF-70346-Sample",
+      "mfr_sku": "112232",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962263654451",
+      "base_sku": "DWHF-70347",
+      "sample_sku": "DWHF-70347-Sample",
+      "mfr_sku": "112233",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962263916595",
+      "base_sku": "DWHF-70348",
+      "sample_sku": "DWHF-70348-Sample",
+      "mfr_sku": "112234",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962264309811",
+      "base_sku": "DWHF-70349",
+      "sample_sku": "DWHF-70349-Sample",
+      "mfr_sku": "112226",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962264834099",
+      "base_sku": "DWHF-70350",
+      "sample_sku": "DWHF-70350-Sample",
+      "mfr_sku": "112227",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962265292851",
+      "base_sku": "DWHF-70351",
+      "sample_sku": "DWHF-70351-Sample",
+      "mfr_sku": "112228",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962265587763",
+      "base_sku": "DWHF-70352",
+      "sample_sku": "DWHF-70352-Sample",
+      "mfr_sku": "112229",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962265849907",
+      "base_sku": "DWHF-70353",
+      "sample_sku": "DWHF-70353-Sample",
+      "mfr_sku": "112230",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962266275891",
+      "base_sku": "DWHF-70354",
+      "sample_sku": "DWHF-70354-Sample",
+      "mfr_sku": "112245",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962266996787",
+      "base_sku": "DWHF-70355",
+      "sample_sku": "DWHF-70355-Sample",
+      "mfr_sku": "112246",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962267488307",
+      "base_sku": "DWHF-70356",
+      "sample_sku": "DWHF-70356-Sample",
+      "mfr_sku": "112247",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962267848755",
+      "base_sku": "DWHF-70357",
+      "sample_sku": "DWHF-70357-Sample",
+      "mfr_sku": "112248",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962268307507",
+      "base_sku": "DWHF-70358",
+      "sample_sku": "DWHF-70358-Sample",
+      "mfr_sku": "112249",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962268799027",
+      "base_sku": "DWHF-70359",
+      "sample_sku": "DWHF-70359-Sample",
+      "mfr_sku": "112257",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962269388851",
+      "base_sku": "DWHF-70360",
+      "sample_sku": "DWHF-70360-Sample",
+      "mfr_sku": "112240",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962269814835",
+      "base_sku": "DWHF-70361",
+      "sample_sku": "DWHF-70361-Sample",
+      "mfr_sku": "112241",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962270175283",
+      "base_sku": "DWHF-70362",
+      "sample_sku": "DWHF-70362-Sample",
+      "mfr_sku": "112242",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962270339123",
+      "base_sku": "DWHF-70363",
+      "sample_sku": "DWHF-70363-Sample",
+      "mfr_sku": "112243",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962270568499",
+      "base_sku": "DWHF-70364",
+      "sample_sku": "DWHF-70364-Sample",
+      "mfr_sku": "112244",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962271027251",
+      "base_sku": "DWHF-70368",
+      "sample_sku": "DWHF-70368-Sample",
+      "mfr_sku": "112560",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962271551539",
+      "base_sku": "DWHF-70369",
+      "sample_sku": "DWHF-70369-Sample",
+      "mfr_sku": "112561",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962272075827",
+      "base_sku": "DWHF-70370",
+      "sample_sku": "DWHF-70370-Sample",
+      "mfr_sku": "112562",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962272337971",
+      "base_sku": "DWHF-70371",
+      "sample_sku": "DWHF-70371-Sample",
+      "mfr_sku": "112564",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962272665651",
+      "base_sku": "DWHF-70372",
+      "sample_sku": "DWHF-70372-Sample",
+      "mfr_sku": "112571",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962273026099",
+      "base_sku": "DWHF-70373",
+      "sample_sku": "DWHF-70373-Sample",
+      "mfr_sku": "112572",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962273452083",
+      "base_sku": "DWHF-70374",
+      "sample_sku": "DWHF-70374-Sample",
+      "mfr_sku": "112573",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962273943603",
+      "base_sku": "DWHF-70375",
+      "sample_sku": "DWHF-70375-Sample",
+      "mfr_sku": "112574",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962274369587",
+      "base_sku": "DWHF-70376",
+      "sample_sku": "DWHF-70376-Sample",
+      "mfr_sku": "112576",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962274730035",
+      "base_sku": "DWHF-70377",
+      "sample_sku": "DWHF-70377-Sample",
+      "mfr_sku": "112582",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962275156019",
+      "base_sku": "DWHF-70378",
+      "sample_sku": "DWHF-70378-Sample",
+      "mfr_sku": "112583",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962275582003",
+      "base_sku": "DWHF-70379",
+      "sample_sku": "DWHF-70379-Sample",
+      "mfr_sku": "112591",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962276040755",
+      "base_sku": "DWHF-70380",
+      "sample_sku": "DWHF-70380-Sample",
+      "mfr_sku": "112592",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962276532275",
+      "base_sku": "DWHF-70381",
+      "sample_sku": "DWHF-70381-Sample",
+      "mfr_sku": "112593",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962277089331",
+      "base_sku": "DWHF-70382",
+      "sample_sku": "DWHF-70382-Sample",
+      "mfr_sku": "112565",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962277482547",
+      "base_sku": "DWHF-70383",
+      "sample_sku": "DWHF-70383-Sample",
+      "mfr_sku": "112566",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962277679155",
+      "base_sku": "DWHF-70384",
+      "sample_sku": "DWHF-70384-Sample",
+      "mfr_sku": "112567",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962277941299",
+      "base_sku": "DWHF-70385",
+      "sample_sku": "DWHF-70385-Sample",
+      "mfr_sku": "112568",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962278334515",
+      "base_sku": "DWHF-70386",
+      "sample_sku": "DWHF-70386-Sample",
+      "mfr_sku": "112569",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962278760499",
+      "base_sku": "DWHF-70387",
+      "sample_sku": "DWHF-70387-Sample",
+      "mfr_sku": "112570",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962279088179",
+      "base_sku": "DWHF-70388",
+      "sample_sku": "DWHF-70388-Sample",
+      "mfr_sku": "112584",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962279383091",
+      "base_sku": "DWHF-70389",
+      "sample_sku": "DWHF-70389-Sample",
+      "mfr_sku": "112585",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962279678003",
+      "base_sku": "DWHF-70390",
+      "sample_sku": "DWHF-70390-Sample",
+      "mfr_sku": "112586",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962280005683",
+      "base_sku": "DWHF-70391",
+      "sample_sku": "DWHF-70391-Sample",
+      "mfr_sku": "112587",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962280267827",
+      "base_sku": "DWHF-70392",
+      "sample_sku": "DWHF-70392-Sample",
+      "mfr_sku": "112588",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962280529971",
+      "base_sku": "DWHF-70393",
+      "sample_sku": "DWHF-70393-Sample",
+      "mfr_sku": "112589",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962280857651",
+      "base_sku": "DWHF-70394",
+      "sample_sku": "DWHF-70394-Sample",
+      "mfr_sku": "112577",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962281218099",
+      "base_sku": "DWHF-70395",
+      "sample_sku": "DWHF-70395-Sample",
+      "mfr_sku": "112578",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962281513011",
+      "base_sku": "DWHF-70396",
+      "sample_sku": "DWHF-70396-Sample",
+      "mfr_sku": "112579",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962281807923",
+      "base_sku": "DWHF-70397",
+      "sample_sku": "DWHF-70397-Sample",
+      "mfr_sku": "112580",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962282168371",
+      "base_sku": "DWHF-70398",
+      "sample_sku": "DWHF-70398-Sample",
+      "mfr_sku": "112594",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962282496051",
+      "base_sku": "DWHF-70399",
+      "sample_sku": "DWHF-70399-Sample",
+      "mfr_sku": "112595",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962282823731",
+      "base_sku": "DWHF-70400",
+      "sample_sku": "DWHF-70400-Sample",
+      "mfr_sku": "112596",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962283151411",
+      "base_sku": "DWHF-70401",
+      "sample_sku": "DWHF-70401-Sample",
+      "mfr_sku": "112597",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962283479091",
+      "base_sku": "DWHF-70402",
+      "sample_sku": "DWHF-70402-Sample",
+      "mfr_sku": "112581",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962283839539",
+      "base_sku": "DWHF-70405",
+      "sample_sku": "DWHF-70405-Sample",
+      "mfr_sku": "112132",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962284068915",
+      "base_sku": "DWHF-70406",
+      "sample_sku": "DWHF-70406-Sample",
+      "mfr_sku": "112133",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962284298291",
+      "base_sku": "DWHF-70407",
+      "sample_sku": "DWHF-70407-Sample",
+      "mfr_sku": "112134",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962284527667",
+      "base_sku": "DWHF-70408",
+      "sample_sku": "DWHF-70408-Sample",
+      "mfr_sku": "112135",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962284920883",
+      "base_sku": "DWHF-70409",
+      "sample_sku": "DWHF-70409-Sample",
+      "mfr_sku": "112136",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962285248563",
+      "base_sku": "DWHF-70410",
+      "sample_sku": "DWHF-70410-Sample",
+      "mfr_sku": "112126",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962285609011",
+      "base_sku": "DWHF-70411",
+      "sample_sku": "DWHF-70411-Sample",
+      "mfr_sku": "112127",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962285903923",
+      "base_sku": "DWHF-70412",
+      "sample_sku": "DWHF-70412-Sample",
+      "mfr_sku": "112128",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962286133299",
+      "base_sku": "DWHF-70413",
+      "sample_sku": "DWHF-70413-Sample",
+      "mfr_sku": "112159",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962286592051",
+      "base_sku": "DWHF-70414",
+      "sample_sku": "DWHF-70414-Sample",
+      "mfr_sku": "112160",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962286952499",
+      "base_sku": "DWHF-70415",
+      "sample_sku": "DWHF-70415-Sample",
+      "mfr_sku": "112161",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962287411251",
+      "base_sku": "DWHF-70416",
+      "sample_sku": "DWHF-70416-Sample",
+      "mfr_sku": "112162",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962288066611",
+      "base_sku": "DWHF-70417",
+      "sample_sku": "DWHF-70417-Sample",
+      "mfr_sku": "112142",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962288558131",
+      "base_sku": "DWHF-70418",
+      "sample_sku": "DWHF-70418-Sample",
+      "mfr_sku": "112143",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962288918579",
+      "base_sku": "DWHF-70419",
+      "sample_sku": "DWHF-70419-Sample",
+      "mfr_sku": "112144",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962289279027",
+      "base_sku": "DWHF-70420",
+      "sample_sku": "DWHF-70420-Sample",
+      "mfr_sku": "112145",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962289770547",
+      "base_sku": "DWHF-70421",
+      "sample_sku": "DWHF-70421-Sample",
+      "mfr_sku": "112146",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962290262067",
+      "base_sku": "DWHF-70422",
+      "sample_sku": "DWHF-70422-Sample",
+      "mfr_sku": "112137",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962290622515",
+      "base_sku": "DWHF-70423",
+      "sample_sku": "DWHF-70423-Sample",
+      "mfr_sku": "112138",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962291114035",
+      "base_sku": "DWHF-70424",
+      "sample_sku": "DWHF-70424-Sample",
+      "mfr_sku": "112139",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962291441715",
+      "base_sku": "DWHF-70425",
+      "sample_sku": "DWHF-70425-Sample",
+      "mfr_sku": "112140",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962291933235",
+      "base_sku": "DWHF-70426",
+      "sample_sku": "DWHF-70426-Sample",
+      "mfr_sku": "112141",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962292293683",
+      "base_sku": "DWHF-70427",
+      "sample_sku": "DWHF-70427-Sample",
+      "mfr_sku": "112154",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962292555827",
+      "base_sku": "DWHF-70428",
+      "sample_sku": "DWHF-70428-Sample",
+      "mfr_sku": "112155",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962292916275",
+      "base_sku": "DWHF-70429",
+      "sample_sku": "DWHF-70429-Sample",
+      "mfr_sku": "112156",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962293440563",
+      "base_sku": "DWHF-70430",
+      "sample_sku": "DWHF-70430-Sample",
+      "mfr_sku": "112157",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962293866547",
+      "base_sku": "DWHF-70431",
+      "sample_sku": "DWHF-70431-Sample",
+      "mfr_sku": "112158",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962294161459",
+      "base_sku": "DWHF-70432",
+      "sample_sku": "DWHF-70432-Sample",
+      "mfr_sku": "112151",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962294882355",
+      "base_sku": "DWHF-70433",
+      "sample_sku": "DWHF-70433-Sample",
+      "mfr_sku": "112152",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962295504947",
+      "base_sku": "DWHF-70434",
+      "sample_sku": "DWHF-70434-Sample",
+      "mfr_sku": "112153",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962295898163",
+      "base_sku": "DWHF-70435",
+      "sample_sku": "DWHF-70435-Sample",
+      "mfr_sku": "112129",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962296455219",
+      "base_sku": "DWHF-70436",
+      "sample_sku": "DWHF-70436-Sample",
+      "mfr_sku": "112130",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962296946739",
+      "base_sku": "DWHF-70437",
+      "sample_sku": "DWHF-70437-Sample",
+      "mfr_sku": "112131",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962297405491",
+      "base_sku": "DWHF-70438",
+      "sample_sku": "DWHF-70438-Sample",
+      "mfr_sku": "112147",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962297864243",
+      "base_sku": "DWHF-70439",
+      "sample_sku": "DWHF-70439-Sample",
+      "mfr_sku": "112148",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962298421299",
+      "base_sku": "DWHF-70440",
+      "sample_sku": "DWHF-70440-Sample",
+      "mfr_sku": "112149",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962299011123",
+      "base_sku": "DWHF-70441",
+      "sample_sku": "DWHF-70441-Sample",
+      "mfr_sku": "112150",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962299666483",
+      "base_sku": "DWHF-70444",
+      "sample_sku": "DWHF-70444-Sample",
+      "mfr_sku": "112174",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962300125235",
+      "base_sku": "DWHF-70445",
+      "sample_sku": "DWHF-70445-Sample",
+      "mfr_sku": "112175",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962300452915",
+      "base_sku": "DWHF-70446",
+      "sample_sku": "DWHF-70446-Sample",
+      "mfr_sku": "112176",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962301009971",
+      "base_sku": "DWHF-70447",
+      "sample_sku": "DWHF-70447-Sample",
+      "mfr_sku": "112177",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962301665331",
+      "base_sku": "DWHF-70448",
+      "sample_sku": "DWHF-70448-Sample",
+      "mfr_sku": "112192",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962302058547",
+      "base_sku": "DWHF-70449",
+      "sample_sku": "DWHF-70449-Sample",
+      "mfr_sku": "112193",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962302287923",
+      "base_sku": "DWHF-70450",
+      "sample_sku": "DWHF-70450-Sample",
+      "mfr_sku": "112194",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962302582835",
+      "base_sku": "DWHF-70451",
+      "sample_sku": "DWHF-70451-Sample",
+      "mfr_sku": "112195",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962302976051",
+      "base_sku": "DWHF-70452",
+      "sample_sku": "DWHF-70452-Sample",
+      "mfr_sku": "112196",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962303369267",
+      "base_sku": "DWHF-70453",
+      "sample_sku": "DWHF-70453-Sample",
+      "mfr_sku": "112189",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962303762483",
+      "base_sku": "DWHF-70454",
+      "sample_sku": "DWHF-70454-Sample",
+      "mfr_sku": "112190",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962304024627",
+      "base_sku": "DWHF-70455",
+      "sample_sku": "DWHF-70455-Sample",
+      "mfr_sku": "112191",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962304385075",
+      "base_sku": "DWHF-70456",
+      "sample_sku": "DWHF-70456-Sample",
+      "mfr_sku": "112166",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962305138739",
+      "base_sku": "DWHF-70457",
+      "sample_sku": "DWHF-70457-Sample",
+      "mfr_sku": "112167",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962305499187",
+      "base_sku": "DWHF-70458",
+      "sample_sku": "DWHF-70458-Sample",
+      "mfr_sku": "112168",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962305892403",
+      "base_sku": "DWHF-70459",
+      "sample_sku": "DWHF-70459-Sample",
+      "mfr_sku": "112197",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962306220083",
+      "base_sku": "DWHF-70460",
+      "sample_sku": "DWHF-70460-Sample",
+      "mfr_sku": "112198",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962306613299",
+      "base_sku": "DWHF-70461",
+      "sample_sku": "DWHF-70461-Sample",
+      "mfr_sku": "112199",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962306908211",
+      "base_sku": "DWHF-70462",
+      "sample_sku": "DWHF-70462-Sample",
+      "mfr_sku": "112200",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962307334195",
+      "base_sku": "DWHF-70463",
+      "sample_sku": "DWHF-70463-Sample",
+      "mfr_sku": "112201",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962307530803",
+      "base_sku": "DWHF-70464",
+      "sample_sku": "DWHF-70464-Sample",
+      "mfr_sku": "112202",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962307694643",
+      "base_sku": "DWHF-70465",
+      "sample_sku": "DWHF-70465-Sample",
+      "mfr_sku": "112178",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962307858483",
+      "base_sku": "DWHF-70466",
+      "sample_sku": "DWHF-70466-Sample",
+      "mfr_sku": "112179",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962308186163",
+      "base_sku": "DWHF-70467",
+      "sample_sku": "DWHF-70467-Sample",
+      "mfr_sku": "112180",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962308481075",
+      "base_sku": "DWHF-70468",
+      "sample_sku": "DWHF-70468-Sample",
+      "mfr_sku": "112181",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962308874291",
+      "base_sku": "DWHF-70469",
+      "sample_sku": "DWHF-70469-Sample",
+      "mfr_sku": "112182",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962309103667",
+      "base_sku": "DWHF-70470",
+      "sample_sku": "DWHF-70470-Sample",
+      "mfr_sku": "112183",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962309431347",
+      "base_sku": "DWHF-70471",
+      "sample_sku": "DWHF-70471-Sample",
+      "mfr_sku": "112184",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962309922867",
+      "base_sku": "DWHF-70472",
+      "sample_sku": "DWHF-70472-Sample",
+      "mfr_sku": "112185",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962310414387",
+      "base_sku": "DWHF-70473",
+      "sample_sku": "DWHF-70473-Sample",
+      "mfr_sku": "112186",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962310905907",
+      "base_sku": "DWHF-70474",
+      "sample_sku": "DWHF-70474-Sample",
+      "mfr_sku": "112187",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962311430195",
+      "base_sku": "DWHF-70475",
+      "sample_sku": "DWHF-70475-Sample",
+      "mfr_sku": "112188",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962311856179",
+      "base_sku": "DWHF-70476",
+      "sample_sku": "DWHF-70476-Sample",
+      "mfr_sku": "112169",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962312314931",
+      "base_sku": "DWHF-70477",
+      "sample_sku": "DWHF-70477-Sample",
+      "mfr_sku": "112170",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962312871987",
+      "base_sku": "DWHF-70478",
+      "sample_sku": "DWHF-70478-Sample",
+      "mfr_sku": "112171",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962313297971",
+      "base_sku": "DWHF-70479",
+      "sample_sku": "DWHF-70479-Sample",
+      "mfr_sku": "112172",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962313723955",
+      "base_sku": "DWHF-70480",
+      "sample_sku": "DWHF-70480-Sample",
+      "mfr_sku": "112173",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962314182707",
+      "base_sku": "DWHF-70483",
+      "sample_sku": "DWHF-70483-Sample",
+      "mfr_sku": "112099",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962314412083",
+      "base_sku": "DWHF-70484",
+      "sample_sku": "DWHF-70484-Sample",
+      "mfr_sku": "112100",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962314674227",
+      "base_sku": "DWHF-70485",
+      "sample_sku": "DWHF-70485-Sample",
+      "mfr_sku": "112101",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962314903603",
+      "base_sku": "DWHF-70486",
+      "sample_sku": "DWHF-70486-Sample",
+      "mfr_sku": "112102",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962315264051",
+      "base_sku": "DWHF-70487",
+      "sample_sku": "DWHF-70487-Sample",
+      "mfr_sku": "112103",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962315493427",
+      "base_sku": "DWHF-70488",
+      "sample_sku": "DWHF-70488-Sample",
+      "mfr_sku": "112104",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962315821107",
+      "base_sku": "DWHF-70489",
+      "sample_sku": "DWHF-70489-Sample",
+      "mfr_sku": "112105",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962316116019",
+      "base_sku": "DWHF-70490",
+      "sample_sku": "DWHF-70490-Sample",
+      "mfr_sku": "112106",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962316312627",
+      "base_sku": "DWHF-70491",
+      "sample_sku": "DWHF-70491-Sample",
+      "mfr_sku": "112107",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962316836915",
+      "base_sku": "DWHF-70492",
+      "sample_sku": "DWHF-70492-Sample",
+      "mfr_sku": "112108",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962317623347",
+      "base_sku": "DWHF-70493",
+      "sample_sku": "DWHF-70493-Sample",
+      "mfr_sku": "112124",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962318016563",
+      "base_sku": "DWHF-70494",
+      "sample_sku": "DWHF-70494-Sample",
+      "mfr_sku": "112125",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962318442547",
+      "base_sku": "DWHF-70495",
+      "sample_sku": "DWHF-70495-Sample",
+      "mfr_sku": "112091",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962318901299",
+      "base_sku": "DWHF-70496",
+      "sample_sku": "DWHF-70496-Sample",
+      "mfr_sku": "112092",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962319425587",
+      "base_sku": "DWHF-70497",
+      "sample_sku": "DWHF-70497-Sample",
+      "mfr_sku": "112093",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962319917107",
+      "base_sku": "DWHF-70498",
+      "sample_sku": "DWHF-70498-Sample",
+      "mfr_sku": "112094",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962320441395",
+      "base_sku": "DWHF-70499",
+      "sample_sku": "DWHF-70499-Sample",
+      "mfr_sku": "112095",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962320769075",
+      "base_sku": "DWHF-70500",
+      "sample_sku": "DWHF-70500-Sample",
+      "mfr_sku": "112096",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962321063987",
+      "base_sku": "DWHF-70501",
+      "sample_sku": "DWHF-70501-Sample",
+      "mfr_sku": "112097",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962321588275",
+      "base_sku": "DWHF-70502",
+      "sample_sku": "DWHF-70502-Sample",
+      "mfr_sku": "112098",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962322341939",
+      "base_sku": "DWHF-70503",
+      "sample_sku": "DWHF-70503-Sample",
+      "mfr_sku": "112114",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962323161139",
+      "base_sku": "DWHF-70504",
+      "sample_sku": "DWHF-70504-Sample",
+      "mfr_sku": "112115",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962323849267",
+      "base_sku": "DWHF-70505",
+      "sample_sku": "DWHF-70505-Sample",
+      "mfr_sku": "112116",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962324439091",
+      "base_sku": "DWHF-70506",
+      "sample_sku": "DWHF-70506-Sample",
+      "mfr_sku": "112117",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962324734003",
+      "base_sku": "DWHF-70507",
+      "sample_sku": "DWHF-70507-Sample",
+      "mfr_sku": "112118",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962325094451",
+      "base_sku": "DWHF-70508",
+      "sample_sku": "DWHF-70508-Sample",
+      "mfr_sku": "112109",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962325651507",
+      "base_sku": "DWHF-70509",
+      "sample_sku": "DWHF-70509-Sample",
+      "mfr_sku": "112110",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962326175795",
+      "base_sku": "DWHF-70510",
+      "sample_sku": "DWHF-70510-Sample",
+      "mfr_sku": "112111",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962326700083",
+      "base_sku": "DWHF-70511",
+      "sample_sku": "DWHF-70511-Sample",
+      "mfr_sku": "112112",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962327158835",
+      "base_sku": "DWHF-70512",
+      "sample_sku": "DWHF-70512-Sample",
+      "mfr_sku": "112113",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962327683123",
+      "base_sku": "DWHF-70513",
+      "sample_sku": "DWHF-70513-Sample",
+      "mfr_sku": "112075",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962328109107",
+      "base_sku": "DWHF-70514",
+      "sample_sku": "DWHF-70514-Sample",
+      "mfr_sku": "112076",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962328600627",
+      "base_sku": "DWHF-70515",
+      "sample_sku": "DWHF-70515-Sample",
+      "mfr_sku": "112077",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962328928307",
+      "base_sku": "DWHF-70516",
+      "sample_sku": "DWHF-70516-Sample",
+      "mfr_sku": "112078",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962329092147",
+      "base_sku": "DWHF-70517",
+      "sample_sku": "DWHF-70517-Sample",
+      "mfr_sku": "112079",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962329288755",
+      "base_sku": "DWHF-70518",
+      "sample_sku": "DWHF-70518-Sample",
+      "mfr_sku": "112080",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962329616435",
+      "base_sku": "DWHF-70519",
+      "sample_sku": "DWHF-70519-Sample",
+      "mfr_sku": "112081",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962330042419",
+      "base_sku": "DWHF-70520",
+      "sample_sku": "DWHF-70520-Sample",
+      "mfr_sku": "112082",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962330370099",
+      "base_sku": "DWHF-70521",
+      "sample_sku": "DWHF-70521-Sample",
+      "mfr_sku": "112119",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962330730547",
+      "base_sku": "DWHF-70522",
+      "sample_sku": "DWHF-70522-Sample",
+      "mfr_sku": "112120",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962330992691",
+      "base_sku": "DWHF-70523",
+      "sample_sku": "DWHF-70523-Sample",
+      "mfr_sku": "112121",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962331189299",
+      "base_sku": "DWHF-70524",
+      "sample_sku": "DWHF-70524-Sample",
+      "mfr_sku": "112122",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962331418675",
+      "base_sku": "DWHF-70525",
+      "sample_sku": "DWHF-70525-Sample",
+      "mfr_sku": "112123",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962331779123",
+      "base_sku": "DWHF-70526",
+      "sample_sku": "DWHF-70526-Sample",
+      "mfr_sku": "112083",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962332205107",
+      "base_sku": "DWHF-70527",
+      "sample_sku": "DWHF-70527-Sample",
+      "mfr_sku": "112084",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962332663859",
+      "base_sku": "DWHF-70528",
+      "sample_sku": "DWHF-70528-Sample",
+      "mfr_sku": "112085",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962333089843",
+      "base_sku": "DWHF-70529",
+      "sample_sku": "DWHF-70529-Sample",
+      "mfr_sku": "112086",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962333646899",
+      "base_sku": "DWHF-70530",
+      "sample_sku": "DWHF-70530-Sample",
+      "mfr_sku": "112087",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962334072883",
+      "base_sku": "DWHF-70531",
+      "sample_sku": "DWHF-70531-Sample",
+      "mfr_sku": "112088",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962334531635",
+      "base_sku": "DWHF-70532",
+      "sample_sku": "DWHF-70532-Sample",
+      "mfr_sku": "112089",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962334859315",
+      "base_sku": "DWHF-70533",
+      "sample_sku": "DWHF-70533-Sample",
+      "mfr_sku": "112090",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962335744051",
+      "base_sku": "DWHF-70539",
+      "sample_sku": "DWHF-70539-Sample",
+      "mfr_sku": "112044",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962336137267",
+      "base_sku": "DWHF-70540",
+      "sample_sku": "DWHF-70540-Sample",
+      "mfr_sku": "112046",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962336694323",
+      "base_sku": "DWHF-70541",
+      "sample_sku": "DWHF-70541-Sample",
+      "mfr_sku": "112047",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962337218611",
+      "base_sku": "DWHF-70542",
+      "sample_sku": "DWHF-70542-Sample",
+      "mfr_sku": "112048",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962337677363",
+      "base_sku": "DWHF-70543",
+      "sample_sku": "DWHF-70543-Sample",
+      "mfr_sku": "112049",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962338103347",
+      "base_sku": "DWHF-70544",
+      "sample_sku": "DWHF-70544-Sample",
+      "mfr_sku": "112050",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962338431027",
+      "base_sku": "DWHF-70545",
+      "sample_sku": "DWHF-70545-Sample",
+      "mfr_sku": "112051",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962338791475",
+      "base_sku": "DWHF-70546",
+      "sample_sku": "DWHF-70546-Sample",
+      "mfr_sku": "112052",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962339250227",
+      "base_sku": "DWHF-70547",
+      "sample_sku": "DWHF-70547-Sample",
+      "mfr_sku": "112053",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962339774515",
+      "base_sku": "DWHF-70548",
+      "sample_sku": "DWHF-70548-Sample",
+      "mfr_sku": "112054",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962340134963",
+      "base_sku": "DWHF-70549",
+      "sample_sku": "DWHF-70549-Sample",
+      "mfr_sku": "112055",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962340528179",
+      "base_sku": "DWHF-70550",
+      "sample_sku": "DWHF-70550-Sample",
+      "mfr_sku": "112056",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962340954163",
+      "base_sku": "DWHF-70551",
+      "sample_sku": "DWHF-70551-Sample",
+      "mfr_sku": "112057",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962341478451",
+      "base_sku": "DWHF-70552",
+      "sample_sku": "DWHF-70552-Sample",
+      "mfr_sku": "112058",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962341904435",
+      "base_sku": "DWHF-70553",
+      "sample_sku": "DWHF-70553-Sample",
+      "mfr_sku": "112032",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962342363187",
+      "base_sku": "DWHF-70554",
+      "sample_sku": "DWHF-70554-Sample",
+      "mfr_sku": "112033",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962342690867",
+      "base_sku": "DWHF-70555",
+      "sample_sku": "DWHF-70555-Sample",
+      "mfr_sku": "112034",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962343149619",
+      "base_sku": "DWHF-70556",
+      "sample_sku": "DWHF-70556-Sample",
+      "mfr_sku": "112036",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962343641139",
+      "base_sku": "DWHF-70557",
+      "sample_sku": "DWHF-70557-Sample",
+      "mfr_sku": "112066",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962343870515",
+      "base_sku": "DWHF-70558",
+      "sample_sku": "DWHF-70558-Sample",
+      "mfr_sku": "112067",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962344132659",
+      "base_sku": "DWHF-70559",
+      "sample_sku": "DWHF-70559-Sample",
+      "mfr_sku": "112068",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962344591411",
+      "base_sku": "DWHF-70560",
+      "sample_sku": "DWHF-70560-Sample",
+      "mfr_sku": "112069",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962345017395",
+      "base_sku": "DWHF-70561",
+      "sample_sku": "DWHF-70561-Sample",
+      "mfr_sku": "112070",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962345476147",
+      "base_sku": "DWHF-70562",
+      "sample_sku": "DWHF-70562-Sample",
+      "mfr_sku": "112071",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962345934899",
+      "base_sku": "DWHF-70563",
+      "sample_sku": "DWHF-70563-Sample",
+      "mfr_sku": "112072",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962346229811",
+      "base_sku": "DWHF-70564",
+      "sample_sku": "DWHF-70564-Sample",
+      "mfr_sku": "112027",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962346393651",
+      "base_sku": "DWHF-70565",
+      "sample_sku": "DWHF-70565-Sample",
+      "mfr_sku": "112028",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962346688563",
+      "base_sku": "DWHF-70566",
+      "sample_sku": "DWHF-70566-Sample",
+      "mfr_sku": "112029",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962347114547",
+      "base_sku": "DWHF-70567",
+      "sample_sku": "DWHF-70567-Sample",
+      "mfr_sku": "112030",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962347573299",
+      "base_sku": "DWHF-70568",
+      "sample_sku": "DWHF-70568-Sample",
+      "mfr_sku": "112059",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962348032051",
+      "base_sku": "DWHF-70569",
+      "sample_sku": "DWHF-70569-Sample",
+      "mfr_sku": "112061",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962348392499",
+      "base_sku": "DWHF-70570",
+      "sample_sku": "DWHF-70570-Sample",
+      "mfr_sku": "112062",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962348949555",
+      "base_sku": "DWHF-70574",
+      "sample_sku": "DWHF-70574-Sample",
+      "mfr_sku": "111950",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962349408307",
+      "base_sku": "DWHF-70575",
+      "sample_sku": "DWHF-70575-Sample",
+      "mfr_sku": "111951",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962349867059",
+      "base_sku": "DWHF-70576",
+      "sample_sku": "DWHF-70576-Sample",
+      "mfr_sku": "111952",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962350293043",
+      "base_sku": "DWHF-70577",
+      "sample_sku": "DWHF-70577-Sample",
+      "mfr_sku": "111953",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962350817331",
+      "base_sku": "DWHF-70578",
+      "sample_sku": "DWHF-70578-Sample",
+      "mfr_sku": "111954",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962351210547",
+      "base_sku": "DWHF-70579",
+      "sample_sku": "DWHF-70579-Sample",
+      "mfr_sku": "111955",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962351734835",
+      "base_sku": "DWHF-70580",
+      "sample_sku": "DWHF-70580-Sample",
+      "mfr_sku": "111956",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962352095283",
+      "base_sku": "DWHF-70581",
+      "sample_sku": "DWHF-70581-Sample",
+      "mfr_sku": "111969",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962352685107",
+      "base_sku": "DWHF-70582",
+      "sample_sku": "DWHF-70582-Sample",
+      "mfr_sku": "111970",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962353045555",
+      "base_sku": "DWHF-70583",
+      "sample_sku": "DWHF-70583-Sample",
+      "mfr_sku": "111971",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962353438771",
+      "base_sku": "DWHF-70584",
+      "sample_sku": "DWHF-70584-Sample",
+      "mfr_sku": "111979",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962353897523",
+      "base_sku": "DWHF-70585",
+      "sample_sku": "DWHF-70585-Sample",
+      "mfr_sku": "111980",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962354421811",
+      "base_sku": "DWHF-70586",
+      "sample_sku": "DWHF-70586-Sample",
+      "mfr_sku": "111981",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962354782259",
+      "base_sku": "DWHF-70587",
+      "sample_sku": "DWHF-70587-Sample",
+      "mfr_sku": "111982",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962355077171",
+      "base_sku": "DWHF-70588",
+      "sample_sku": "DWHF-70588-Sample",
+      "mfr_sku": "111957",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962355503155",
+      "base_sku": "DWHF-70589",
+      "sample_sku": "DWHF-70589-Sample",
+      "mfr_sku": "111958",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962356092979",
+      "base_sku": "DWHF-70590",
+      "sample_sku": "DWHF-70590-Sample",
+      "mfr_sku": "111959",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962356584499",
+      "base_sku": "DWHF-70591",
+      "sample_sku": "DWHF-70591-Sample",
+      "mfr_sku": "111960",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962356977715",
+      "base_sku": "DWHF-70592",
+      "sample_sku": "DWHF-70592-Sample",
+      "mfr_sku": "111972",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962357502003",
+      "base_sku": "DWHF-70593",
+      "sample_sku": "DWHF-70593-Sample",
+      "mfr_sku": "111973",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962357993523",
+      "base_sku": "DWHF-70594",
+      "sample_sku": "DWHF-70594-Sample",
+      "mfr_sku": "111974",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962358485043",
+      "base_sku": "DWHF-70595",
+      "sample_sku": "DWHF-70595-Sample",
+      "mfr_sku": "111961",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962358779955",
+      "base_sku": "DWHF-70596",
+      "sample_sku": "DWHF-70596-Sample",
+      "mfr_sku": "111962",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962359009331",
+      "base_sku": "DWHF-70597",
+      "sample_sku": "DWHF-70597-Sample",
+      "mfr_sku": "111963",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962359271475",
+      "base_sku": "DWHF-70598",
+      "sample_sku": "DWHF-70598-Sample",
+      "mfr_sku": "111964",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962359533619",
+      "base_sku": "DWHF-70599",
+      "sample_sku": "DWHF-70599-Sample",
+      "mfr_sku": "111983",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962359795763",
+      "base_sku": "DWHF-70600",
+      "sample_sku": "DWHF-70600-Sample",
+      "mfr_sku": "111984",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962360025139",
+      "base_sku": "DWHF-70601",
+      "sample_sku": "DWHF-70601-Sample",
+      "mfr_sku": "111985",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962360254515",
+      "base_sku": "DWHF-70602",
+      "sample_sku": "DWHF-70602-Sample",
+      "mfr_sku": "111986",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962360483891",
+      "base_sku": "DWHF-70603",
+      "sample_sku": "DWHF-70603-Sample",
+      "mfr_sku": "111987",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962360746035",
+      "base_sku": "DWHF-70604",
+      "sample_sku": "DWHF-70604-Sample",
+      "mfr_sku": "111975",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962360975411",
+      "base_sku": "DWHF-70605",
+      "sample_sku": "DWHF-70605-Sample",
+      "mfr_sku": "111976",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962361040947",
+      "base_sku": "DWHF-70606",
+      "sample_sku": "DWHF-70606-Sample",
+      "mfr_sku": "111977",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6962361073715",
+      "base_sku": "DWHF-70607",
+      "sample_sku": "DWHF-70607-Sample",
+      "mfr_sku": "111978",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "7787421335603",
+      "base_sku": "DWHQ-335008",
+      "sample_sku": "DWHQ-335008-Sample",
+      "mfr_sku": "111500",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "7787421761587",
+      "base_sku": "DWHQ-335013",
+      "sample_sku": "DWHQ-335013-Sample",
+      "mfr_sku": "113138",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "7787423498291",
+      "base_sku": "DWHQ-335023",
+      "sample_sku": "DWHQ-335023-Sample",
+      "mfr_sku": "113123",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "7787425071155",
+      "base_sku": "DWHQ-335036",
+      "sample_sku": "DWHQ-335036-Sample",
+      "mfr_sku": "HRTW113140",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "7787425169459",
+      "base_sku": "DWHQ-335037",
+      "sample_sku": "DWHQ-335037-Sample",
+      "mfr_sku": "HRTW113139",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "7787425300531",
+      "base_sku": "DWHQ-335038",
+      "sample_sku": "DWHQ-335038-Sample",
+      "mfr_sku": "HRTW113121",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "7787425366067",
+      "base_sku": "DWHQ-335039",
+      "sample_sku": "DWHQ-335039-Sample",
+      "mfr_sku": "HRTW113122",
+      "price_retail": null,
+      "price_trade": null,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "",
+      "cat_disc": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Needs-Image"
+      ],
+      "dryRun": true
+    }
+  ],
+  "staged": [
+    {
+      "shopify_id": "7787420450867",
+      "base_sku": "DWHQ-335000",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787420549171",
+      "base_sku": "DWHQ-335001",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787420680243",
+      "base_sku": "DWHQ-335002",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787420844083",
+      "base_sku": "DWHQ-335003",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787420909619",
+      "base_sku": "DWHQ-335004",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787421007923",
+      "base_sku": "DWHQ-335005",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787421106227",
+      "base_sku": "DWHQ-335006",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787421204531",
+      "base_sku": "DWHQ-335007",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787421433907",
+      "base_sku": "DWHQ-335009",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787421499443",
+      "base_sku": "DWHQ-335010",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787421663283",
+      "base_sku": "DWHQ-335012",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787422515251",
+      "base_sku": "DWHQ-335014",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787422613555",
+      "base_sku": "DWHQ-335015",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787422744627",
+      "base_sku": "DWHQ-335016",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787422842931",
+      "base_sku": "DWHQ-335017",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787422974003",
+      "base_sku": "DWHQ-335018",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787423072307",
+      "base_sku": "DWHQ-335019",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787423170611",
+      "base_sku": "DWHQ-335020",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787423268915",
+      "base_sku": "DWHQ-335021",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787423399987",
+      "base_sku": "DWHQ-335022",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787423662131",
+      "base_sku": "DWHQ-335024",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787423793203",
+      "base_sku": "DWHQ-335025",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787423891507",
+      "base_sku": "DWHQ-335026",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787423989811",
+      "base_sku": "DWHQ-335027",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787424120883",
+      "base_sku": "DWHQ-335028",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787424251955",
+      "base_sku": "DWHQ-335029",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787424317491",
+      "base_sku": "DWHQ-335030",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787424448563",
+      "base_sku": "DWHQ-335031",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787424546867",
+      "base_sku": "DWHQ-335032",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787424677939",
+      "base_sku": "DWHQ-335033",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787424841779",
+      "base_sku": "DWHQ-335034",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    },
+    {
+      "shopify_id": "7787424940083",
+      "base_sku": "DWHQ-335035",
+      "roll_price": 150,
+      "reason": "budget-cap"
+    }
+  ],
+  "failed": [],
+  "byPriceSource": {},
+  "budget": {
+    "who": "roll",
+    "want": 32,
+    "granted": 0,
+    "refunded": 0
+  },
+  "geminiCostUsd": 0,
+  "finished": "2026-06-22T21:27:06.721Z",
+  "totals": {
+    "rollVariantsCreated": 0,
+    "rollVariantsWouldCreate": 0,
+    "stayedSampleOnly_NeedsPrice": 551,
+    "stagedForNextWindow": 32,
+    "skippedAlreadyHadRoll": 0,
+    "scrapedFresh": 0,
+    "failed": 0
+  }
+}
\ No newline at end of file

← 248277a7 Bucket B Coordonné roll-variant recovery script (feed-first,  ·  back to Designer Wallcoverings  ·  Tier B packaging answered via variant-title scan: per-vendor 99e77163 →