[object Object]

← back to Designer Wallcoverings

Bucket B Schumacher roll-variant recovery script (feed-first, draft-gated, budget-safe)

f267c8cf57291cf3edde4b299234bdef128c7897 · 2026-06-22 15:05:44 -0700 · Steve

Clone of bucketB-rebelwalls-roll-variants.js retargeted onto schumacher_catalog.
PG-first join on mfr_sku recovers our_price/retail_price; 10/547 priced, rest stay
sample-only + Needs-Price; 471 pillows tagged Sample-Only-Pillow. Shared variant-budget
take/refund (roll category). DTD verdict A 2026-06-22: no force-price, defer fresh scrape.

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

Files touched

Diff

commit f267c8cf57291cf3edde4b299234bdef128c7897
Author: Steve <steve@designerwallcoverings.com>
Date:   Mon Jun 22 15:05:44 2026 -0700

    Bucket B Schumacher roll-variant recovery script (feed-first, draft-gated, budget-safe)
    
    Clone of bucketB-rebelwalls-roll-variants.js retargeted onto schumacher_catalog.
    PG-first join on mfr_sku recovers our_price/retail_price; 10/547 priced, rest stay
    sample-only + Needs-Price; 471 pillows tagged Sample-Only-Pillow. Shared variant-budget
    take/refund (roll category). DTD verdict A 2026-06-22: no force-price, defer fresh scrape.
    
    Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
---
 .../scripts/bucketB-schumacher-roll-variants.js    |  304 +
 .../scripts/data/bucketB/schumacher-dryrun.json    | 9760 ++++++++++++++++++++
 2 files changed, 10064 insertions(+)

diff --git a/shopify/scripts/bucketB-schumacher-roll-variants.js b/shopify/scripts/bucketB-schumacher-roll-variants.js
new file mode 100644
index 00000000..9bedef3c
--- /dev/null
+++ b/shopify/scripts/bucketB-schumacher-roll-variants.js
@@ -0,0 +1,304 @@
+#!/usr/bin/env node
+/**
+ * bucketB-schumacher-roll-variants.js  (2026-06-22)  — owner: vp-dw-commerce
+ *
+ * Bucket B — Schumacher sample-only recovery (Steve APPROVED, feed-first, draft-gated,
+ * reversible). Clone of bucketB-rebelwalls-roll-variants.js, retargeted onto
+ * schumacher_catalog. For the 547 Schumacher 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 (DTD verdict A, 2026-06-22, 3/3):
+ *   schumacher_catalog joined on the product's mfr_sku (from the dw_unified
+ *   shopify_products mirror), case-insensitive exact. Schumacher is NOT Kravet-family,
+ *   so our_price (else retail_price) IS our retail per single roll — use it directly.
+ *   No cost/0.65/0.85 derivation (and trade_price is empty in this catalog anyway).
+ *   ONLY 10/547 recover a real per-product price this way (real DWLK/DWWC wallcovering).
+ *   Of the 537 with no price: 471 are DWPIL throw-PILLOWS (mfr_sku is a descriptive
+ *   name, NOT a catalog SKU — pillows are not roll wallcovering and never take a
+ *   "priced per single roll" variant), and ~61 are SCH/SCW rows with real numeric
+ *   Schumacher SKUs absent from the catalog. All 537 stay sample-only + tag Needs-Price.
+ *   Pillows additionally get Sample-Only-Pillow so they are never mis-treated as rolls.
+ *   We do NOT force any flat price (rejected), do NOT fuzzy-scrape, and DEFER a fresh
+ *   schumacher.com __NEXT_DATA__ scrape of the 61 numeric-SKU catalog-missing rows to a
+ *   separate enrichment pass (DTD verdict A). This script never invents a price.
+ *   The PG join is produced upstream into data/bucketB-schumacher-enriched.tsv.
+ *
+ * ORDER OF OPS (PostgreSQL BEFORE Shopify):
+ *   1. read recovered roll price from data/bucketB-schumacher-enriched.tsv (PG-sourced)
+ *   2. WRITE the roll price into dw_unified.shopify_products.retail_price for the
+ *      matching shopify_id  -- 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 unpriced (price_source=none): tag Needs-Price (+ Needs-Width / Needs-Image
+ *      where the catalog/mirror gave us no width/image, + Sample-Only-Pillow for pillows)
+ *      — NO variant, status untouched
+ *
+ * VARIANT-BUDGET (shared ~1,000/day Shopify cap, 3 other writers concurrent):
+ *   take('roll', priced.length) up front to size the run; create only what the ledger
+ *   grants (grant may be 0 if the cap is already full → lands nothing, stages all as
+ *   Needs-Price, never blocks); refund the unused grant at the end. Fail-open in the
+ *   ledger never freezes this run. This is the DW variant-budget refund invariant.
+ *
+ * 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.
+ *     (~69 of the 547 may already have a roll from Bucket A → skipped, not re-created.)
+ *   - PRICE GATE — no recovered price => row stays sample-only, tag Needs-Price.
+ *   - PG dw_unified BEFORE Shopify.
+ *   - NEVER flip status. These are DRAFT/ACTIVE as-is; we never set ACTIVE (no
+ *     img+width promotion work here) and never demote. Status untouched.
+ *   - never touch title / customer-facing vendor field / display_variant tag.
+ *   - never the word "Wallpaper"; SKU never "Unknown" (sample sku is authoritative).
+ *   - NEVER exceed 1,000/day — enforced via the shared budget ledger.
+ *
+ * Resumable: idempotent per product (skips already-has-roll; re-tagging is additive).
+ * --max-create caps roll creations per run (default 900). ≥90s between bulk batches
+ * via --batch-size + --batch-gap (moot here — only 10 priced rows).
+ *
+ *   node bucketB-schumacher-roll-variants.js                         # DRY-RUN
+ *   node bucketB-schumacher-roll-variants.js --apply                 # LIVE
+ *   node bucketB-schumacher-roll-variants.js --apply --report data/bucketB/schumacher-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-schumacher-enriched.tsv');
+const TODAY = new Date().toISOString().slice(0, 10);
+
+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; }
+
+// ---- shared variant budget (grants 0 if the ~1k/day cap is full; refund the unused) --
+let budget = null;
+try { budget = require(path.join(os.homedir(), 'Projects/designerwallcoverings/scripts/variant-budget/budget.cjs')); }
+catch (e) { process.stderr.write(`[budget] module unavailable (${e.message}) — proceeding ungated\n`); }
+
+// ---- dw_unified write (PG-first) ------------------------------------------
+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 _bB_price(gid text, roll_price numeric);
+INSERT INTO _bB_price(gid, roll_price) VALUES
+${values};
+UPDATE shopify_products sp
+   SET retail_price = b.roll_price
+  FROM _bB_price b
+ WHERE sp.shopify_id = b.gid;
+SELECT count(*) AS updated FROM _bB_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 roll_price price_source cat_width cat_width_in cat_image is_pillow
+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(),
+      roll_price: c[4] ? parseFloat(c[4]) : null, price_source: (c[5] || '').trim(),
+      cat_width: (c[6] || '').trim(), cat_width_in: (c[7] || '').trim(),
+      cat_image: (c[8] || '').trim(), is_pillow: (c[9] || '').trim() === 'true',
+    };
+  }).filter(r => r.shopify_id && /^\d+$/.test(r.shopify_id));
+}
+
+(async () => {
+  const rows = loadWork();
+  const priced = rows.filter(r => r.price_source.startsWith('catalog') && r.roll_price > 0);
+  const unpriced = rows.filter(r => !(r.price_source.startsWith('catalog') && r.roll_price > 0));
+  console.log(`bucketB-schumacher — ${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\n`);
+
+  const report = { started: new Date().toISOString(), apply: APPLY, scrapedFresh: 0,
+    created: [], skippedAlreadyRoll: [], taggedNeedsPrice: [], failed: [],
+    byPriceSource: {}, cohort: { pillows: 0, schNumeric: 0, wallcovering: 0 },
+    budget: null, geminiCostUsd: 0 };
+  for (const r of rows) {
+    if (r.is_pillow) report.cohort.pillows++;
+    else if (r.price_source.startsWith('catalog')) report.cohort.wallcovering++;
+    else report.cohort.schNumeric++;
+  }
+
+  // ---- VARIANT-BUDGET: size the run; grant may be 0 if the cap is full ----
+  let rollGrant = priced.length, rollTaken = 0;
+  if (APPLY && budget && priced.length) {
+    rollGrant = budget.take('roll', priced.length);
+    rollTaken = rollGrant;
+    const st = budget.status();
+    report.budget = { requested: priced.length, granted: rollGrant, spent: st.spent, remaining: st.remaining };
+    console.log(`variant-budget: requested ${priced.length} roll slots, granted ${rollGrant} (global remaining ${st.remaining.global})\n`);
+    if (rollGrant === 0) console.log(`⚠ budget granted 0 — shared ~1k/day cap is full; staging all ${priced.length} priced rows as Needs-Price this run (resumable next run)\n`);
+  } else if (priced.length) {
+    console.log(`(dry-run) would request ${priced.length} roll slots from the shared variant budget\n`);
+  }
+
+  // Rows we can't (or won't) build this run — fall through to Needs-Price tagging so nothing
+  // is silently dropped. With grant<priced.length, the overflow priced rows are staged too.
+  const buildable = priced.slice(0, APPLY ? rollGrant : priced.length);
+  const deferredPriced = priced.slice(buildable.length);
+
+  // ---- PG-FIRST: write recovered roll prices to dw_unified before any Shopify write ----
+  if (APPLY && buildable.length) {
+    try {
+      const res = pgWriteRollPrice(buildable.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 (budget && rollTaken) budget.refund('roll', rollTaken);
+      process.exit(2);
+    }
+  } else if (buildable.length) {
+    console.log(`(dry-run) would write ${buildable.length} retail_price rows to dw_unified first\n`);
+  }
+
+  // ---- Shopify: add ROLL variant to each buildable priced product ----
+  let createdThisRun = 0, inBatch = 0;
+  for (const w of buildable) {
+    if (createdThisRun >= MAX_CREATE) { console.log(`\n⛔ hit --max-create ${MAX_CREATE}; remaining priced rows deferred to next run (resumable)`); break; }
+    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_source}) sku ${skuBase}`);
+    report.byPriceSource[w.price_source] = (report.byPriceSource[w.price_source] || 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 (DW variant-budget refund invariant) ----
+  if (APPLY && budget && rollTaken) {
+    const unused = rollTaken - createdThisRun;
+    if (unused > 0) { const back = budget.refund('roll', unused); console.log(`\nvariant-budget refund: returned ${back}/${unused} unused roll slots`); report.budgetRefunded = back; }
+  }
+
+  // ---- unpriced (incl. any budget-deferred priced) : tag Needs-Price ----
+  const toTag = unpriced.concat(deferredPriced.map(w => ({ ...w, deferredByBudget: true })));
+  console.log(`\n--- tagging ${toTag.length} rows (Needs-Price${deferredPriced.length ? `, incl ${deferredPriced.length} budget-deferred` : ''}) ---`);
+  for (const w of toTag) {
+    const tags = ['Needs-Price'];
+    if (!w.cat_width) tags.push('Needs-Width');
+    if (!w.cat_image) tags.push('Needs-Image');
+    if (w.is_pillow) tags.push('Sample-Only-Pillow');
+    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,
+    pillowsTaggedSampleOnly: report.taggedNeedsPrice.filter(t => t.is_pillow).length,
+    budgetDeferredPriced: deferredPriced.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('cohort:', JSON.stringify(report.cohort));
+  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/schumacher-dryrun.json b/shopify/scripts/data/bucketB/schumacher-dryrun.json
new file mode 100644
index 00000000..7727f3af
--- /dev/null
+++ b/shopify/scripts/data/bucketB/schumacher-dryrun.json
@@ -0,0 +1,9760 @@
+{
+  "started": "2026-06-22T22:05:26.906Z",
+  "apply": false,
+  "scrapedFresh": 0,
+  "created": [
+    {
+      "shopify_id": "7688609333299",
+      "base_sku": "DWWC-500180",
+      "sample_sku": "DWWC-500180-Sample",
+      "mfr_sku": "5015722",
+      "roll_price": 340.27,
+      "price_source": "catalog:our_price",
+      "cat_width": "55 1/8\" (140CM)",
+      "cat_width_in": "",
+      "cat_image": "https://s3.amazonaws.com/schumacher-webassets/5015722.jpg",
+      "is_pillow": false,
+      "skuBase": "DWWC-500180",
+      "price": 340.27,
+      "dryRun": true
+    }
+  ],
+  "skippedAlreadyRoll": [
+    {
+      "shopify_id": "4523223580723",
+      "base_sku": "DWLK-830580",
+      "sample_sku": "DWLK-830580-Sample",
+      "mfr_sku": "5003540",
+      "roll_price": 267.87,
+      "price_source": "catalog:our_price",
+      "cat_width": "34 7/8\" (88CM)",
+      "cat_width_in": "",
+      "cat_image": "https://s3.amazonaws.com/schumacher-webassets/5003540.jpg",
+      "is_pillow": false,
+      "existingRollSku": "DWLK-830580"
+    },
+    {
+      "shopify_id": "4523225055283",
+      "base_sku": "DWLK-830710",
+      "sample_sku": "DWLK-830710-Sample",
+      "mfr_sku": "5003593",
+      "roll_price": 61.54,
+      "price_source": "catalog:our_price",
+      "cat_width": "34 1/8\" (87CM)",
+      "cat_width_in": "",
+      "cat_image": "https://s3.amazonaws.com/schumacher-webassets/5003593.jpg",
+      "is_pillow": false,
+      "existingRollSku": "DWLK-830710"
+    },
+    {
+      "shopify_id": "4523269029939",
+      "base_sku": "DWLK-835430",
+      "sample_sku": "DWLK-835430-Sample",
+      "mfr_sku": "5006280",
+      "roll_price": 267.87,
+      "price_source": "catalog:our_price",
+      "cat_width": "32 1/2\" (82CM)",
+      "cat_width_in": "",
+      "cat_image": "https://s3.amazonaws.com/schumacher-webassets/5006280.jpg",
+      "is_pillow": false,
+      "existingRollSku": "DWLK-835430"
+    },
+    {
+      "shopify_id": "4523269259315",
+      "base_sku": "DWLK-835450",
+      "sample_sku": "DWLK-835450-Sample",
+      "mfr_sku": "5006291",
+      "roll_price": 285.97,
+      "price_source": "catalog:our_price",
+      "cat_width": "55 1/2\" (141CM)",
+      "cat_width_in": "",
+      "cat_image": "https://s3.amazonaws.com/schumacher-webassets/5006291.jpg",
+      "is_pillow": false,
+      "existingRollSku": "DWLK-835450"
+    },
+    {
+      "shopify_id": "4523269357619",
+      "base_sku": "DWLK-835460",
+      "sample_sku": "DWLK-835460-Sample",
+      "mfr_sku": "5006292",
+      "roll_price": 285.97,
+      "price_source": "catalog:our_price",
+      "cat_width": "55 1/2\" (141CM)",
+      "cat_width_in": "",
+      "cat_image": "https://s3.amazonaws.com/schumacher-webassets/5006292.jpg",
+      "is_pillow": false,
+      "existingRollSku": "DWLK-835460"
+    },
+    {
+      "shopify_id": "4523269455923",
+      "base_sku": "DWLK-835470",
+      "sample_sku": "DWLK-835470-Sample",
+      "mfr_sku": "5006293",
+      "roll_price": 285.97,
+      "price_source": "catalog:our_price",
+      "cat_width": "55 1/2\" (141CM)",
+      "cat_width_in": "",
+      "cat_image": "https://s3.amazonaws.com/schumacher-webassets/5006293.jpg",
+      "is_pillow": false,
+      "existingRollSku": "DWLK-835470"
+    },
+    {
+      "shopify_id": "4523269554227",
+      "base_sku": "DWLK-835480",
+      "sample_sku": "DWLK-835480-Sample",
+      "mfr_sku": "5006294",
+      "roll_price": 285.97,
+      "price_source": "catalog:our_price",
+      "cat_width": "55 1/2\" (141CM)",
+      "cat_width_in": "",
+      "cat_image": "https://s3.amazonaws.com/schumacher-webassets/5006294.jpg",
+      "is_pillow": false,
+      "existingRollSku": "DWLK-835480"
+    },
+    {
+      "shopify_id": "4523269652531",
+      "base_sku": "DWLK-835490",
+      "sample_sku": "DWLK-835490-Sample",
+      "mfr_sku": "5006295",
+      "roll_price": 285.97,
+      "price_source": "catalog:our_price",
+      "cat_width": "55 1/2\" (141CM)",
+      "cat_width_in": "",
+      "cat_image": "https://s3.amazonaws.com/schumacher-webassets/5006295.jpg",
+      "is_pillow": false,
+      "existingRollSku": "DWLK-835490"
+    },
+    {
+      "shopify_id": "4523274305587",
+      "base_sku": "DWLK-836700",
+      "sample_sku": "DWLK-836700-Sample",
+      "mfr_sku": "5007330",
+      "roll_price": 503.17,
+      "price_source": "catalog:our_price",
+      "cat_width": "42 5/8\" (108CM)",
+      "cat_width_in": "",
+      "cat_image": "https://s3.amazonaws.com/schumacher-webassets/5007330.jpg",
+      "is_pillow": false,
+      "existingRollSku": "DWLK-836700"
+    }
+  ],
+  "taggedNeedsPrice": [
+    {
+      "shopify_id": "1497473679472",
+      "base_sku": "DWLK-829490",
+      "sample_sku": "DWLK-829490-Sample",
+      "mfr_sku": "32779",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/032609c8392d25b241be4e2f828ca438.jpg?v=1747080572",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "1497473843312",
+      "base_sku": "DWLK-829500",
+      "sample_sku": "DWLK-829500-Sample",
+      "mfr_sku": "32780",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f649385eb447ca49b7d903a2f1b46a98.jpg?v=1747080571",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "1497474072688",
+      "base_sku": "DWLK-829510",
+      "sample_sku": "DWLK-829510-Sample",
+      "mfr_sku": "32781",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/66c871708392b346ac19d2a4e012ca20.jpg?v=1747080569",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "1497474236528",
+      "base_sku": "DWLK-829520",
+      "sample_sku": "DWLK-829520-Sample",
+      "mfr_sku": "32782",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/de0e082043eec2f607a17a5e5f8bb3c8.jpg?v=1747080568",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "1497476006000",
+      "base_sku": "DWLK-832750",
+      "sample_sku": "DWLK-832750-Sample",
+      "mfr_sku": "32795",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5004727.jpg?v=1770829988",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609121509427",
+      "base_sku": "DWPIL-2054",
+      "sample_sku": "DWPIL-2054-Sample",
+      "mfr_sku": "ABSTRACT LEAF 20\" PILLOW Leaf",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17622105.jpg?v=1747078456",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609143595059",
+      "base_sku": "DWPIL-2064",
+      "sample_sku": "DWPIL-2064-Sample",
+      "mfr_sku": "ABSTRACT LEAF 22\" PILLOW Leaf",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17622106.jpg?v=1747078454",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609143726131",
+      "base_sku": "DWPIL-2074",
+      "sample_sku": "DWPIL-2074-Sample",
+      "mfr_sku": "ACADIA 18\" PILLOW Greige",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7265004.jpg?v=1747078452",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609144217651",
+      "base_sku": "DWPIL-2124",
+      "sample_sku": "DWPIL-2124-Sample",
+      "mfr_sku": "ADITI HAND BLOCKED PRINT PILLOW Blue&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17936012.jpg?v=1747078445",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609144381491",
+      "base_sku": "DWPIL-2144",
+      "sample_sku": "DWPIL-2144-Sample",
+      "mfr_sku": "ACANTHUS STRIPE PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17936212.jpg?v=1747078442",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609144447027",
+      "base_sku": "DWPIL-2154",
+      "sample_sku": "DWPIL-2154-Sample",
+      "mfr_sku": "ADITI HAND BLOCKED PRINT PILLOW Blue&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7858113_0ca2b9dc-c792-4140-b4da-a24d47c61f75.jpg?v=1747078441",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609144610867",
+      "base_sku": "DWPIL-2174",
+      "sample_sku": "DWPIL-2174-Sample",
+      "mfr_sku": "ADITI HAND BLOCKED PRINT PILLOW Pink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7631104_4c0af7a6-f81e-485d-ae13-d54df6e299c2.jpg?v=1747078437",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609144774707",
+      "base_sku": "DWPIL-2194",
+      "sample_sku": "DWPIL-2194-Sample",
+      "mfr_sku": "AINSLEY STRIPE I/O PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7940106_7333dcc0-63ae-403f-80c3-9e47cb52cacf.jpg?v=1747078432",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609144971315",
+      "base_sku": "DWPIL-2214",
+      "sample_sku": "DWPIL-2214-Sample",
+      "mfr_sku": "AMALIA MEDALLION 22\" PILLOW Blues",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17944006_4b456992-131f-4c19-8e56-f2085eef09b6.jpg?v=1747078422",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609145036851",
+      "base_sku": "DWPIL-2224",
+      "sample_sku": "DWPIL-2224-Sample",
+      "mfr_sku": "AMIRA HAND BLOCKED PRINT PILLOW Indigo",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17937122_dcf79297-3892-4120-966c-650cccd30fb6.jpg?v=1747078421",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609156571187",
+      "base_sku": "DWPIL-2234",
+      "sample_sku": "DWPIL-2234-Sample",
+      "mfr_sku": "ALVA HAND BLOCK PRINT PILLOW Blush",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17694204_ed1967ca-b8b5-4826-9cfc-a1c4ffd34b07.jpg?v=1747078420",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609156636723",
+      "base_sku": "DWPIL-2244",
+      "sample_sku": "DWPIL-2244-Sample",
+      "mfr_sku": "AMOUR 20\" PILLOW Charcoal",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17694205_d9eba767-e0ee-4dc6-bf85-a6916569df2e.jpg?v=1747078418",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609156735027",
+      "base_sku": "DWPIL-2254",
+      "sample_sku": "DWPIL-2254-Sample",
+      "mfr_sku": "AMIRA HAND BLOCKED PRINT PILLOW Indigo",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17754004_9745c54e-254d-4a61-aa6a-c609e8bbd783.jpg?v=1747078416",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609156898867",
+      "base_sku": "DWPIL-2264",
+      "sample_sku": "DWPIL-2264-Sample",
+      "mfr_sku": "ANDROMEDA 18\" PILLOW Sand",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17538504_c8ea8395-4f63-4317-b9b4-59184e7d0cf9.jpg?v=1747078415",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609156964403",
+      "base_sku": "DWPIL-2274",
+      "sample_sku": "DWPIL-2274-Sample",
+      "mfr_sku": "ANDROMEDA 18\" PILLOW Indigo&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17538004_0e3e22a4-de7f-42a3-9b75-19506fb32587.jpg?v=1747078413",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609157062707",
+      "base_sku": "DWPIL-2284",
+      "sample_sku": "DWPIL-2284-Sample",
+      "mfr_sku": "ANDROMEDA 20\" PILLOW Sand",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17538505_32d037c5-1592-4e5b-9d3d-78b74013fd0e.jpg?v=1747078411",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609157128243",
+      "base_sku": "DWPIL-2294",
+      "sample_sku": "DWPIL-2294-Sample",
+      "mfr_sku": "ANDROMEDA 20\" PILLOW Indigo&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17538005_f2d0df81-f168-451d-a6d4-5685c4f85014.jpg?v=1747078410",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609157292083",
+      "base_sku": "DWPIL-2314",
+      "sample_sku": "DWPIL-2314-Sample",
+      "mfr_sku": "ANIMALIA 22\" PILLOW Blue&Natural",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17832006_5a2721a7-dd88-4219-a201-cfc7ed7aaef9.jpg?v=1747078407",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609157324851",
+      "base_sku": "DWPIL-2324",
+      "sample_sku": "DWPIL-2324-Sample",
+      "mfr_sku": "ANJOU STRIPE 18\" PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17852004_23084594-93c1-4a34-acd9-1cf9d1eab2b4.jpg?v=1747078405",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609157423155",
+      "base_sku": "DWPIL-2334",
+      "sample_sku": "DWPIL-2334-Sample",
+      "mfr_sku": "ANTALYA MEDALLION PILLOW PAIR Aegean",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7574004_0dfe9a84-da27-4bb7-8506-dd76459f1692.jpg?v=1747078401",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609157488691",
+      "base_sku": "DWPIL-2344",
+      "sample_sku": "DWPIL-2344-Sample",
+      "mfr_sku": "ANTALYA MEDALLION PILLOW PAIR Garnet",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7574104.jpg?v=1747078397",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609157586995",
+      "base_sku": "DWPIL-2354",
+      "sample_sku": "DWPIL-2354-Sample",
+      "mfr_sku": "ARGENTO PILLOW Mercury",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6989012.jpg?v=1747078394",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609157783603",
+      "base_sku": "DWPIL-2374",
+      "sample_sku": "DWPIL-2374-Sample",
+      "mfr_sku": "ANTALYA MEDALLION PILLOW PAIR Garnet",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7643004.jpg?v=1747078390",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609157881907",
+      "base_sku": "DWPIL-2384",
+      "sample_sku": "DWPIL-2384-Sample",
+      "mfr_sku": "ARGENTO PILLOW Mercury",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17609404.jpg?v=1747078388",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609157947443",
+      "base_sku": "DWPIL-2394",
+      "sample_sku": "DWPIL-2394-Sample",
+      "mfr_sku": "ARGENTO PILLOW Mercury",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7629411.jpg?v=1747078386",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609158045747",
+      "base_sku": "DWPIL-2404",
+      "sample_sku": "DWPIL-2404-Sample",
+      "mfr_sku": "ASHOKA PILLOW Rose Quartz",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7629011.jpg?v=1747078384",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609158111283",
+      "base_sku": "DWPIL-2414",
+      "sample_sku": "DWPIL-2414-Sample",
+      "mfr_sku": "ATCHISON PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7761024.jpg?v=1747078382",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609158307891",
+      "base_sku": "DWPIL-2434",
+      "sample_sku": "DWPIL-2434-Sample",
+      "mfr_sku": "ASHOKA PILLOW Rose Quartz",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7950004.jpg?v=1747078379",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609158373427",
+      "base_sku": "DWPIL-2444",
+      "sample_sku": "DWPIL-2444-Sample",
+      "mfr_sku": "ATCHISON PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7950005.jpg?v=1747078378",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609158471731",
+      "base_sku": "DWPIL-2454",
+      "sample_sku": "DWPIL-2454-Sample",
+      "mfr_sku": "AUDREY STRIPE PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7950006.jpg?v=1747078376",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609158537267",
+      "base_sku": "DWPIL-2464",
+      "sample_sku": "DWPIL-2464-Sample",
+      "mfr_sku": "BAGRU & BUTI PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17924114.jpg?v=1747078375",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609158602803",
+      "base_sku": "DWPIL-2474",
+      "sample_sku": "DWPIL-2474-Sample",
+      "mfr_sku": "BANYAN IKAT PILLOW Blue&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7930017.jpg?v=1747078373",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609158635571",
+      "base_sku": "DWPIL-2484",
+      "sample_sku": "DWPIL-2484-Sample",
+      "mfr_sku": "BARACOA EMBROIDERY PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8020018.jpg?v=1747078372",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609158733875",
+      "base_sku": "DWPIL-2494",
+      "sample_sku": "DWPIL-2494-Sample",
+      "mfr_sku": "BAGRU & BUTI PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6660215.jpg?v=1747078370",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609158963251",
+      "base_sku": "DWPIL-2504",
+      "sample_sku": "DWPIL-2504-Sample",
+      "mfr_sku": "BANYAN IKAT PILLOW Blue&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17872013.jpg?v=1747078368",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609158996019",
+      "base_sku": "DWPIL-2514",
+      "sample_sku": "DWPIL-2514-Sample",
+      "mfr_sku": "BARACOA EMBROIDERY PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7815120.jpg?v=1747078366",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609159094323",
+      "base_sku": "DWPIL-2524",
+      "sample_sku": "DWPIL-2524-Sample",
+      "mfr_sku": "BASSANO TOILE PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17376305.jpg?v=1747078365",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609159192627",
+      "base_sku": "DWPIL-2534",
+      "sample_sku": "DWPIL-2534-Sample",
+      "mfr_sku": "BAUDIN BUTTERFLY CHINTZ PILLOW Blush",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7741011.jpg?v=1747078363",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609159356467",
+      "base_sku": "DWPIL-2554",
+      "sample_sku": "DWPIL-2554-Sample",
+      "mfr_sku": "BELVEDERE 18\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17611904.jpg?v=1747078360",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609159585843",
+      "base_sku": "DWPIL-2574",
+      "sample_sku": "DWPIL-2574-Sample",
+      "mfr_sku": "BENSLEY BOUCLE 18\" PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8025004.jpg?v=1747078356",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609159684147",
+      "base_sku": "DWPIL-2584",
+      "sample_sku": "DWPIL-2584-Sample",
+      "mfr_sku": "BENSLEY BOUCLE 20\" PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8025005.jpg?v=1747078355",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609159782451",
+      "base_sku": "DWPIL-2594",
+      "sample_sku": "DWPIL-2594-Sample",
+      "mfr_sku": "BERGAMA PILLOW Carbon&Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7418115.jpg?v=1747078353",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609159847987",
+      "base_sku": "DWPIL-2604",
+      "sample_sku": "DWPIL-2604-Sample",
+      "mfr_sku": "BERMUDA BLOSSOMS 18\" PILLOW Slate",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17587204_296e208b-d633-4696-b32f-b45cb3d02d32.jpg?v=1747078351",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609159913523",
+      "base_sku": "DWPIL-2614",
+      "sample_sku": "DWPIL-2614-Sample",
+      "mfr_sku": "BETTY CHINTZ 18\" PILLOW Pink&Green",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17840004.jpg?v=1747078349",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609160011827",
+      "base_sku": "DWPIL-2624",
+      "sample_sku": "DWPIL-2624-Sample",
+      "mfr_sku": "BERGAMA PILLOW Carbon&Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6568203.jpg?v=1747078347",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609160077363",
+      "base_sku": "DWPIL-2634",
+      "sample_sku": "DWPIL-2634-Sample",
+      "mfr_sku": "BETWIXT 18\" PILLOW Stone/White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6568204.jpg?v=1747078343",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609160273971",
+      "base_sku": "DWPIL-2644",
+      "sample_sku": "DWPIL-2644-Sample",
+      "mfr_sku": "BETWIXT 20\" PILLOW Stone/White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6568205.jpg?v=1747078333",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609160372275",
+      "base_sku": "DWPIL-2654",
+      "sample_sku": "DWPIL-2654-Sample",
+      "mfr_sku": "BETWIXT 22\" PILLOW Stone/White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6568206.jpg?v=1747078331",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609160634419",
+      "base_sku": "DWPIL-2684",
+      "sample_sku": "DWPIL-2684-Sample",
+      "mfr_sku": "BINARY EMBROIDERY 20\" PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7569005.jpg?v=1747078324",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609160732723",
+      "base_sku": "DWPIL-2694",
+      "sample_sku": "DWPIL-2694-Sample",
+      "mfr_sku": "BIRD & BEE + FERN PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17921205.jpg?v=1747078322",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609160765491",
+      "base_sku": "DWPIL-2704",
+      "sample_sku": "DWPIL-2704-Sample",
+      "mfr_sku": "BIRDS & BUTTERFLIES 20\" PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17476005.jpg?v=1747078319",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609160863795",
+      "base_sku": "DWPIL-2714",
+      "sample_sku": "DWPIL-2714-Sample",
+      "mfr_sku": "BIRDS & BUTTERFLIES PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17476018.jpg?v=1747078317",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609160962099",
+      "base_sku": "DWPIL-2724",
+      "sample_sku": "DWPIL-2724-Sample",
+      "mfr_sku": "BIRD & BEE + FERN PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7397304.jpg?v=1747078315",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609161060403",
+      "base_sku": "DWPIL-2734",
+      "sample_sku": "DWPIL-2734-Sample",
+      "mfr_sku": "BIXI VELVET 18\" PILLOW Onyx",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7397404.jpg?v=1747078314",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609161420851",
+      "base_sku": "DWPIL-2774",
+      "sample_sku": "DWPIL-2774-Sample",
+      "mfr_sku": "BIXI VELVET 22\" PILLOW Emerald",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7397106.jpg?v=1747078308",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609161486387",
+      "base_sku": "DWPIL-2784",
+      "sample_sku": "DWPIL-2784-Sample",
+      "mfr_sku": "BIXI VELVET 22\" PILLOW Celestine",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7397306.jpg?v=1747078306",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609161551923",
+      "base_sku": "DWPIL-2794",
+      "sample_sku": "DWPIL-2794-Sample",
+      "mfr_sku": "BIXI VELVET PILLOW Celestine",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7397330.jpg?v=1747078305",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609161650227",
+      "base_sku": "DWPIL-2814",
+      "sample_sku": "DWPIL-2814-Sample",
+      "mfr_sku": "BOTANICO 20\" PILLOW Bronze",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7389005.jpg?v=1747078303",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609161879603",
+      "base_sku": "DWPIL-2854",
+      "sample_sku": "DWPIL-2854-Sample",
+      "mfr_sku": "BURNELL BUTTERFLY 18\" PILLOW Black&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17943004.jpg?v=1747078298",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609161977907",
+      "base_sku": "DWPIL-2864",
+      "sample_sku": "DWPIL-2864-Sample",
+      "mfr_sku": "BUTI & TUK TUK PILLOW Pink&Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17923114.jpg?v=1747078297",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609162043443",
+      "base_sku": "DWPIL-2874",
+      "sample_sku": "DWPIL-2874-Sample",
+      "mfr_sku": "BRUSHSTROKES PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8010012.jpg?v=1747078295",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609162240051",
+      "base_sku": "DWPIL-2894",
+      "sample_sku": "DWPIL-2894-Sample",
+      "mfr_sku": "BUTI & TUK TUK PILLOW Pink&Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17810004.jpg?v=1747078292",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609162371123",
+      "base_sku": "DWPIL-2904",
+      "sample_sku": "DWPIL-2904-Sample",
+      "mfr_sku": "BUTTERFLY EPINGLE PILLOW Spring",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7874011.jpg?v=1747078290",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609162502195",
+      "base_sku": "DWPIL-2914",
+      "sample_sku": "DWPIL-2914-Sample",
+      "mfr_sku": "BUTTERFLY EPINGLE PILLOW Spring",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17595004.jpg?v=1747078288",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609162600499",
+      "base_sku": "DWPIL-2924",
+      "sample_sku": "DWPIL-2924-Sample",
+      "mfr_sku": "CAMPAGNE 18\" PILLOW Cadet&Citron",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17595104.jpg?v=1747078287",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609162764339",
+      "base_sku": "DWPIL-2934",
+      "sample_sku": "DWPIL-2934-Sample",
+      "mfr_sku": "CAMILE EMBROIDERY PILLOW Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17595106.jpg?v=1747078285",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609162862643",
+      "base_sku": "DWPIL-2944",
+      "sample_sku": "DWPIL-2944-Sample",
+      "mfr_sku": "CAMPAGNE PILLOW Bleu&Gris",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17595217.jpg?v=1747078283",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609162960947",
+      "base_sku": "DWPIL-2954",
+      "sample_sku": "DWPIL-2954-Sample",
+      "mfr_sku": "CASTANET EMBROIDERY PILLOW Red",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7026122.jpg?v=1747078282",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609163059251",
+      "base_sku": "DWPIL-2964",
+      "sample_sku": "DWPIL-2964-Sample",
+      "mfr_sku": "CASTANET EMBROIDERY PILLOW Chambray",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7026222.jpg?v=1747078280",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609163157555",
+      "base_sku": "DWPIL-2974",
+      "sample_sku": "DWPIL-2974-Sample",
+      "mfr_sku": "CAMPAGNE PILLOW Bleu&Gris",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7026022.jpg?v=1747078278",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609163223091",
+      "base_sku": "DWPIL-2984",
+      "sample_sku": "DWPIL-2984-Sample",
+      "mfr_sku": "CASTANET EMBROIDERY PILLOW Red",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7698204.jpg?v=1747078276",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609163321395",
+      "base_sku": "DWPIL-2994",
+      "sample_sku": "DWPIL-2994-Sample",
+      "mfr_sku": "CASTANET EMBROIDERY PILLOW Chambray",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7560003.jpg?v=1747078275",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609163386931",
+      "base_sku": "DWPIL-3004",
+      "sample_sku": "DWPIL-3004-Sample",
+      "mfr_sku": "CASTANET EMBROIDERY PILLOW Cobalt",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7560303.jpg?v=1747078273",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609163583539",
+      "base_sku": "DWPIL-3014",
+      "sample_sku": "DWPIL-3014-Sample",
+      "mfr_sku": "CECIL COTTON CHINTZ PILLOW Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7560004.jpg?v=1747078271",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609163714611",
+      "base_sku": "DWPIL-3024",
+      "sample_sku": "DWPIL-3024-Sample",
+      "mfr_sku": "CEDAR TREE NECK 18\" PILLOW Clay",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7560304.jpg?v=1747078269",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609163812915",
+      "base_sku": "DWPIL-3034",
+      "sample_sku": "DWPIL-3034-Sample",
+      "mfr_sku": "CEDAR TREE NECK 20\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7560005.jpg?v=1747078267",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609163911219",
+      "base_sku": "DWPIL-3044",
+      "sample_sku": "DWPIL-3044-Sample",
+      "mfr_sku": "CEDAR TREE NECK 20\" PILLOW Clay",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7560305.jpg?v=1747078265",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609164009523",
+      "base_sku": "DWPIL-3054",
+      "sample_sku": "DWPIL-3054-Sample",
+      "mfr_sku": "CHATELAINE PAISLEY 22\" PILLOW Jade",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO5077606.jpg?v=1747078264",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609164140595",
+      "base_sku": "DWPIL-3064",
+      "sample_sku": "DWPIL-3064-Sample",
+      "mfr_sku": "CHENONCEAU 18\" PILLOW Sky&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17356704.jpg?v=1747078262",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609164206131",
+      "base_sku": "DWPIL-3074",
+      "sample_sku": "DWPIL-3074-Sample",
+      "mfr_sku": "CHENONCEAU 18\" PILLOW Charcoal",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17356304.jpg?v=1747078260",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609164304435",
+      "base_sku": "DWPIL-3084",
+      "sample_sku": "DWPIL-3084-Sample",
+      "mfr_sku": "CHENONCEAU PILLOW Sky&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17356715.jpg?v=1747078258",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609164435507",
+      "base_sku": "DWPIL-3094",
+      "sample_sku": "DWPIL-3094-Sample",
+      "mfr_sku": "CHEVRON I/O 18\" PILLOW Sand",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17669004.jpg?v=1747078256",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609164566579",
+      "base_sku": "DWPIL-3104",
+      "sample_sku": "DWPIL-3104-Sample",
+      "mfr_sku": "CHEVRON IKAT 20\" PILLOW Lilac",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7263205.jpg?v=1747078254",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609164828723",
+      "base_sku": "DWPIL-3124",
+      "sample_sku": "DWPIL-3124-Sample",
+      "mfr_sku": "CHEVRON VELVET 20\" PILLOW Mineral",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7284205.jpg?v=1747078241",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609164894259",
+      "base_sku": "DWPIL-3134",
+      "sample_sku": "DWPIL-3134-Sample",
+      "mfr_sku": "CHEVRON VELVET 22\" PILLOW Mineral",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7284206.jpg?v=1747078239",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609165058099",
+      "base_sku": "DWPIL-3144",
+      "sample_sku": "DWPIL-3144-Sample",
+      "mfr_sku": "CHEVRON INDOOR/OUTDOOR PILLOW Sand",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17327704.jpg?v=1747078237",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609165189171",
+      "base_sku": "DWPIL-3154",
+      "sample_sku": "DWPIL-3154-Sample",
+      "mfr_sku": "CHIANG MAI DRAGON 18\" PILLOW Smoke",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17327604.jpg?v=1747078235",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609165320243",
+      "base_sku": "DWPIL-3164",
+      "sample_sku": "DWPIL-3164-Sample",
+      "mfr_sku": "CHIANG MAI DRAGON 18\" PILLOW Aquamarine",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17327004.jpg?v=1747078232",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609165418547",
+      "base_sku": "DWPIL-3174",
+      "sample_sku": "DWPIL-3174-Sample",
+      "mfr_sku": "CHIANG MAI DRAGON 18\" PILLOW Alabaster",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17327304.jpg?v=1747078230",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609169940531",
+      "base_sku": "DWPIL-3184",
+      "sample_sku": "DWPIL-3184-Sample",
+      "mfr_sku": "HIGHGROVE TREE CREWEL PILLOW Mulberry",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO341500020_5ac445b4-5bc3-45ed-a9f9-eb4597ad2438.jpg?v=1747078228",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609169973299",
+      "base_sku": "DWPIL-3194",
+      "sample_sku": "DWPIL-3194-Sample",
+      "mfr_sku": "HOLMUL & PANAN STRIPE PILLOW Autumn",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7892015_f56135b7-e98b-478c-98d9-d577e0be155c.jpg?v=1747078227",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609170038835",
+      "base_sku": "DWPIL-3204",
+      "sample_sku": "DWPIL-3204-Sample",
+      "mfr_sku": "HORST STRIPE 20\" PILLOW Grisaille",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7260205_96e7fae8-6acc-4490-ae1b-442f3af98bd3.jpg?v=1747078225",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609170104371",
+      "base_sku": "DWPIL-3214",
+      "sample_sku": "DWPIL-3214-Sample",
+      "mfr_sku": "HIGHGROVE TREE CREWEL PILLOW Mulberry",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17403004_8cc7d2bb-54f1-4dbf-be05-2b2c0800a126.jpg?v=1747078222",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609170169907",
+      "base_sku": "DWPIL-3224",
+      "sample_sku": "DWPIL-3224-Sample",
+      "mfr_sku": "HOLMUL & PANAN STRIPE PILLOW Autumn",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17758004_3d911b0f-0abd-4b51-9742-c3adcd4ac366.jpg?v=1747078220",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609170268211",
+      "base_sku": "DWPIL-3234",
+      "sample_sku": "DWPIL-3234-Sample",
+      "mfr_sku": "IBIZA FLAMESTITCH 20\" PILLOW Pool",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7346005_bfcc2105-90f7-4eda-bbc9-efeb738b7dfb.jpg?v=1747078218",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609170333747",
+      "base_sku": "DWPIL-3244",
+      "sample_sku": "DWPIL-3244-Sample",
+      "mfr_sku": "ICEHOUSE 22\" PILLOW Prussian&Grey",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17791006_068c280a-0765-48f8-bf7a-765895c132b5.jpg?v=1747078216",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609170399283",
+      "base_sku": "DWPIL-3254",
+      "sample_sku": "DWPIL-3254-Sample",
+      "mfr_sku": "ICONIC LEOPARD 18\" PILLOW Graphite",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17572204_8df785f3-6951-4b2a-a280-687bbabe66f0.jpg?v=1747078215",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609170497587",
+      "base_sku": "DWPIL-3264",
+      "sample_sku": "DWPIL-3264-Sample",
+      "mfr_sku": "ICONIC LEOPARD 18\" PILLOW Linen",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17572104_e440ef17-e1b0-4fee-90d2-580391620083.jpg?v=1747078213",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609170563123",
+      "base_sku": "DWPIL-3274",
+      "sample_sku": "DWPIL-3274-Sample",
+      "mfr_sku": "ICONIC LEOPARD 18\" PILLOW Green",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17645204_c90ef0a6-a346-4db5-8e02-097a8227e01a.jpg?v=1747078211",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609170628659",
+      "base_sku": "DWPIL-3284",
+      "sample_sku": "DWPIL-3284-Sample",
+      "mfr_sku": "ICONIC LEOPARD 18\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17645304_d5ec6e5e-3ac5-43bf-ad93-9cb73592435c.jpg?v=1747078207",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609170726963",
+      "base_sku": "DWPIL-3294",
+      "sample_sku": "DWPIL-3294-Sample",
+      "mfr_sku": "ICONIC LEOPARD 18\" PILLOW Ink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17572004_640ef2b0-b268-409e-b5e3-e0aeb1d897b1.jpg?v=1747078204",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609170792499",
+      "base_sku": "DWPIL-3304",
+      "sample_sku": "DWPIL-3304-Sample",
+      "mfr_sku": "ICONIC LEOPARD 20\" PILLOW Ink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17572005_b0610667-c5a6-42f1-9e17-e6aa75379b16.jpg?v=1747078201",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609170923571",
+      "base_sku": "DWPIL-3324",
+      "sample_sku": "DWPIL-3324-Sample",
+      "mfr_sku": "ICONIC LEOPARD 20\" PILLOW Linen",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17572105_db015f83-cb7f-4aa1-969e-e95f4d195857.jpg?v=1747078197",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609171021875",
+      "base_sku": "DWPIL-3334",
+      "sample_sku": "DWPIL-3334-Sample",
+      "mfr_sku": "ICONIC LEOPARD 20\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17645305_82cf1e2d-4307-479d-90bf-2afbb6651c69.jpg?v=1747078195",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609171054643",
+      "base_sku": "DWPIL-3344",
+      "sample_sku": "DWPIL-3344-Sample",
+      "mfr_sku": "ICONIC LEOPARD 22\" PILLOW Graphite",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17572206_00e4ce50-b838-4c54-9948-2cf263bda9b0.jpg?v=1747078193",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609171218483",
+      "base_sku": "DWPIL-3364",
+      "sample_sku": "DWPIL-3364-Sample",
+      "mfr_sku": "ICONIC LEOPARD 22\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17645306_9fff4a37-97c3-4877-810f-c4284cd3aa38.jpg?v=1747078190",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609171284019",
+      "base_sku": "DWPIL-3374",
+      "sample_sku": "DWPIL-3374-Sample",
+      "mfr_sku": "ICONIC LEOPARD 22\" PILLOW Linen",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17572106_fc5c10df-a067-42f6-bf69-50f1cd8663c2.jpg?v=1747078188",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609171349555",
+      "base_sku": "DWPIL-3384",
+      "sample_sku": "DWPIL-3384-Sample",
+      "mfr_sku": "ICONIC LEOPARD 22\" PILLOW Ink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17572006_3883c597-85bc-4394-b4c4-023517c661bd.jpg?v=1747078187",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609171415091",
+      "base_sku": "DWPIL-3394",
+      "sample_sku": "DWPIL-3394-Sample",
+      "mfr_sku": "ICONIC LEOPARD 24\" PILLOW Ink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17572007_67d02844-7bf9-4539-b558-fb5bf4dc66ef.jpg?v=1747078185",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609171480627",
+      "base_sku": "DWPIL-3404",
+      "sample_sku": "DWPIL-3404-Sample",
+      "mfr_sku": "ICONIC LEOPARD 24\" PILLOW Linen",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17572107_78c392ea-c8b1-445c-ac47-b556da66acee.jpg?v=1747078184",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609171546163",
+      "base_sku": "DWPIL-3414",
+      "sample_sku": "DWPIL-3414-Sample",
+      "mfr_sku": "ICONIC LEOPARD BOLSTER PILLOW Ink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17572016_bd962182-9e63-4cb6-865e-f70d4ced0532.jpg?v=1747078181",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609171644467",
+      "base_sku": "DWPIL-3424",
+      "sample_sku": "DWPIL-3424-Sample",
+      "mfr_sku": "ICONIC LEOPARD I/O 18\" PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17732304_3db8fe6f-ab5e-4fbe-a2f2-4811353f4e17.jpg?v=1747078179",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609171710003",
+      "base_sku": "DWPIL-3434",
+      "sample_sku": "DWPIL-3434-Sample",
+      "mfr_sku": "ICONIC LEOPARD I/O 18\" PILLOW Graphite",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17732404_87739df8-d942-4865-8293-fae78ca223ee.jpg?v=1747078177",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609171775539",
+      "base_sku": "DWPIL-3444",
+      "sample_sku": "DWPIL-3444-Sample",
+      "mfr_sku": "ICONIC LEOPARD BOLSTER PILLOW Ink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17732405_bc89613b-8417-46ab-812d-ab6fab9da697.jpg?v=1747078175",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609171873843",
+      "base_sku": "DWPIL-3454",
+      "sample_sku": "DWPIL-3454-Sample",
+      "mfr_sku": "ICONIC LEOPARD I/O 20\" PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17732305_f70b768c-e5a5-472c-a697-f7fea211ade0.jpg?v=1747078173",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609171906611",
+      "base_sku": "DWPIL-3464",
+      "sample_sku": "DWPIL-3464-Sample",
+      "mfr_sku": "ICONIC LEOPARD PILLOW Ink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17572015_0cd60512-b485-43d6-ac52-6152c8f784bb.jpg?v=1747078171",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609172070451",
+      "base_sku": "DWPIL-3484",
+      "sample_sku": "DWPIL-3484-Sample",
+      "mfr_sku": "IMPERIAL TRELLIS 18\" PILLOW Treillage/Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO264376304_16a4fb9c-2b3c-4503-8a4f-3cdb5c86a543.jpg?v=1747078168",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609172135987",
+      "base_sku": "DWPIL-3494",
+      "sample_sku": "DWPIL-3494-Sample",
+      "mfr_sku": "ICONIC LEOPARD PILLOW Ink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17807005_08fbf3db-b4cc-4d49-b9b6-099f0df7b7c8.jpg?v=1747078166",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609172267059",
+      "base_sku": "DWPIL-3514",
+      "sample_sku": "DWPIL-3514-Sample",
+      "mfr_sku": "INK SPLASH 18\" PILLOW Red&Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17971004_01216d4a-185e-43c6-b768-4db7c80d8fc7.jpg?v=1747078162",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609172365363",
+      "base_sku": "DWPIL-3524",
+      "sample_sku": "DWPIL-3524-Sample",
+      "mfr_sku": "INDIO & PRESIDIO IKAT PILLOW Green",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17971005_f6d6f71e-db52-4896-8ec3-d27d1e8962dc.jpg?v=1747078161",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609172430899",
+      "base_sku": "DWPIL-3534",
+      "sample_sku": "DWPIL-3534-Sample",
+      "mfr_sku": "INDIO & PRESIDIO IKAT PILLOW Green",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17971006_77921ee5-e335-4064-8387-91bd1d85dfea.jpg?v=1747078159",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609172496435",
+      "base_sku": "DWPIL-3544",
+      "sample_sku": "DWPIL-3544-Sample",
+      "mfr_sku": "ISLA HAND EMBROIDERY 16\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7749003_c333699d-362e-4145-a2f1-da277932023e.jpg?v=1747078151",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609172594739",
+      "base_sku": "DWPIL-3554",
+      "sample_sku": "DWPIL-3554-Sample",
+      "mfr_sku": "ISOLDE STRIPE 16\" PILLOW Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7675203_85f47a60-11cb-4f6d-b999-336951e42b33.jpg?v=1747078149",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609172693043",
+      "base_sku": "DWPIL-3564",
+      "sample_sku": "DWPIL-3564-Sample",
+      "mfr_sku": "ISOLDE STRIPE 18\" PILLOW Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7675204_dd6c6d2d-4f03-464e-921c-e895e20b7af9.jpg?v=1747078147",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609172824115",
+      "base_sku": "DWPIL-3574",
+      "sample_sku": "DWPIL-3574-Sample",
+      "mfr_sku": "ISOLDE STRIPE 20\" PILLOW Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7675205_5b7e1812-4b34-4d91-adc5-3afe34dc39bb.jpg?v=1747078145",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609172889651",
+      "base_sku": "DWPIL-3584",
+      "sample_sku": "DWPIL-3584-Sample",
+      "mfr_sku": "IZMIR STRIPE 20\" PILLOW Indigo",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6947105_f8ec2b38-a88e-4a1d-807f-fb1662680963.jpg?v=1747078144",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609172987955",
+      "base_sku": "DWPIL-3594",
+      "sample_sku": "DWPIL-3594-Sample",
+      "mfr_sku": "JACKIE APPLIQUE 20\" PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7730105_2552af7d-9131-454a-8104-545146d667fa.jpg?v=1747078142",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609173053491",
+      "base_sku": "DWPIL-3604",
+      "sample_sku": "DWPIL-3604-Sample",
+      "mfr_sku": "JACKIE APPLIQUE 20\" PILLOW Natural",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7730005_baa183b9-b62e-4bb5-9fc3-3837a3554207.jpg?v=1747078140",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609173151795",
+      "base_sku": "DWPIL-3614",
+      "sample_sku": "DWPIL-3614-Sample",
+      "mfr_sku": "JAHANARA CARPET 20\" PILLOW Jade",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17279305_0fc0c0e6-0475-4979-8001-7659b05aed9f.jpg?v=1747078138",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609173184563",
+      "base_sku": "DWPIL-3624",
+      "sample_sku": "DWPIL-3624-Sample",
+      "mfr_sku": "JAIPUR LINEN EMBROIDERY PILLOW Flax",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6580018_401cf051-20a1-40f9-8d76-8359e4fcb7ac.jpg?v=1747078135",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609173282867",
+      "base_sku": "DWPIL-3644",
+      "sample_sku": "DWPIL-3644-Sample",
+      "mfr_sku": "JAKE PILLOW Quiet",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17843012_8307d2ed-1b18-4461-89c9-452497d1f5ba.jpg?v=1747078132",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609173545011",
+      "base_sku": "DWPIL-3674",
+      "sample_sku": "DWPIL-3674-Sample",
+      "mfr_sku": "JAKE PILLOW Quiet",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7774016_d5aced13-675d-44b7-93c7-21fdaafb69e7.jpg?v=1747078125",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609173610547",
+      "base_sku": "DWPIL-3684",
+      "sample_sku": "DWPIL-3684-Sample",
+      "mfr_sku": "JANIS VELVET PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7774116_888adf3e-71ea-4042-bef5-5ec128a0beec.jpg?v=1747078123",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609173708851",
+      "base_sku": "DWPIL-3694",
+      "sample_sku": "DWPIL-3694-Sample",
+      "mfr_sku": "JANIS VELVET PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7774216_ae5a8e83-edd4-4395-b5de-d0461ebd29b9.jpg?v=1747078122",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609173774387",
+      "base_sku": "DWPIL-3704",
+      "sample_sku": "DWPIL-3704-Sample",
+      "mfr_sku": "JENNIE VELVET BOLSTER PILLOW Midnight&Magenta",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7774218_10d5109a-eacb-45e9-ad0b-1d7805cb7098.jpg?v=1747078120",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609173970995",
+      "base_sku": "DWPIL-3724",
+      "sample_sku": "DWPIL-3724-Sample",
+      "mfr_sku": "JENNIE VELVET BOLSTER PILLOW Peacock&Celadon",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7723204_b0ffc0cf-662c-4da0-89c4-bac332388ae4.jpg?v=1747078117",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609174036531",
+      "base_sku": "DWPIL-3734",
+      "sample_sku": "DWPIL-3734-Sample",
+      "mfr_sku": "JENNIE VELVET PILLOW Peacock&Celadon",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7723004_d91d1270-6560-4953-96ed-b2b5e38b3cc5.jpg?v=1747078115",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609174200371",
+      "base_sku": "DWPIL-3744",
+      "sample_sku": "DWPIL-3744-Sample",
+      "mfr_sku": "JOKHANG TIGER VELVET PILLOW Brown&Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7723215_3e193305-5b47-48ad-904a-403276d65a5b.jpg?v=1747078113",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609174298675",
+      "base_sku": "DWPIL-3754",
+      "sample_sku": "DWPIL-3754-Sample",
+      "mfr_sku": "JUNO 18\" PILLOW Blanc",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7536004_56fecaaf-573c-45f8-bbd3-c1f0bcec12a8.jpg?v=1747078111",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609174364211",
+      "base_sku": "DWPIL-3764",
+      "sample_sku": "DWPIL-3764-Sample",
+      "mfr_sku": "KANDIRA 18\" PILLOW Blues",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17440304_df9e7547-af08-49ba-af00-d9c525b73756.jpg?v=1747078110",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609174462515",
+      "base_sku": "DWPIL-3774",
+      "sample_sku": "DWPIL-3774-Sample",
+      "mfr_sku": "JOKHANG TIGER VELVET PILLOW Brown&Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17440506_25237cc7-fdb0-4115-a73e-2c8df40791fa.jpg?v=1747078108",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609174528051",
+      "base_sku": "DWPIL-3784",
+      "sample_sku": "DWPIL-3784-Sample",
+      "mfr_sku": "KASHGAR VELVET IKAT 20\" PILLOW Peacock&Emerald",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17610405_4516e895-6b47-48aa-877c-a6f0721be65b.jpg?v=1747078107",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609174626355",
+      "base_sku": "DWPIL-3794",
+      "sample_sku": "DWPIL-3794-Sample",
+      "mfr_sku": "KATAMA 20\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17990105_c35d2d4e-db72-4aa1-beca-262f3b92d609.jpg?v=1747078106",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609174822963",
+      "base_sku": "DWPIL-3814",
+      "sample_sku": "DWPIL-3814-Sample",
+      "mfr_sku": "KATAMA 22\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17990106_2157902d-4bd2-4af2-b809-1235cd776beb.jpg?v=1747078103",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609174888499",
+      "base_sku": "DWPIL-3824",
+      "sample_sku": "DWPIL-3824-Sample",
+      "mfr_sku": "KATAMA 22\" PILLOW Caramel",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17990206_d0c5696d-5abb-4732-80f0-e9e1aa920eac.jpg?v=1747078101",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609174986803",
+      "base_sku": "DWPIL-3834",
+      "sample_sku": "DWPIL-3834-Sample",
+      "mfr_sku": "KAYENTA STRIPE PILLOW Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7745211_08406fb9-33a7-4edd-b3cf-2d90e6460f01.jpg?v=1747078100",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609175052339",
+      "base_sku": "DWPIL-3844",
+      "sample_sku": "DWPIL-3844-Sample",
+      "mfr_sku": "KHAN'S PARK PILLOW Chambray",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO260327515_6f596ba2-edbd-4015-8638-bc56124cc391.jpg?v=1747078098",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609175150643",
+      "base_sku": "DWPIL-3854",
+      "sample_sku": "DWPIL-3854-Sample",
+      "mfr_sku": "KHILANA FLORAL 20\" PILLOW Delft&Rose",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17833005_f7fbf020-783c-43f7-80e5-c381ad4cdfc1.jpg?v=1747078097",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609175248947",
+      "base_sku": "DWPIL-3864",
+      "sample_sku": "DWPIL-3864-Sample",
+      "mfr_sku": "KAYENTA STRIPE PILLOW Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO626800118_f1ae6455-116b-4150-8fc3-bb64dccc07d5.jpg?v=1747078095",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609175412787",
+      "base_sku": "DWPIL-3884",
+      "sample_sku": "DWPIL-3884-Sample",
+      "mfr_sku": "KIMONO IKAT 18\" PILLOW Berry",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7259004_dc96b0c2-6c45-472f-acbc-d82bacd1a393.jpg?v=1747078091",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609175478323",
+      "base_sku": "DWPIL-3894",
+      "sample_sku": "DWPIL-3894-Sample",
+      "mfr_sku": "KHOTAN WEAVE PILLOW Sable",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6997128_9c738585-0aa1-4348-bb39-a8f14a6a9f5d.jpg?v=1747078090",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609175576627",
+      "base_sku": "DWPIL-3904",
+      "sample_sku": "DWPIL-3904-Sample",
+      "mfr_sku": "KHOTAN WEAVE PILLOW Sable",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8028106_267b9a7c-2df2-478d-ab6b-465cccefe0cf.jpg?v=1747078088",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609175642163",
+      "base_sku": "DWPIL-3914",
+      "sample_sku": "DWPIL-3914-Sample",
+      "mfr_sku": "LADYBIRD PILLOW Yellow&Pink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7739110_d720ac3b-e348-4f78-95c1-8823a3d71b7c.jpg?v=1747078087",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609175773235",
+      "base_sku": "DWPIL-3924",
+      "sample_sku": "DWPIL-3924-Sample",
+      "mfr_sku": "KUDU STRIPE PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7746012_6e1e9b64-563c-44a8-ab18-5f3a217e4ac6.jpg?v=1747078085",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609175969843",
+      "base_sku": "DWPIL-3944",
+      "sample_sku": "DWPIL-3944-Sample",
+      "mfr_sku": "LADYBIRD PILLOW Yellow&Pink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7227003_4ac0f935-0787-44b2-81db-b0c0a302b3f6.jpg?v=1747078082",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609176133683",
+      "base_sku": "DWPIL-3954",
+      "sample_sku": "DWPIL-3954-Sample",
+      "mfr_sku": "LARSON PILLOW Yellow&Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7227004_91a7428b-b884-4b82-92cb-e680263a69bf.jpg?v=1747078080",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609176166451",
+      "base_sku": "DWPIL-3964",
+      "sample_sku": "DWPIL-3964-Sample",
+      "mfr_sku": "LE CASTELLET PILLOW Indigo",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7227005_f26b4210-103a-414c-8969-7407c576d469.jpg?v=1747078078",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609176199219",
+      "base_sku": "DWPIL-3974",
+      "sample_sku": "DWPIL-3974-Sample",
+      "mfr_sku": "LE MATELOT 16\" PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7229003_b0c571fe-4c80-494d-a691-53adb461bd61.jpg?v=1747078077",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609176264755",
+      "base_sku": "DWPIL-3984",
+      "sample_sku": "DWPIL-3984-Sample",
+      "mfr_sku": "LE MATELOT 16\" PILLOW Peacock",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7229103_fc58d38c-6cb7-483a-8612-1d962d75f36d.jpg?v=1747078075",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609176363059",
+      "base_sku": "DWPIL-3994",
+      "sample_sku": "DWPIL-3994-Sample",
+      "mfr_sku": "LE MATELOT 18\" PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7229004_987f50dd-951e-4f7a-a06e-296caf369eb8.jpg?v=1747078073",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609176428595",
+      "base_sku": "DWPIL-4004",
+      "sample_sku": "DWPIL-4004-Sample",
+      "mfr_sku": "LE MATELOT 18\" PILLOW Peacock",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7229104_b4bb593e-222e-47f5-9945-1aca6ac5a8fe.jpg?v=1747078072",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609176494131",
+      "base_sku": "DWPIL-4014",
+      "sample_sku": "DWPIL-4014-Sample",
+      "mfr_sku": "LE MATELOT 20\" PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7229005_9f1c66d3-749e-4812-bfc5-582cacb88e76.jpg?v=1747078070",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609176559667",
+      "base_sku": "DWPIL-4024",
+      "sample_sku": "DWPIL-4024-Sample",
+      "mfr_sku": "LE MATELOT 20\" PILLOW Peacock",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7229105_d4723dca-3905-4f6c-a01a-229f114cbd95.jpg?v=1747078060",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609176657971",
+      "base_sku": "DWPIL-4034",
+      "sample_sku": "DWPIL-4034-Sample",
+      "mfr_sku": "LE MATELOT PILLOW Peacock",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7229113_61144e41-a992-4259-a5ad-cdd502a5f1c6.jpg?v=1747078058",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609176821811",
+      "base_sku": "DWPIL-4054",
+      "sample_sku": "DWPIL-4054-Sample",
+      "mfr_sku": "LE MATELOT PILLOW Charcoal",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7229314_cfc18696-0257-4007-9aec-5cc5147d82cb.jpg?v=1747078055",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609176854579",
+      "base_sku": "DWPIL-4064",
+      "sample_sku": "DWPIL-4064-Sample",
+      "mfr_sku": "LE MATELOT PILLOW Peacock",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17774103_22a46b55-ef4a-4988-a645-c095b58bda58.jpg?v=1747078053",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609176920115",
+      "base_sku": "DWPIL-4074",
+      "sample_sku": "DWPIL-4074-Sample",
+      "mfr_sku": "LE MATELOT PILLOW Peacock",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17774003_d874e029-eabd-472e-ad52-45f0117fff5a.jpg?v=1747078052",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609177018419",
+      "base_sku": "DWPIL-4084",
+      "sample_sku": "DWPIL-4084-Sample",
+      "mfr_sku": "LE MATELOT PILLOW Charcoal",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17774104_cb5f8891-c37c-4c8d-88e7-f651f2cd3fc6.jpg?v=1747078050",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609177116723",
+      "base_sku": "DWPIL-4094",
+      "sample_sku": "DWPIL-4094-Sample",
+      "mfr_sku": "LEAPING LEOPARDS 20\" PILLOW Sand",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17774105_6f20ee61-d049-41f0-ae62-8697eed6b557.jpg?v=1747078049",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609177215027",
+      "base_sku": "DWPIL-4104",
+      "sample_sku": "DWPIL-4104-Sample",
+      "mfr_sku": "LEAPING LEOPARDS PILLOW Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17774002_bdb83c8f-e525-44c3-b267-25ac1e041e2f.jpg?v=1747078047",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609177280563",
+      "base_sku": "DWPIL-4114",
+      "sample_sku": "DWPIL-4114-Sample",
+      "mfr_sku": "LELAND STRIPE 18\" PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8014204_f463ae68-737b-4a5a-a42a-d8926dffb36e.jpg?v=1747078046",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609177378867",
+      "base_sku": "DWPIL-4124",
+      "sample_sku": "DWPIL-4124-Sample",
+      "mfr_sku": "LELAND STRIPE 20\" PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8014205_2d2021ae-357f-4498-982e-dc59903912b8.jpg?v=1747078044",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609177444403",
+      "base_sku": "DWPIL-4134",
+      "sample_sku": "DWPIL-4134-Sample",
+      "mfr_sku": "LEAPING LEOPARDS PILLOW Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8014206_2078e5dd-dfc9-4885-9601-1fa23621629e.jpg?v=1747078043",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609177542707",
+      "base_sku": "DWPIL-4144",
+      "sample_sku": "DWPIL-4144-Sample",
+      "mfr_sku": "LES FOUGERES 18\" PILLOW Document",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17409004_722df0f8-908b-4341-9076-df49f8098f60.jpg?v=1747078041",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609177575475",
+      "base_sku": "DWPIL-4154",
+      "sample_sku": "DWPIL-4154-Sample",
+      "mfr_sku": "LES SCENES CONTEMPORAINE PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17956105_04f7c87e-ec10-4a12-b2b3-4bdcbb282f63.jpg?v=1747078039",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609177837619",
+      "base_sku": "DWPIL-4194",
+      "sample_sku": "DWPIL-4194-Sample",
+      "mfr_sku": "LILYA LEOPARD SPHERE PILLOW Natural",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7896001_83991561-a208-4fe7-b523-79de254220a2.jpg?v=1747078032",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609177935923",
+      "base_sku": "DWPIL-4204",
+      "sample_sku": "DWPIL-4204-Sample",
+      "mfr_sku": "LINES PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7121015_81b61aca-6dd3-48a7-bc6d-475a63169065.jpg?v=1747078031",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609178099763",
+      "base_sku": "DWPIL-4224",
+      "sample_sku": "DWPIL-4224-Sample",
+      "mfr_sku": "LILYA LEOPARD SPHERE PILLOW Natural",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7302011_ca44f112-7c5a-456d-9379-73bd2e20b1e1.jpg?v=1747078028",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609178165299",
+      "base_sku": "DWPIL-4234",
+      "sample_sku": "DWPIL-4234-Sample",
+      "mfr_sku": "LINES PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7834003_291067b1-8442-4c0f-9ef1-748fb00ac468.jpg?v=1747078026",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609178230835",
+      "base_sku": "DWPIL-4244",
+      "sample_sku": "DWPIL-4244-Sample",
+      "mfr_sku": "LINES PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7834004_4003d6a7-68f8-4dcb-ba15-a125b0d918ac.jpg?v=1747078024",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609178296371",
+      "base_sku": "DWPIL-4254",
+      "sample_sku": "DWPIL-4254-Sample",
+      "mfr_sku": "LIONHEART APPLIQUE PILLOW Black&Gold",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17293804_d2164393-3cc7-4d37-8eba-a0ee9c743a03.jpg?v=1747078022",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609178394675",
+      "base_sku": "DWPIL-4264",
+      "sample_sku": "DWPIL-4264-Sample",
+      "mfr_sku": "LOTUS GARDEN 18\" PILLOW Lilac",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17293704_97c367af-3788-4a8a-be67-a27ccdb4f75e.jpg?v=1747078020",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609178492979",
+      "base_sku": "DWPIL-4274",
+      "sample_sku": "DWPIL-4274-Sample",
+      "mfr_sku": "LOTUS GARDEN 18\" PILLOW Jade",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17293504_3f335e04-7915-42f7-a7a5-520cb787d06d.jpg?v=1747078018",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609178558515",
+      "base_sku": "DWPIL-4284",
+      "sample_sku": "DWPIL-4284-Sample",
+      "mfr_sku": "LOTUS GARDEN 22\" PILLOW Mocha",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17293406_4748559f-8b9f-4e92-9347-561dc2f1dd00.jpg?v=1747078016",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609178624051",
+      "base_sku": "DWPIL-4294",
+      "sample_sku": "DWPIL-4294-Sample",
+      "mfr_sku": "LOTUS GARDEN 22\" PILLOW Lilac",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17293706_c13cdd8a-f9c4-445a-9427-b1a798f8e00c.jpg?v=1747078015",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609178689587",
+      "base_sku": "DWPIL-4304",
+      "sample_sku": "DWPIL-4304-Sample",
+      "mfr_sku": "LOTUS GARDEN 22\" PILLOW Aqua",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17293806_083dd31d-15a8-49b2-a0f8-b1c6cf2cb2b7.jpg?v=1747078013",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609178755123",
+      "base_sku": "DWPIL-4314",
+      "sample_sku": "DWPIL-4314-Sample",
+      "mfr_sku": "LOTUS GARDEN 22\" PILLOW Porcelain",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17904206_dcd0339f-f75f-42f0-bb6e-0e93cce0b4a7.jpg?v=1747078001",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609178820659",
+      "base_sku": "DWPIL-4324",
+      "sample_sku": "DWPIL-4324-Sample",
+      "mfr_sku": "LOTUS GARDEN PILLOW Lilac",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17293718_81e33749-9d9b-4196-ab5b-b7d7e29dde74.jpg?v=1747077999",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609179148339",
+      "base_sku": "DWPIL-4364",
+      "sample_sku": "DWPIL-4364-Sample",
+      "mfr_sku": "LOUDON ROSE PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7931012_d306eda3-9c05-4f07-a8d2-c61b75e1bf6a.jpg?v=1747077987",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609179246643",
+      "base_sku": "DWPIL-4374",
+      "sample_sku": "DWPIL-4374-Sample",
+      "mfr_sku": "LOUDON ROSE PILLOW Rose&Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6882504_3c7f1037-a389-4e54-bd0c-8b973071c43c.jpg?v=1747077985",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609179344947",
+      "base_sku": "DWPIL-4384",
+      "sample_sku": "DWPIL-4384-Sample",
+      "mfr_sku": "LUBECK STRIPE PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6882004_0fb5ad3c-8a20-4a78-aac0-9efc640a94ff.jpg?v=1747077984",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609179410483",
+      "base_sku": "DWPIL-4394",
+      "sample_sku": "DWPIL-4394-Sample",
+      "mfr_sku": "LULA EMBROIDERED PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6882404_d66de6c0-da30-449b-be2f-b1e58dcaff4b.jpg?v=1747077982",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609179607091",
+      "base_sku": "DWPIL-4414",
+      "sample_sku": "DWPIL-4414-Sample",
+      "mfr_sku": "MADELEINE VELVET 20\" PILLOW Midnight",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6882005_31a7d8ad-c071-451e-aaf8-c8e943c8f57b.jpg?v=1747077978",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609179705395",
+      "base_sku": "DWPIL-4424",
+      "sample_sku": "DWPIL-4424-Sample",
+      "mfr_sku": "MADELEINE VELVET 20\" PILLOW Cadet",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6882405_5e944fe6-8c9b-4f58-b696-63d5b95dc57b.jpg?v=1747077977",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609179770931",
+      "base_sku": "DWPIL-4434",
+      "sample_sku": "DWPIL-4434-Sample",
+      "mfr_sku": "MADELEINE VELVET 22\" PILLOW Emerald",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6882506_182d2acc-2bc4-403c-8a22-d2269276362d.jpg?v=1747077975",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609179869235",
+      "base_sku": "DWPIL-4444",
+      "sample_sku": "DWPIL-4444-Sample",
+      "mfr_sku": "MADELEINE VELVET 22\" PILLOW Cadet",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6882406_ad917eb5-6af9-45bc-994c-158f7d7449fd.jpg?v=1747077973",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609180033075",
+      "base_sku": "DWPIL-4454",
+      "sample_sku": "DWPIL-4454-Sample",
+      "mfr_sku": "MADELEINE VELVET 22\" PILLOW Midnight",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6882006_3f6f1036-ca31-4d2e-9f86-1db8a7375faa.jpg?v=1747077972",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609180229683",
+      "base_sku": "DWPIL-4464",
+      "sample_sku": "DWPIL-4464-Sample",
+      "mfr_sku": "MADELEINE VELVET 24\" PILLOW Emerald",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6882507_f8a5414e-2767-48f0-bd16-b3d016885c6b.jpg?v=1747077970",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609180327987",
+      "base_sku": "DWPIL-4474",
+      "sample_sku": "DWPIL-4474-Sample",
+      "mfr_sku": "MADELEINE VELVET 24\" PILLOW Midnight",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6882007_01f39e53-d110-4e25-8db2-0412a542543d.jpg?v=1747077968",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609180491827",
+      "base_sku": "DWPIL-4484",
+      "sample_sku": "DWPIL-4484-Sample",
+      "mfr_sku": "MADELEINE VELVET 24\" PILLOW Cadet",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6882407_9a6eef6f-66c8-4e7d-85ad-7ea0a2e63089.jpg?v=1747077967",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609180590131",
+      "base_sku": "DWPIL-4494",
+      "sample_sku": "DWPIL-4494-Sample",
+      "mfr_sku": "MAGGIORE DAMASCO 18\" PILLOW Midnight",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7128004_161300be-ea14-433a-905e-e00f47aa1684.jpg?v=1747077965",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609180655667",
+      "base_sku": "DWPIL-4504",
+      "sample_sku": "DWPIL-4504-Sample",
+      "mfr_sku": "MAGIC MOUNTAIN DRAGON PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17805004_394befce-5c66-4c0a-8daa-2e2937e04817.jpg?v=1747077963",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609180786739",
+      "base_sku": "DWPIL-4514",
+      "sample_sku": "DWPIL-4514-Sample",
+      "mfr_sku": "MAGICAL MING DRAGON 20\" PILLOW Brown&Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17859205_961e5034-ce01-4e84-ac04-25c76dde1f8b.jpg?v=1747077961",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609180885043",
+      "base_sku": "DWPIL-4524",
+      "sample_sku": "DWPIL-4524-Sample",
+      "mfr_sku": "MAGICAL MING DRAGON 20\" PILLOW Yellow&Red",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17859105_b262a045-3f4e-4c9e-92f4-a14da3f1e403.jpg?v=1747077959",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609181114419",
+      "base_sku": "DWPIL-4554",
+      "sample_sku": "DWPIL-4554-Sample",
+      "mfr_sku": "MANTA PERFORMANCE 22\" PILLOW Blue&Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7744206_7d9eef33-cc40-47bb-952b-ef1f71543638.jpg?v=1747077956",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609181212723",
+      "base_sku": "DWPIL-4564",
+      "sample_sku": "DWPIL-4564-Sample",
+      "mfr_sku": "MALABAR VINE PILLOW Sky&Rose",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7565218_7b3f3017-f1c3-4acd-be6c-ba89514248f6.jpg?v=1747077954",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609181278259",
+      "base_sku": "DWPIL-4574",
+      "sample_sku": "DWPIL-4574-Sample",
+      "mfr_sku": "MANDEVILLE PILLOW Indigo",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17685004_67ac81cd-acaf-4234-bdd0-a5f50477321e.jpg?v=1747077951",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609181343795",
+      "base_sku": "DWPIL-4584",
+      "sample_sku": "DWPIL-4584-Sample",
+      "mfr_sku": "MARELLA 22\" PILLOW Delft",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17685006_3378ce37-84bf-4e8c-a0e9-caf211f07a4f.jpg?v=1747077950",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609181442099",
+      "base_sku": "DWPIL-4594",
+      "sample_sku": "DWPIL-4594-Sample",
+      "mfr_sku": "MARACANA POM PILLOW Flax",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8053104_4277ba41-8bf2-4d1b-81c0-b71cce9d3338.jpg?v=1747077948",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609181540403",
+      "base_sku": "DWPIL-4604",
+      "sample_sku": "DWPIL-4604-Sample",
+      "mfr_sku": "MARGARETE 18\" PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8053104_796f07cc-4102-410a-b9a8-abbd3ca34095.jpg?v=1747077947",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609181638707",
+      "base_sku": "DWPIL-4614",
+      "sample_sku": "DWPIL-4614-Sample",
+      "mfr_sku": "MARGARETE 20\" PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8053105_ace7cbc3-dc70-48d5-8e5d-b45a395ed441.jpg?v=1747077945",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609181769779",
+      "base_sku": "DWPIL-4624",
+      "sample_sku": "DWPIL-4624-Sample",
+      "mfr_sku": "MARGARETE 20\" PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8053105_36ef2841-1c16-4098-952e-28a46905a805.jpg?v=1747077943",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609181835315",
+      "base_sku": "DWPIL-4634",
+      "sample_sku": "DWPIL-4634-Sample",
+      "mfr_sku": "MARGARETE 22\" PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8053106_c85f3b1d-0fdb-45b6-b654-c6996010eda3.jpg?v=1747077942",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609181966387",
+      "base_sku": "DWPIL-4644",
+      "sample_sku": "DWPIL-4644-Sample",
+      "mfr_sku": "MARGARETE 22\" PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8053106_3f6a578d-767a-4943-a9f0-1030a7309d8c.jpg?v=1747077940",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609182031923",
+      "base_sku": "DWPIL-4654",
+      "sample_sku": "DWPIL-4654-Sample",
+      "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Blue&Ochre",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO723320209_a1d08e43-ebc8-4a3a-ac10-c98d5be7a884.jpg?v=1747077939",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609182130227",
+      "base_sku": "DWPIL-4664",
+      "sample_sku": "DWPIL-4664-Sample",
+      "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Blue&Ochre",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO723320109_a1e8514c-9e38-4d61-b109-883516c4948c.jpg?v=1747077937",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609182261299",
+      "base_sku": "DWPIL-4674",
+      "sample_sku": "DWPIL-4674-Sample",
+      "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Blos",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO723310109_80bea660-c68c-4e99-8992-3ea7acf23e00.jpg?v=1747077935",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609182326835",
+      "base_sku": "DWPIL-4684",
+      "sample_sku": "DWPIL-4684-Sample",
+      "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Blue&Ochre",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO723310209_55d11b4c-7afd-4719-80de-25f7dd5715e8.jpg?v=1747077933",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609182392371",
+      "base_sku": "DWPIL-4694",
+      "sample_sku": "DWPIL-4694-Sample",
+      "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Blue&Ochre",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO723330109_cfa1d251-575b-4cdd-90fb-c30d9f068617.jpg?v=1747077931",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609182490675",
+      "base_sku": "DWPIL-4704",
+      "sample_sku": "DWPIL-4704-Sample",
+      "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Blos",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO723330209_682fd73c-efd5-4bb9-9878-0390fc5395ce.jpg?v=1747077929",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609182720051",
+      "base_sku": "DWPIL-4734",
+      "sample_sku": "DWPIL-4734-Sample",
+      "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Buttercup",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6900013_6a0157bf-9df0-4dc1-9d78-e2e63f31301e.jpg?v=1747077923",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609182818355",
+      "base_sku": "DWPIL-4744",
+      "sample_sku": "DWPIL-4744-Sample",
+      "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17932006_a90d14f2-10c8-4cfd-af2b-bbe6d4de19cf.jpg?v=1747077910",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609182916659",
+      "base_sku": "DWPIL-4754",
+      "sample_sku": "DWPIL-4754-Sample",
+      "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO5550_890a9475-d01b-4873-a87c-323510959f1d.jpg?v=1747077908",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609182982195",
+      "base_sku": "DWPIL-4764",
+      "sample_sku": "DWPIL-4764-Sample",
+      "mfr_sku": "MARIA PILLOW Raven",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO5560_5fd08f8f-380b-41b3-9172-5b5a1eb37602.jpg?v=1747077905",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609183080499",
+      "base_sku": "DWPIL-4774",
+      "sample_sku": "DWPIL-4774-Sample",
+      "mfr_sku": "MARKOVA STRIPE PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7860018_54fc0a8a-9380-4f2c-ad9a-24ab10248325.jpg?v=1747077904",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609183146035",
+      "base_sku": "DWPIL-4784",
+      "sample_sku": "DWPIL-4784-Sample",
+      "mfr_sku": "MARIPOSA A Red&Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17961005_9cfb7730-37b3-4e3b-bf32-89ebf50a55de.jpg?v=1747077902",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609183244339",
+      "base_sku": "DWPIL-4794",
+      "sample_sku": "DWPIL-4794-Sample",
+      "mfr_sku": "MARIPOSA B Red&Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17972004_05403369-d253-4530-9116-22927fbccd03.jpg?v=1747077900",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609183375411",
+      "base_sku": "DWPIL-4804",
+      "sample_sku": "DWPIL-4804-Sample",
+      "mfr_sku": "MARKOVA STRIPE PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17972104_5bfd4d18-495e-4a6e-8c16-f8990fb506fc.jpg?v=1747077899",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609183440947",
+      "base_sku": "DWPIL-4814",
+      "sample_sku": "DWPIL-4814-Sample",
+      "mfr_sku": "MEADOW ROCK 18\" PILLOW Blush",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17972204_8fe0626d-3ea8-4255-9d13-c4807904f72a.jpg?v=1747077897",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609183539251",
+      "base_sku": "DWPIL-4824",
+      "sample_sku": "DWPIL-4824-Sample",
+      "mfr_sku": "MEADOW ROCK 20\" PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17972005_3a38ed04-45e7-49ca-8cfb-70683cc78dc1.jpg?v=1747077896",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609183703091",
+      "base_sku": "DWPIL-4844",
+      "sample_sku": "DWPIL-4844-Sample",
+      "mfr_sku": "MEADOW ROCK 20\" PILLOW Blush",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17972205_c7691228-10e0-4b28-9b0f-ed6c3fdfa9a0.jpg?v=1747077892",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609183801395",
+      "base_sku": "DWPIL-4854",
+      "sample_sku": "DWPIL-4854-Sample",
+      "mfr_sku": "MEADOW ROCK 22\" PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17972006_c71ba7c2-336c-4daa-9310-12381145c552.jpg?v=1747077890",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609183899699",
+      "base_sku": "DWPIL-4864",
+      "sample_sku": "DWPIL-4864-Sample",
+      "mfr_sku": "MEADOW ROCK 22\" PILLOW Natural",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17972106_06f0b73b-db15-49aa-8a61-70e9e4b419c9.jpg?v=1747077889",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609183965235",
+      "base_sku": "DWPIL-4874",
+      "sample_sku": "DWPIL-4874-Sample",
+      "mfr_sku": "MEADOW ROCK 22\" PILLOW Blush",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17972206_7cdcf541-851d-44e9-950c-ae6eb6b7a71c.jpg?v=1747077887",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609184063539",
+      "base_sku": "DWPIL-4884",
+      "sample_sku": "DWPIL-4884-Sample",
+      "mfr_sku": "MING FRET 18\" VELVET PILLOW Bronze",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7310204_b7208dde-dcac-4d65-a37d-bf7b2484da3a.jpg?v=1747077885",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609184358451",
+      "base_sku": "DWPIL-4914",
+      "sample_sku": "DWPIL-4914-Sample",
+      "mfr_sku": "MING FRET VELVET 18\" PILLOW Mineral&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7310004_1d7fc310-c7f4-427f-8705-903346712fc8.jpg?v=1747077877",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609184587827",
+      "base_sku": "DWPIL-4944",
+      "sample_sku": "DWPIL-4944-Sample",
+      "mfr_sku": "MING FRET VELVET 20\" PILLOW Mineral&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7310005_13a20308-64a9-4e5f-8f8e-1848e19f2291.jpg?v=1747077869",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609184718899",
+      "base_sku": "DWPIL-4954",
+      "sample_sku": "DWPIL-4954-Sample",
+      "mfr_sku": "MING FRET VELVET 20\" PILLOW Bronze",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7310205_dd5f5937-5f35-433f-97d9-45086f2320c8.jpg?v=1747077867",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609184948275",
+      "base_sku": "DWPIL-4984",
+      "sample_sku": "DWPIL-4984-Sample",
+      "mfr_sku": "MING FRET VELVET 22\" PILLOW Bronze",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7310206_7ea67ed4-808e-47ec-b4aa-88b4e1c89e45.jpg?v=1747077861",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609185046579",
+      "base_sku": "DWPIL-4994",
+      "sample_sku": "DWPIL-4994-Sample",
+      "mfr_sku": "MING FRET VELVET 22\" PILLOW Mineral&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7310006_36349d4c-b595-4a36-b7db-7920d9cafc08.jpg?v=1747077859",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609185275955",
+      "base_sku": "DWPIL-5024",
+      "sample_sku": "DWPIL-5024-Sample",
+      "mfr_sku": "MING FRET VELVET 24\" PILLOW Mineral&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7310007_b3b53c1b-3d32-46b9-8b01-a89e232bf302.jpg?v=1747077854",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609185341491",
+      "base_sku": "DWPIL-5034",
+      "sample_sku": "DWPIL-5034-Sample",
+      "mfr_sku": "MING FRET VELVET 24\" PILLOW Bronze",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7310207_03ec56c3-ddd2-40e6-ac20-b94eea3eb122.jpg?v=1747077852",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609185439795",
+      "base_sku": "DWPIL-5044",
+      "sample_sku": "DWPIL-5044-Sample",
+      "mfr_sku": "MING VASE 18\" PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17673204_990180ce-60e3-4ec8-968c-5f8d21ea241f.jpg?v=1747077850",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609185538099",
+      "base_sku": "DWPIL-5054",
+      "sample_sku": "DWPIL-5054-Sample",
+      "mfr_sku": "MIXCO PILLOW Jewel",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7927013_cc346361-e827-4e9c-b51e-d657c092194f.jpg?v=1747077847",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609185603635",
+      "base_sku": "DWPIL-5064",
+      "sample_sku": "DWPIL-5064-Sample",
+      "mfr_sku": "MODERN TOILE 20\" BOX PILLOW Pink&Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17862305_79ab9696-d7e8-42d3-a037-077b00ee0eae.jpg?v=1747077845",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609185767475",
+      "base_sku": "DWPIL-5074",
+      "sample_sku": "DWPIL-5074-Sample",
+      "mfr_sku": "MODERN TOILE 20\" BOX PILLOW Indigo",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO1786200205_4f29c7b5-87ba-4db3-b5b3-abfab83a1936.jpg?v=1747077843",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609185898547",
+      "base_sku": "DWPIL-5094",
+      "sample_sku": "DWPIL-5094-Sample",
+      "mfr_sku": "MODERN TOILE 20\" BOX PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17862105_55ddb71f-b4a4-44fb-b841-b38ecdaaa8da.jpg?v=1747077839",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609185996851",
+      "base_sku": "DWPIL-5104",
+      "sample_sku": "DWPIL-5104-Sample",
+      "mfr_sku": "MOHAVE PILLOW Natural&Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17718017_6a476492-30aa-4486-9e3e-a8b721b8951b.jpg?v=1747077837",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609186127923",
+      "base_sku": "DWPIL-5114",
+      "sample_sku": "DWPIL-5114-Sample",
+      "mfr_sku": "MONA 18\" PILLOW Blackwork",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7261004_bc388d8d-9ea3-429a-aa7c-ce0fd53bb637.jpg?v=1747077835",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609186226227",
+      "base_sku": "DWPIL-5144",
+      "sample_sku": "DWPIL-5144-Sample",
+      "mfr_sku": "MONTECITO MEDALLION 18\" PILLOW Red&Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7648204_db7e97d6-3e10-49da-a945-68d31e17877f.jpg?v=1747077833",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609186291763",
+      "base_sku": "DWPIL-5154",
+      "sample_sku": "DWPIL-5154-Sample",
+      "mfr_sku": "MONTECITO MEDALLION 18\" PILLOW Indigo",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17648104_d0974ee5-2b88-4f1a-81ec-3fc707742d49.jpg?v=1747077831",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609186324531",
+      "base_sku": "DWPIL-5164",
+      "sample_sku": "DWPIL-5164-Sample",
+      "mfr_sku": "MONTECITO MEDALLION 20\" PILLOW Indigo",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17648105_b4e692d7-9513-4321-a9ad-bc02f984887a.jpg?v=1747077829",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609186422835",
+      "base_sku": "DWPIL-5174",
+      "sample_sku": "DWPIL-5174-Sample",
+      "mfr_sku": "MOON GARDEN 18\" PILLOW Pewter",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6685004_1f22a8e9-932f-43d1-acb6-45bd627cada0.jpg?v=1747077827",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609186521139",
+      "base_sku": "DWPIL-5184",
+      "sample_sku": "DWPIL-5184-Sample",
+      "mfr_sku": "MOOREA PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17583027_3a2b38e4-a6d4-42c5-86b1-cb710e96d31f.jpg?v=1747077818",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609186619443",
+      "base_sku": "DWPIL-5194",
+      "sample_sku": "DWPIL-5194-Sample",
+      "mfr_sku": "MOTTLEY GRID 16\" PILLOW Wren",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17786003_cf3d170c-fe1a-40c2-bd80-79337ccb31ce.jpg?v=1747077815",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609186816051",
+      "base_sku": "DWPIL-5204",
+      "sample_sku": "DWPIL-5204-Sample",
+      "mfr_sku": "MOTTLEY GRID 18\" PILLOW Wren",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17786004_71d00097-8ccd-4db0-91a9-8885dfa6076b.jpg?v=1747077812",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609187012659",
+      "base_sku": "DWPIL-5214",
+      "sample_sku": "DWPIL-5214-Sample",
+      "mfr_sku": "MOOREA PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17786005_27f77ff8-108b-49c9-8398-032100589b99.jpg?v=1747077809",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609187078195",
+      "base_sku": "DWPIL-5224",
+      "sample_sku": "DWPIL-5224-Sample",
+      "mfr_sku": "NAKURU LINEN VELVET 22\" PILLOW Mineral",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6473206_1a77db6e-345a-42f0-83d9-5a3111d737d9.jpg?v=1747077808",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609187176499",
+      "base_sku": "DWPIL-5234",
+      "sample_sku": "DWPIL-5234-Sample",
+      "mfr_sku": "NANCY 18\" PILLOW Grisaille&Green",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17720104_ac46a7b2-ee46-4d0a-b7fc-319b59b1d080.jpg?v=1747077806",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609187274803",
+      "base_sku": "DWPIL-5244",
+      "sample_sku": "DWPIL-5244-Sample",
+      "mfr_sku": "NANJING 18\" PILLOW Porcelain",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17443104_1bf9e40a-4d50-4a42-b576-3b0c3718e427.jpg?v=1747077804",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609187438643",
+      "base_sku": "DWPIL-5274",
+      "sample_sku": "DWPIL-5274-Sample",
+      "mfr_sku": "NEBAHA EMBROIDERY 20\" PILLOW Charcoal",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6579205_2346f882-286e-4a0a-b59b-ffe49b0e8f2f.jpg?v=1747077803",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609187536947",
+      "base_sku": "DWPIL-5284",
+      "sample_sku": "DWPIL-5284-Sample",
+      "mfr_sku": "NaturalSO7255018 Furniture&Acces",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6579206_39d53102-16eb-413b-aeed-0af463903270.jpg?v=1747077801",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609187602483",
+      "base_sku": "DWPIL-5304",
+      "sample_sku": "DWPIL-5304-Sample",
+      "mfr_sku": "NICOLETTE EMBROIDERY 22\" PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7820006_45793baf-000c-4ed0-afd9-89d21fde8af0.jpg?v=1747077800",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609187668019",
+      "base_sku": "DWPIL-5314",
+      "sample_sku": "DWPIL-5314-Sample",
+      "mfr_sku": "NOELIA PILLOW Hazel",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7415315_da838305-1dd5-4329-8fae-e0f82902959c.jpg?v=1747077798",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609187733555",
+      "base_sku": "DWPIL-5324",
+      "sample_sku": "DWPIL-5324-Sample",
+      "mfr_sku": "NeutralSO7919106 Furniture&Acces",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7279404_8e8d2f4b-76a7-49f2-a339-ceed3ceafa13.jpg?v=1747077796",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609187930163",
+      "base_sku": "DWPIL-5344",
+      "sample_sku": "DWPIL-5344-Sample",
+      "mfr_sku": "NOELIA PILLOW Hazel",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17761027_47e1549d-1f17-45fd-97a0-e2d9eb0be721.jpg?v=1747077793",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609188094003",
+      "base_sku": "DWPIL-5364",
+      "sample_sku": "DWPIL-5364-Sample",
+      "mfr_sku": "OMAR EMBROIDERY 18\" PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7194204_31d2699f-4044-44e2-9702-681ab4e77e14.jpg?v=1747077789",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609188159539",
+      "base_sku": "DWPIL-5374",
+      "sample_sku": "DWPIL-5374-Sample",
+      "mfr_sku": "OJAI PAISLEY PILLOW Red",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17986105_e58564d1-8fc1-45af-8e52-de7515ff538e.jpg?v=1747077788",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609188225075",
+      "base_sku": "DWPIL-5384",
+      "sample_sku": "DWPIL-5384-Sample",
+      "mfr_sku": "PALMETTO BEACH PILLOW Green",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7530015_e35dc02f-b4b2-4d67-a897-835c639c5ad7.jpg?v=1747077786",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609188290611",
+      "base_sku": "DWPIL-5394",
+      "sample_sku": "DWPIL-5394-Sample",
+      "mfr_sku": "PALMETTO PRINT 20\" PILLOW Lagoon",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17745005_00b9f08c-218c-4fa6-8222-08dfd98b3707.jpg?v=1747077784",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609188388915",
+      "base_sku": "DWPIL-5404",
+      "sample_sku": "DWPIL-5404-Sample",
+      "mfr_sku": "PALOMA EMBROIDERY PILLOW Ebony",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6879330_97fd7ef7-4107-469f-b3ee-00edfe4fc1bf.jpg?v=1747077783",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609188421683",
+      "base_sku": "DWPIL-5414",
+      "sample_sku": "DWPIL-5414-Sample",
+      "mfr_sku": "PALMETTO BEACH PILLOW Green",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7417021_39e74520-d0a2-44f9-b7b2-0ec4d57e0744.jpg?v=1747077781",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609188519987",
+      "base_sku": "DWPIL-5424",
+      "sample_sku": "DWPIL-5424-Sample",
+      "mfr_sku": "PAPILLON VELVET 18\" PILLOW Pewter",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7296104_ebdc765c-b554-4ffa-851a-dace99ebc8cf.jpg?v=1747077779",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609188585523",
+      "base_sku": "DWPIL-5434",
+      "sample_sku": "DWPIL-5434-Sample",
+      "mfr_sku": "PALOMA EMBROIDERY PILLOW Ebony",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17930304_9c01536a-7bad-4f6f-8dae-52c96e02489d.jpg?v=1747077777",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609188683827",
+      "base_sku": "DWPIL-5444",
+      "sample_sku": "DWPIL-5444-Sample",
+      "mfr_sku": "PANDORA EMBROIDERY PILLOW Delft&Rose",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17930305_fdf1bf3e-06e1-4374-87a4-7fc0fc89c09d.jpg?v=1747077775",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609188749363",
+      "base_sku": "DWPIL-5454",
+      "sample_sku": "DWPIL-5454-Sample",
+      "mfr_sku": "PATTEE & LUNA 22\" PILLOW Tumeric&Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17930306_edb4c64a-221a-49b0-a766-420d43f5e4fc.jpg?v=1747077773",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609188880435",
+      "base_sku": "DWPIL-5464",
+      "sample_sku": "DWPIL-5464-Sample",
+      "mfr_sku": "PAVONE VELVET PILLOW Carbon",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7297015_09c61c26-c4bd-4e13-a08a-7fc2257d1b8f.jpg?v=1747077771",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609304551475",
+      "base_sku": "DWPIL-5474",
+      "sample_sku": "DWPIL-5474-Sample",
+      "mfr_sku": "PAVONE VELVET PILLOW Peacock&Sand",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7297315.jpg?v=1747077270",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609188945971",
+      "base_sku": "DWPIL-5484",
+      "sample_sku": "DWPIL-5484-Sample",
+      "mfr_sku": "PEARL RIVER 22\" PILLOW Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17306606_fd51cbbe-f5b2-4d3e-987c-30cf5f45ce86.jpg?v=1747077770",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609189011507",
+      "base_sku": "DWPIL-5494",
+      "sample_sku": "DWPIL-5494-Sample",
+      "mfr_sku": "PAVONE VELVET PILLOW Carbon",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17854004_6b6a5473-5d98-4eb3-bc23-b7a9c3c52629.jpg?v=1747077768",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609189109811",
+      "base_sku": "DWPIL-5504",
+      "sample_sku": "DWPIL-5504-Sample",
+      "mfr_sku": "PAVONE VELVET PILLOW Peacock&Sand",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17854104_52f7730a-d44b-4202-9714-0287814da2cb.jpg?v=1747077766",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609189437491",
+      "base_sku": "DWPIL-5544",
+      "sample_sku": "DWPIL-5544-Sample",
+      "mfr_sku": "PERFORMANCE SILK VELVET PILLOW Merlot",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7273905_aa4901f5-6870-4f15-bebe-94a5c63b6984.jpg?v=1747077760",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609189503027",
+      "base_sku": "DWPIL-5554",
+      "sample_sku": "DWPIL-5554-Sample",
+      "mfr_sku": "PERFORMANCE SILK VELVET PILLOW Merlot",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7273906_7c08c4c1-b32f-422a-8f79-00e44d739c01.jpg?v=1747077759",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609189601331",
+      "base_sku": "DWPIL-5564",
+      "sample_sku": "DWPIL-5564-Sample",
+      "mfr_sku": "PERFORMANCE SILK VELVET PILLOW Merlot",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7200205_69fb417b-e628-47e5-b288-e5002ccfc607.jpg?v=1747077757",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609189732403",
+      "base_sku": "DWPIL-5574",
+      "sample_sku": "DWPIL-5574-Sample",
+      "mfr_sku": "PERFORMANCE SILK VELVET PILLOW Merlot",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17936218_dddc8b56-43ea-4733-b16e-72ebe28d0aac.jpg?v=1747077756",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609189797939",
+      "base_sku": "DWPIL-5584",
+      "sample_sku": "DWPIL-5584-Sample",
+      "mfr_sku": "PERFORMANCE SILK VELVET PILLOW Merlot",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17285404_32554894-8af8-4168-a9c4-7b3fbac87cde.jpg?v=1747077754",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609189863475",
+      "base_sku": "DWPIL-5594",
+      "sample_sku": "DWPIL-5594-Sample",
+      "mfr_sku": "POMEGRANATE PRINT 20\" PILLOW Petal",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17769305_d8a197f5-752a-4315-84c8-d2e7d04a2d3e.jpg?v=1747077752",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609190125619",
+      "base_sku": "DWPIL-5624",
+      "sample_sku": "DWPIL-5624-Sample",
+      "mfr_sku": "POPLAR I/O 20\" PILLOW Carbon",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7635005_87e2c2cc-42b7-480d-9440-e8d9664ec95c.jpg?v=1747077747",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609190223923",
+      "base_sku": "DWPIL-5634",
+      "sample_sku": "DWPIL-5634-Sample",
+      "mfr_sku": "POPLAR I/O 22\" PILLOW Carbon",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7635006_30c9ce2f-c4ae-4d21-be3a-17f26392d007.jpg?v=1747077746",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609190289459",
+      "base_sku": "DWPIL-5644",
+      "sample_sku": "DWPIL-5644-Sample",
+      "mfr_sku": "POPLAR I/O 24\" PILLOW Carbon",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7635007_5945afec-d064-43af-a650-37dcb7c8b522.jpg?v=1747077744",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609190354995",
+      "base_sku": "DWPIL-5654",
+      "sample_sku": "DWPIL-5654-Sample",
+      "mfr_sku": "PUNK ROCK PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO772700214_bdee58e8-2cd3-45b1-9fee-23c28fcbdf41.jpg?v=1747077743",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609190486067",
+      "base_sku": "DWPIL-5674",
+      "sample_sku": "DWPIL-5674-Sample",
+      "mfr_sku": "PYNE HOLLYHOCK 18\" PILLOW Indigo",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17445204_b2dfd9b4-14cb-4d83-abcc-ce4f55508480.jpg?v=1747077740",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609190551603",
+      "base_sku": "DWPIL-5684",
+      "sample_sku": "DWPIL-5684-Sample",
+      "mfr_sku": "PUNK ROCK PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17445004_2d87cc77-7997-4947-8d1b-cd2ad4b2f9c9.jpg?v=1747077738",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609190617139",
+      "base_sku": "DWPIL-5694",
+      "sample_sku": "DWPIL-5694-Sample",
+      "mfr_sku": "PUNK ROCK PILLOW Black&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17445006_baad8da5-3413-4795-847c-b4283ece7a35.jpg?v=1747077726",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609190682675",
+      "base_sku": "DWPIL-5714",
+      "sample_sku": "DWPIL-5714-Sample",
+      "mfr_sku": "QUEEN OF SPAIN 18\" PILLOW Natural",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17520504_1154e197-4458-4886-8f00-6ab0160efa92.jpg?v=1747077722",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609190748211",
+      "base_sku": "DWPIL-5724",
+      "sample_sku": "DWPIL-5724-Sample",
+      "mfr_sku": "QUEEN OF SPAIN 18\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17520604_4e864709-2bf1-479b-bb91-d2e29c4da832.jpg?v=1747077719",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609190846515",
+      "base_sku": "DWPIL-5734",
+      "sample_sku": "DWPIL-5734-Sample",
+      "mfr_sku": "QUEEN FRUIT CHINTZ PILLOW Ebony",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17520004_1ed62844-6ddc-4941-9dee-da80e4245738.jpg?v=1747077716",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609190944819",
+      "base_sku": "DWPIL-5744",
+      "sample_sku": "DWPIL-5744-Sample",
+      "mfr_sku": "QUEEN OF SPAIN 20\" PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17520005_2e880ca5-203c-4125-9d4d-4218ba0d4197.jpg?v=1747077714",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609191010355",
+      "base_sku": "DWPIL-5754",
+      "sample_sku": "DWPIL-5754-Sample",
+      "mfr_sku": "QUEEN OF SPAIN 20\" PILLOW Natural",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17520505_c81df361-3fa8-432b-93aa-b9505399dc2d.jpg?v=1747077712",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609191108659",
+      "base_sku": "DWPIL-5764",
+      "sample_sku": "DWPIL-5764-Sample",
+      "mfr_sku": "QUEEN OF SPAIN 20\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17520605_613aa570-16c2-45d3-bb42-605828a6198b.jpg?v=1747077709",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609191174195",
+      "base_sku": "DWPIL-5774",
+      "sample_sku": "DWPIL-5774-Sample",
+      "mfr_sku": "QUEEN OF SPAIN 22\" PILLOW Natural",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17520506_b57bb197-1778-41f3-b1d1-87ba2359ca2d.jpg?v=1747077707",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609191272499",
+      "base_sku": "DWPIL-5784",
+      "sample_sku": "DWPIL-5784-Sample",
+      "mfr_sku": "QUEEN OF SPAIN 22\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17520606_e0ad3714-ea99-40a7-a131-80c7c1f64ce1.jpg?v=1747077705",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609191370803",
+      "base_sku": "DWPIL-5794",
+      "sample_sku": "DWPIL-5794-Sample",
+      "mfr_sku": "QUEEN OF SPAIN 22\" PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17520006_7d00ba38-c852-49df-b933-323db4f16065.jpg?v=1747077703",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609191469107",
+      "base_sku": "DWPIL-5804",
+      "sample_sku": "DWPIL-5804-Sample",
+      "mfr_sku": "QUEEN OF SPAIN 24\" PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17520007_e1b9539b-33d1-407f-8465-c1b28a109569.jpg?v=1747077701",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609191600179",
+      "base_sku": "DWPIL-5814",
+      "sample_sku": "DWPIL-5814-Sample",
+      "mfr_sku": "QUEEN OF SPAIN PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17520015_dc493da7-091d-4e20-974a-b22f22a2526c.jpg?v=1747077699",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609191665715",
+      "base_sku": "DWPIL-5824",
+      "sample_sku": "DWPIL-5824-Sample",
+      "mfr_sku": "QUEEN OF SPAIN PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17520017_8338041f-c488-424d-8406-470d901fe8c0.jpg?v=1747077697",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609191764019",
+      "base_sku": "DWPIL-5834",
+      "sample_sku": "DWPIL-5834-Sample",
+      "mfr_sku": "RAFE STRIPE 18\" PILLOW Pink&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7582004_7a72447c-61ba-48b4-8525-e87384a01c3a.jpg?v=1747077695",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609191862323",
+      "base_sku": "DWPIL-5844",
+      "sample_sku": "DWPIL-5844-Sample",
+      "mfr_sku": "QUEEN OF SPAIN PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7582005_0b998a5f-983c-477b-9a82-f0ad4fffddc1.jpg?v=1747077692",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609191960627",
+      "base_sku": "DWPIL-5854",
+      "sample_sku": "DWPIL-5854-Sample",
+      "mfr_sku": "QUEEN OF SPAIN PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7582006_62a380d2-a34c-48b5-a3d9-1da866b94d8d.jpg?v=1747077690",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609192026163",
+      "base_sku": "DWPIL-5864",
+      "sample_sku": "DWPIL-5864-Sample",
+      "mfr_sku": "RAJA EMBROIDERY 18\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6581104_fe7dc453-cf6e-4269-ab54-dbd04274c0f0.jpg?v=1747077688",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609192124467",
+      "base_sku": "DWPIL-5874",
+      "sample_sku": "DWPIL-5874-Sample",
+      "mfr_sku": "RAJA EMBROIDERY 22\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6581106_7c2397c7-8d1c-4cce-8c6c-4e2d6be54059.jpg?v=1747077686",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609192190003",
+      "base_sku": "DWPIL-5884",
+      "sample_sku": "DWPIL-5884-Sample",
+      "mfr_sku": "REGALIA 20\" PILLOW Blue&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17730005_f1cf5787-53d7-44cb-ae26-6f9c7e1104dc.jpg?v=1747077684",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609192321075",
+      "base_sku": "DWPIL-5894",
+      "sample_sku": "DWPIL-5894-Sample",
+      "mfr_sku": "REGINE STRIE VELVET 20\" PILLOW Ebony",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7777105_c0194910-636d-4637-a369-92efaa85a380.jpg?v=1747077682",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609192386611",
+      "base_sku": "DWPIL-5904",
+      "sample_sku": "DWPIL-5904-Sample",
+      "mfr_sku": "REGINE STRIE VELVET 22\" PILLOW Ebony",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7777106_940cb36c-238b-49b5-bbef-37ea5b14be98.jpg?v=1747077680",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609192484915",
+      "base_sku": "DWPIL-5914",
+      "sample_sku": "DWPIL-5914-Sample",
+      "mfr_sku": "RHODES STRIPE 20\" PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7446005_1563367d-8518-467c-a67d-62c259aac4f8.jpg?v=1747077678",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609192615987",
+      "base_sku": "DWPIL-5924",
+      "sample_sku": "DWPIL-5924-Sample",
+      "mfr_sku": "RHODES STRIPE 22\" PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7446006_1f5ca358-ec27-44e2-8bf3-bfc470faa840.jpg?v=1747077676",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609192714291",
+      "base_sku": "DWPIL-5934",
+      "sample_sku": "DWPIL-5934-Sample",
+      "mfr_sku": "RHODES STRIPE 24\" PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7446007_f6cbbe46-314e-460b-bf3d-ca9fe41f1041.jpg?v=1747077675",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609192878131",
+      "base_sku": "DWPIL-5954",
+      "sample_sku": "DWPIL-5954-Sample",
+      "mfr_sku": "ROBERT BURNS PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17861011_07a4646d-cdda-4b0d-839c-1d3cb95f4049.jpg?v=1747077671",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609192976435",
+      "base_sku": "DWPIL-5964",
+      "sample_sku": "DWPIL-5964-Sample",
+      "mfr_sku": "ROCA REDONDA 22\" PILLOW Carbon&Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17877206_81099b10-9986-4430-9dca-f873bcb57c6a.jpg?v=1747077668",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609193074739",
+      "base_sku": "DWPIL-5974",
+      "sample_sku": "DWPIL-5974-Sample",
+      "mfr_sku": "ROLLING HILLS 18\" PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17738004_535e07eb-7f19-4d7b-94ce-fcc7e6e1b2bd.jpg?v=1747077666",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609193140275",
+      "base_sku": "DWPIL-5984",
+      "sample_sku": "DWPIL-5984-Sample",
+      "mfr_sku": "ROBERT BURNS PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17738005_a46b6ae0-d12c-42f8-83d6-2afafdf3d541.jpg?v=1747077664",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609193369651",
+      "base_sku": "DWPIL-6014",
+      "sample_sku": "DWPIL-6014-Sample",
+      "mfr_sku": "ROYAL SILK EMBROIDERY PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO79690102_90200420-ef44-4ad1-9291-78daacb896d0.jpg?v=1747077657",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609193435187",
+      "base_sku": "DWPIL-6024",
+      "sample_sku": "DWPIL-6024-Sample",
+      "mfr_sku": "ROLLING HILLS PILLOW Blues",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO79690202_532ee035-36af-4342-9336-fd455641a180.jpg?v=1747077655",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609193533491",
+      "base_sku": "DWPIL-6034",
+      "sample_sku": "DWPIL-6034-Sample",
+      "mfr_sku": "ROLLING HILLS PILLOW Blues",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO79690302_ef7eb6aa-92ab-4dc9-bde2-232b999a7206.jpg?v=1747077652",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609193599027",
+      "base_sku": "DWPIL-6044",
+      "sample_sku": "DWPIL-6044-Sample",
+      "mfr_sku": "ROYAL SILK EMBROIDERY PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7969034_d02ac0ff-b041-4f2d-a952-a47ee0707219.jpg?v=1747077650",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609193664563",
+      "base_sku": "DWPIL-6054",
+      "sample_sku": "DWPIL-6054-Sample",
+      "mfr_sku": "ROYAL SILK EMBROIDERY PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO79690402_cc5a0721-5b0f-446b-8d22-cace30e49a18.jpg?v=1747077647",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609193795635",
+      "base_sku": "DWPIL-6064",
+      "sample_sku": "DWPIL-6064-Sample",
+      "mfr_sku": "ROYAL SILK EMBROIDERY PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7416003_32670344-21e3-4d21-9070-4f3f3c4f41b8.jpg?v=1747077635",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609193861171",
+      "base_sku": "DWPIL-6074",
+      "sample_sku": "DWPIL-6074-Sample",
+      "mfr_sku": "ROYAL SILK EMBROIDERY PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7416004_a2032ebf-fa83-4c6a-b91e-6b32576adc23.jpg?v=1747077634",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609193926707",
+      "base_sku": "DWPIL-6084",
+      "sample_sku": "DWPIL-6084-Sample",
+      "mfr_sku": "ROYAL SILK EMBROIDERY PILLOW Multi",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO4318204_766517b3-bf2a-4cc9-a671-ef978ef4b147.jpg?v=1747077632",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609194188851",
+      "base_sku": "DWPIL-6114",
+      "sample_sku": "DWPIL-6114-Sample",
+      "mfr_sku": "SAMAR IKAT VELVET PILLOW Gold",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8024018_55f20223-58c1-496c-a066-fd58c8a92659.jpg?v=1747077627",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609194254387",
+      "base_sku": "DWPIL-6124",
+      "sample_sku": "DWPIL-6124-Sample",
+      "mfr_sku": "SAMBAR 20\" PILLOW Black&Gold",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7651105_bddfaa2f-63e8-4f78-a4c2-faf0f94d7f69.jpg?v=1747077625",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609194418227",
+      "base_sku": "DWPIL-6144",
+      "sample_sku": "DWPIL-6144-Sample",
+      "mfr_sku": "SAMAR IKAT VELVET PILLOW Gold",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7983118_bf07f353-35ac-4ad0-8f49-38a00ef911a6.jpg?v=1747077622",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609194483763",
+      "base_sku": "DWPIL-6154",
+      "sample_sku": "DWPIL-6154-Sample",
+      "mfr_sku": "SANDOWAY VINE 18\" PILLOW Linen",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17454304_e5e960c4-7ed0-4336-a350-6e210aef5036.jpg?v=1747077620",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609194582067",
+      "base_sku": "DWPIL-6164",
+      "sample_sku": "DWPIL-6164-Sample",
+      "mfr_sku": "SANGOMAR APPLIQUE 22\" PILLOW Citron",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7988006_09888fb0-bf71-45a2-8f46-6914f3209854.jpg?v=1747077619",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609194778675",
+      "base_sku": "DWPIL-6184",
+      "sample_sku": "DWPIL-6184-Sample",
+      "mfr_sku": "SANGOMAR APPLIQUE 22\" PILLOW Brown",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7995206_383ee223-d34c-4b70-a0e5-c26411710653.jpg?v=1747077616",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609194844211",
+      "base_sku": "DWPIL-6194",
+      "sample_sku": "DWPIL-6194-Sample",
+      "mfr_sku": "SANTA BARBARA IKAT PILLOW Indigo&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7422017_c0bd7969-27ad-41e4-9dcb-f68c248cc9db.jpg?v=1747077613",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609194942515",
+      "base_sku": "DWPIL-6214",
+      "sample_sku": "DWPIL-6214-Sample",
+      "mfr_sku": "SANTA MONICA IKAT PILLOW Neutral",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17650022_3ffa729f-7749-4e62-b667-a261135b5cb2.jpg?v=1747077611",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609195008051",
+      "base_sku": "DWPIL-6224",
+      "sample_sku": "DWPIL-6224-Sample",
+      "mfr_sku": "SANTA BARBARA IKAT PILLOW Indigo&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17650214_9fb1e052-02e7-4468-a0ef-31f1ddde48af.jpg?v=1747077608",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609195106355",
+      "base_sku": "DWPIL-6234",
+      "sample_sku": "DWPIL-6234-Sample",
+      "mfr_sku": "SANTA MONICA IKAT PILLOW Indigo Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17650222_b2138846-e770-4974-83db-d5d07e16a1e3.jpg?v=1747077604",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609195204659",
+      "base_sku": "DWPIL-6244",
+      "sample_sku": "DWPIL-6244-Sample",
+      "mfr_sku": "SANTA MONICA IKAT PILLOW Neutral",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17430404_8d40958d-3830-4d81-9c00-380239f3bd39.jpg?v=1747077602",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609195302963",
+      "base_sku": "DWPIL-6254",
+      "sample_sku": "DWPIL-6254-Sample",
+      "mfr_sku": "SANTA MONICA IKAT PILLOW Indigo",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17430004_c105a7e3-74f7-4759-a3ed-536a75338644.jpg?v=1747077600",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609195401267",
+      "base_sku": "DWPIL-6264",
+      "sample_sku": "DWPIL-6264-Sample",
+      "mfr_sku": "SANTA MONICA IKAT PILLOW Indigo Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17430005_265d8627-6cf8-47aa-bc5b-cf34c5fa824e.jpg?v=1747077598",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609195597875",
+      "base_sku": "DWPIL-6284",
+      "sample_sku": "DWPIL-6284-Sample",
+      "mfr_sku": "SEA GRAPES 18\" PILLOW Palm",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17863004_949356e3-b7a4-4b6f-a0d4-5d85e0245d0d.jpg?v=1747077595",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609195696179",
+      "base_sku": "DWPIL-6294",
+      "sample_sku": "DWPIL-6294-Sample",
+      "mfr_sku": "SEA GRAPES 18\" PILLOW Bark",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17863204_16a88d70-eb60-4fa7-bb86-591e0c475741.jpg?v=1747077593",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609195860019",
+      "base_sku": "DWPIL-6314",
+      "sample_sku": "DWPIL-6314-Sample",
+      "mfr_sku": "SENZA SATIN STRIPE PILLOW Brown",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7945118_df4ed596-aaac-4357-b7e5-224143b0b10d.jpg?v=1747077590",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609196023859",
+      "base_sku": "DWPIL-6344",
+      "sample_sku": "DWPIL-6344-Sample",
+      "mfr_sku": "SENZA SATIN STRIPE PILLOW Brown",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17964013_1ed32d61-0f48-43ed-90f7-d6331d2f0c16.jpg?v=1747077587",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609196089395",
+      "base_sku": "DWPIL-6354",
+      "sample_sku": "DWPIL-6354-Sample",
+      "mfr_sku": "SERENGETI PILLOW Tigre",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17458104_9ebec280-d1d2-46ff-8750-e81d9ba3332e.jpg?v=1747077585",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609196187699",
+      "base_sku": "DWPIL-6364",
+      "sample_sku": "DWPIL-6364-Sample",
+      "mfr_sku": "SERENGETI PILLOW Tigre",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7247104_af6ea51d-ce79-4d1c-ab83-a1b6dd68c147.jpg?v=1747077583",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609196318771",
+      "base_sku": "DWPIL-6374",
+      "sample_sku": "DWPIL-6374-Sample",
+      "mfr_sku": "SERVILIA STRIPE PILLOW Aqua&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7247105_b5f55645-9f4d-434c-b8e9-7a0638dc4179.jpg?v=1747077582",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609196417075",
+      "base_sku": "DWPIL-6394",
+      "sample_sku": "DWPIL-6394-Sample",
+      "mfr_sku": "SHENGYOU TOILE 18\" PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17580404_53633930-559d-46bd-9120-9453f73aacab.jpg?v=1747077580",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609196482611",
+      "base_sku": "DWPIL-6404",
+      "sample_sku": "DWPIL-6404-Sample",
+      "mfr_sku": "SHOCK WAVE 18\" PILLOW Midnight",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO5486204_186eb70f-924f-40b7-9788-4177111a473f.jpg?v=1747077578",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609196580915",
+      "base_sku": "DWPIL-6414",
+      "sample_sku": "DWPIL-6414-Sample",
+      "mfr_sku": "SIDONIE 22\" PILLOW Magenta",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17955206_01e52924-b14a-4110-b1e9-6607a6c1e69b.jpg?v=1747077576",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609196646451",
+      "base_sku": "DWPIL-6424",
+      "sample_sku": "DWPIL-6424-Sample",
+      "mfr_sku": "SIERRA 22\" PILLOW Indigo",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7327206_f5c20e53-73c0-463b-b5b0-79634b2fa073.jpg?v=1747077575",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609196777523",
+      "base_sku": "DWPIL-6434",
+      "sample_sku": "DWPIL-6434-Sample",
+      "mfr_sku": "SIKAR EMBROIDERY 20\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6578205_d9112b1c-1cea-4804-84ad-e087735104ef.jpg?v=1747077573",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609196875827",
+      "base_sku": "DWPIL-6444",
+      "sample_sku": "DWPIL-6444-Sample",
+      "mfr_sku": "SILJAN PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO8031033_97e84707-472c-4299-95da-06f05d81c864.jpg?v=1747077572",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609197039667",
+      "base_sku": "DWPIL-6454",
+      "sample_sku": "DWPIL-6454-Sample",
+      "mfr_sku": "SINA STRIPE PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7994117_fe1182b0-a756-4d9a-9ff4-34beb7716171.jpg?v=1747077570",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609197137971",
+      "base_sku": "DWPIL-6464",
+      "sample_sku": "DWPIL-6464-Sample",
+      "mfr_sku": "SOLANDRA VINE 18\" PILLOW Leaf",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17870104_a82079fc-3993-4bf3-841e-1c03e77b2d0f.jpg?v=1747077569",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609197236275",
+      "base_sku": "DWPIL-6474",
+      "sample_sku": "DWPIL-6474-Sample",
+      "mfr_sku": "SILJAN PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17870304_30e49e13-e2ee-4912-9b99-efcfe1f5daf8.jpg?v=1747077567",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609197531187",
+      "base_sku": "DWPIL-6504",
+      "sample_sku": "DWPIL-6504-Sample",
+      "mfr_sku": "SONORA 20\" PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7325005_6e3abc7e-5e4e-4538-9cf7-9e9374e8b325.jpg?v=1747077562",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609197596723",
+      "base_sku": "DWPIL-6514",
+      "sample_sku": "DWPIL-6514-Sample",
+      "mfr_sku": "SONORA 22\" PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7325006_91e2dfdc-7483-4295-bc6a-d3c3a3191c7c.jpg?v=1747077561",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609197695027",
+      "base_sku": "DWPIL-6524",
+      "sample_sku": "DWPIL-6524-Sample",
+      "mfr_sku": "SOPHIA VELVET PILLOW Cocoa",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6819913_6c602ff3-de51-42dc-931f-e9e824b30abe.jpg?v=1747077559",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609197793331",
+      "base_sku": "DWPIL-6534",
+      "sample_sku": "DWPIL-6534-Sample",
+      "mfr_sku": "SOPHIA VELVET PILLOW Cocoa",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6819911_01978aef-dd2e-49ed-8b45-e25b8c6ca016.jpg?v=1747077557",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609197891635",
+      "base_sku": "DWPIL-6544",
+      "sample_sku": "DWPIL-6544-Sample",
+      "mfr_sku": "STAR EPINGLE PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7742111_32adf81a-2f06-47a0-bd47-728fc59d74ad.jpg?v=1747077545",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609197989939",
+      "base_sku": "DWPIL-6554",
+      "sample_sku": "DWPIL-6554-Sample",
+      "mfr_sku": "SOPHIA VELVET PILLOW Cocoa",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO550004_b871a6b7-9c61-41aa-9761-33261d9639b7.jpg?v=1747077543",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609198055475",
+      "base_sku": "DWPIL-6564",
+      "sample_sku": "DWPIL-6564-Sample",
+      "mfr_sku": "SOPHIA VELVET PILLOW Cocoa",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17886206_129cff37-be29-401c-a9ff-3c873c9d58b9.jpg?v=1747077541",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609198121011",
+      "base_sku": "DWPIL-6574",
+      "sample_sku": "DWPIL-6574-Sample",
+      "mfr_sku": "STAR EPINGLE PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17519007_72c1cc6e-8fba-4b09-be78-2a2d191ef7bd.jpg?v=1747077539",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609198284851",
+      "base_sku": "DWPIL-6594",
+      "sample_sku": "DWPIL-6594-Sample",
+      "mfr_sku": "SUZETTE 20\" PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7913005_92956421-0fb0-46e7-b055-711645068efe.jpg?v=1747077536",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609198415923",
+      "base_sku": "DWPIL-6604",
+      "sample_sku": "DWPIL-6604-Sample",
+      "mfr_sku": "TABITHA PILLOW Pink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17842013_ee0a0e99-7ae4-4a29-8b08-be8bd3fac55c.jpg?v=1747077534",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609198481459",
+      "base_sku": "DWPIL-6614",
+      "sample_sku": "DWPIL-6614-Sample",
+      "mfr_sku": "SUNBURST EMBROIDERY PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17842012_10a02474-eb28-416d-8936-f9419c51b93f.jpg?v=1747077532",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609198579763",
+      "base_sku": "DWPIL-6624",
+      "sample_sku": "DWPIL-6624-Sample",
+      "mfr_sku": "TALITHA 18\" PILLOW Blackwork",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7209004_c21e01f5-9f10-4344-9257-5294f4f3028a.jpg?v=1747077530",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609198645299",
+      "base_sku": "DWPIL-6634",
+      "sample_sku": "DWPIL-6634-Sample",
+      "mfr_sku": "TABITHA PILLOW Pink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7064518_13028bbb-872e-4f6b-8016-6af4ae2b65e7.jpg?v=1747077529",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609198743603",
+      "base_sku": "DWPIL-6654",
+      "sample_sku": "DWPIL-6654-Sample",
+      "mfr_sku": "TALOS 22\" PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7254006_c8c188f3-8eaa-4c43-b3b7-93c3e4d00bbd.jpg?v=1747077528",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609198874675",
+      "base_sku": "DWPIL-6674",
+      "sample_sku": "DWPIL-6674-Sample",
+      "mfr_sku": "TANGIER EMBROIDERY 18\" PILLOW Silver",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6834304_d579902d-9a48-4ed8-9911-8f8b6dfb6e1e.jpg?v=1747077526",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609198940211",
+      "base_sku": "DWPIL-6684",
+      "sample_sku": "DWPIL-6684-Sample",
+      "mfr_sku": "TANGIER EMBROIDERY 20\" PILLOW Silver",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6834305_bb766a71-ff81-4b5a-8c69-a218754ad3a5.jpg?v=1747077524",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609199300659",
+      "base_sku": "DWPIL-6724",
+      "sample_sku": "DWPIL-6724-Sample",
+      "mfr_sku": "TAURIDE EPINGLE 22\" PILLOW Peacock",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7904206_f71f5034-2352-4675-b9cf-7fedb44ac7fc.jpg?v=1747077523",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609199398963",
+      "base_sku": "DWPIL-6734",
+      "sample_sku": "DWPIL-6734-Sample",
+      "mfr_sku": "TEMARA EMBROIDERED 22\" PILLOW Pomegranate",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17518006_7561da1d-2300-4cce-a46c-a6ab99ee4218.jpg?v=1747077521",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609199464499",
+      "base_sku": "DWPIL-6744",
+      "sample_sku": "DWPIL-6744-Sample",
+      "mfr_sku": "TEMARA EMBROIDERED PILLOW Spice",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17518121_cf5fc432-0599-425b-bb55-a647d88b8b3f.jpg?v=1747077518",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609199562803",
+      "base_sku": "DWPIL-6754",
+      "sample_sku": "DWPIL-6754-Sample",
+      "mfr_sku": "TEMARA EMBROIDERED PILLOW Pomegranate",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17518021_d92ed722-f82a-49d4-a187-88618e5e9c36.jpg?v=1747077515",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609199792179",
+      "base_sku": "DWPIL-6774",
+      "sample_sku": "DWPIL-6774-Sample",
+      "mfr_sku": "TEMARA EMBROIDERED PILLOW Spice",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17858206_238f1b89-ce30-4228-8b18-c5262d9d8a95.jpg?v=1747077509",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609199890483",
+      "base_sku": "DWPIL-6784",
+      "sample_sku": "DWPIL-6784-Sample",
+      "mfr_sku": "TEMARA EMBROIDERED PILLOW Pomegranate",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7257005_c54731b9-0506-4e4b-ac75-d550eb551953.jpg?v=1747077507",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609200152627",
+      "base_sku": "DWPIL-6804",
+      "sample_sku": "DWPIL-6804-Sample",
+      "mfr_sku": "TETON 22\" PILLOW Snow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7257006_c8cf8fd1-b18a-4a3a-a793-4badfb5a2e90.jpg?v=1747077505",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609200283699",
+      "base_sku": "DWPIL-6814",
+      "sample_sku": "DWPIL-6814-Sample",
+      "mfr_sku": "TETON 22\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7257106_9e4775d3-48a9-4b1c-8c26-701a713191ba.jpg?v=1747077503",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609200414771",
+      "base_sku": "DWPIL-6824",
+      "sample_sku": "DWPIL-6824-Sample",
+      "mfr_sku": "TETON 24\" PILLOW Snow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7257007_6375ffe3-7804-4a3b-869b-e5cd7f535a24.jpg?v=1747077501",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609200513075",
+      "base_sku": "DWPIL-6834",
+      "sample_sku": "DWPIL-6834-Sample",
+      "mfr_sku": "TETON 24\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7257107_68924263-01ae-495e-90b2-866a2e545499.jpg?v=1747077500",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609200611379",
+      "base_sku": "DWPIL-6844",
+      "sample_sku": "DWPIL-6844-Sample",
+      "mfr_sku": "THE WAVE 20\" PILLOW Lettuce",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942205_4c4ac836-5355-44a5-a51f-60461b7e977b.jpg?v=1747077499",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609200709683",
+      "base_sku": "DWPIL-6854",
+      "sample_sku": "DWPIL-6854-Sample",
+      "mfr_sku": "THE WAVE 20\" PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942005_a9dcdc05-50ae-4830-be97-03180caa48cb.jpg?v=1747077497",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609200775219",
+      "base_sku": "DWPIL-6864",
+      "sample_sku": "DWPIL-6864-Sample",
+      "mfr_sku": "THE WAVE 20\" PILLOW Chocolate",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942105_7e8547b9-b905-4ed0-b916-c338052c19ba.jpg?v=1747077496",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609200906291",
+      "base_sku": "DWPIL-6874",
+      "sample_sku": "DWPIL-6874-Sample",
+      "mfr_sku": "THE WAVE 20\" PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942305_8cd7b8ba-d8ec-4804-96dd-04bdfbfcf482.jpg?v=1747077494",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609201004595",
+      "base_sku": "DWPIL-6884",
+      "sample_sku": "DWPIL-6884-Sample",
+      "mfr_sku": "THE WAVE 20\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942405_e2c8ae4f-158e-42da-b067-47158a0d28b9.jpg?v=1747077493",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609201135667",
+      "base_sku": "DWPIL-6894",
+      "sample_sku": "DWPIL-6894-Sample",
+      "mfr_sku": "THE WAVE 22\" PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942006_e08959cd-131d-4c8a-82df-8085465c81fe.jpg?v=1747077491",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609201266739",
+      "base_sku": "DWPIL-6904",
+      "sample_sku": "DWPIL-6904-Sample",
+      "mfr_sku": "THE WAVE 22\" PILLOW Chocolate",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942106_f76d0af3-36a6-461e-a966-c5ee95706ca2.jpg?v=1747077490",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609201365043",
+      "base_sku": "DWPIL-6914",
+      "sample_sku": "DWPIL-6914-Sample",
+      "mfr_sku": "THE WAVE 22\" PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942306_282bf693-1569-404d-9785-e69a41b2fd5f.jpg?v=1747077489",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609201463347",
+      "base_sku": "DWPIL-6924",
+      "sample_sku": "DWPIL-6924-Sample",
+      "mfr_sku": "THE WAVE 22\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942406_d9d6bfd9-1eae-4188-ae3c-a61c5ef9190e.jpg?v=1747077487",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609201561651",
+      "base_sku": "DWPIL-6934",
+      "sample_sku": "DWPIL-6934-Sample",
+      "mfr_sku": "THE WAVE 22\" PILLOW Lettuce",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942206_005a9534-5ffe-4c93-a0b0-f4490c24bc96.jpg?v=1747077486",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609201659955",
+      "base_sku": "DWPIL-6944",
+      "sample_sku": "DWPIL-6944-Sample",
+      "mfr_sku": "THE WAVE 24\" PILLOW Lettuce",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942207_12d2b9d6-3a4c-41c1-92fe-2e054d9bb371.jpg?v=1747077484",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609201725491",
+      "base_sku": "DWPIL-6954",
+      "sample_sku": "DWPIL-6954-Sample",
+      "mfr_sku": "THE WAVE 24\" PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942007_71c04b63-a2df-4040-a856-96b252844463.jpg?v=1747077483",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609201823795",
+      "base_sku": "DWPIL-6964",
+      "sample_sku": "DWPIL-6964-Sample",
+      "mfr_sku": "THE WAVE 24\" PILLOW Chocolate",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942107_57fba102-cba4-47ba-9b2c-7b6a120231ec.jpg?v=1747077482",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609201922099",
+      "base_sku": "DWPIL-6974",
+      "sample_sku": "DWPIL-6974-Sample",
+      "mfr_sku": "THE WAVE 24\" PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942307_3f48073d-fb9e-4b48-aa0a-ebd93853665e.jpg?v=1747077480",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609202020403",
+      "base_sku": "DWPIL-6984",
+      "sample_sku": "DWPIL-6984-Sample",
+      "mfr_sku": "THE WAVE 24\" PILLOW Sky",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6942407_114378a0-c6e8-4e1a-8abd-fff39a53c5b4.jpg?v=1747077479",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609202118707",
+      "base_sku": "DWPIL-6994",
+      "sample_sku": "DWPIL-6994-Sample",
+      "mfr_sku": "TIANA EMBROIDERY 20\" PILLOW Natural",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7986105_a49a4cc1-9408-4b5a-9b3c-3156c85178fd.jpg?v=1747077477",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609202184243",
+      "base_sku": "DWPIL-7004",
+      "sample_sku": "DWPIL-7004-Sample",
+      "mfr_sku": "TIANA EMBROIDERY 22\" PILLOW Natural",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7986106_e6e3234b-1583-49b2-a876-2eba9fe661df.jpg?v=1747077476",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609202282547",
+      "base_sku": "DWPIL-7014",
+      "sample_sku": "DWPIL-7014-Sample",
+      "mfr_sku": "TIASQUAM 20\" PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17788005_2eb6ba1a-122e-469e-9756-8d20802e7fa8.jpg?v=1747077474",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609202413619",
+      "base_sku": "DWPIL-7024",
+      "sample_sku": "DWPIL-7024-Sample",
+      "mfr_sku": "TIM TIM & MODERN TOILE PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17862120_28ad98c3-9add-4ff1-a9fb-266b73fc98d7.jpg?v=1747077472",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609202479155",
+      "base_sku": "DWPIL-7034",
+      "sample_sku": "DWPIL-7034-Sample",
+      "mfr_sku": "TIM TIM PILLOW Greige",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7725214_e6d69d9b-2e9d-46fc-8174-b9d4a1f7be53.jpg?v=1747077470",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609202806835",
+      "base_sku": "DWPIL-7074",
+      "sample_sku": "DWPIL-7074-Sample",
+      "mfr_sku": "TING TING & BODHI TREE PILLOW Blue&Pink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17957004_65d8c8a5-1daa-42aa-8288-06dc47d39f98.jpg?v=1747077464",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609202872371",
+      "base_sku": "DWPIL-7084",
+      "sample_sku": "DWPIL-7084-Sample",
+      "mfr_sku": "TOILE TROPIQUE 20\" PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17951105_06e1a9d9-5b62-4646-88e4-c61baf9477c6.jpg?v=1747077453",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609202970675",
+      "base_sku": "DWPIL-7094",
+      "sample_sku": "DWPIL-7094-Sample",
+      "mfr_sku": "TOILE TROPIQUE 20\" PILLOW Gold",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17951005_2c3e7d6d-6ee9-47c2-8947-936927a99ab5.jpg?v=1747077452",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609203036211",
+      "base_sku": "DWPIL-7104",
+      "sample_sku": "DWPIL-7104-Sample",
+      "mfr_sku": "TOLEDO 22\" PILLOW Noir",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6973006_b3a36c35-65b0-4537-95d4-ef0127234d11.jpg?v=1747077450",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609203232819",
+      "base_sku": "DWPIL-7124",
+      "sample_sku": "DWPIL-7124-Sample",
+      "mfr_sku": "TOLEDO PILLOW Noir",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6973022_b5d4c708-43e8-4f68-931a-59200c7c66e7.jpg?v=1747077447",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609203363891",
+      "base_sku": "DWPIL-7134",
+      "sample_sku": "DWPIL-7134-Sample",
+      "mfr_sku": "TOPI 22\" PILLOW Sienna",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6999106_67ca5c5e-a1b9-4ccf-bf76-61cf0e03c030.jpg?v=1747077446",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609203429427",
+      "base_sku": "DWPIL-7144",
+      "sample_sku": "DWPIL-7144-Sample",
+      "mfr_sku": "TOLEDO PILLOW Chambray&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6284104_ecb20b37-082e-4407-a6f6-d980e307359d.jpg?v=1747077444",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609203560499",
+      "base_sku": "DWPIL-7154",
+      "sample_sku": "DWPIL-7154-Sample",
+      "mfr_sku": "TOLEDO PILLOW Noir",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6284105_a8da5420-631a-43a5-8f9f-d470e6b7559a.jpg?v=1747077442",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609203724339",
+      "base_sku": "DWPIL-7164",
+      "sample_sku": "DWPIL-7164-Sample",
+      "mfr_sku": "TORTOLA I/O 24\" PILLOW Marine",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6284107_bbb5bd60-0760-4a16-86da-a1972a5ab3b0.jpg?v=1747077440",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609203888179",
+      "base_sku": "DWPIL-7184",
+      "sample_sku": "DWPIL-7184-Sample",
+      "mfr_sku": "TREE RIVER PILLOW Blue&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17674106_bf029ef8-b05e-429e-9222-0543c0d59428.jpg?v=1747077435",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609203986483",
+      "base_sku": "DWPIL-7194",
+      "sample_sku": "DWPIL-7194-Sample",
+      "mfr_sku": "TRISTAN PATCHWORK 20\" PILLOW Indigo",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7676005_cbd19c27-173b-4420-b56e-e622fd6b6280.jpg?v=1747077433",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609204215859",
+      "base_sku": "DWPIL-7224",
+      "sample_sku": "DWPIL-7224-Sample",
+      "mfr_sku": "TROPIQUE 18\" PILLOW Blush",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17813004_42bfb7ce-43cf-4d30-82f7-fe369f25203c.jpg?v=1747077428",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609204346931",
+      "base_sku": "DWPIL-7234",
+      "sample_sku": "DWPIL-7234-Sample",
+      "mfr_sku": "TULIP FLAMESTITCH PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7027232_e5ad89c9-6872-4402-9e2e-3fef8ebd8a66.jpg?v=1747077427",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609204445235",
+      "base_sku": "DWPIL-7244",
+      "sample_sku": "DWPIL-7244-Sample",
+      "mfr_sku": "TUMBLE WEED EPINGLE 22\" PILLOW Delft",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7951006_143cfee3-6752-4b03-be26-efa15e3d900f.jpg?v=1747077425",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609204543539",
+      "base_sku": "DWPIL-7254",
+      "sample_sku": "DWPIL-7254-Sample",
+      "mfr_sku": "TURKESTAN EMBROIDERY 20\" PILLOW Moonstone",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6787005_10fa9136-fb07-4416-90bb-5d327976d9f0.jpg?v=1747077424",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609204641843",
+      "base_sku": "DWPIL-7264",
+      "sample_sku": "DWPIL-7264-Sample",
+      "mfr_sku": "TULIP FLAMESTITCH PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7122005_ab3bb2eb-6ee9-4d11-8699-53472283ff0f.jpg?v=1747077422",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609204772915",
+      "base_sku": "DWPIL-7274",
+      "sample_sku": "DWPIL-7274-Sample",
+      "mfr_sku": "TUTSI 22\" PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7122006_1a089654-f41b-4d15-8c9b-cbee11295f20.jpg?v=1747077420",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609204903987",
+      "base_sku": "DWPIL-7284",
+      "sample_sku": "DWPIL-7284-Sample",
+      "mfr_sku": "TUTSI PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7122018_2af4da21-c725-44b1-9335-d9c736667360.jpg?v=1747077418",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609204969523",
+      "base_sku": "DWPIL-7294",
+      "sample_sku": "DWPIL-7294-Sample",
+      "mfr_sku": "TUTSI PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7122014_3bfff90f-ca42-4147-aa09-c05f38ecee58.jpg?v=1747077416",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609205035059",
+      "base_sku": "DWPIL-7304",
+      "sample_sku": "DWPIL-7304-Sample",
+      "mfr_sku": "TUTSI PILLOW Green",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7122219_be03ac62-644e-45eb-a211-e5e5a01927a4.jpg?v=1747077414",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609205166131",
+      "base_sku": "DWPIL-7324",
+      "sample_sku": "DWPIL-7324-Sample",
+      "mfr_sku": "TUTSI PILLOW Ivory",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6619304_b88381a5-4daf-43aa-973f-9b438469e7c9.jpg?v=1747077413",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609205231667",
+      "base_sku": "DWPIL-7334",
+      "sample_sku": "DWPIL-7334-Sample",
+      "mfr_sku": "TUTSI PILLOW Green",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6619004_ff616d94-bbe1-4735-b8e4-9ef19b0e36b4.jpg?v=1747077411",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609205297203",
+      "base_sku": "DWPIL-7344",
+      "sample_sku": "DWPIL-7344-Sample",
+      "mfr_sku": "UNION FLAG PILLOW Midnight",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6619005_4e579936-a6f6-4efb-93ba-223f58be28cb.jpg?v=1747077409",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609205493811",
+      "base_sku": "DWPIL-7364",
+      "sample_sku": "DWPIL-7364-Sample",
+      "mfr_sku": "VANDERBILT VELVET 20\" PILLOW Marine",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6619505_d43df0d0-6460-400e-b328-30e0a270ac59.jpg?v=1747077407",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609205559347",
+      "base_sku": "DWPIL-7374",
+      "sample_sku": "DWPIL-7374-Sample",
+      "mfr_sku": "VANDERBILT VELVET 22\" PILLOW Marine",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6619506_f58f6ab2-a1b0-47a4-a3fa-95e9149a67bf.jpg?v=1747077405",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609205690419",
+      "base_sku": "DWPIL-7384",
+      "sample_sku": "DWPIL-7384-Sample",
+      "mfr_sku": "VANDERBILT VELVET 24\" PILLOW Marine",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6619507_26b01b15-de1d-4c72-8b3b-2600c278c5d9.jpg?v=1747077404",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609205854259",
+      "base_sku": "DWPIL-7404",
+      "sample_sku": "DWPIL-7404-Sample",
+      "mfr_sku": "VANDERBILT VELVET PILLOW Marine",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6619518_7bb8ef93-e111-4313-886c-a8d567a96b4f.jpg?v=1747077401",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609205952563",
+      "base_sku": "DWPIL-7414",
+      "sample_sku": "DWPIL-7414-Sample",
+      "mfr_sku": "VEDADO IKAT 20\" PILLOW Pink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7946105_d74c538b-2349-4655-b1b3-42d55c8482e8.jpg?v=1747077400",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609206149171",
+      "base_sku": "DWPIL-7424",
+      "sample_sku": "DWPIL-7424-Sample",
+      "mfr_sku": "VANDERBILT VELVET PILLOW Lettuce",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7946106_5a3c8c52-005e-46b9-af66-5b69d4502202.jpg?v=1747077398",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609206378547",
+      "base_sku": "DWPIL-7454",
+      "sample_sku": "DWPIL-7454-Sample",
+      "mfr_sku": "VEDADO IKAT 24\" PILLOW Pink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7946107_1720f350-094f-43bd-ae58-f7f97b14e2e0.jpg?v=1747077395",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609206509619",
+      "base_sku": "DWPIL-7464",
+      "sample_sku": "DWPIL-7464-Sample",
+      "mfr_sku": "VENETIAN SILK VELVET 18\" PILLOW Mink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6273504_20e79d69-7e46-497e-a60c-3814365c564a.jpg?v=1747077394",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609206575155",
+      "base_sku": "DWPIL-7474",
+      "sample_sku": "DWPIL-7474-Sample",
+      "mfr_sku": "VENETIAN SILK VELVET 18\" PILLOW Graphite",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6273704_203160a9-5a21-433f-861e-0490017a4168.jpg?v=1747077392",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609206902835",
+      "base_sku": "DWPIL-7504",
+      "sample_sku": "DWPIL-7504-Sample",
+      "mfr_sku": "VENETIAN SILK VELVET 20\" PILLOW Mink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6273505_ad4c3e55-cbb5-4787-b593-3ea8bd6b267a.jpg?v=1747077388",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609207099443",
+      "base_sku": "DWPIL-7514",
+      "sample_sku": "DWPIL-7514-Sample",
+      "mfr_sku": "VENETIAN SILK VELVET 20\" PILLOW Graphite",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6273705_eef9d7a4-0820-49fc-bbbb-6c2b9d76f2b8.jpg?v=1747077387",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609207492659",
+      "base_sku": "DWPIL-7544",
+      "sample_sku": "DWPIL-7544-Sample",
+      "mfr_sku": "VENETIAN SILK VELVET 22\" PILLOW Mink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6273506_8fcefb6b-f99d-407c-ba66-689e889a9c3d.jpg?v=1747077382",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609207590963",
+      "base_sku": "DWPIL-7554",
+      "sample_sku": "DWPIL-7554-Sample",
+      "mfr_sku": "VENETIAN SILK VELVET 22\" PILLOW Graphite",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6273706_1965d638-4b71-47ee-9312-4d01f05ac071.jpg?v=1747077381",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609207722035",
+      "base_sku": "DWPIL-7574",
+      "sample_sku": "DWPIL-7574-Sample",
+      "mfr_sku": "VENETIAN SILK VELVET 24\" PILLOW Mink",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO6273507_27dfbc98-b6d2-45c6-b95d-2e7d3e0a080c.jpg?v=1747077378",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609207951411",
+      "base_sku": "DWPIL-7604",
+      "sample_sku": "DWPIL-7604-Sample",
+      "mfr_sku": "VINKA EMBROIDERY PILLOW Red&Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7962118_2c1f7ff1-33b9-41b3-991a-fe52a4ff856e.jpg?v=1747077373",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609208016947",
+      "base_sku": "DWPIL-7614",
+      "sample_sku": "DWPIL-7614-Sample",
+      "mfr_sku": "VINKA EMBROIDERY PILLOW Pink&Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7962218_489cbdf4-eddd-4ec0-bdc4-1523c66fe5f8.jpg?v=1747077362",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609208115251",
+      "base_sku": "DWPIL-7624",
+      "sample_sku": "DWPIL-7624-Sample",
+      "mfr_sku": "WALKER 18\" PILLOW Blues",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7678004_798d619a-e92e-457a-92ce-b6087b29ff48.jpg?v=1747077360",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609208246323",
+      "base_sku": "DWPIL-7634",
+      "sample_sku": "DWPIL-7634-Sample",
+      "mfr_sku": "VINKA EMBROIDERY PILLOW Red&Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7678005_7fc60fd1-2c69-4a55-9a7b-46b1a3392f6a.jpg?v=1747077358",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609208344627",
+      "base_sku": "DWPIL-7644",
+      "sample_sku": "DWPIL-7644-Sample",
+      "mfr_sku": "VINKA EMBROIDERY PILLOW Pink&Yellow",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7678006_97e09b36-c565-4d8a-bef5-2f9c3e62421f.jpg?v=1747077356",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609208410163",
+      "base_sku": "DWPIL-7654",
+      "sample_sku": "DWPIL-7654-Sample",
+      "mfr_sku": "WALKER 24\" PILLOW Blues",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7678007_e999bd4b-8465-4186-8bcc-a1c0b87aa895.jpg?v=1747077354",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609208508467",
+      "base_sku": "DWPIL-7664",
+      "sample_sku": "DWPIL-7664-Sample",
+      "mfr_sku": "WENTWORTH EMBROIDERY PILLOW Chambray",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7547518_4fd7235c-d5d5-4eda-812d-3d8fe4c3c274.jpg?v=1747077352",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609208606771",
+      "base_sku": "DWPIL-7674",
+      "sample_sku": "DWPIL-7674-Sample",
+      "mfr_sku": "WENTWORTH EMBROIDERY PILLOW Natural",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7547218_b79f327e-1e69-4945-86b6-030cdf2b322c.jpg?v=1747077350",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609208770611",
+      "base_sku": "DWPIL-7684",
+      "sample_sku": "DWPIL-7684-Sample",
+      "mfr_sku": "WENTWORTH EMBROIDERY PILLOW Rose",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7547318_2bc32e78-782e-40dc-b908-bf7250b6ddc4.jpg?v=1747077347",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609208868915",
+      "base_sku": "DWPIL-7694",
+      "sample_sku": "DWPIL-7694-Sample",
+      "mfr_sku": "WENTWORTH EMBROIDERY PILLOW Chambray",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7547418_baba7690-b083-4808-8b79-c68f146f9526.jpg?v=1747077345",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609208934451",
+      "base_sku": "DWPIL-7704",
+      "sample_sku": "DWPIL-7704-Sample",
+      "mfr_sku": "WENTWORTH EMBROIDERY PILLOW Natural",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7547018_77b118a2-02f4-415e-a5dd-99046581e53a.jpg?v=1747077342",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609209065523",
+      "base_sku": "DWPIL-7714",
+      "sample_sku": "DWPIL-7714-Sample",
+      "mfr_sku": "WENTWORTH EMBROIDERY PILLOW Rose",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7718003_f26a9204-61b3-4060-b285-9b302fcd3b2f.jpg?v=1747077340",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609209524275",
+      "base_sku": "DWPIL-7764",
+      "sample_sku": "DWPIL-7764-Sample",
+      "mfr_sku": "WOODLAND SILHOUETTE 20\" PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17617605_c5c6c50c-cba1-45fd-b7d7-41ea41b032df.jpg?v=1747077331",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609209589811",
+      "base_sku": "DWPIL-7774",
+      "sample_sku": "DWPIL-7774-Sample",
+      "mfr_sku": "WOODLAND LEOPARD VELVET PILLOW Mineral&Gold",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SOWOOD00404_f7f66032-ee37-4e9c-aeba-77c44bda2f7a.jpg?v=1747077329",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609209688115",
+      "base_sku": "DWPIL-7784",
+      "sample_sku": "DWPIL-7784-Sample",
+      "mfr_sku": "WOODPERRY 18\" PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SOWOOD00104_14df7b67-5ba5-48c6-8af4-98e40dcb38ba.jpg?v=1747077327",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609209851955",
+      "base_sku": "DWPIL-7804",
+      "sample_sku": "DWPIL-7804-Sample",
+      "mfr_sku": "WOODPERRY 20\" PILLOW Pink&Natural",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SOWOOD00405_80002d84-2545-4b0c-b32e-d7e557988a60.jpg?v=1747077323",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609209917491",
+      "base_sku": "DWPIL-7814",
+      "sample_sku": "DWPIL-7814-Sample",
+      "mfr_sku": "ZANZIBAR LINEN PRINT 18\" PILLOW Cerulean",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17352004_bca36838-8513-4991-b252-409d3b093707.jpg?v=1747077321",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609209983027",
+      "base_sku": "DWPIL-7824",
+      "sample_sku": "DWPIL-7824-Sample",
+      "mfr_sku": "ZANZIBAR LINEN PRINT 18\" PILLOW Hyacinth",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17352304_db9862a7-ac04-443e-b080-200e300ebc1c.jpg?v=1747077318",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609210212403",
+      "base_sku": "DWPIL-7864",
+      "sample_sku": "DWPIL-7864-Sample",
+      "mfr_sku": "ZEALAND CHECK 16\" PILLOW Navy",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7907203_df75eb15-8eb5-4653-8a92-952c185312c1.jpg?v=1747077312",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609210277939",
+      "base_sku": "DWPIL-7874",
+      "sample_sku": "DWPIL-7874-Sample",
+      "mfr_sku": "ZARZUELA EMBROIDERY PILLOW Indigo",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7907204_34d0fb05-0e2a-4d93-8cdd-684f217e68e8.jpg?v=1747077310",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609210409011",
+      "base_sku": "DWPIL-7884",
+      "sample_sku": "DWPIL-7884-Sample",
+      "mfr_sku": "ZARZUELA EMBROIDERY PILLOW Saffron",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7907205_94f796fe-e186-4c5b-81c7-0943247fb1db.jpg?v=1747077309",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609210507315",
+      "base_sku": "DWPIL-7894",
+      "sample_sku": "DWPIL-7894-Sample",
+      "mfr_sku": "ZEBRA PALM I/O 16\" PILLOW Leaf",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7317103_f8944d3e-e07c-46d7-a74f-e245ba905f26.jpg?v=1747077306",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609210572851",
+      "base_sku": "DWPIL-7904",
+      "sample_sku": "DWPIL-7904-Sample",
+      "mfr_sku": "ZEBRA PALM I/O 16\" PILLOW Black",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7317303_bee4117a-0ac0-4d0d-9c37-689fa2c09c04.jpg?v=1747077303",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609210671155",
+      "base_sku": "DWPIL-7914",
+      "sample_sku": "DWPIL-7914-Sample",
+      "mfr_sku": "ZELLA PILLOW Green&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7944015_cbfb478a-e590-40f0-a92a-dce129e891a7.jpg?v=1747077299",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609210769459",
+      "base_sku": "DWPIL-7924",
+      "sample_sku": "DWPIL-7924-Sample",
+      "mfr_sku": "ZENYATTA MONDATTA 18\" PILLOW Noir&Blanc",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO5479204_d3635a74-82cd-4e26-bbdf-8f8fd39ae747.jpg?v=1747077296",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609210933299",
+      "base_sku": "DWPIL-7944",
+      "sample_sku": "DWPIL-7944-Sample",
+      "mfr_sku": "ZELLA PILLOW Green&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17448714_4fc7d346-9a11-41bd-95d2-3d3b2f47bd45.jpg?v=1747077289",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609210998835",
+      "base_sku": "DWPIL-7954",
+      "sample_sku": "DWPIL-7954-Sample",
+      "mfr_sku": "ZIMBA 18\" PILLOW Charcoal&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO264433004_06924d37-47f3-45d8-95e7-6ec04c461bce.jpg?v=1747077279",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609211064371",
+      "base_sku": "DWPIL-7964",
+      "sample_sku": "DWPIL-7964-Sample",
+      "mfr_sku": "ZIMBA 20\" PILLOW Charcoal&White",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO264433005_27e2ad4d-7116-4855-b407-fb312b3a2bad.jpg?v=1747077277",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609211228211",
+      "base_sku": "DWPIL-7984",
+      "sample_sku": "DWPIL-7984-Sample",
+      "mfr_sku": "ZINNIA HANDMADE PRINT PILLOW Blue",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO17934022_5e8030ab-0df7-4aa6-9c52-82935701c64f.jpg?v=1747077274",
+      "is_pillow": true,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width",
+        "Sample-Only-Pillow"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "6609211293747",
+      "base_sku": "DWPIL-7990",
+      "sample_sku": "DWPIL-7990-Sample",
+      "mfr_sku": "DWPIL-7963",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SO7193304_f77642f0-7ff4-4a7e-983a-846017324e63.jpg?v=1747077272",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494119272499",
+      "base_sku": "SCH-70643",
+      "sample_sku": "SCH-70643",
+      "mfr_sku": "70643",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70643_f7131a16-d5e7-439d-a224-b27e378b4ce2.jpg?v=1586448949",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494119534643",
+      "base_sku": "SCH-70645",
+      "sample_sku": "SCH-70645",
+      "mfr_sku": "70645",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70645_6cb24b63-1802-40c1-9fc4-9c55237cbf15.jpg?v=1586448953",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494119829555",
+      "base_sku": "SCH-70648",
+      "sample_sku": "SCH-70648",
+      "mfr_sku": "70648",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70648_e35b7f24-430f-44fd-a911-eb766e54e67b.jpg?v=1586448959",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494120124467",
+      "base_sku": "SCH-70651",
+      "sample_sku": "SCH-70651",
+      "mfr_sku": "70651",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70651_6896f417-3076-4f98-af17-43ecdafa32cb.jpg?v=1586448964",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494120222771",
+      "base_sku": "SCH-70652",
+      "sample_sku": "SCH-70652",
+      "mfr_sku": "70652",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70652_0bb6f13b-a67a-4d79-aa98-1bf854a8575c.jpg?v=1586448966",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494120386611",
+      "base_sku": "SCH-70654",
+      "sample_sku": "SCH-70654",
+      "mfr_sku": "70654",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70654_de4382df-191e-440e-bf82-319ec2a8197a.jpg?v=1586448969",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494120550451",
+      "base_sku": "SCH-70656",
+      "sample_sku": "SCH-70656",
+      "mfr_sku": "70656",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70656_812ca4db-97f3-4afb-819b-34590fc9a032.jpg?v=1586448972",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494120878131",
+      "base_sku": "SCH-70662",
+      "sample_sku": "SCH-70662",
+      "mfr_sku": "70662",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70662_afc5e6e8-a512-4351-af23-5394d202af43.jpg?v=1586448979",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494120976435",
+      "base_sku": "SCH-70663",
+      "sample_sku": "SCH-70663",
+      "mfr_sku": "70663",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70663_bdc341ca-d75b-4baf-a1c9-7b8795070a9a.jpg?v=1586448982",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494121664563",
+      "base_sku": "SCH-70684",
+      "sample_sku": "SCH-70684",
+      "mfr_sku": "70684",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70684_e26316fc-a76e-4dde-940c-28db603f826b.jpg?v=1586448996",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494121893939",
+      "base_sku": "SCH-70692",
+      "sample_sku": "SCH-70692",
+      "mfr_sku": "70692",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70692_e48be0b5-f4f8-458b-84da-6938f167d511.jpg?v=1586449002",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494122188851",
+      "base_sku": "SCH-70702",
+      "sample_sku": "SCH-70702",
+      "mfr_sku": "70702",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70702_2dbc3e89-7a00-4a1f-b70b-31afa75e37ed.jpg?v=1586449008",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494122254387",
+      "base_sku": "SCH-70703",
+      "sample_sku": "SCH-70703",
+      "mfr_sku": "70703",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70703_6f2e0471-4856-4f1f-bdb3-5cf880ddcdbb.jpg?v=1586449010",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494122516531",
+      "base_sku": "SCH-70712",
+      "sample_sku": "SCH-70712",
+      "mfr_sku": "70712",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70712_0aa61364-0642-4bb5-a349-398cfeffba8c.jpg?v=1586449016",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494122876979",
+      "base_sku": "SCH-70716",
+      "sample_sku": "SCH-70716",
+      "mfr_sku": "70716",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70716_a0a50643-9ffa-4203-90da-d7f505813e9a.jpg?v=1586449025",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494123270195",
+      "base_sku": "SCH-70720",
+      "sample_sku": "SCH-70720",
+      "mfr_sku": "70720",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70720_0568a8d8-01d3-4525-859b-f8d53d1f73b5.jpg?v=1586449033",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494123925555",
+      "base_sku": "SCH-70723",
+      "sample_sku": "SCH-70723",
+      "mfr_sku": "70723",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70723_14f766c8-0c13-4c97-8f9a-8f36fe8a81c6.jpg?v=1586449039",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494124089395",
+      "base_sku": "SCH-70725",
+      "sample_sku": "SCH-70725",
+      "mfr_sku": "70725",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70725_6743be2d-c4bf-4d59-9e3a-ce4fe57b0013.jpg?v=1586449043",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494124580915",
+      "base_sku": "SCH-70730",
+      "sample_sku": "SCH-70730",
+      "mfr_sku": "70730",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70730_337ae94b-05e5-44c1-bb2e-4f7e5bee8571.jpg?v=1586449053",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494124679219",
+      "base_sku": "SCH-70731",
+      "sample_sku": "SCH-70731",
+      "mfr_sku": "70731",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70731_6e91ceb4-f7b3-44f2-958b-0ee8b59066ce.jpg?v=1586449055",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494124974131",
+      "base_sku": "SCH-70734",
+      "sample_sku": "SCH-70734",
+      "mfr_sku": "70734",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70734_4c77ae71-3fa4-40c6-80de-594f79fc5fb5.jpg?v=1586449062",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494125170739",
+      "base_sku": "SCH-70736",
+      "sample_sku": "SCH-70736",
+      "mfr_sku": "70736",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70736_714a4488-64d8-4d6c-8910-a227083fbe78.jpg?v=1586449066",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494151647283",
+      "base_sku": "SCH-74566",
+      "sample_sku": "SCH-74566",
+      "mfr_sku": "74566",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74566_1773c4f2-cd4c-46e2-876b-ad564957edc9.jpg?v=1586449546",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494151843891",
+      "base_sku": "SCH-74568",
+      "sample_sku": "SCH-74568",
+      "mfr_sku": "74568",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74568_a809ad9b-947c-4369-9a46-cd9652d4ab1f.jpg?v=1586449551",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494152007731",
+      "base_sku": "SCH-74570",
+      "sample_sku": "SCH-74570",
+      "mfr_sku": "74570",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74570_3a41251a-8527-4fb8-b31d-ea0acb09574c.jpg?v=1586449555",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494152368179",
+      "base_sku": "SCH-74573",
+      "sample_sku": "SCH-74573",
+      "mfr_sku": "74573",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74573_0c4843e4-3e85-4ba1-a4f1-0d7964679437.jpg?v=1586449561",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494152532019",
+      "base_sku": "SCH-74575",
+      "sample_sku": "SCH-74575",
+      "mfr_sku": "74575",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74575_168dcd58-5ebe-4ce8-9f2c-06340cf81c69.jpg?v=1586449564",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494152630323",
+      "base_sku": "SCH-74576",
+      "sample_sku": "SCH-74576",
+      "mfr_sku": "74576",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74576_8e27b834-fc3c-4863-ab1b-be479da1af26.jpg?v=1586449566",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494152761395",
+      "base_sku": "SCH-74580",
+      "sample_sku": "SCH-74580",
+      "mfr_sku": "74580",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74580_f8bc04ce-e5db-41c4-ba96-6eb755c36922.jpg?v=1586449568",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494152859699",
+      "base_sku": "SCH-74581",
+      "sample_sku": "SCH-74581",
+      "mfr_sku": "74581",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74581_c786e0f3-3bc9-4801-b655-2437bdd627bc.jpg?v=1586449570",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494153121843",
+      "base_sku": "SCH-74584",
+      "sample_sku": "SCH-74584",
+      "mfr_sku": "74584",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74584_5c7d9349-3c2c-45ee-9063-e952e27b5561.jpg?v=1586449576",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494153318451",
+      "base_sku": "SCH-74586",
+      "sample_sku": "SCH-74586",
+      "mfr_sku": "74586",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74586_300a6097-927d-4214-b27b-8ead733a11ac.jpg?v=1586449580",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494153416755",
+      "base_sku": "SCH-74587",
+      "sample_sku": "SCH-74587",
+      "mfr_sku": "74587",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74587_2d2d73af-9717-4326-bf3d-c651d2d2d9bb.jpg?v=1586449582",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494153809971",
+      "base_sku": "SCH-74591",
+      "sample_sku": "SCH-74591",
+      "mfr_sku": "74591",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74591_9f165e41-6f1c-4fda-9b3b-62824c07482e.jpg?v=1586449589",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494154072115",
+      "base_sku": "SCH-74594",
+      "sample_sku": "SCH-74594",
+      "mfr_sku": "74594",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74594_5b64f0bd-6c61-4ffa-bd35-94c75515577f.jpg?v=1586449595",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494154432563",
+      "base_sku": "SCH-74621",
+      "sample_sku": "SCH-74621",
+      "mfr_sku": "74621",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74621_7a8942f2-405f-421e-8907-77b895c965e1.jpg?v=1586449602",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494155087923",
+      "base_sku": "SCH-74627",
+      "sample_sku": "SCH-74627",
+      "mfr_sku": "74627",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74627_602d17a7-2cff-4395-a739-feae5b7ac3b2.jpg?v=1586449612",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494155350067",
+      "base_sku": "SCH-74630",
+      "sample_sku": "SCH-74630",
+      "mfr_sku": "74630",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74630_f4803bc4-ca31-4129-ad67-bc274ff36e82.jpg?v=1586449617",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494155644979",
+      "base_sku": "SCH-74633",
+      "sample_sku": "SCH-74633",
+      "mfr_sku": "74633",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74633_af5707bc-246c-4a53-a45c-112ca131c93b.jpg?v=1586449624",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494155841587",
+      "base_sku": "SCH-74635",
+      "sample_sku": "SCH-74635",
+      "mfr_sku": "74635",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74635_30474559-f2fe-44ec-bc1b-f2504cb7a362.jpg?v=1586449627",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494155939891",
+      "base_sku": "SCH-74636",
+      "sample_sku": "SCH-74636",
+      "mfr_sku": "74636",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74636_0f611192-2cce-4d8e-bfe3-9fbb8f56570e.jpg?v=1586449629",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494156136499",
+      "base_sku": "SCH-74641",
+      "sample_sku": "SCH-74641",
+      "mfr_sku": "74641",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74641_fe658409-5aee-45b0-b66a-96305d24422c.jpg?v=1586449633",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494156234803",
+      "base_sku": "SCH-74642",
+      "sample_sku": "SCH-74642",
+      "mfr_sku": "74642",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74642_db9accdd-83c9-4d50-948b-c3418abf7d0e.jpg?v=1586449634",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494156333107",
+      "base_sku": "SCH-74643",
+      "sample_sku": "SCH-74643",
+      "mfr_sku": "74643",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74643_cd2cd5d4-7296-4b40-bb44-cda1502ae459.jpg?v=1586449636",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494156628019",
+      "base_sku": "SCH-74646",
+      "sample_sku": "SCH-74646",
+      "mfr_sku": "74646",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74646_9cb462ed-b19e-49a9-b6ef-c03eb5850185.jpg?v=1586449642",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494156693555",
+      "base_sku": "SCH-74647",
+      "sample_sku": "SCH-74647",
+      "mfr_sku": "74647",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74647_658dcc28-087c-4acc-87e3-32939317e53b.jpg?v=1586449643",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494157021235",
+      "base_sku": "SCH-74650",
+      "sample_sku": "SCH-74650",
+      "mfr_sku": "74650",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74650_2a37906b-75f4-4cff-98d0-c47f090350c2.jpg?v=1586449649",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494157119539",
+      "base_sku": "SCH-74651",
+      "sample_sku": "SCH-74651",
+      "mfr_sku": "74651",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74651_853a4909-92a5-4f7c-b5ab-42401ddbe84f.jpg?v=1586449650",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494157447219",
+      "base_sku": "SCH-74654",
+      "sample_sku": "SCH-74654",
+      "mfr_sku": "74654",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74654_5bfbb6e9-4efc-4ece-a23d-e18e34b03329.jpg?v=1586449656",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494158331955",
+      "base_sku": "SCH-74666",
+      "sample_sku": "SCH-74666",
+      "mfr_sku": "74666",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74666_0d637b8b-bb74-41bc-91ab-fed269e8ceaa.jpg?v=1586449672",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494178943027",
+      "base_sku": "SCH-75991",
+      "sample_sku": "SCH-75991",
+      "mfr_sku": "75991",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/75991_e565980c-3e09-46cf-844d-9e18565f1e65.jpg?v=1586450062",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494180745267",
+      "base_sku": "SCH-76102",
+      "sample_sku": "SCH-76102",
+      "mfr_sku": "76102",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/76102_e93de4de-059a-492c-a985-b6720b1a4412.jpg?v=1586450088",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494180876339",
+      "base_sku": "SCH-76103",
+      "sample_sku": "SCH-76103",
+      "mfr_sku": "76103",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/76103_902a2f7e-4e69-4726-9b64-1fd3039a4673.jpg?v=1586450090",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494182154291",
+      "base_sku": "SCH-76262",
+      "sample_sku": "SCH-76262",
+      "mfr_sku": "76262",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/76262_85c037d7-cc0a-4c7e-960b-ac8a8fc5e15d.jpg?v=1586450126",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494182416435",
+      "base_sku": "SCH-76264",
+      "sample_sku": "SCH-76264",
+      "mfr_sku": "76264",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/76264_9c2d961a-2842-44b9-a29c-1cb9a72d6470.jpg?v=1586450129",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494185300019",
+      "base_sku": "SCH-76732",
+      "sample_sku": "SCH-76732",
+      "mfr_sku": "76732",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/76732_33fff3eb-ee51-4532-9aa6-8411e4d09db3.jpg?v=1586450181",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494186741811",
+      "base_sku": "SCH-76862",
+      "sample_sku": "SCH-76862",
+      "mfr_sku": "76862",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/76862_9e60755d-df48-4174-b2a3-de193d6c74c8.jpg?v=1586450209",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494187528243",
+      "base_sku": "SCH-76950",
+      "sample_sku": "SCH-76950",
+      "mfr_sku": "76950",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/76950_9ff609fe-0289-4091-9773-849aef25e4e8.jpg?v=1586450224",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494189330483",
+      "base_sku": "SCH-77210",
+      "sample_sku": "SCH-77210",
+      "mfr_sku": "77210",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/77210_670949d5-9a5f-4a30-aa5a-5fd900e4a7da.jpg?v=1586450257",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "4494189428787",
+      "base_sku": "SCH-77211",
+      "sample_sku": "SCH-77211",
+      "mfr_sku": "77211",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/77211_727b12a0-cf4a-4704-b3e8-0d9ecdb099ff.jpg?v=1586450259",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    },
+    {
+      "shopify_id": "1497475907696",
+      "base_sku": "SCW-32794",
+      "sample_sku": "SCW-32794-sample",
+      "mfr_sku": "32794",
+      "roll_price": 0,
+      "price_source": "none",
+      "cat_width": "",
+      "cat_width_in": "",
+      "cat_image": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/11e57c949ce522164984a03a99454f2d.jpg?v=1572309711",
+      "is_pillow": false,
+      "tags": [
+        "Needs-Price",
+        "Needs-Width"
+      ],
+      "dryRun": true
+    }
+  ],
+  "failed": [],
+  "byPriceSource": {
+    "catalog:our_price": 1
+  },
+  "cohort": {
+    "pillows": 466,
+    "schNumeric": 71,
+    "wallcovering": 10
+  },
+  "budget": null,
+  "geminiCostUsd": 0,
+  "finished": "2026-06-22T22:05:29.229Z",
+  "totals": {
+    "rollVariantsCreated": 0,
+    "rollVariantsWouldCreate": 1,
+    "stayedSampleOnly_NeedsPrice": 537,
+    "pillowsTaggedSampleOnly": 466,
+    "budgetDeferredPriced": 0,
+    "skippedAlreadyHadRoll": 9,
+    "scrapedFresh": 0,
+    "failed": 0
+  }
+}
\ No newline at end of file

← d0f585b8 Add Coordonné full-page re-scrape runner (WooCommerce Store  ·  back to Designer Wallcoverings  ·  Bucket B Graham & Brown: PG roll-price recovery (387 priced) 2f6e75b3 →